/**
 * @file
 * Styles are organized using the SMACSS technique. @see http://smacss.com/book/
 *
 * When you turn on CSS aggregation at admin/config/development/performance, all
 * of these @include files will be combined into a single file.
 */
/* Import Sass mixins, variables, Compass modules, etc. */
/*$research-topic-desktop-width: 384px;
$research-topic-desktop-height: 287px;
$research-topic-tablet-width: 384px;
$research-topic-tablet-height: 287px;
$research-topic-phone-width: 360px;
$research-topic-phone-height: 272px;*/
/*@mixin responsive-banner-promotion-text {
  @include responsive-font($banner-promotion-text-desktop-font-size, $banner-promotion-text-tablet-font-size, $banner-promotion-text-tablet-font-size, $banner-promotion-text-phone-font-size);
}*/
/*@mixin responsive-initiativehashtag {
  @include responsive-font($initiativehashtag-desktop-font-size, $initiativehashtag-desktop-font-size, $initiativehashtag-tablet-font-size, $initiativehashtag-phone-font-size);
}
@mixin responsive-initiativebuttonlabel {
  @include responsive-font($initiativebuttonlabel-desktop-font-size, $initiativebuttonlabel-desktop-font-size, $initiativebuttonlabel-tablet-font-size, $initiativebuttonlabel-phone-font-size);
}*/
/*
 * Sets the color and direction or featured related items section
 * @backgroundColor - the color of the full-width background
 * @contentContainer - the color of the inner content background
 * @headingColor - the color of the H tag
 * @textColor  - the color of the summary text
 * @flex-direction - the direction of orientation for the flexbox items
 */
/*
 * Sets the styles for files cards
 * @backgroundColor - the color of the full-width background
 *
 */
/*@mixin responsive-banner-promotion-text {
  @include responsive-font($banner-promotion-text-desktop-font-size, $banner-promotion-text-tablet-font-size, $banner-promotion-text-tablet-font-size, $banner-promotion-text-phone-font-size);
}*/
/*@mixin responsive-initiativehashtag {
  @include responsive-font($initiativehashtag-desktop-font-size, $initiativehashtag-desktop-font-size, $initiativehashtag-tablet-font-size, $initiativehashtag-phone-font-size);
}
@mixin responsive-initiativebuttonlabel {
  @include responsive-font($initiativebuttonlabel-desktop-font-size, $initiativebuttonlabel-desktop-font-size, $initiativebuttonlabel-tablet-font-size, $initiativebuttonlabel-phone-font-size);
}*/
/*
 * Sets the color and direction or featured related items section
 * @backgroundColor - the color of the full-width background
 * @contentContainer - the color of the inner content background
 * @headingColor - the color of the H tag
 * @textColor  - the color of the summary text
 * @flex-direction - the direction of orientation for the flexbox items
 */
/*
 * Sets the styles for files cards
 * @backgroundColor - the color of the full-width background
 *
 */
/* HTML element (SMACSS base) rules */
/**
 * @file
 * Normalize.css is intended to be used as an alternative to CSS resets.
 *
 * This file is a slight fork of these original sources:
 * - normalize.css v2.1.2 | MIT License | git.io/normalize
 * - normalize.scss v2.1.2 | MIT/GPLv2 License | bit.ly/normalize-with-compass
 *
 * It's suggested that you read the normalize.scss file and customise it to meet
 * your needs, rather then including the file in your project and overriding the
 * defaults later in your CSS.
 * @see http://nicolasgallagher.com/about-normalize-css/
 *
 * Also: @see http://meiert.com/en/blog/20080419/reset-style-sheets-are-bad/
 *       @see http://snook.ca/archives/html_and_css/no_css_reset/
 */
/**
 * HTML5 display definitions
 */
/* Correct `block` display not defined in IE 8/9. */
/* line 23, ../sass/_normalize.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
  display: block;
}

/* line 37, ../sass/_normalize.scss */
nav.breadcrumb {
  display: inline-block;
  margin-bottom: 6px;
}

/* line 43, ../sass/_normalize.scss */
nav:focus {
  outline: none;
}

/* Correct `inline-block` display not defined in IE 8/9. */
/* line 48, ../sass/_normalize.scss */
audio,
canvas,
video {
  display: inline-block;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
/* line 59, ../sass/_normalize.scss */
audio:not([controls]) {
  display: none;
  height: 0;
}

/* Address styling not present in IE 8/9. */
/* line 65, ../sass/_normalize.scss */
[hidden] {
  display: none;
}

/**
 * Base
 *
 * Instead of relying on the fonts that are available on a user's computer, you
 * can use web fonts which, like images, are resources downloaded to the user's
 * browser. Because of the bandwidth and rendering resources required, web fonts
 * should be used with care.
 *
 * Numerous resources for web fonts can be found on Google. Here are a few
 * websites where you can find Open Source fonts to download:
 * - http://www.fontsquirrel.com/fontface
 * - http://www.theleagueofmoveabletype.com
 *
 * In order to use these fonts, you will need to convert them into formats
 * suitable for web fonts. We recommend the free-to-use Font Squirrel's
 * Font-Face Generator:
 *   http://www.fontsquirrel.com/fontface/generator
 *
 * The following is an example @font-face declaration. This font can then be
 * used in any ruleset using a property like this:  font-family: Example, serif;
 *
 * Since we're using Sass, you'll need to declare your font faces here, then you
 * can add them to the font variables in the _base.scss partial.
 */
/*
@font-face {
  font-family: 'Example';
  src: url('../fonts/example.eot');
  src: url('../fonts/example.eot?iefix') format('eot'),
    url('../fonts/example.woff') format('woff'),
    url('../fonts/example.ttf') format('truetype'),
    url('../fonts/example.svg#webfontOkOndcij') format('svg');
  font-weight: normal;
  font-style: normal;
}
*/
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 * 3. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
 *    `em` units.
 */
/* Remove default margin. */
/* line 117, ../sass/_normalize.scss */
body {
  margin: 0;
  padding: 0;
  background-color: #fff;
}

/* line 122, ../sass/_normalize.scss */
body:before {
  display: none;
}
@media all and (min-width: 1440px) {
  /* line 122, ../sass/_normalize.scss */
  body:before {
    content: 'desktop-mid';
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 122, ../sass/_normalize.scss */
  body:before {
    content: 'desktop-constrained';
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 122, ../sass/_normalize.scss */
  body:before {
    content: 'tablet';
  }
}
@media all and (min-width: 480px) and (max-width: 767px) {
  /* line 122, ../sass/_normalize.scss */
  body:before {
    content: 'phone-wide';
  }
}
@media all and (min-width: 0em) and (max-width: 360px) {
  /* line 122, ../sass/_normalize.scss */
  body:before {
    content: 'phone-narrow';
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 122, ../sass/_normalize.scss */
  body:before {
    content: 'phone';
  }
}

/**
 * Typography
 *
 * To achieve a pleasant vertical rhythm, we use Compass' Vertical Rhythm mixins
 * so that the line height of our base font becomes the basic unit of vertical
 * measurement. We use multiples of that unit to set the top and bottom margins
 * for our block level elements and to set the line heights of any fonts.
 * For more information, see http://24ways.org/2006/compose-to-a-vertical-rhythm
 */
/* Set 1 unit of vertical rhythm on the top and bottom margin. */
/* line 158, ../sass/_normalize.scss */
pre {
  font-size: 0.75rem;
}

/* line 161, ../sass/_normalize.scss */
blockquote {
  /* Also indent the quote on both sides. */
  font-style: italic;
  background-color: #f0eeee;
  padding: 11px;
  margin: 1.5em 1.8em;
}

/* line 169, ../sass/_normalize.scss */
.quoteindent {
  /* Also indent the quote on both sides. */
  padding: 11px;
  margin: 1.5em 1.8em;
}

/* Address styling not present in IE 8/9, Safari 5, and Chrome. */
/* line 178, ../sass/_normalize.scss */
abbr[title] {
  border-bottom: 1px dotted;
}

/* Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome. */
/* line 183, ../sass/_normalize.scss */
b,
strong {
  font-weight: bold;
}

/* Address styling not present in Safari 5 and Chrome. */
/* line 189, ../sass/_normalize.scss */
dfn,
i,
em {
  font-style: italic;
}

/* Address styling not present in IE 8/9. */
/* line 198, ../sass/_normalize.scss */
mark {
  background: #ff0;
  color: #222;
}

/* Correct font family set oddly in Safari 5 and Chrome. */
/* line 204, ../sass/_normalize.scss */
code,
kbd,
pre,
samp,
tt,
var {
  font-family: "Courier New", "DejaVu Sans Mono", monospace, sans-serif;
}

/* Improve readability of pre-formatted text in all browsers. */
/* line 215, ../sass/_normalize.scss */
pre {
  white-space: pre-wrap;
}

/* Set consistent quote types. */
/* line 220, ../sass/_normalize.scss */
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

/* Address inconsistent and variable font size in all browsers. */
/* line 225, ../sass/_normalize.scss */
small {
  font-size: 80%;
}

/* Prevent `sub` and `sup` affecting `line-height` in all browsers. */
/* line 230, ../sass/_normalize.scss */
sub,
sup {
  font-size: 75%;
  position: relative;
  vertical-align: baseline;
}

/* line 236, ../sass/_normalize.scss */
sup {
  top: -0.5em;
}

/* line 239, ../sass/_normalize.scss */
sub {
  bottom: -0.25em;
}

/**
 * Lists
 */
/* line 246, ../sass/_normalize.scss */
dl,
menu,
ol,
ul {
  /* Address margins set differently in IE 6/7. */
  margin: 1em 0 2em;
}

/* line 255, ../sass/_normalize.scss */
ol ol,
ol ul,
ul ol,
ul ul {
  /* Turn off margins on nested lists. */
  margin: 0;
  list-style: circle;
}
/* line 261, ../sass/_normalize.scss */
ol ol ol,
ol ol ul,
ol ul ol,
ol ul ul,
ul ol ol,
ul ol ul,
ul ul ol,
ul ul ul {
  list-style: disc;
  margin: 0;
}

/* line 268, ../sass/_normalize.scss */
dd {
  margin: 0 0 0 1.8em;
  /* LTR */
}

/* Address paddings set differently in IE 6/7. */
/* line 273, ../sass/_normalize.scss */
menu,
ol,
ul {
  padding: 0 0 0 1.8em;
  /* LTR */
}

/**
 * Embedded content and figures
 *
 * @todo Look into adding responsive embedded video.
 *
 * @todo Site content needs cleaned up (tables), before the site can be
 * responsive-ready (max-width not working).
 */
/* line 293, ../sass/_normalize.scss */
img {
  /* Remove border when inside `a` element in IE 8/9. */
  border: none;
  /* Suppress the space beneath the baseline */
  /* vertical-align: bottom; */
  /* Responsive images */
  max-width: 100%;
}

/* line 305, ../sass/_normalize.scss */
img:not(.embeddedImageModal) {
  height: auto;
}

/* line 312, ../sass/_normalize.scss */
img.align-left, div.align-left {
  max-width: 66%;
  margin: 1em 1em 1em 0;
}

/* line 316, ../sass/_normalize.scss */
img.align-right, div.align-right {
  max-width: 66%;
  margin: 1em 0 1em 1em;
}

/* line 320, ../sass/_normalize.scss */
img.align-center, div.align-center {
  max-width: 100%;
  margin: 1em auto;
}

/* Correct overflow displayed oddly in IE 9. */
/* line 326, ../sass/_normalize.scss */
svg:not(:root) {
  overflow: hidden;
}

/* Address margin not present in IE 8/9 and Safari 5. */
/* line 331, ../sass/_normalize.scss */
figure {
  margin: 0;
}

/**
 * Forms
 */
/* Define consistent border, margin, and padding. */
/* line 342, ../sass/_normalize.scss */
fieldset {
  margin: 0 2px;
  /* Apply borders and padding that keep the vertical rhythm. */
  border-color: #c0c0c0;
  border-top-width: 0.05882em;
  border-top-style: solid;
  padding-top: 0.46618em;
  border-bottom-width: 0.05882em;
  border-bottom-style: solid;
  padding-bottom: 0.91618em;
  border-left-width: 0.05882em;
  border-left-style: solid;
  padding-left: 0.91618em;
  border-right-width: 0.05882em;
  border-right-style: solid;
  padding-right: 0.91618em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 * 3. Correct alignment displayed oddly in IE 6/7.
 */
/* line 357, ../sass/_normalize.scss */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 * 4. Improve appearance and consistency with IE 6/7.
 * 5. Keep form elements constrained in their containers.
 */
/* line 370, ../sass/_normalize.scss */
button,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 1rem;
  /* 2 */
  margin: 0;
  /* 3 */
  max-width: 100%;
  /* 5 */
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 5 */
}

/* line 381, ../sass/_normalize.scss */
input {
  font-family: inherit;
  /* 1 */
  font-size: 1rem;
  /* 2 */
  margin: 0 0 0 0.5em;
  padding: 0.5em;
  max-width: 100%;
  /* 5 */
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 5 */
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
/* line 393, ../sass/_normalize.scss */
button,
input {
  line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
/* line 404, ../sass/_normalize.scss */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. Remove inner spacing in IE 7 without affecting normal text inputs.
 *    Known issue: inner spacing remains in IE 6.
 */
/* line 418, ../sass/_normalize.scss */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  -moz-appearance: button;
  -ms-appearance: button;
  -o-appearance: button;
  appearance: button;
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
/* line 430, ../sass/_normalize.scss */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * 1. Address box sizing set to `content-box` in IE 8/9.
 * 2. Remove excess padding in IE 8/9.
 * 3. Remove excess padding in IE 7.
 *    Known issue: excess padding remains in IE 6.
 */
/* line 441, ../sass/_normalize.scss */
input[type="checkbox"],
input[type="radio"] {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
/* line 453, ../sass/_normalize.scss */
input[type="search"] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  -ms-appearance: textfield;
  -o-appearance: textfield;
  appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
/* line 462, ../sass/_normalize.scss */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* Remove inner padding and border in Firefox 4+. */
/* line 468, ../sass/_normalize.scss */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
/* line 478, ../sass/_normalize.scss */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/* Drupal-style form labels. */
/* line 484, ../sass/_normalize.scss */
label {
  display: block;
  font-weight: bold;
}

/**
 * Tables
 */
/* line 492, ../sass/_normalize.scss */
table {
  /* Remove most spacing between table cells. */
  border-collapse: collapse;
  border-spacing: 0;
  /* Prevent cramped-looking tables */
  /* width: 100%; */
  /* Add vertical rhythm margins. */
  margin-bottom: 1.5em;
  font-size: 0.875rem;
}

/* line 504, ../sass/_normalize.scss */
.stripedBorder {
  width: 100%;
  border: #000 solid 1px;
}
/* line 508, ../sass/_normalize.scss */
.stripedBorder tr:nth-child(odd) td {
  background-color: #f1f1f1;
}
/* line 512, ../sass/_normalize.scss */
.stripedBorder td, .stripedBorder th {
  border: #000 solid 1px;
  padding: 5px;
  text-align: left;
}
/* line 517, ../sass/_normalize.scss */
.stripedBorder th {
  font-size: 0.8125rem;
}

/* line 523, ../sass/_normalize.scss */
.noBorderNoStripes {
  width: 100%;
  border: none;
}
/* line 526, ../sass/_normalize.scss */
.noBorderNoStripes td {
  padding: 5px;
  border: none;
}

/* Base Styleguide */
/**
 * Color Palette: see _init.scss for all $variables
 **/
/**
 * Default Typefaces
 **/
/* line 9, ../sass/_styleguide.scss */
html {
  font-size: 17px;
  text-size-adjust: -webkit-100%;
  text-size-adjust: -moz-100%;
  text-size-adjust: -ms-100%;
  text-size-adjust: -o-100%;
  text-size-adjust: 100%;
  line-height: 1.5em;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  /* 1 */
  color: #222;
  height: 100%;
  line-height: 25.5px;
}

/* line 19, ../sass/_styleguide.scss */
main {
  min-height: 100%;
}

/* line 23, ../sass/_styleguide.scss */
body {
  height: 100%;
  line-height: 1.5;
}

/* line 28, ../sass/_styleguide.scss */
body, .bodytext, .darkGrayBodyText, .foa-expiration-date {
  font-size: 1rem;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  /* 1 */
  color: #222;
  margin: 0 0 1.25em;
  padding: 0;
}
@media all and (min-width: 1440px) {
  /* line 28, ../sass/_styleguide.scss */
  body, .bodytext, .darkGrayBodyText, .foa-expiration-date {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 28, ../sass/_styleguide.scss */
  body, .bodytext, .darkGrayBodyText, .foa-expiration-date {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 28, ../sass/_styleguide.scss */
  body, .bodytext, .darkGrayBodyText, .foa-expiration-date {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 28, ../sass/_styleguide.scss */
  body, .bodytext, .darkGrayBodyText, .foa-expiration-date {
    font-size: 1rem;
  }
}

/* line 35, ../sass/_styleguide.scss */
p, .standard-body, .readMoreWrapper {
  font-size: 1rem;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  /* 1 */
  margin: 0 0 1em;
}
@media all and (min-width: 1440px) {
  /* line 35, ../sass/_styleguide.scss */
  p, .standard-body, .readMoreWrapper {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 35, ../sass/_styleguide.scss */
  p, .standard-body, .readMoreWrapper {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 35, ../sass/_styleguide.scss */
  p, .standard-body, .readMoreWrapper {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 35, ../sass/_styleguide.scss */
  p, .standard-body, .readMoreWrapper {
    font-size: 1rem;
  }
}

/* line 40, ../sass/_styleguide.scss */
article, article.node {
  overflow: hidden;
}
/* line 46, ../sass/_styleguide.scss */
article .ui-widget, article.node .ui-widget {
  font-size: 1rem;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  /* 1 */
  color: #222;
  padding-top: 0;
  margin: 0 0 1.25em;
}
@media all and (min-width: 1440px) {
  /* line 46, ../sass/_styleguide.scss */
  article .ui-widget, article.node .ui-widget {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 46, ../sass/_styleguide.scss */
  article .ui-widget, article.node .ui-widget {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 46, ../sass/_styleguide.scss */
  article .ui-widget, article.node .ui-widget {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 46, ../sass/_styleguide.scss */
  article .ui-widget, article.node .ui-widget {
    font-size: 1rem;
  }
}

/* line 54, ../sass/_styleguide.scss */
.responsive-container-constrained, .topicFeatured .view-content, .topicLanding > .view-content, .executive-news--landing .topicFeatured > .view-content {
  max-width: 1440px;
  padding-left: 140px;
  padding-right: 140px;
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 54, ../sass/_styleguide.scss */
  .responsive-container-constrained, .topicFeatured .view-content, .topicLanding > .view-content, .executive-news--landing .topicFeatured > .view-content {
    padding-left: 42px;
    padding-right: 42px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 54, ../sass/_styleguide.scss */
  .responsive-container-constrained, .topicFeatured .view-content, .topicLanding > .view-content, .executive-news--landing .topicFeatured > .view-content {
    padding-left: 42px;
    padding-right: 42px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 54, ../sass/_styleguide.scss */
  .responsive-container-constrained, .topicFeatured .view-content, .topicLanding > .view-content, .executive-news--landing .topicFeatured > .view-content {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* line 73, ../sass/_styleguide.scss */
#main-menu-container .responsive-container-constrained, #main-menu-container .topicFeatured .view-content, .topicFeatured #main-menu-container .view-content, #main-menu-container .topicLanding > .view-content {
  max-width: none;
  padding-left: 25px;
  padding-right: 25px;
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 73, ../sass/_styleguide.scss */
  #main-menu-container .responsive-container-constrained, #main-menu-container .topicFeatured .view-content, .topicFeatured #main-menu-container .view-content, #main-menu-container .topicLanding > .view-content {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 73, ../sass/_styleguide.scss */
  #main-menu-container .responsive-container-constrained, #main-menu-container .topicFeatured .view-content, .topicFeatured #main-menu-container .view-content, #main-menu-container .topicLanding > .view-content {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 73, ../sass/_styleguide.scss */
  #main-menu-container .responsive-container-constrained, #main-menu-container .topicFeatured .view-content, .topicFeatured #main-menu-container .view-content, #main-menu-container .topicLanding > .view-content {
    padding-left: 17px;
    padding-right: 17px;
  }
}

/* line 92, ../sass/_styleguide.scss */
.responsive-container-margin-constrained {
  max-width: 1440px;
  margin-left: 140px;
  margin-right: 140px;
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 92, ../sass/_styleguide.scss */
  .responsive-container-margin-constrained {
    margin-left: 42px;
    margin-right: 42px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 92, ../sass/_styleguide.scss */
  .responsive-container-margin-constrained {
    padding-left: 42px;
    padding-right: 42px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 92, ../sass/_styleguide.scss */
  .responsive-container-margin-constrained {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* line 109, ../sass/_styleguide.scss */
.responsive-container-unconstrained, .news-and-events--landing .topicLanding > .view-content, .hei-related-news .topicLanding > .view-content, .hei-related-events .topicLanding > .view-content {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 109, ../sass/_styleguide.scss */
  .responsive-container-unconstrained, .news-and-events--landing .topicLanding > .view-content, .hei-related-news .topicLanding > .view-content, .hei-related-events .topicLanding > .view-content {
    padding-left: 0;
    padding-right: 0;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 109, ../sass/_styleguide.scss */
  .responsive-container-unconstrained, .news-and-events--landing .topicLanding > .view-content, .hei-related-news .topicLanding > .view-content, .hei-related-events .topicLanding > .view-content {
    padding-left: 0;
    padding-right: 0;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 109, ../sass/_styleguide.scss */
  .responsive-container-unconstrained, .news-and-events--landing .topicLanding > .view-content, .hei-related-news .topicLanding > .view-content, .hei-related-events .topicLanding > .view-content {
    padding-left: 0;
    padding-right: 0;
  }
}

/* line 126, ../sass/_styleguide.scss */
.content-container-margin, .topicLanding > .view-content > .views-infinite-scroll-content-wrapper {
  margin-top: 1.4em;
}

/* line 129, ../sass/_styleguide.scss */
.content-container-top-padding {
  padding-top: 1.4em;
}

/* line 133, ../sass/_styleguide.scss */
.responsive-container {
  margin-left: auto;
  margin-right: auto;
}
@media all and (min-width: 0em) and (max-width: 360px) {
  /* line 133, ../sass/_styleguide.scss */
  .responsive-container {
    width: auto;
  }
}

@media all and (min-width: 1100px) {
  /* line 156, ../sass/_styleguide.scss */
  .narrow-desktop, .expanding-content-container.narrow-desktop {
    max-width: 110ch;
    min-width: auto;
    margin-left: auto;
    margin-right: auto;
  }
}

/* line 165, ../sass/_styleguide.scss */
.tighter-container-padding, .flexItemText.flexItemTextHalf {
  padding-left: 42px;
  padding-right: 42px;
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 165, ../sass/_styleguide.scss */
  .tighter-container-padding, .flexItemText.flexItemTextHalf {
    padding-left: 42px;
    padding-right: 42px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 165, ../sass/_styleguide.scss */
  .tighter-container-padding, .flexItemText.flexItemTextHalf {
    padding-left: 42px;
    padding-right: 42px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 165, ../sass/_styleguide.scss */
  .tighter-container-padding, .flexItemText.flexItemTextHalf {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* line 182, ../sass/_styleguide.scss */
.responsive-container-padding, .flexItemText.flexItemTextHalf.flexItemTextFirst, .isi-updates-padding, .promoted-content-container .flexItemText, .sfa-card-container .sfa-inner-container, .field--name-field-sv-promotional-cards > .field__item .flexItemText.flexItemTextHalf, .field--name-field-about-nhlbi-promotional-ca > .field__item .flexItemText.flexItemTextHalf, .node--view-mode-short-teaser .flexItemText, .sfa-teaser-container .flexItemText, .tcd-news-container .sfa-teaser-container .flexItemText.flexItemTextHalf, .hei-related-news .flexItemText.flexItemTextHalf {
  padding: 1.5em 2em;
  /*@include bp-desktop-constrained {
    padding-left: $standard-container-tablet-phone-padding;
    padding-right: $standard-container-tablet-phone-padding;
  }
  @include bp-tablet {
    padding-left: $standard-container-tablet-padding;
    padding-right: $standard-container-tablet-padding;
  }
  @include bp-phone {
    padding-left: $standard-container-phone-padding;
    padding-right: $standard-container-phone-padding;
  }*/
  /*
  padding-right: 5em;
  padding-left: 5em;
  @include bp-desktop-mid {
    padding-right: 5em;
    padding-left: 5em;
  }
  @include bp-desktop-constrained {
    padding-right: 5em;
    padding-left: 5em;
  }
  @include bp-tablet {
    padding-left: 20px;
    padding-right: 20px;
  }
  @include bp-phone {
    padding-left: 20px;
    padding-right: 20px;
  }
  */
}

/* line 223, ../sass/_styleguide.scss */
.align-text-center {
  text-align: center;
}

/* line 226, ../sass/_styleguide.scss */
h1 {
  font-size: 2rem;
  line-height: 1.25;
  font-family: "Merriweather", serif;
  font-weight: normal;
  color: #222;
  margin: 1.5em 0 0.25em 0;
  padding: 0;
}
@media all and (min-width: 1440px) {
  /* line 226, ../sass/_styleguide.scss */
  h1 {
    font-size: 2rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 226, ../sass/_styleguide.scss */
  h1 {
    font-size: 2rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 226, ../sass/_styleguide.scss */
  h1 {
    font-size: 1.75rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 226, ../sass/_styleguide.scss */
  h1 {
    font-size: 1.5rem;
  }
}

/* line 237, ../sass/_styleguide.scss */
h2, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .contact-method-label {
  font-size: 1.75rem;
  line-height: 1.25;
  font-family: "Merriweather", serif;
  margin: 1.5em 0 0.25em 0;
  padding: 0;
  font-weight: normal;
  color: #222;
}
@media all and (min-width: 1440px) {
  /* line 237, ../sass/_styleguide.scss */
  h2, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .contact-method-label {
    font-size: 1.75rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 237, ../sass/_styleguide.scss */
  h2, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .contact-method-label {
    font-size: 1.75rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 237, ../sass/_styleguide.scss */
  h2, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .contact-method-label {
    font-size: 1.5rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 237, ../sass/_styleguide.scss */
  h2, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .contact-method-label {
    font-size: 1.25rem;
  }
}

/* line 245, ../sass/_styleguide.scss */
.piname {
  font-size: 1.75rem;
  line-height: 1.25;
  font-family: "Merriweather", serif;
  font-weight: normal;
  color: #222;
}
@media all and (min-width: 1440px) {
  /* line 245, ../sass/_styleguide.scss */
  .piname {
    font-size: 1.75rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 245, ../sass/_styleguide.scss */
  .piname {
    font-size: 1.75rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 245, ../sass/_styleguide.scss */
  .piname {
    font-size: 1.5rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 245, ../sass/_styleguide.scss */
  .piname {
    font-size: 1.25rem;
  }
}

/* line 251, ../sass/_styleguide.scss */
h2.hidden, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.hidden, .hidden.contact-method-label {
  display: none;
}

/* line 254, ../sass/_styleguide.scss */
h3, .smaller-titled-cards .field--name-field-social-phrase-group-title, .smaller-titled-cards .field--name-field-image-gallery-title, .field--name-field-social-phrase-group-title, .field--name-field-image-gallery-title {
  font-size: 1.25rem;
  margin: 1.5em 0 0.25em;
  padding: 0;
  font-family: "Merriweather", serif;
  font-weight: bold;
  font-style: normal;
  color: #222;
}
@media all and (min-width: 1440px) {
  /* line 254, ../sass/_styleguide.scss */
  h3, .smaller-titled-cards .field--name-field-social-phrase-group-title, .smaller-titled-cards .field--name-field-image-gallery-title, .field--name-field-social-phrase-group-title, .field--name-field-image-gallery-title {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 254, ../sass/_styleguide.scss */
  h3, .smaller-titled-cards .field--name-field-social-phrase-group-title, .smaller-titled-cards .field--name-field-image-gallery-title, .field--name-field-social-phrase-group-title, .field--name-field-image-gallery-title {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 254, ../sass/_styleguide.scss */
  h3, .smaller-titled-cards .field--name-field-social-phrase-group-title, .smaller-titled-cards .field--name-field-image-gallery-title, .field--name-field-social-phrase-group-title, .field--name-field-image-gallery-title {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 254, ../sass/_styleguide.scss */
  h3, .smaller-titled-cards .field--name-field-social-phrase-group-title, .smaller-titled-cards .field--name-field-image-gallery-title, .field--name-field-social-phrase-group-title, .field--name-field-image-gallery-title {
    font-size: 1rem;
  }
}

/* line 263, ../sass/_styleguide.scss */
h3 > a, .smaller-titled-cards .field--name-field-social-phrase-group-title > a, .smaller-titled-cards .field--name-field-image-gallery-title > a, .field--name-field-social-phrase-group-title > a, .field--name-field-image-gallery-title > a, h3 > a:link, .smaller-titled-cards .field--name-field-social-phrase-group-title > a:link, .smaller-titled-cards .field--name-field-image-gallery-title > a:link, .field--name-field-social-phrase-group-title > a:link, .field--name-field-image-gallery-title > a:link {
  color: #222;
}

/* line 266, ../sass/_styleguide.scss */
h3 > a:visited, .smaller-titled-cards .field--name-field-social-phrase-group-title > a:visited, .smaller-titled-cards .field--name-field-image-gallery-title > a:visited, .field--name-field-social-phrase-group-title > a:visited, .field--name-field-image-gallery-title > a:visited {
  color: #6f57B5;
}

/* line 276, ../sass/_styleguide.scss */
h3.merriweather-font, .merriweather-font.field--name-field-social-phrase-group-title, .merriweather-font.field--name-field-image-gallery-title {
  font-family: "Merriweather", serif;
  font-weight: normal;
  margin: 0 0 1em;
}

/* line 284, ../sass/_styleguide.scss */
h4 {
  font-size: 1.125rem;
  margin: 1.5em 0 0.25em;
  padding: 0;
  font-family: "Merriweather", serif;
  font-weight: normal;
  font-style: normal;
  color: #222;
  text-transform: uppercase;
}
@media all and (min-width: 1440px) {
  /* line 284, ../sass/_styleguide.scss */
  h4 {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 284, ../sass/_styleguide.scss */
  h4 {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 284, ../sass/_styleguide.scss */
  h4 {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 284, ../sass/_styleguide.scss */
  h4 {
    font-size: 1rem;
  }
}

/* line 294, ../sass/_styleguide.scss */
h4.no-text-transform, .no-text-transform {
  text-transform: none;
}

/* line 298, ../sass/_styleguide.scss */
.membertitle, .profileheader {
  font-family: "Merriweather", serif;
  font-weight: normal;
  font-style: normal;
  color: #222;
}

/* line 304, ../sass/_styleguide.scss */
h5, .image-gallery-item-modal-wrapper h1.image-gallery-item-image-title {
  font-size: 1rem;
  font-family: "Merriweather", serif;
  margin: 1.5em 0 0.25em;
  padding: 0;
  font-weight: bold;
  font-style: normal;
  color: #222;
}
@media all and (min-width: 1440px) {
  /* line 304, ../sass/_styleguide.scss */
  h5, .image-gallery-item-modal-wrapper h1.image-gallery-item-image-title {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 304, ../sass/_styleguide.scss */
  h5, .image-gallery-item-modal-wrapper h1.image-gallery-item-image-title {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 304, ../sass/_styleguide.scss */
  h5, .image-gallery-item-modal-wrapper h1.image-gallery-item-image-title {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 304, ../sass/_styleguide.scss */
  h5, .image-gallery-item-modal-wrapper h1.image-gallery-item-image-title {
    font-size: 0.875rem;
  }
}

/* line 319, ../sass/_styleguide.scss */
h6, .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container .label,
.node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container .label {
  font-size: 0.875rem;
  font-family: "Merriweather", serif;
  margin: 1.5em 0 0.25em;
  padding: 0;
}
@media all and (min-width: 1440px) {
  /* line 319, ../sass/_styleguide.scss */
  h6, .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container .label,
  .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container .label {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 319, ../sass/_styleguide.scss */
  h6, .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container .label,
  .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container .label {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 319, ../sass/_styleguide.scss */
  h6, .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container .label,
  .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container .label {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 319, ../sass/_styleguide.scss */
  h6, .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container .label,
  .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container .label {
    font-size: 0.875rem;
  }
}

/**
 * Links -- This is called .hyperlink in the StyleGuide
 **/
/* line 332, ../sass/_styleguide.scss */
a, a h3, a .smaller-titled-cards .field--name-field-social-phrase-group-title, .smaller-titled-cards a .field--name-field-social-phrase-group-title, a .smaller-titled-cards .field--name-field-image-gallery-title, .smaller-titled-cards a .field--name-field-image-gallery-title, a .field--name-field-social-phrase-group-title, a .field--name-field-image-gallery-title {
  text-decoration: underline solid;
  text-decoration-thickness: 2px;
}

/* line 336, ../sass/_styleguide.scss */
a:link, .ui-widget-content a:link {
  color: #0051a8;
}

/* line 339, ../sass/_styleguide.scss */
a:visited, a:visited h3, a:visited .field--name-field-social-phrase-group-title, a:visited .field--name-field-image-gallery-title, a:visited h2, a:visited .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box a:visited h1, a:visited .contact-method-label, .ui-widget-content a:visited, a:visited .field--name-field-featured-item-title {
  color: #6f57B5;
}

/* line 342, ../sass/_styleguide.scss */
a.white-text:visited, .white-text a:visited {
  color: #D7E7F4;
}

/* line 345, ../sass/_styleguide.scss */
a:hover, a:hover h1, a:hover h2, a:hover .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box a:hover h1, a:hover .contact-method-label, a:hover h3.merriweather-font, a:hover .merriweather-font.field--name-field-social-phrase-group-title, a:hover .merriweather-font.field--name-field-image-gallery-title, .ui-widget-content a:hover {
  font-weight: bold;
}

/* line 349, ../sass/_styleguide.scss */
a:hover h3:not(.merriweather-font), a:hover .field--name-field-social-phrase-group-title:not(.merriweather-font), a:hover .field--name-field-image-gallery-title:not(.merriweather-font), h3:not(.merriweather-font) a:hover, .field--name-field-social-phrase-group-title:not(.merriweather-font) a:hover, .field--name-field-image-gallery-title:not(.merriweather-font) a:hover, .highlighted > a:hover, a:hover .field--name-field-card-title, a.contact-link:hover, .callout-contact-link a:hover, strong a:hover, a:hover strong {
  text-shadow: .25px .25px;
}

/* line 354, ../sass/_styleguide.scss */
a.no-hover-color {
  text-decoration: none;
}
/* line 356, ../sass/_styleguide.scss */
a.no-hover-color h2, a.no-hover-color .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box a.no-hover-color h1, a.no-hover-color .contact-method-label {
  text-decoration: underline;
}
/* line 359, ../sass/_styleguide.scss */
a.no-hover-color h3, a.no-hover-color .field--name-field-social-phrase-group-title, a.no-hover-color .field--name-field-image-gallery-title {
  text-decoration: underline;
}
/* line 362, ../sass/_styleguide.scss */
a.no-hover-color .field--name-field-featured-item-title {
  text-decoration: underline;
}

/* line 366, ../sass/_styleguide.scss */
a.no-hover-color:hover {
  text-shadow: none;
  font-weight: normal;
}
/* line 369, ../sass/_styleguide.scss */
a.no-hover-color:hover h2, a.no-hover-color:hover .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box a.no-hover-color:hover h1, a.no-hover-color:hover .contact-method-label {
  font-weight: bold;
}
/* line 372, ../sass/_styleguide.scss */
a.no-hover-color:hover h3:not(.merriweather-font), a.no-hover-color:hover .field--name-field-social-phrase-group-title:not(.merriweather-font), a.no-hover-color:hover .field--name-field-image-gallery-title:not(.merriweather-font) {
  text-shadow: .25px .25px;
}

/* line 378, ../sass/_styleguide.scss */
h3.publicationTitle a:hover, h3.primary-blue-publication-title a:hover, .primary-blue-publication-title.field--name-field-social-phrase-group-title a:hover, .primary-blue-publication-title.field--name-field-image-gallery-title a:hover, .publicationTitle.field--name-field-social-phrase-group-title a:hover, .publicationTitle.field--name-field-image-gallery-title a:hover, .homepage-mission-areas-text h3 a:hover, .homepage-mission-areas-text .field--name-field-social-phrase-group-title a:hover, .homepage-mission-areas-text .field--name-field-image-gallery-title a:hover {
  text-shadow: none;
}

/* Address `outline` inconsistency between Chrome and other browsers. */
/* line 383, ../sass/_styleguide.scss */
a:focus, a:active {
  outline: 0;
}

/* line 389, ../sass/_styleguide.scss */
main a:focus, main a:active, main [contentEditable=true]:focus, main [href]:focus, main [tabindex]:focus, main iframe:focus {
  outline: #bf0d2e dotted 3px;
}
/* line 392, ../sass/_styleguide.scss */
main a:focus span, main a:active span, main [contentEditable=true]:focus span, main [href]:focus span, main [tabindex]:focus span, main iframe:focus span {
  outline: none;
}
/* line 399, ../sass/_styleguide.scss */
main a:focus h2, main a:focus .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box main a:focus h1, main a:focus .contact-method-label, main a:focus h3, main a:focus .field--name-field-social-phrase-group-title, main a:focus .field--name-field-image-gallery-title, main a:active h2, main a:active .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box main a:active h1, main a:active .contact-method-label, main a:active h3, main a:active .field--name-field-social-phrase-group-title, main a:active .field--name-field-image-gallery-title {
  outline: #bf0d2e dotted 3px;
}

/* line 407, ../sass/_styleguide.scss */
.view-site-alerts a:focus, .view-site-alerts a:active {
  outline: #bf0d2e dotted 3px;
}

/* Improve readability when focused and also mouse hovered in all browsers. */
/* line 413, ../sass/_styleguide.scss */
a:hover {
  outline: 0;
}

/**
 * Buttons and Labels
 **/
/* line 423, ../sass/_styleguide.scss */
.blueRoundButton, .redRoundButton, .standard-more-link, .news-and-events--landing .more-link, .view-more-link, .js-pager__items.pager .pager__item, .js-pager__items.standard-more-link .pager__item, .news-and-events--landing .js-pager__items.more-link .pager__item, .js-pager__items.view-more-link .pager__item, .js-pager__items.pager .blueRoundButton, .js-pager__items.standard-more-link .blueRoundButton, .news-and-events--landing .js-pager__items.more-link .blueRoundButton, .js-pager__items.view-more-link .blueRoundButton, .js-pager__items.pager .redRoundButton, .js-pager__items.standard-more-link .redRoundButton, .news-and-events--landing .js-pager__items.more-link .redRoundButton, .js-pager__items.view-more-link .redRoundButton, .js-pager__items.pager .standard-more-link, .js-pager__items.standard-more-link .standard-more-link, .news-and-events--landing .js-pager__items.more-link .standard-more-link, .js-pager__items.view-more-link .standard-more-link, .js-pager__items.pager .news-and-events--landing .more-link, .news-and-events--landing .js-pager__items.pager .more-link, .js-pager__items.standard-more-link .news-and-events--landing .more-link, .news-and-events--landing .js-pager__items.standard-more-link .more-link, .news-and-events--landing .js-pager__items.more-link .more-link, .js-pager__items.view-more-link .news-and-events--landing .more-link, .news-and-events--landing .js-pager__items.view-more-link .more-link, .js-pager__items.pager .view-more-link, .js-pager__items.standard-more-link .view-more-link, .news-and-events--landing .js-pager__items.more-link .view-more-link, .js-pager__items.view-more-link .view-more-link {
  font-size: 0.875rem;
  margin-top: 1em;
  margin-bottom: 1em;
  clear: both;
}
/* line 428, ../sass/_styleguide.scss */
.blueRoundButton a, .redRoundButton a, .standard-more-link a, .news-and-events--landing .more-link a, .view-more-link a, .blueRoundButton a.button, .redRoundButton a.button, .standard-more-link a.button, .news-and-events--landing .more-link a.button, .view-more-link a.button, .js-pager__items.pager .pager__item a, .js-pager__items.standard-more-link .pager__item a, .news-and-events--landing .js-pager__items.more-link .pager__item a, .js-pager__items.view-more-link .pager__item a, .js-pager__items.pager .blueRoundButton a, .js-pager__items.standard-more-link .blueRoundButton a, .news-and-events--landing .js-pager__items.more-link .blueRoundButton a, .js-pager__items.view-more-link .blueRoundButton a, .js-pager__items.pager .redRoundButton a, .js-pager__items.standard-more-link .redRoundButton a, .news-and-events--landing .js-pager__items.more-link .redRoundButton a, .js-pager__items.view-more-link .redRoundButton a, .js-pager__items.pager .standard-more-link a, .js-pager__items.standard-more-link .standard-more-link a, .news-and-events--landing .js-pager__items.more-link .standard-more-link a, .js-pager__items.view-more-link .standard-more-link a, .js-pager__items.pager .news-and-events--landing .more-link a, .news-and-events--landing .js-pager__items.pager .more-link a, .js-pager__items.standard-more-link .news-and-events--landing .more-link a, .news-and-events--landing .js-pager__items.standard-more-link .more-link a, .news-and-events--landing .js-pager__items.more-link .more-link a, .js-pager__items.view-more-link .news-and-events--landing .more-link a, .news-and-events--landing .js-pager__items.view-more-link .more-link a, .js-pager__items.pager .view-more-link a, .js-pager__items.standard-more-link .view-more-link a, .news-and-events--landing .js-pager__items.more-link .view-more-link a, .js-pager__items.view-more-link .view-more-link a, .js-pager__items.pager .pager__item a.button, .js-pager__items.standard-more-link .pager__item a.button, .news-and-events--landing .js-pager__items.more-link .pager__item a.button, .js-pager__items.view-more-link .pager__item a.button, .js-pager__items.pager .blueRoundButton a.button, .js-pager__items.standard-more-link .blueRoundButton a.button, .news-and-events--landing .js-pager__items.more-link .blueRoundButton a.button, .js-pager__items.view-more-link .blueRoundButton a.button, .js-pager__items.pager .redRoundButton a.button, .js-pager__items.standard-more-link .redRoundButton a.button, .news-and-events--landing .js-pager__items.more-link .redRoundButton a.button, .js-pager__items.view-more-link .redRoundButton a.button, .js-pager__items.pager .standard-more-link a.button, .js-pager__items.standard-more-link .standard-more-link a.button, .news-and-events--landing .js-pager__items.more-link .standard-more-link a.button, .js-pager__items.view-more-link .standard-more-link a.button, .js-pager__items.pager .news-and-events--landing .more-link a.button, .news-and-events--landing .js-pager__items.pager .more-link a.button, .js-pager__items.standard-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .js-pager__items.standard-more-link .more-link a.button, .news-and-events--landing .js-pager__items.more-link .more-link a.button, .js-pager__items.view-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .js-pager__items.view-more-link .more-link a.button, .js-pager__items.pager .view-more-link a.button, .js-pager__items.standard-more-link .view-more-link a.button, .news-and-events--landing .js-pager__items.more-link .view-more-link a.button, .js-pager__items.view-more-link .view-more-link a.button {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  background-color: #1a568c;
  border: 1px solid #1a568c;
  -webkit-appearance: normal;
  -moz-appearance: normal;
  -ms-appearance: normal;
  -o-appearance: normal;
  appearance: normal;
  -webkit-appearance: none;
  appearance: none;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
}
@media all and (min-width: 1440px) {
  /* line 428, ../sass/_styleguide.scss */
  .blueRoundButton a, .redRoundButton a, .standard-more-link a, .news-and-events--landing .more-link a, .view-more-link a, .blueRoundButton a.button, .redRoundButton a.button, .standard-more-link a.button, .news-and-events--landing .more-link a.button, .view-more-link a.button, .js-pager__items.pager .pager__item a, .js-pager__items.standard-more-link .pager__item a, .news-and-events--landing .js-pager__items.more-link .pager__item a, .js-pager__items.view-more-link .pager__item a, .js-pager__items.pager .blueRoundButton a, .js-pager__items.standard-more-link .blueRoundButton a, .news-and-events--landing .js-pager__items.more-link .blueRoundButton a, .js-pager__items.view-more-link .blueRoundButton a, .js-pager__items.pager .redRoundButton a, .js-pager__items.standard-more-link .redRoundButton a, .news-and-events--landing .js-pager__items.more-link .redRoundButton a, .js-pager__items.view-more-link .redRoundButton a, .js-pager__items.pager .standard-more-link a, .js-pager__items.standard-more-link .standard-more-link a, .news-and-events--landing .js-pager__items.more-link .standard-more-link a, .js-pager__items.view-more-link .standard-more-link a, .js-pager__items.pager .news-and-events--landing .more-link a, .news-and-events--landing .js-pager__items.pager .more-link a, .js-pager__items.standard-more-link .news-and-events--landing .more-link a, .news-and-events--landing .js-pager__items.standard-more-link .more-link a, .news-and-events--landing .js-pager__items.more-link .more-link a, .js-pager__items.view-more-link .news-and-events--landing .more-link a, .news-and-events--landing .js-pager__items.view-more-link .more-link a, .js-pager__items.pager .view-more-link a, .js-pager__items.standard-more-link .view-more-link a, .news-and-events--landing .js-pager__items.more-link .view-more-link a, .js-pager__items.view-more-link .view-more-link a, .js-pager__items.pager .pager__item a.button, .js-pager__items.standard-more-link .pager__item a.button, .news-and-events--landing .js-pager__items.more-link .pager__item a.button, .js-pager__items.view-more-link .pager__item a.button, .js-pager__items.pager .blueRoundButton a.button, .js-pager__items.standard-more-link .blueRoundButton a.button, .news-and-events--landing .js-pager__items.more-link .blueRoundButton a.button, .js-pager__items.view-more-link .blueRoundButton a.button, .js-pager__items.pager .redRoundButton a.button, .js-pager__items.standard-more-link .redRoundButton a.button, .news-and-events--landing .js-pager__items.more-link .redRoundButton a.button, .js-pager__items.view-more-link .redRoundButton a.button, .js-pager__items.pager .standard-more-link a.button, .js-pager__items.standard-more-link .standard-more-link a.button, .news-and-events--landing .js-pager__items.more-link .standard-more-link a.button, .js-pager__items.view-more-link .standard-more-link a.button, .js-pager__items.pager .news-and-events--landing .more-link a.button, .news-and-events--landing .js-pager__items.pager .more-link a.button, .js-pager__items.standard-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .js-pager__items.standard-more-link .more-link a.button, .news-and-events--landing .js-pager__items.more-link .more-link a.button, .js-pager__items.view-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .js-pager__items.view-more-link .more-link a.button, .js-pager__items.pager .view-more-link a.button, .js-pager__items.standard-more-link .view-more-link a.button, .news-and-events--landing .js-pager__items.more-link .view-more-link a.button, .js-pager__items.view-more-link .view-more-link a.button {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 428, ../sass/_styleguide.scss */
  .blueRoundButton a, .redRoundButton a, .standard-more-link a, .news-and-events--landing .more-link a, .view-more-link a, .blueRoundButton a.button, .redRoundButton a.button, .standard-more-link a.button, .news-and-events--landing .more-link a.button, .view-more-link a.button, .js-pager__items.pager .pager__item a, .js-pager__items.standard-more-link .pager__item a, .news-and-events--landing .js-pager__items.more-link .pager__item a, .js-pager__items.view-more-link .pager__item a, .js-pager__items.pager .blueRoundButton a, .js-pager__items.standard-more-link .blueRoundButton a, .news-and-events--landing .js-pager__items.more-link .blueRoundButton a, .js-pager__items.view-more-link .blueRoundButton a, .js-pager__items.pager .redRoundButton a, .js-pager__items.standard-more-link .redRoundButton a, .news-and-events--landing .js-pager__items.more-link .redRoundButton a, .js-pager__items.view-more-link .redRoundButton a, .js-pager__items.pager .standard-more-link a, .js-pager__items.standard-more-link .standard-more-link a, .news-and-events--landing .js-pager__items.more-link .standard-more-link a, .js-pager__items.view-more-link .standard-more-link a, .js-pager__items.pager .news-and-events--landing .more-link a, .news-and-events--landing .js-pager__items.pager .more-link a, .js-pager__items.standard-more-link .news-and-events--landing .more-link a, .news-and-events--landing .js-pager__items.standard-more-link .more-link a, .news-and-events--landing .js-pager__items.more-link .more-link a, .js-pager__items.view-more-link .news-and-events--landing .more-link a, .news-and-events--landing .js-pager__items.view-more-link .more-link a, .js-pager__items.pager .view-more-link a, .js-pager__items.standard-more-link .view-more-link a, .news-and-events--landing .js-pager__items.more-link .view-more-link a, .js-pager__items.view-more-link .view-more-link a, .js-pager__items.pager .pager__item a.button, .js-pager__items.standard-more-link .pager__item a.button, .news-and-events--landing .js-pager__items.more-link .pager__item a.button, .js-pager__items.view-more-link .pager__item a.button, .js-pager__items.pager .blueRoundButton a.button, .js-pager__items.standard-more-link .blueRoundButton a.button, .news-and-events--landing .js-pager__items.more-link .blueRoundButton a.button, .js-pager__items.view-more-link .blueRoundButton a.button, .js-pager__items.pager .redRoundButton a.button, .js-pager__items.standard-more-link .redRoundButton a.button, .news-and-events--landing .js-pager__items.more-link .redRoundButton a.button, .js-pager__items.view-more-link .redRoundButton a.button, .js-pager__items.pager .standard-more-link a.button, .js-pager__items.standard-more-link .standard-more-link a.button, .news-and-events--landing .js-pager__items.more-link .standard-more-link a.button, .js-pager__items.view-more-link .standard-more-link a.button, .js-pager__items.pager .news-and-events--landing .more-link a.button, .news-and-events--landing .js-pager__items.pager .more-link a.button, .js-pager__items.standard-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .js-pager__items.standard-more-link .more-link a.button, .news-and-events--landing .js-pager__items.more-link .more-link a.button, .js-pager__items.view-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .js-pager__items.view-more-link .more-link a.button, .js-pager__items.pager .view-more-link a.button, .js-pager__items.standard-more-link .view-more-link a.button, .news-and-events--landing .js-pager__items.more-link .view-more-link a.button, .js-pager__items.view-more-link .view-more-link a.button {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 428, ../sass/_styleguide.scss */
  .blueRoundButton a, .redRoundButton a, .standard-more-link a, .news-and-events--landing .more-link a, .view-more-link a, .blueRoundButton a.button, .redRoundButton a.button, .standard-more-link a.button, .news-and-events--landing .more-link a.button, .view-more-link a.button, .js-pager__items.pager .pager__item a, .js-pager__items.standard-more-link .pager__item a, .news-and-events--landing .js-pager__items.more-link .pager__item a, .js-pager__items.view-more-link .pager__item a, .js-pager__items.pager .blueRoundButton a, .js-pager__items.standard-more-link .blueRoundButton a, .news-and-events--landing .js-pager__items.more-link .blueRoundButton a, .js-pager__items.view-more-link .blueRoundButton a, .js-pager__items.pager .redRoundButton a, .js-pager__items.standard-more-link .redRoundButton a, .news-and-events--landing .js-pager__items.more-link .redRoundButton a, .js-pager__items.view-more-link .redRoundButton a, .js-pager__items.pager .standard-more-link a, .js-pager__items.standard-more-link .standard-more-link a, .news-and-events--landing .js-pager__items.more-link .standard-more-link a, .js-pager__items.view-more-link .standard-more-link a, .js-pager__items.pager .news-and-events--landing .more-link a, .news-and-events--landing .js-pager__items.pager .more-link a, .js-pager__items.standard-more-link .news-and-events--landing .more-link a, .news-and-events--landing .js-pager__items.standard-more-link .more-link a, .news-and-events--landing .js-pager__items.more-link .more-link a, .js-pager__items.view-more-link .news-and-events--landing .more-link a, .news-and-events--landing .js-pager__items.view-more-link .more-link a, .js-pager__items.pager .view-more-link a, .js-pager__items.standard-more-link .view-more-link a, .news-and-events--landing .js-pager__items.more-link .view-more-link a, .js-pager__items.view-more-link .view-more-link a, .js-pager__items.pager .pager__item a.button, .js-pager__items.standard-more-link .pager__item a.button, .news-and-events--landing .js-pager__items.more-link .pager__item a.button, .js-pager__items.view-more-link .pager__item a.button, .js-pager__items.pager .blueRoundButton a.button, .js-pager__items.standard-more-link .blueRoundButton a.button, .news-and-events--landing .js-pager__items.more-link .blueRoundButton a.button, .js-pager__items.view-more-link .blueRoundButton a.button, .js-pager__items.pager .redRoundButton a.button, .js-pager__items.standard-more-link .redRoundButton a.button, .news-and-events--landing .js-pager__items.more-link .redRoundButton a.button, .js-pager__items.view-more-link .redRoundButton a.button, .js-pager__items.pager .standard-more-link a.button, .js-pager__items.standard-more-link .standard-more-link a.button, .news-and-events--landing .js-pager__items.more-link .standard-more-link a.button, .js-pager__items.view-more-link .standard-more-link a.button, .js-pager__items.pager .news-and-events--landing .more-link a.button, .news-and-events--landing .js-pager__items.pager .more-link a.button, .js-pager__items.standard-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .js-pager__items.standard-more-link .more-link a.button, .news-and-events--landing .js-pager__items.more-link .more-link a.button, .js-pager__items.view-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .js-pager__items.view-more-link .more-link a.button, .js-pager__items.pager .view-more-link a.button, .js-pager__items.standard-more-link .view-more-link a.button, .news-and-events--landing .js-pager__items.more-link .view-more-link a.button, .js-pager__items.view-more-link .view-more-link a.button {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 428, ../sass/_styleguide.scss */
  .blueRoundButton a, .redRoundButton a, .standard-more-link a, .news-and-events--landing .more-link a, .view-more-link a, .blueRoundButton a.button, .redRoundButton a.button, .standard-more-link a.button, .news-and-events--landing .more-link a.button, .view-more-link a.button, .js-pager__items.pager .pager__item a, .js-pager__items.standard-more-link .pager__item a, .news-and-events--landing .js-pager__items.more-link .pager__item a, .js-pager__items.view-more-link .pager__item a, .js-pager__items.pager .blueRoundButton a, .js-pager__items.standard-more-link .blueRoundButton a, .news-and-events--landing .js-pager__items.more-link .blueRoundButton a, .js-pager__items.view-more-link .blueRoundButton a, .js-pager__items.pager .redRoundButton a, .js-pager__items.standard-more-link .redRoundButton a, .news-and-events--landing .js-pager__items.more-link .redRoundButton a, .js-pager__items.view-more-link .redRoundButton a, .js-pager__items.pager .standard-more-link a, .js-pager__items.standard-more-link .standard-more-link a, .news-and-events--landing .js-pager__items.more-link .standard-more-link a, .js-pager__items.view-more-link .standard-more-link a, .js-pager__items.pager .news-and-events--landing .more-link a, .news-and-events--landing .js-pager__items.pager .more-link a, .js-pager__items.standard-more-link .news-and-events--landing .more-link a, .news-and-events--landing .js-pager__items.standard-more-link .more-link a, .news-and-events--landing .js-pager__items.more-link .more-link a, .js-pager__items.view-more-link .news-and-events--landing .more-link a, .news-and-events--landing .js-pager__items.view-more-link .more-link a, .js-pager__items.pager .view-more-link a, .js-pager__items.standard-more-link .view-more-link a, .news-and-events--landing .js-pager__items.more-link .view-more-link a, .js-pager__items.view-more-link .view-more-link a, .js-pager__items.pager .pager__item a.button, .js-pager__items.standard-more-link .pager__item a.button, .news-and-events--landing .js-pager__items.more-link .pager__item a.button, .js-pager__items.view-more-link .pager__item a.button, .js-pager__items.pager .blueRoundButton a.button, .js-pager__items.standard-more-link .blueRoundButton a.button, .news-and-events--landing .js-pager__items.more-link .blueRoundButton a.button, .js-pager__items.view-more-link .blueRoundButton a.button, .js-pager__items.pager .redRoundButton a.button, .js-pager__items.standard-more-link .redRoundButton a.button, .news-and-events--landing .js-pager__items.more-link .redRoundButton a.button, .js-pager__items.view-more-link .redRoundButton a.button, .js-pager__items.pager .standard-more-link a.button, .js-pager__items.standard-more-link .standard-more-link a.button, .news-and-events--landing .js-pager__items.more-link .standard-more-link a.button, .js-pager__items.view-more-link .standard-more-link a.button, .js-pager__items.pager .news-and-events--landing .more-link a.button, .news-and-events--landing .js-pager__items.pager .more-link a.button, .js-pager__items.standard-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .js-pager__items.standard-more-link .more-link a.button, .news-and-events--landing .js-pager__items.more-link .more-link a.button, .js-pager__items.view-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .js-pager__items.view-more-link .more-link a.button, .js-pager__items.pager .view-more-link a.button, .js-pager__items.standard-more-link .view-more-link a.button, .news-and-events--landing .js-pager__items.more-link .view-more-link a.button, .js-pager__items.view-more-link .view-more-link a.button {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.blueRoundButton a :hover, .redRoundButton a :hover, .standard-more-link a :hover, .news-and-events--landing .more-link a :hover, .view-more-link a :hover, .blueRoundButton a.button :hover, .redRoundButton a.button :hover, .standard-more-link a.button :hover, .news-and-events--landing .more-link a.button :hover, .view-more-link a.button :hover, .js-pager__items.pager .pager__item a :hover, .js-pager__items.standard-more-link .pager__item a :hover, .news-and-events--landing .js-pager__items.more-link .pager__item a :hover, .js-pager__items.view-more-link .pager__item a :hover, .js-pager__items.pager .blueRoundButton a :hover, .js-pager__items.standard-more-link .blueRoundButton a :hover, .news-and-events--landing .js-pager__items.more-link .blueRoundButton a :hover, .js-pager__items.view-more-link .blueRoundButton a :hover, .js-pager__items.pager .redRoundButton a :hover, .js-pager__items.standard-more-link .redRoundButton a :hover, .news-and-events--landing .js-pager__items.more-link .redRoundButton a :hover, .js-pager__items.view-more-link .redRoundButton a :hover, .js-pager__items.pager .standard-more-link a :hover, .js-pager__items.standard-more-link .standard-more-link a :hover, .news-and-events--landing .js-pager__items.more-link .standard-more-link a :hover, .js-pager__items.view-more-link .standard-more-link a :hover, .js-pager__items.pager .news-and-events--landing .more-link a :hover, .news-and-events--landing .js-pager__items.pager .more-link a :hover, .js-pager__items.standard-more-link .news-and-events--landing .more-link a :hover, .news-and-events--landing .js-pager__items.standard-more-link .more-link a :hover, .news-and-events--landing .js-pager__items.more-link .more-link a :hover, .js-pager__items.view-more-link .news-and-events--landing .more-link a :hover, .news-and-events--landing .js-pager__items.view-more-link .more-link a :hover, .js-pager__items.pager .view-more-link a :hover, .js-pager__items.standard-more-link .view-more-link a :hover, .news-and-events--landing .js-pager__items.more-link .view-more-link a :hover, .js-pager__items.view-more-link .view-more-link a :hover, .js-pager__items.pager .pager__item a.button :hover, .js-pager__items.standard-more-link .pager__item a.button :hover, .news-and-events--landing .js-pager__items.more-link .pager__item a.button :hover, .js-pager__items.view-more-link .pager__item a.button :hover, .js-pager__items.pager .blueRoundButton a.button :hover, .js-pager__items.standard-more-link .blueRoundButton a.button :hover, .news-and-events--landing .js-pager__items.more-link .blueRoundButton a.button :hover, .js-pager__items.view-more-link .blueRoundButton a.button :hover, .js-pager__items.pager .redRoundButton a.button :hover, .js-pager__items.standard-more-link .redRoundButton a.button :hover, .news-and-events--landing .js-pager__items.more-link .redRoundButton a.button :hover, .js-pager__items.view-more-link .redRoundButton a.button :hover, .js-pager__items.pager .standard-more-link a.button :hover, .js-pager__items.standard-more-link .standard-more-link a.button :hover, .news-and-events--landing .js-pager__items.more-link .standard-more-link a.button :hover, .js-pager__items.view-more-link .standard-more-link a.button :hover, .js-pager__items.pager .news-and-events--landing .more-link a.button :hover, .news-and-events--landing .js-pager__items.pager .more-link a.button :hover, .js-pager__items.standard-more-link .news-and-events--landing .more-link a.button :hover, .news-and-events--landing .js-pager__items.standard-more-link .more-link a.button :hover, .news-and-events--landing .js-pager__items.more-link .more-link a.button :hover, .js-pager__items.view-more-link .news-and-events--landing .more-link a.button :hover, .news-and-events--landing .js-pager__items.view-more-link .more-link a.button :hover, .js-pager__items.pager .view-more-link a.button :hover, .js-pager__items.standard-more-link .view-more-link a.button :hover, .news-and-events--landing .js-pager__items.more-link .view-more-link a.button :hover, .js-pager__items.view-more-link .view-more-link a.button :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 428, ../sass/_styleguide.scss */
  .blueRoundButton a, .redRoundButton a, .standard-more-link a, .news-and-events--landing .more-link a, .view-more-link a, .blueRoundButton a.button, .redRoundButton a.button, .standard-more-link a.button, .news-and-events--landing .more-link a.button, .view-more-link a.button, .js-pager__items.pager .pager__item a, .js-pager__items.standard-more-link .pager__item a, .news-and-events--landing .js-pager__items.more-link .pager__item a, .js-pager__items.view-more-link .pager__item a, .js-pager__items.pager .blueRoundButton a, .js-pager__items.standard-more-link .blueRoundButton a, .news-and-events--landing .js-pager__items.more-link .blueRoundButton a, .js-pager__items.view-more-link .blueRoundButton a, .js-pager__items.pager .redRoundButton a, .js-pager__items.standard-more-link .redRoundButton a, .news-and-events--landing .js-pager__items.more-link .redRoundButton a, .js-pager__items.view-more-link .redRoundButton a, .js-pager__items.pager .standard-more-link a, .js-pager__items.standard-more-link .standard-more-link a, .news-and-events--landing .js-pager__items.more-link .standard-more-link a, .js-pager__items.view-more-link .standard-more-link a, .js-pager__items.pager .news-and-events--landing .more-link a, .news-and-events--landing .js-pager__items.pager .more-link a, .js-pager__items.standard-more-link .news-and-events--landing .more-link a, .news-and-events--landing .js-pager__items.standard-more-link .more-link a, .news-and-events--landing .js-pager__items.more-link .more-link a, .js-pager__items.view-more-link .news-and-events--landing .more-link a, .news-and-events--landing .js-pager__items.view-more-link .more-link a, .js-pager__items.pager .view-more-link a, .js-pager__items.standard-more-link .view-more-link a, .news-and-events--landing .js-pager__items.more-link .view-more-link a, .js-pager__items.view-more-link .view-more-link a, .js-pager__items.pager .pager__item a.button, .js-pager__items.standard-more-link .pager__item a.button, .news-and-events--landing .js-pager__items.more-link .pager__item a.button, .js-pager__items.view-more-link .pager__item a.button, .js-pager__items.pager .blueRoundButton a.button, .js-pager__items.standard-more-link .blueRoundButton a.button, .news-and-events--landing .js-pager__items.more-link .blueRoundButton a.button, .js-pager__items.view-more-link .blueRoundButton a.button, .js-pager__items.pager .redRoundButton a.button, .js-pager__items.standard-more-link .redRoundButton a.button, .news-and-events--landing .js-pager__items.more-link .redRoundButton a.button, .js-pager__items.view-more-link .redRoundButton a.button, .js-pager__items.pager .standard-more-link a.button, .js-pager__items.standard-more-link .standard-more-link a.button, .news-and-events--landing .js-pager__items.more-link .standard-more-link a.button, .js-pager__items.view-more-link .standard-more-link a.button, .js-pager__items.pager .news-and-events--landing .more-link a.button, .news-and-events--landing .js-pager__items.pager .more-link a.button, .js-pager__items.standard-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .js-pager__items.standard-more-link .more-link a.button, .news-and-events--landing .js-pager__items.more-link .more-link a.button, .js-pager__items.view-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .js-pager__items.view-more-link .more-link a.button, .js-pager__items.pager .view-more-link a.button, .js-pager__items.standard-more-link .view-more-link a.button, .news-and-events--landing .js-pager__items.more-link .view-more-link a.button, .js-pager__items.view-more-link .view-more-link a.button {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 428, ../sass/_styleguide.scss */
  .blueRoundButton a, .redRoundButton a, .standard-more-link a, .news-and-events--landing .more-link a, .view-more-link a, .blueRoundButton a.button, .redRoundButton a.button, .standard-more-link a.button, .news-and-events--landing .more-link a.button, .view-more-link a.button, .js-pager__items.pager .pager__item a, .js-pager__items.standard-more-link .pager__item a, .news-and-events--landing .js-pager__items.more-link .pager__item a, .js-pager__items.view-more-link .pager__item a, .js-pager__items.pager .blueRoundButton a, .js-pager__items.standard-more-link .blueRoundButton a, .news-and-events--landing .js-pager__items.more-link .blueRoundButton a, .js-pager__items.view-more-link .blueRoundButton a, .js-pager__items.pager .redRoundButton a, .js-pager__items.standard-more-link .redRoundButton a, .news-and-events--landing .js-pager__items.more-link .redRoundButton a, .js-pager__items.view-more-link .redRoundButton a, .js-pager__items.pager .standard-more-link a, .js-pager__items.standard-more-link .standard-more-link a, .news-and-events--landing .js-pager__items.more-link .standard-more-link a, .js-pager__items.view-more-link .standard-more-link a, .js-pager__items.pager .news-and-events--landing .more-link a, .news-and-events--landing .js-pager__items.pager .more-link a, .js-pager__items.standard-more-link .news-and-events--landing .more-link a, .news-and-events--landing .js-pager__items.standard-more-link .more-link a, .news-and-events--landing .js-pager__items.more-link .more-link a, .js-pager__items.view-more-link .news-and-events--landing .more-link a, .news-and-events--landing .js-pager__items.view-more-link .more-link a, .js-pager__items.pager .view-more-link a, .js-pager__items.standard-more-link .view-more-link a, .news-and-events--landing .js-pager__items.more-link .view-more-link a, .js-pager__items.view-more-link .view-more-link a, .js-pager__items.pager .pager__item a.button, .js-pager__items.standard-more-link .pager__item a.button, .news-and-events--landing .js-pager__items.more-link .pager__item a.button, .js-pager__items.view-more-link .pager__item a.button, .js-pager__items.pager .blueRoundButton a.button, .js-pager__items.standard-more-link .blueRoundButton a.button, .news-and-events--landing .js-pager__items.more-link .blueRoundButton a.button, .js-pager__items.view-more-link .blueRoundButton a.button, .js-pager__items.pager .redRoundButton a.button, .js-pager__items.standard-more-link .redRoundButton a.button, .news-and-events--landing .js-pager__items.more-link .redRoundButton a.button, .js-pager__items.view-more-link .redRoundButton a.button, .js-pager__items.pager .standard-more-link a.button, .js-pager__items.standard-more-link .standard-more-link a.button, .news-and-events--landing .js-pager__items.more-link .standard-more-link a.button, .js-pager__items.view-more-link .standard-more-link a.button, .js-pager__items.pager .news-and-events--landing .more-link a.button, .news-and-events--landing .js-pager__items.pager .more-link a.button, .js-pager__items.standard-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .js-pager__items.standard-more-link .more-link a.button, .news-and-events--landing .js-pager__items.more-link .more-link a.button, .js-pager__items.view-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .js-pager__items.view-more-link .more-link a.button, .js-pager__items.pager .view-more-link a.button, .js-pager__items.standard-more-link .view-more-link a.button, .news-and-events--landing .js-pager__items.more-link .view-more-link a.button, .js-pager__items.view-more-link .view-more-link a.button {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 428, ../sass/_styleguide.scss */
  .blueRoundButton a, .redRoundButton a, .standard-more-link a, .news-and-events--landing .more-link a, .view-more-link a, .blueRoundButton a.button, .redRoundButton a.button, .standard-more-link a.button, .news-and-events--landing .more-link a.button, .view-more-link a.button, .js-pager__items.pager .pager__item a, .js-pager__items.standard-more-link .pager__item a, .news-and-events--landing .js-pager__items.more-link .pager__item a, .js-pager__items.view-more-link .pager__item a, .js-pager__items.pager .blueRoundButton a, .js-pager__items.standard-more-link .blueRoundButton a, .news-and-events--landing .js-pager__items.more-link .blueRoundButton a, .js-pager__items.view-more-link .blueRoundButton a, .js-pager__items.pager .redRoundButton a, .js-pager__items.standard-more-link .redRoundButton a, .news-and-events--landing .js-pager__items.more-link .redRoundButton a, .js-pager__items.view-more-link .redRoundButton a, .js-pager__items.pager .standard-more-link a, .js-pager__items.standard-more-link .standard-more-link a, .news-and-events--landing .js-pager__items.more-link .standard-more-link a, .js-pager__items.view-more-link .standard-more-link a, .js-pager__items.pager .news-and-events--landing .more-link a, .news-and-events--landing .js-pager__items.pager .more-link a, .js-pager__items.standard-more-link .news-and-events--landing .more-link a, .news-and-events--landing .js-pager__items.standard-more-link .more-link a, .news-and-events--landing .js-pager__items.more-link .more-link a, .js-pager__items.view-more-link .news-and-events--landing .more-link a, .news-and-events--landing .js-pager__items.view-more-link .more-link a, .js-pager__items.pager .view-more-link a, .js-pager__items.standard-more-link .view-more-link a, .news-and-events--landing .js-pager__items.more-link .view-more-link a, .js-pager__items.view-more-link .view-more-link a, .js-pager__items.pager .pager__item a.button, .js-pager__items.standard-more-link .pager__item a.button, .news-and-events--landing .js-pager__items.more-link .pager__item a.button, .js-pager__items.view-more-link .pager__item a.button, .js-pager__items.pager .blueRoundButton a.button, .js-pager__items.standard-more-link .blueRoundButton a.button, .news-and-events--landing .js-pager__items.more-link .blueRoundButton a.button, .js-pager__items.view-more-link .blueRoundButton a.button, .js-pager__items.pager .redRoundButton a.button, .js-pager__items.standard-more-link .redRoundButton a.button, .news-and-events--landing .js-pager__items.more-link .redRoundButton a.button, .js-pager__items.view-more-link .redRoundButton a.button, .js-pager__items.pager .standard-more-link a.button, .js-pager__items.standard-more-link .standard-more-link a.button, .news-and-events--landing .js-pager__items.more-link .standard-more-link a.button, .js-pager__items.view-more-link .standard-more-link a.button, .js-pager__items.pager .news-and-events--landing .more-link a.button, .news-and-events--landing .js-pager__items.pager .more-link a.button, .js-pager__items.standard-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .js-pager__items.standard-more-link .more-link a.button, .news-and-events--landing .js-pager__items.more-link .more-link a.button, .js-pager__items.view-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .js-pager__items.view-more-link .more-link a.button, .js-pager__items.pager .view-more-link a.button, .js-pager__items.standard-more-link .view-more-link a.button, .news-and-events--landing .js-pager__items.more-link .view-more-link a.button, .js-pager__items.view-more-link .view-more-link a.button {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 428, ../sass/_styleguide.scss */
  .blueRoundButton a, .redRoundButton a, .standard-more-link a, .news-and-events--landing .more-link a, .view-more-link a, .blueRoundButton a.button, .redRoundButton a.button, .standard-more-link a.button, .news-and-events--landing .more-link a.button, .view-more-link a.button, .js-pager__items.pager .pager__item a, .js-pager__items.standard-more-link .pager__item a, .news-and-events--landing .js-pager__items.more-link .pager__item a, .js-pager__items.view-more-link .pager__item a, .js-pager__items.pager .blueRoundButton a, .js-pager__items.standard-more-link .blueRoundButton a, .news-and-events--landing .js-pager__items.more-link .blueRoundButton a, .js-pager__items.view-more-link .blueRoundButton a, .js-pager__items.pager .redRoundButton a, .js-pager__items.standard-more-link .redRoundButton a, .news-and-events--landing .js-pager__items.more-link .redRoundButton a, .js-pager__items.view-more-link .redRoundButton a, .js-pager__items.pager .standard-more-link a, .js-pager__items.standard-more-link .standard-more-link a, .news-and-events--landing .js-pager__items.more-link .standard-more-link a, .js-pager__items.view-more-link .standard-more-link a, .js-pager__items.pager .news-and-events--landing .more-link a, .news-and-events--landing .js-pager__items.pager .more-link a, .js-pager__items.standard-more-link .news-and-events--landing .more-link a, .news-and-events--landing .js-pager__items.standard-more-link .more-link a, .news-and-events--landing .js-pager__items.more-link .more-link a, .js-pager__items.view-more-link .news-and-events--landing .more-link a, .news-and-events--landing .js-pager__items.view-more-link .more-link a, .js-pager__items.pager .view-more-link a, .js-pager__items.standard-more-link .view-more-link a, .news-and-events--landing .js-pager__items.more-link .view-more-link a, .js-pager__items.view-more-link .view-more-link a, .js-pager__items.pager .pager__item a.button, .js-pager__items.standard-more-link .pager__item a.button, .news-and-events--landing .js-pager__items.more-link .pager__item a.button, .js-pager__items.view-more-link .pager__item a.button, .js-pager__items.pager .blueRoundButton a.button, .js-pager__items.standard-more-link .blueRoundButton a.button, .news-and-events--landing .js-pager__items.more-link .blueRoundButton a.button, .js-pager__items.view-more-link .blueRoundButton a.button, .js-pager__items.pager .redRoundButton a.button, .js-pager__items.standard-more-link .redRoundButton a.button, .news-and-events--landing .js-pager__items.more-link .redRoundButton a.button, .js-pager__items.view-more-link .redRoundButton a.button, .js-pager__items.pager .standard-more-link a.button, .js-pager__items.standard-more-link .standard-more-link a.button, .news-and-events--landing .js-pager__items.more-link .standard-more-link a.button, .js-pager__items.view-more-link .standard-more-link a.button, .js-pager__items.pager .news-and-events--landing .more-link a.button, .news-and-events--landing .js-pager__items.pager .more-link a.button, .js-pager__items.standard-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .js-pager__items.standard-more-link .more-link a.button, .news-and-events--landing .js-pager__items.more-link .more-link a.button, .js-pager__items.view-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .js-pager__items.view-more-link .more-link a.button, .js-pager__items.pager .view-more-link a.button, .js-pager__items.standard-more-link .view-more-link a.button, .news-and-events--landing .js-pager__items.more-link .view-more-link a.button, .js-pager__items.view-more-link .view-more-link a.button {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 428, ../sass/_styleguide.scss */
  .blueRoundButton a, .redRoundButton a, .standard-more-link a, .news-and-events--landing .more-link a, .view-more-link a, .blueRoundButton a.button, .redRoundButton a.button, .standard-more-link a.button, .news-and-events--landing .more-link a.button, .view-more-link a.button, .js-pager__items.pager .pager__item a, .js-pager__items.standard-more-link .pager__item a, .news-and-events--landing .js-pager__items.more-link .pager__item a, .js-pager__items.view-more-link .pager__item a, .js-pager__items.pager .blueRoundButton a, .js-pager__items.standard-more-link .blueRoundButton a, .news-and-events--landing .js-pager__items.more-link .blueRoundButton a, .js-pager__items.view-more-link .blueRoundButton a, .js-pager__items.pager .redRoundButton a, .js-pager__items.standard-more-link .redRoundButton a, .news-and-events--landing .js-pager__items.more-link .redRoundButton a, .js-pager__items.view-more-link .redRoundButton a, .js-pager__items.pager .standard-more-link a, .js-pager__items.standard-more-link .standard-more-link a, .news-and-events--landing .js-pager__items.more-link .standard-more-link a, .js-pager__items.view-more-link .standard-more-link a, .js-pager__items.pager .news-and-events--landing .more-link a, .news-and-events--landing .js-pager__items.pager .more-link a, .js-pager__items.standard-more-link .news-and-events--landing .more-link a, .news-and-events--landing .js-pager__items.standard-more-link .more-link a, .news-and-events--landing .js-pager__items.more-link .more-link a, .js-pager__items.view-more-link .news-and-events--landing .more-link a, .news-and-events--landing .js-pager__items.view-more-link .more-link a, .js-pager__items.pager .view-more-link a, .js-pager__items.standard-more-link .view-more-link a, .news-and-events--landing .js-pager__items.more-link .view-more-link a, .js-pager__items.view-more-link .view-more-link a, .js-pager__items.pager .pager__item a.button, .js-pager__items.standard-more-link .pager__item a.button, .news-and-events--landing .js-pager__items.more-link .pager__item a.button, .js-pager__items.view-more-link .pager__item a.button, .js-pager__items.pager .blueRoundButton a.button, .js-pager__items.standard-more-link .blueRoundButton a.button, .news-and-events--landing .js-pager__items.more-link .blueRoundButton a.button, .js-pager__items.view-more-link .blueRoundButton a.button, .js-pager__items.pager .redRoundButton a.button, .js-pager__items.standard-more-link .redRoundButton a.button, .news-and-events--landing .js-pager__items.more-link .redRoundButton a.button, .js-pager__items.view-more-link .redRoundButton a.button, .js-pager__items.pager .standard-more-link a.button, .js-pager__items.standard-more-link .standard-more-link a.button, .news-and-events--landing .js-pager__items.more-link .standard-more-link a.button, .js-pager__items.view-more-link .standard-more-link a.button, .js-pager__items.pager .news-and-events--landing .more-link a.button, .news-and-events--landing .js-pager__items.pager .more-link a.button, .js-pager__items.standard-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .js-pager__items.standard-more-link .more-link a.button, .news-and-events--landing .js-pager__items.more-link .more-link a.button, .js-pager__items.view-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .js-pager__items.view-more-link .more-link a.button, .js-pager__items.pager .view-more-link a.button, .js-pager__items.standard-more-link .view-more-link a.button, .news-and-events--landing .js-pager__items.more-link .view-more-link a.button, .js-pager__items.view-more-link .view-more-link a.button {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.blueRoundButton a:hover, .redRoundButton a:hover, .standard-more-link a:hover, .news-and-events--landing .more-link a:hover, .view-more-link a:hover, .blueRoundButton a.button:hover, .redRoundButton a.button:hover, .standard-more-link a.button:hover, .news-and-events--landing .more-link a.button:hover, .view-more-link a.button:hover, .js-pager__items.pager .pager__item a:hover, .js-pager__items.standard-more-link .pager__item a:hover, .news-and-events--landing .js-pager__items.more-link .pager__item a:hover, .js-pager__items.view-more-link .pager__item a:hover, .js-pager__items.pager .blueRoundButton a:hover, .js-pager__items.standard-more-link .blueRoundButton a:hover, .news-and-events--landing .js-pager__items.more-link .blueRoundButton a:hover, .js-pager__items.view-more-link .blueRoundButton a:hover, .js-pager__items.pager .redRoundButton a:hover, .js-pager__items.standard-more-link .redRoundButton a:hover, .news-and-events--landing .js-pager__items.more-link .redRoundButton a:hover, .js-pager__items.view-more-link .redRoundButton a:hover, .js-pager__items.pager .standard-more-link a:hover, .js-pager__items.standard-more-link .standard-more-link a:hover, .news-and-events--landing .js-pager__items.more-link .standard-more-link a:hover, .js-pager__items.view-more-link .standard-more-link a:hover, .js-pager__items.pager .news-and-events--landing .more-link a:hover, .news-and-events--landing .js-pager__items.pager .more-link a:hover, .js-pager__items.standard-more-link .news-and-events--landing .more-link a:hover, .news-and-events--landing .js-pager__items.standard-more-link .more-link a:hover, .news-and-events--landing .js-pager__items.more-link .more-link a:hover, .js-pager__items.view-more-link .news-and-events--landing .more-link a:hover, .news-and-events--landing .js-pager__items.view-more-link .more-link a:hover, .js-pager__items.pager .view-more-link a:hover, .js-pager__items.standard-more-link .view-more-link a:hover, .news-and-events--landing .js-pager__items.more-link .view-more-link a:hover, .js-pager__items.view-more-link .view-more-link a:hover, .js-pager__items.pager .pager__item a.button:hover, .js-pager__items.standard-more-link .pager__item a.button:hover, .news-and-events--landing .js-pager__items.more-link .pager__item a.button:hover, .js-pager__items.view-more-link .pager__item a.button:hover, .js-pager__items.pager .blueRoundButton a.button:hover, .js-pager__items.standard-more-link .blueRoundButton a.button:hover, .news-and-events--landing .js-pager__items.more-link .blueRoundButton a.button:hover, .js-pager__items.view-more-link .blueRoundButton a.button:hover, .js-pager__items.pager .redRoundButton a.button:hover, .js-pager__items.standard-more-link .redRoundButton a.button:hover, .news-and-events--landing .js-pager__items.more-link .redRoundButton a.button:hover, .js-pager__items.view-more-link .redRoundButton a.button:hover, .js-pager__items.pager .standard-more-link a.button:hover, .js-pager__items.standard-more-link .standard-more-link a.button:hover, .news-and-events--landing .js-pager__items.more-link .standard-more-link a.button:hover, .js-pager__items.view-more-link .standard-more-link a.button:hover, .js-pager__items.pager .news-and-events--landing .more-link a.button:hover, .news-and-events--landing .js-pager__items.pager .more-link a.button:hover, .js-pager__items.standard-more-link .news-and-events--landing .more-link a.button:hover, .news-and-events--landing .js-pager__items.standard-more-link .more-link a.button:hover, .news-and-events--landing .js-pager__items.more-link .more-link a.button:hover, .js-pager__items.view-more-link .news-and-events--landing .more-link a.button:hover, .news-and-events--landing .js-pager__items.view-more-link .more-link a.button:hover, .js-pager__items.pager .view-more-link a.button:hover, .js-pager__items.standard-more-link .view-more-link a.button:hover, .news-and-events--landing .js-pager__items.more-link .view-more-link a.button:hover, .js-pager__items.view-more-link .view-more-link a.button:hover {
  background-color: #102d66;
  border-color: #102d66;
  color: #fff;
  text-decoration: none;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 428, ../sass/_styleguide.scss */
  .blueRoundButton a, .redRoundButton a, .standard-more-link a, .news-and-events--landing .more-link a, .view-more-link a, .blueRoundButton a.button, .redRoundButton a.button, .standard-more-link a.button, .news-and-events--landing .more-link a.button, .view-more-link a.button, .js-pager__items.pager .pager__item a, .js-pager__items.standard-more-link .pager__item a, .news-and-events--landing .js-pager__items.more-link .pager__item a, .js-pager__items.view-more-link .pager__item a, .js-pager__items.pager .blueRoundButton a, .js-pager__items.standard-more-link .blueRoundButton a, .news-and-events--landing .js-pager__items.more-link .blueRoundButton a, .js-pager__items.view-more-link .blueRoundButton a, .js-pager__items.pager .redRoundButton a, .js-pager__items.standard-more-link .redRoundButton a, .news-and-events--landing .js-pager__items.more-link .redRoundButton a, .js-pager__items.view-more-link .redRoundButton a, .js-pager__items.pager .standard-more-link a, .js-pager__items.standard-more-link .standard-more-link a, .news-and-events--landing .js-pager__items.more-link .standard-more-link a, .js-pager__items.view-more-link .standard-more-link a, .js-pager__items.pager .news-and-events--landing .more-link a, .news-and-events--landing .js-pager__items.pager .more-link a, .js-pager__items.standard-more-link .news-and-events--landing .more-link a, .news-and-events--landing .js-pager__items.standard-more-link .more-link a, .news-and-events--landing .js-pager__items.more-link .more-link a, .js-pager__items.view-more-link .news-and-events--landing .more-link a, .news-and-events--landing .js-pager__items.view-more-link .more-link a, .js-pager__items.pager .view-more-link a, .js-pager__items.standard-more-link .view-more-link a, .news-and-events--landing .js-pager__items.more-link .view-more-link a, .js-pager__items.view-more-link .view-more-link a, .js-pager__items.pager .pager__item a.button, .js-pager__items.standard-more-link .pager__item a.button, .news-and-events--landing .js-pager__items.more-link .pager__item a.button, .js-pager__items.view-more-link .pager__item a.button, .js-pager__items.pager .blueRoundButton a.button, .js-pager__items.standard-more-link .blueRoundButton a.button, .news-and-events--landing .js-pager__items.more-link .blueRoundButton a.button, .js-pager__items.view-more-link .blueRoundButton a.button, .js-pager__items.pager .redRoundButton a.button, .js-pager__items.standard-more-link .redRoundButton a.button, .news-and-events--landing .js-pager__items.more-link .redRoundButton a.button, .js-pager__items.view-more-link .redRoundButton a.button, .js-pager__items.pager .standard-more-link a.button, .js-pager__items.standard-more-link .standard-more-link a.button, .news-and-events--landing .js-pager__items.more-link .standard-more-link a.button, .js-pager__items.view-more-link .standard-more-link a.button, .js-pager__items.pager .news-and-events--landing .more-link a.button, .news-and-events--landing .js-pager__items.pager .more-link a.button, .js-pager__items.standard-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .js-pager__items.standard-more-link .more-link a.button, .news-and-events--landing .js-pager__items.more-link .more-link a.button, .js-pager__items.view-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .js-pager__items.view-more-link .more-link a.button, .js-pager__items.pager .view-more-link a.button, .js-pager__items.standard-more-link .view-more-link a.button, .news-and-events--landing .js-pager__items.more-link .view-more-link a.button, .js-pager__items.view-more-link .view-more-link a.button {
    clear: both;
    margin: 1em auto;
  }
}

/* line 439, ../sass/_styleguide.scss */
.blueRoundButton, .redRoundButton, .standard-more-link, .news-and-events--landing .more-link, .view-more-link {
  font-size: 1rem;
}
@media all and (min-width: 1440px) {
  /* line 439, ../sass/_styleguide.scss */
  .blueRoundButton, .redRoundButton, .standard-more-link, .news-and-events--landing .more-link, .view-more-link {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 439, ../sass/_styleguide.scss */
  .blueRoundButton, .redRoundButton, .standard-more-link, .news-and-events--landing .more-link, .view-more-link {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 439, ../sass/_styleguide.scss */
  .blueRoundButton, .redRoundButton, .standard-more-link, .news-and-events--landing .more-link, .view-more-link {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 439, ../sass/_styleguide.scss */
  .blueRoundButton, .redRoundButton, .standard-more-link, .news-and-events--landing .more-link, .view-more-link {
    font-size: 1rem;
  }
}

/* line 444, ../sass/_styleguide.scss */
.redRoundButton {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 444, ../sass/_styleguide.scss */
  .redRoundButton {
    margin-top: 0.75em;
    margin-bottom: 0.75em;
  }
}
/* line 1535, ../sass/_mixins.scss */
.redRoundButton a {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  background-color: #bf0d2e;
  border: 1px solid #bf0d2e;
  padding: 0.8em 3em;
}
@media all and (min-width: 1440px) {
  /* line 1535, ../sass/_mixins.scss */
  .redRoundButton a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1535, ../sass/_mixins.scss */
  .redRoundButton a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .redRoundButton a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1535, ../sass/_mixins.scss */
  .redRoundButton a {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.redRoundButton a :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 1535, ../sass/_mixins.scss */
  .redRoundButton a {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1535, ../sass/_mixins.scss */
  .redRoundButton a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .redRoundButton a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1535, ../sass/_mixins.scss */
  .redRoundButton a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .redRoundButton a {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.redRoundButton a:hover {
  background-color: #850920;
  border-color: #850920;
  color: #fff;
  text-decoration: none;
}
/* line 1539, ../sass/_mixins.scss */
.redRoundButton a:focus {
  outline: #fff dotted 3px !important;
}

/* line 452, ../sass/_styleguide.scss */
.darkBlueBackground .js-pager__items.pager .pager__item a, .darkBlueBackground .js-pager__items.standard-more-link .pager__item a, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .pager__item a, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .pager__item a, .darkBlueBackground .js-pager__items.view-more-link .pager__item a, .darkBlueBackground .js-pager__items.pager .blueRoundButton a, .darkBlueBackground .js-pager__items.standard-more-link .blueRoundButton a, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .blueRoundButton a, .darkBlueBackground .js-pager__items.view-more-link .blueRoundButton a, .darkBlueBackground .js-pager__items.pager .redRoundButton a, .darkBlueBackground .js-pager__items.standard-more-link .redRoundButton a, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .redRoundButton a, .darkBlueBackground .js-pager__items.view-more-link .redRoundButton a, .darkBlueBackground .js-pager__items.pager .standard-more-link a, .darkBlueBackground .js-pager__items.standard-more-link .standard-more-link a, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .standard-more-link a, .darkBlueBackground .js-pager__items.view-more-link .standard-more-link a, .darkBlueBackground .js-pager__items.pager .news-and-events--landing .more-link a, .news-and-events--landing .darkBlueBackground .js-pager__items.pager .more-link a, .darkBlueBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a, .news-and-events--landing .darkBlueBackground .js-pager__items.standard-more-link .more-link a, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .more-link a, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .more-link a, .darkBlueBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a, .news-and-events--landing .darkBlueBackground .js-pager__items.view-more-link .more-link a, .darkBlueBackground .js-pager__items.pager .view-more-link a, .darkBlueBackground .js-pager__items.standard-more-link .view-more-link a, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .view-more-link a, .darkBlueBackground .js-pager__items.view-more-link .view-more-link a, .darkBlueBackground .js-pager__items.pager .pager__item a.button, .darkBlueBackground .js-pager__items.standard-more-link .pager__item a.button, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .pager__item a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .pager__item a.button, .darkBlueBackground .js-pager__items.view-more-link .pager__item a.button, .darkBlueBackground .js-pager__items.pager .blueRoundButton a.button, .darkBlueBackground .js-pager__items.standard-more-link .blueRoundButton a.button, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .blueRoundButton a.button, .darkBlueBackground .js-pager__items.view-more-link .blueRoundButton a.button, .darkBlueBackground .js-pager__items.pager .redRoundButton a.button, .darkBlueBackground .js-pager__items.standard-more-link .redRoundButton a.button, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .redRoundButton a.button, .darkBlueBackground .js-pager__items.view-more-link .redRoundButton a.button, .darkBlueBackground .js-pager__items.pager .standard-more-link a.button, .darkBlueBackground .js-pager__items.standard-more-link .standard-more-link a.button, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .standard-more-link a.button, .darkBlueBackground .js-pager__items.view-more-link .standard-more-link a.button, .darkBlueBackground .js-pager__items.pager .news-and-events--landing .more-link a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.pager .more-link a.button, .darkBlueBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.standard-more-link .more-link a.button, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .more-link a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .more-link a.button, .darkBlueBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.view-more-link .more-link a.button, .darkBlueBackground .js-pager__items.pager .view-more-link a.button, .darkBlueBackground .js-pager__items.standard-more-link .view-more-link a.button, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .view-more-link a.button, .darkBlueBackground .js-pager__items.view-more-link .view-more-link a.button {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #1a568c;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #fff;
  padding: 0.8em 3em;
  display: table !important;
  background-image: none;
}
@media all and (min-width: 1440px) {
  /* line 452, ../sass/_styleguide.scss */
  .darkBlueBackground .js-pager__items.pager .pager__item a, .darkBlueBackground .js-pager__items.standard-more-link .pager__item a, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .pager__item a, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .pager__item a, .darkBlueBackground .js-pager__items.view-more-link .pager__item a, .darkBlueBackground .js-pager__items.pager .blueRoundButton a, .darkBlueBackground .js-pager__items.standard-more-link .blueRoundButton a, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .blueRoundButton a, .darkBlueBackground .js-pager__items.view-more-link .blueRoundButton a, .darkBlueBackground .js-pager__items.pager .redRoundButton a, .darkBlueBackground .js-pager__items.standard-more-link .redRoundButton a, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .redRoundButton a, .darkBlueBackground .js-pager__items.view-more-link .redRoundButton a, .darkBlueBackground .js-pager__items.pager .standard-more-link a, .darkBlueBackground .js-pager__items.standard-more-link .standard-more-link a, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .standard-more-link a, .darkBlueBackground .js-pager__items.view-more-link .standard-more-link a, .darkBlueBackground .js-pager__items.pager .news-and-events--landing .more-link a, .news-and-events--landing .darkBlueBackground .js-pager__items.pager .more-link a, .darkBlueBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a, .news-and-events--landing .darkBlueBackground .js-pager__items.standard-more-link .more-link a, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .more-link a, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .more-link a, .darkBlueBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a, .news-and-events--landing .darkBlueBackground .js-pager__items.view-more-link .more-link a, .darkBlueBackground .js-pager__items.pager .view-more-link a, .darkBlueBackground .js-pager__items.standard-more-link .view-more-link a, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .view-more-link a, .darkBlueBackground .js-pager__items.view-more-link .view-more-link a, .darkBlueBackground .js-pager__items.pager .pager__item a.button, .darkBlueBackground .js-pager__items.standard-more-link .pager__item a.button, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .pager__item a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .pager__item a.button, .darkBlueBackground .js-pager__items.view-more-link .pager__item a.button, .darkBlueBackground .js-pager__items.pager .blueRoundButton a.button, .darkBlueBackground .js-pager__items.standard-more-link .blueRoundButton a.button, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .blueRoundButton a.button, .darkBlueBackground .js-pager__items.view-more-link .blueRoundButton a.button, .darkBlueBackground .js-pager__items.pager .redRoundButton a.button, .darkBlueBackground .js-pager__items.standard-more-link .redRoundButton a.button, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .redRoundButton a.button, .darkBlueBackground .js-pager__items.view-more-link .redRoundButton a.button, .darkBlueBackground .js-pager__items.pager .standard-more-link a.button, .darkBlueBackground .js-pager__items.standard-more-link .standard-more-link a.button, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .standard-more-link a.button, .darkBlueBackground .js-pager__items.view-more-link .standard-more-link a.button, .darkBlueBackground .js-pager__items.pager .news-and-events--landing .more-link a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.pager .more-link a.button, .darkBlueBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.standard-more-link .more-link a.button, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .more-link a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .more-link a.button, .darkBlueBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.view-more-link .more-link a.button, .darkBlueBackground .js-pager__items.pager .view-more-link a.button, .darkBlueBackground .js-pager__items.standard-more-link .view-more-link a.button, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .view-more-link a.button, .darkBlueBackground .js-pager__items.view-more-link .view-more-link a.button {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 452, ../sass/_styleguide.scss */
  .darkBlueBackground .js-pager__items.pager .pager__item a, .darkBlueBackground .js-pager__items.standard-more-link .pager__item a, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .pager__item a, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .pager__item a, .darkBlueBackground .js-pager__items.view-more-link .pager__item a, .darkBlueBackground .js-pager__items.pager .blueRoundButton a, .darkBlueBackground .js-pager__items.standard-more-link .blueRoundButton a, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .blueRoundButton a, .darkBlueBackground .js-pager__items.view-more-link .blueRoundButton a, .darkBlueBackground .js-pager__items.pager .redRoundButton a, .darkBlueBackground .js-pager__items.standard-more-link .redRoundButton a, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .redRoundButton a, .darkBlueBackground .js-pager__items.view-more-link .redRoundButton a, .darkBlueBackground .js-pager__items.pager .standard-more-link a, .darkBlueBackground .js-pager__items.standard-more-link .standard-more-link a, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .standard-more-link a, .darkBlueBackground .js-pager__items.view-more-link .standard-more-link a, .darkBlueBackground .js-pager__items.pager .news-and-events--landing .more-link a, .news-and-events--landing .darkBlueBackground .js-pager__items.pager .more-link a, .darkBlueBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a, .news-and-events--landing .darkBlueBackground .js-pager__items.standard-more-link .more-link a, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .more-link a, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .more-link a, .darkBlueBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a, .news-and-events--landing .darkBlueBackground .js-pager__items.view-more-link .more-link a, .darkBlueBackground .js-pager__items.pager .view-more-link a, .darkBlueBackground .js-pager__items.standard-more-link .view-more-link a, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .view-more-link a, .darkBlueBackground .js-pager__items.view-more-link .view-more-link a, .darkBlueBackground .js-pager__items.pager .pager__item a.button, .darkBlueBackground .js-pager__items.standard-more-link .pager__item a.button, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .pager__item a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .pager__item a.button, .darkBlueBackground .js-pager__items.view-more-link .pager__item a.button, .darkBlueBackground .js-pager__items.pager .blueRoundButton a.button, .darkBlueBackground .js-pager__items.standard-more-link .blueRoundButton a.button, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .blueRoundButton a.button, .darkBlueBackground .js-pager__items.view-more-link .blueRoundButton a.button, .darkBlueBackground .js-pager__items.pager .redRoundButton a.button, .darkBlueBackground .js-pager__items.standard-more-link .redRoundButton a.button, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .redRoundButton a.button, .darkBlueBackground .js-pager__items.view-more-link .redRoundButton a.button, .darkBlueBackground .js-pager__items.pager .standard-more-link a.button, .darkBlueBackground .js-pager__items.standard-more-link .standard-more-link a.button, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .standard-more-link a.button, .darkBlueBackground .js-pager__items.view-more-link .standard-more-link a.button, .darkBlueBackground .js-pager__items.pager .news-and-events--landing .more-link a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.pager .more-link a.button, .darkBlueBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.standard-more-link .more-link a.button, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .more-link a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .more-link a.button, .darkBlueBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.view-more-link .more-link a.button, .darkBlueBackground .js-pager__items.pager .view-more-link a.button, .darkBlueBackground .js-pager__items.standard-more-link .view-more-link a.button, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .view-more-link a.button, .darkBlueBackground .js-pager__items.view-more-link .view-more-link a.button {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 452, ../sass/_styleguide.scss */
  .darkBlueBackground .js-pager__items.pager .pager__item a, .darkBlueBackground .js-pager__items.standard-more-link .pager__item a, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .pager__item a, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .pager__item a, .darkBlueBackground .js-pager__items.view-more-link .pager__item a, .darkBlueBackground .js-pager__items.pager .blueRoundButton a, .darkBlueBackground .js-pager__items.standard-more-link .blueRoundButton a, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .blueRoundButton a, .darkBlueBackground .js-pager__items.view-more-link .blueRoundButton a, .darkBlueBackground .js-pager__items.pager .redRoundButton a, .darkBlueBackground .js-pager__items.standard-more-link .redRoundButton a, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .redRoundButton a, .darkBlueBackground .js-pager__items.view-more-link .redRoundButton a, .darkBlueBackground .js-pager__items.pager .standard-more-link a, .darkBlueBackground .js-pager__items.standard-more-link .standard-more-link a, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .standard-more-link a, .darkBlueBackground .js-pager__items.view-more-link .standard-more-link a, .darkBlueBackground .js-pager__items.pager .news-and-events--landing .more-link a, .news-and-events--landing .darkBlueBackground .js-pager__items.pager .more-link a, .darkBlueBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a, .news-and-events--landing .darkBlueBackground .js-pager__items.standard-more-link .more-link a, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .more-link a, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .more-link a, .darkBlueBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a, .news-and-events--landing .darkBlueBackground .js-pager__items.view-more-link .more-link a, .darkBlueBackground .js-pager__items.pager .view-more-link a, .darkBlueBackground .js-pager__items.standard-more-link .view-more-link a, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .view-more-link a, .darkBlueBackground .js-pager__items.view-more-link .view-more-link a, .darkBlueBackground .js-pager__items.pager .pager__item a.button, .darkBlueBackground .js-pager__items.standard-more-link .pager__item a.button, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .pager__item a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .pager__item a.button, .darkBlueBackground .js-pager__items.view-more-link .pager__item a.button, .darkBlueBackground .js-pager__items.pager .blueRoundButton a.button, .darkBlueBackground .js-pager__items.standard-more-link .blueRoundButton a.button, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .blueRoundButton a.button, .darkBlueBackground .js-pager__items.view-more-link .blueRoundButton a.button, .darkBlueBackground .js-pager__items.pager .redRoundButton a.button, .darkBlueBackground .js-pager__items.standard-more-link .redRoundButton a.button, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .redRoundButton a.button, .darkBlueBackground .js-pager__items.view-more-link .redRoundButton a.button, .darkBlueBackground .js-pager__items.pager .standard-more-link a.button, .darkBlueBackground .js-pager__items.standard-more-link .standard-more-link a.button, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .standard-more-link a.button, .darkBlueBackground .js-pager__items.view-more-link .standard-more-link a.button, .darkBlueBackground .js-pager__items.pager .news-and-events--landing .more-link a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.pager .more-link a.button, .darkBlueBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.standard-more-link .more-link a.button, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .more-link a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .more-link a.button, .darkBlueBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.view-more-link .more-link a.button, .darkBlueBackground .js-pager__items.pager .view-more-link a.button, .darkBlueBackground .js-pager__items.standard-more-link .view-more-link a.button, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .view-more-link a.button, .darkBlueBackground .js-pager__items.view-more-link .view-more-link a.button {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 452, ../sass/_styleguide.scss */
  .darkBlueBackground .js-pager__items.pager .pager__item a, .darkBlueBackground .js-pager__items.standard-more-link .pager__item a, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .pager__item a, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .pager__item a, .darkBlueBackground .js-pager__items.view-more-link .pager__item a, .darkBlueBackground .js-pager__items.pager .blueRoundButton a, .darkBlueBackground .js-pager__items.standard-more-link .blueRoundButton a, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .blueRoundButton a, .darkBlueBackground .js-pager__items.view-more-link .blueRoundButton a, .darkBlueBackground .js-pager__items.pager .redRoundButton a, .darkBlueBackground .js-pager__items.standard-more-link .redRoundButton a, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .redRoundButton a, .darkBlueBackground .js-pager__items.view-more-link .redRoundButton a, .darkBlueBackground .js-pager__items.pager .standard-more-link a, .darkBlueBackground .js-pager__items.standard-more-link .standard-more-link a, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .standard-more-link a, .darkBlueBackground .js-pager__items.view-more-link .standard-more-link a, .darkBlueBackground .js-pager__items.pager .news-and-events--landing .more-link a, .news-and-events--landing .darkBlueBackground .js-pager__items.pager .more-link a, .darkBlueBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a, .news-and-events--landing .darkBlueBackground .js-pager__items.standard-more-link .more-link a, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .more-link a, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .more-link a, .darkBlueBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a, .news-and-events--landing .darkBlueBackground .js-pager__items.view-more-link .more-link a, .darkBlueBackground .js-pager__items.pager .view-more-link a, .darkBlueBackground .js-pager__items.standard-more-link .view-more-link a, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .view-more-link a, .darkBlueBackground .js-pager__items.view-more-link .view-more-link a, .darkBlueBackground .js-pager__items.pager .pager__item a.button, .darkBlueBackground .js-pager__items.standard-more-link .pager__item a.button, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .pager__item a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .pager__item a.button, .darkBlueBackground .js-pager__items.view-more-link .pager__item a.button, .darkBlueBackground .js-pager__items.pager .blueRoundButton a.button, .darkBlueBackground .js-pager__items.standard-more-link .blueRoundButton a.button, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .blueRoundButton a.button, .darkBlueBackground .js-pager__items.view-more-link .blueRoundButton a.button, .darkBlueBackground .js-pager__items.pager .redRoundButton a.button, .darkBlueBackground .js-pager__items.standard-more-link .redRoundButton a.button, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .redRoundButton a.button, .darkBlueBackground .js-pager__items.view-more-link .redRoundButton a.button, .darkBlueBackground .js-pager__items.pager .standard-more-link a.button, .darkBlueBackground .js-pager__items.standard-more-link .standard-more-link a.button, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .standard-more-link a.button, .darkBlueBackground .js-pager__items.view-more-link .standard-more-link a.button, .darkBlueBackground .js-pager__items.pager .news-and-events--landing .more-link a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.pager .more-link a.button, .darkBlueBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.standard-more-link .more-link a.button, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .more-link a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .more-link a.button, .darkBlueBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.view-more-link .more-link a.button, .darkBlueBackground .js-pager__items.pager .view-more-link a.button, .darkBlueBackground .js-pager__items.standard-more-link .view-more-link a.button, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .view-more-link a.button, .darkBlueBackground .js-pager__items.view-more-link .view-more-link a.button {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.darkBlueBackground .js-pager__items.pager .pager__item a :hover, .darkBlueBackground .js-pager__items.standard-more-link .pager__item a :hover, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .pager__item a :hover, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .pager__item a :hover, .darkBlueBackground .js-pager__items.view-more-link .pager__item a :hover, .darkBlueBackground .js-pager__items.pager .blueRoundButton a :hover, .darkBlueBackground .js-pager__items.standard-more-link .blueRoundButton a :hover, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a :hover, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .blueRoundButton a :hover, .darkBlueBackground .js-pager__items.view-more-link .blueRoundButton a :hover, .darkBlueBackground .js-pager__items.pager .redRoundButton a :hover, .darkBlueBackground .js-pager__items.standard-more-link .redRoundButton a :hover, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a :hover, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .redRoundButton a :hover, .darkBlueBackground .js-pager__items.view-more-link .redRoundButton a :hover, .darkBlueBackground .js-pager__items.pager .standard-more-link a :hover, .darkBlueBackground .js-pager__items.standard-more-link .standard-more-link a :hover, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a :hover, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .standard-more-link a :hover, .darkBlueBackground .js-pager__items.view-more-link .standard-more-link a :hover, .darkBlueBackground .js-pager__items.pager .news-and-events--landing .more-link a :hover, .news-and-events--landing .darkBlueBackground .js-pager__items.pager .more-link a :hover, .darkBlueBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a :hover, .news-and-events--landing .darkBlueBackground .js-pager__items.standard-more-link .more-link a :hover, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .more-link a :hover, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .more-link a :hover, .darkBlueBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a :hover, .news-and-events--landing .darkBlueBackground .js-pager__items.view-more-link .more-link a :hover, .darkBlueBackground .js-pager__items.pager .view-more-link a :hover, .darkBlueBackground .js-pager__items.standard-more-link .view-more-link a :hover, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a :hover, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .view-more-link a :hover, .darkBlueBackground .js-pager__items.view-more-link .view-more-link a :hover, .darkBlueBackground .js-pager__items.pager .pager__item a.button :hover, .darkBlueBackground .js-pager__items.standard-more-link .pager__item a.button :hover, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .pager__item a.button :hover, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .pager__item a.button :hover, .darkBlueBackground .js-pager__items.view-more-link .pager__item a.button :hover, .darkBlueBackground .js-pager__items.pager .blueRoundButton a.button :hover, .darkBlueBackground .js-pager__items.standard-more-link .blueRoundButton a.button :hover, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a.button :hover, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .blueRoundButton a.button :hover, .darkBlueBackground .js-pager__items.view-more-link .blueRoundButton a.button :hover, .darkBlueBackground .js-pager__items.pager .redRoundButton a.button :hover, .darkBlueBackground .js-pager__items.standard-more-link .redRoundButton a.button :hover, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a.button :hover, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .redRoundButton a.button :hover, .darkBlueBackground .js-pager__items.view-more-link .redRoundButton a.button :hover, .darkBlueBackground .js-pager__items.pager .standard-more-link a.button :hover, .darkBlueBackground .js-pager__items.standard-more-link .standard-more-link a.button :hover, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a.button :hover, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .standard-more-link a.button :hover, .darkBlueBackground .js-pager__items.view-more-link .standard-more-link a.button :hover, .darkBlueBackground .js-pager__items.pager .news-and-events--landing .more-link a.button :hover, .news-and-events--landing .darkBlueBackground .js-pager__items.pager .more-link a.button :hover, .darkBlueBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a.button :hover, .news-and-events--landing .darkBlueBackground .js-pager__items.standard-more-link .more-link a.button :hover, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .more-link a.button :hover, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .more-link a.button :hover, .darkBlueBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a.button :hover, .news-and-events--landing .darkBlueBackground .js-pager__items.view-more-link .more-link a.button :hover, .darkBlueBackground .js-pager__items.pager .view-more-link a.button :hover, .darkBlueBackground .js-pager__items.standard-more-link .view-more-link a.button :hover, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a.button :hover, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .view-more-link a.button :hover, .darkBlueBackground .js-pager__items.view-more-link .view-more-link a.button :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 452, ../sass/_styleguide.scss */
  .darkBlueBackground .js-pager__items.pager .pager__item a, .darkBlueBackground .js-pager__items.standard-more-link .pager__item a, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .pager__item a, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .pager__item a, .darkBlueBackground .js-pager__items.view-more-link .pager__item a, .darkBlueBackground .js-pager__items.pager .blueRoundButton a, .darkBlueBackground .js-pager__items.standard-more-link .blueRoundButton a, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .blueRoundButton a, .darkBlueBackground .js-pager__items.view-more-link .blueRoundButton a, .darkBlueBackground .js-pager__items.pager .redRoundButton a, .darkBlueBackground .js-pager__items.standard-more-link .redRoundButton a, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .redRoundButton a, .darkBlueBackground .js-pager__items.view-more-link .redRoundButton a, .darkBlueBackground .js-pager__items.pager .standard-more-link a, .darkBlueBackground .js-pager__items.standard-more-link .standard-more-link a, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .standard-more-link a, .darkBlueBackground .js-pager__items.view-more-link .standard-more-link a, .darkBlueBackground .js-pager__items.pager .news-and-events--landing .more-link a, .news-and-events--landing .darkBlueBackground .js-pager__items.pager .more-link a, .darkBlueBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a, .news-and-events--landing .darkBlueBackground .js-pager__items.standard-more-link .more-link a, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .more-link a, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .more-link a, .darkBlueBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a, .news-and-events--landing .darkBlueBackground .js-pager__items.view-more-link .more-link a, .darkBlueBackground .js-pager__items.pager .view-more-link a, .darkBlueBackground .js-pager__items.standard-more-link .view-more-link a, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .view-more-link a, .darkBlueBackground .js-pager__items.view-more-link .view-more-link a, .darkBlueBackground .js-pager__items.pager .pager__item a.button, .darkBlueBackground .js-pager__items.standard-more-link .pager__item a.button, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .pager__item a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .pager__item a.button, .darkBlueBackground .js-pager__items.view-more-link .pager__item a.button, .darkBlueBackground .js-pager__items.pager .blueRoundButton a.button, .darkBlueBackground .js-pager__items.standard-more-link .blueRoundButton a.button, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .blueRoundButton a.button, .darkBlueBackground .js-pager__items.view-more-link .blueRoundButton a.button, .darkBlueBackground .js-pager__items.pager .redRoundButton a.button, .darkBlueBackground .js-pager__items.standard-more-link .redRoundButton a.button, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .redRoundButton a.button, .darkBlueBackground .js-pager__items.view-more-link .redRoundButton a.button, .darkBlueBackground .js-pager__items.pager .standard-more-link a.button, .darkBlueBackground .js-pager__items.standard-more-link .standard-more-link a.button, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .standard-more-link a.button, .darkBlueBackground .js-pager__items.view-more-link .standard-more-link a.button, .darkBlueBackground .js-pager__items.pager .news-and-events--landing .more-link a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.pager .more-link a.button, .darkBlueBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.standard-more-link .more-link a.button, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .more-link a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .more-link a.button, .darkBlueBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.view-more-link .more-link a.button, .darkBlueBackground .js-pager__items.pager .view-more-link a.button, .darkBlueBackground .js-pager__items.standard-more-link .view-more-link a.button, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .view-more-link a.button, .darkBlueBackground .js-pager__items.view-more-link .view-more-link a.button {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 452, ../sass/_styleguide.scss */
  .darkBlueBackground .js-pager__items.pager .pager__item a, .darkBlueBackground .js-pager__items.standard-more-link .pager__item a, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .pager__item a, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .pager__item a, .darkBlueBackground .js-pager__items.view-more-link .pager__item a, .darkBlueBackground .js-pager__items.pager .blueRoundButton a, .darkBlueBackground .js-pager__items.standard-more-link .blueRoundButton a, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .blueRoundButton a, .darkBlueBackground .js-pager__items.view-more-link .blueRoundButton a, .darkBlueBackground .js-pager__items.pager .redRoundButton a, .darkBlueBackground .js-pager__items.standard-more-link .redRoundButton a, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .redRoundButton a, .darkBlueBackground .js-pager__items.view-more-link .redRoundButton a, .darkBlueBackground .js-pager__items.pager .standard-more-link a, .darkBlueBackground .js-pager__items.standard-more-link .standard-more-link a, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .standard-more-link a, .darkBlueBackground .js-pager__items.view-more-link .standard-more-link a, .darkBlueBackground .js-pager__items.pager .news-and-events--landing .more-link a, .news-and-events--landing .darkBlueBackground .js-pager__items.pager .more-link a, .darkBlueBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a, .news-and-events--landing .darkBlueBackground .js-pager__items.standard-more-link .more-link a, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .more-link a, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .more-link a, .darkBlueBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a, .news-and-events--landing .darkBlueBackground .js-pager__items.view-more-link .more-link a, .darkBlueBackground .js-pager__items.pager .view-more-link a, .darkBlueBackground .js-pager__items.standard-more-link .view-more-link a, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .view-more-link a, .darkBlueBackground .js-pager__items.view-more-link .view-more-link a, .darkBlueBackground .js-pager__items.pager .pager__item a.button, .darkBlueBackground .js-pager__items.standard-more-link .pager__item a.button, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .pager__item a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .pager__item a.button, .darkBlueBackground .js-pager__items.view-more-link .pager__item a.button, .darkBlueBackground .js-pager__items.pager .blueRoundButton a.button, .darkBlueBackground .js-pager__items.standard-more-link .blueRoundButton a.button, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .blueRoundButton a.button, .darkBlueBackground .js-pager__items.view-more-link .blueRoundButton a.button, .darkBlueBackground .js-pager__items.pager .redRoundButton a.button, .darkBlueBackground .js-pager__items.standard-more-link .redRoundButton a.button, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .redRoundButton a.button, .darkBlueBackground .js-pager__items.view-more-link .redRoundButton a.button, .darkBlueBackground .js-pager__items.pager .standard-more-link a.button, .darkBlueBackground .js-pager__items.standard-more-link .standard-more-link a.button, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .standard-more-link a.button, .darkBlueBackground .js-pager__items.view-more-link .standard-more-link a.button, .darkBlueBackground .js-pager__items.pager .news-and-events--landing .more-link a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.pager .more-link a.button, .darkBlueBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.standard-more-link .more-link a.button, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .more-link a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .more-link a.button, .darkBlueBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.view-more-link .more-link a.button, .darkBlueBackground .js-pager__items.pager .view-more-link a.button, .darkBlueBackground .js-pager__items.standard-more-link .view-more-link a.button, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .view-more-link a.button, .darkBlueBackground .js-pager__items.view-more-link .view-more-link a.button {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 452, ../sass/_styleguide.scss */
  .darkBlueBackground .js-pager__items.pager .pager__item a, .darkBlueBackground .js-pager__items.standard-more-link .pager__item a, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .pager__item a, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .pager__item a, .darkBlueBackground .js-pager__items.view-more-link .pager__item a, .darkBlueBackground .js-pager__items.pager .blueRoundButton a, .darkBlueBackground .js-pager__items.standard-more-link .blueRoundButton a, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .blueRoundButton a, .darkBlueBackground .js-pager__items.view-more-link .blueRoundButton a, .darkBlueBackground .js-pager__items.pager .redRoundButton a, .darkBlueBackground .js-pager__items.standard-more-link .redRoundButton a, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .redRoundButton a, .darkBlueBackground .js-pager__items.view-more-link .redRoundButton a, .darkBlueBackground .js-pager__items.pager .standard-more-link a, .darkBlueBackground .js-pager__items.standard-more-link .standard-more-link a, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .standard-more-link a, .darkBlueBackground .js-pager__items.view-more-link .standard-more-link a, .darkBlueBackground .js-pager__items.pager .news-and-events--landing .more-link a, .news-and-events--landing .darkBlueBackground .js-pager__items.pager .more-link a, .darkBlueBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a, .news-and-events--landing .darkBlueBackground .js-pager__items.standard-more-link .more-link a, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .more-link a, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .more-link a, .darkBlueBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a, .news-and-events--landing .darkBlueBackground .js-pager__items.view-more-link .more-link a, .darkBlueBackground .js-pager__items.pager .view-more-link a, .darkBlueBackground .js-pager__items.standard-more-link .view-more-link a, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .view-more-link a, .darkBlueBackground .js-pager__items.view-more-link .view-more-link a, .darkBlueBackground .js-pager__items.pager .pager__item a.button, .darkBlueBackground .js-pager__items.standard-more-link .pager__item a.button, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .pager__item a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .pager__item a.button, .darkBlueBackground .js-pager__items.view-more-link .pager__item a.button, .darkBlueBackground .js-pager__items.pager .blueRoundButton a.button, .darkBlueBackground .js-pager__items.standard-more-link .blueRoundButton a.button, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .blueRoundButton a.button, .darkBlueBackground .js-pager__items.view-more-link .blueRoundButton a.button, .darkBlueBackground .js-pager__items.pager .redRoundButton a.button, .darkBlueBackground .js-pager__items.standard-more-link .redRoundButton a.button, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .redRoundButton a.button, .darkBlueBackground .js-pager__items.view-more-link .redRoundButton a.button, .darkBlueBackground .js-pager__items.pager .standard-more-link a.button, .darkBlueBackground .js-pager__items.standard-more-link .standard-more-link a.button, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .standard-more-link a.button, .darkBlueBackground .js-pager__items.view-more-link .standard-more-link a.button, .darkBlueBackground .js-pager__items.pager .news-and-events--landing .more-link a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.pager .more-link a.button, .darkBlueBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.standard-more-link .more-link a.button, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .more-link a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .more-link a.button, .darkBlueBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.view-more-link .more-link a.button, .darkBlueBackground .js-pager__items.pager .view-more-link a.button, .darkBlueBackground .js-pager__items.standard-more-link .view-more-link a.button, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .view-more-link a.button, .darkBlueBackground .js-pager__items.view-more-link .view-more-link a.button {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 452, ../sass/_styleguide.scss */
  .darkBlueBackground .js-pager__items.pager .pager__item a, .darkBlueBackground .js-pager__items.standard-more-link .pager__item a, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .pager__item a, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .pager__item a, .darkBlueBackground .js-pager__items.view-more-link .pager__item a, .darkBlueBackground .js-pager__items.pager .blueRoundButton a, .darkBlueBackground .js-pager__items.standard-more-link .blueRoundButton a, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .blueRoundButton a, .darkBlueBackground .js-pager__items.view-more-link .blueRoundButton a, .darkBlueBackground .js-pager__items.pager .redRoundButton a, .darkBlueBackground .js-pager__items.standard-more-link .redRoundButton a, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .redRoundButton a, .darkBlueBackground .js-pager__items.view-more-link .redRoundButton a, .darkBlueBackground .js-pager__items.pager .standard-more-link a, .darkBlueBackground .js-pager__items.standard-more-link .standard-more-link a, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .standard-more-link a, .darkBlueBackground .js-pager__items.view-more-link .standard-more-link a, .darkBlueBackground .js-pager__items.pager .news-and-events--landing .more-link a, .news-and-events--landing .darkBlueBackground .js-pager__items.pager .more-link a, .darkBlueBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a, .news-and-events--landing .darkBlueBackground .js-pager__items.standard-more-link .more-link a, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .more-link a, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .more-link a, .darkBlueBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a, .news-and-events--landing .darkBlueBackground .js-pager__items.view-more-link .more-link a, .darkBlueBackground .js-pager__items.pager .view-more-link a, .darkBlueBackground .js-pager__items.standard-more-link .view-more-link a, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .view-more-link a, .darkBlueBackground .js-pager__items.view-more-link .view-more-link a, .darkBlueBackground .js-pager__items.pager .pager__item a.button, .darkBlueBackground .js-pager__items.standard-more-link .pager__item a.button, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .pager__item a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .pager__item a.button, .darkBlueBackground .js-pager__items.view-more-link .pager__item a.button, .darkBlueBackground .js-pager__items.pager .blueRoundButton a.button, .darkBlueBackground .js-pager__items.standard-more-link .blueRoundButton a.button, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .blueRoundButton a.button, .darkBlueBackground .js-pager__items.view-more-link .blueRoundButton a.button, .darkBlueBackground .js-pager__items.pager .redRoundButton a.button, .darkBlueBackground .js-pager__items.standard-more-link .redRoundButton a.button, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .redRoundButton a.button, .darkBlueBackground .js-pager__items.view-more-link .redRoundButton a.button, .darkBlueBackground .js-pager__items.pager .standard-more-link a.button, .darkBlueBackground .js-pager__items.standard-more-link .standard-more-link a.button, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .standard-more-link a.button, .darkBlueBackground .js-pager__items.view-more-link .standard-more-link a.button, .darkBlueBackground .js-pager__items.pager .news-and-events--landing .more-link a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.pager .more-link a.button, .darkBlueBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.standard-more-link .more-link a.button, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .more-link a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .more-link a.button, .darkBlueBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.view-more-link .more-link a.button, .darkBlueBackground .js-pager__items.pager .view-more-link a.button, .darkBlueBackground .js-pager__items.standard-more-link .view-more-link a.button, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .view-more-link a.button, .darkBlueBackground .js-pager__items.view-more-link .view-more-link a.button {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 452, ../sass/_styleguide.scss */
  .darkBlueBackground .js-pager__items.pager .pager__item a, .darkBlueBackground .js-pager__items.standard-more-link .pager__item a, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .pager__item a, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .pager__item a, .darkBlueBackground .js-pager__items.view-more-link .pager__item a, .darkBlueBackground .js-pager__items.pager .blueRoundButton a, .darkBlueBackground .js-pager__items.standard-more-link .blueRoundButton a, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .blueRoundButton a, .darkBlueBackground .js-pager__items.view-more-link .blueRoundButton a, .darkBlueBackground .js-pager__items.pager .redRoundButton a, .darkBlueBackground .js-pager__items.standard-more-link .redRoundButton a, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .redRoundButton a, .darkBlueBackground .js-pager__items.view-more-link .redRoundButton a, .darkBlueBackground .js-pager__items.pager .standard-more-link a, .darkBlueBackground .js-pager__items.standard-more-link .standard-more-link a, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .standard-more-link a, .darkBlueBackground .js-pager__items.view-more-link .standard-more-link a, .darkBlueBackground .js-pager__items.pager .news-and-events--landing .more-link a, .news-and-events--landing .darkBlueBackground .js-pager__items.pager .more-link a, .darkBlueBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a, .news-and-events--landing .darkBlueBackground .js-pager__items.standard-more-link .more-link a, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .more-link a, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .more-link a, .darkBlueBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a, .news-and-events--landing .darkBlueBackground .js-pager__items.view-more-link .more-link a, .darkBlueBackground .js-pager__items.pager .view-more-link a, .darkBlueBackground .js-pager__items.standard-more-link .view-more-link a, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .view-more-link a, .darkBlueBackground .js-pager__items.view-more-link .view-more-link a, .darkBlueBackground .js-pager__items.pager .pager__item a.button, .darkBlueBackground .js-pager__items.standard-more-link .pager__item a.button, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .pager__item a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .pager__item a.button, .darkBlueBackground .js-pager__items.view-more-link .pager__item a.button, .darkBlueBackground .js-pager__items.pager .blueRoundButton a.button, .darkBlueBackground .js-pager__items.standard-more-link .blueRoundButton a.button, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .blueRoundButton a.button, .darkBlueBackground .js-pager__items.view-more-link .blueRoundButton a.button, .darkBlueBackground .js-pager__items.pager .redRoundButton a.button, .darkBlueBackground .js-pager__items.standard-more-link .redRoundButton a.button, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .redRoundButton a.button, .darkBlueBackground .js-pager__items.view-more-link .redRoundButton a.button, .darkBlueBackground .js-pager__items.pager .standard-more-link a.button, .darkBlueBackground .js-pager__items.standard-more-link .standard-more-link a.button, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .standard-more-link a.button, .darkBlueBackground .js-pager__items.view-more-link .standard-more-link a.button, .darkBlueBackground .js-pager__items.pager .news-and-events--landing .more-link a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.pager .more-link a.button, .darkBlueBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.standard-more-link .more-link a.button, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .more-link a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .more-link a.button, .darkBlueBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.view-more-link .more-link a.button, .darkBlueBackground .js-pager__items.pager .view-more-link a.button, .darkBlueBackground .js-pager__items.standard-more-link .view-more-link a.button, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a.button, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .view-more-link a.button, .darkBlueBackground .js-pager__items.view-more-link .view-more-link a.button {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.darkBlueBackground .js-pager__items.pager .pager__item a:hover, .darkBlueBackground .js-pager__items.standard-more-link .pager__item a:hover, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .pager__item a:hover, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .pager__item a:hover, .darkBlueBackground .js-pager__items.view-more-link .pager__item a:hover, .darkBlueBackground .js-pager__items.pager .blueRoundButton a:hover, .darkBlueBackground .js-pager__items.standard-more-link .blueRoundButton a:hover, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a:hover, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .blueRoundButton a:hover, .darkBlueBackground .js-pager__items.view-more-link .blueRoundButton a:hover, .darkBlueBackground .js-pager__items.pager .redRoundButton a:hover, .darkBlueBackground .js-pager__items.standard-more-link .redRoundButton a:hover, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a:hover, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .redRoundButton a:hover, .darkBlueBackground .js-pager__items.view-more-link .redRoundButton a:hover, .darkBlueBackground .js-pager__items.pager .standard-more-link a:hover, .darkBlueBackground .js-pager__items.standard-more-link .standard-more-link a:hover, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a:hover, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .standard-more-link a:hover, .darkBlueBackground .js-pager__items.view-more-link .standard-more-link a:hover, .darkBlueBackground .js-pager__items.pager .news-and-events--landing .more-link a:hover, .news-and-events--landing .darkBlueBackground .js-pager__items.pager .more-link a:hover, .darkBlueBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a:hover, .news-and-events--landing .darkBlueBackground .js-pager__items.standard-more-link .more-link a:hover, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .more-link a:hover, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .more-link a:hover, .darkBlueBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a:hover, .news-and-events--landing .darkBlueBackground .js-pager__items.view-more-link .more-link a:hover, .darkBlueBackground .js-pager__items.pager .view-more-link a:hover, .darkBlueBackground .js-pager__items.standard-more-link .view-more-link a:hover, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a:hover, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .view-more-link a:hover, .darkBlueBackground .js-pager__items.view-more-link .view-more-link a:hover, .darkBlueBackground .js-pager__items.pager .pager__item a.button:hover, .darkBlueBackground .js-pager__items.standard-more-link .pager__item a.button:hover, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .pager__item a.button:hover, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .pager__item a.button:hover, .darkBlueBackground .js-pager__items.view-more-link .pager__item a.button:hover, .darkBlueBackground .js-pager__items.pager .blueRoundButton a.button:hover, .darkBlueBackground .js-pager__items.standard-more-link .blueRoundButton a.button:hover, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a.button:hover, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .blueRoundButton a.button:hover, .darkBlueBackground .js-pager__items.view-more-link .blueRoundButton a.button:hover, .darkBlueBackground .js-pager__items.pager .redRoundButton a.button:hover, .darkBlueBackground .js-pager__items.standard-more-link .redRoundButton a.button:hover, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a.button:hover, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .redRoundButton a.button:hover, .darkBlueBackground .js-pager__items.view-more-link .redRoundButton a.button:hover, .darkBlueBackground .js-pager__items.pager .standard-more-link a.button:hover, .darkBlueBackground .js-pager__items.standard-more-link .standard-more-link a.button:hover, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a.button:hover, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .standard-more-link a.button:hover, .darkBlueBackground .js-pager__items.view-more-link .standard-more-link a.button:hover, .darkBlueBackground .js-pager__items.pager .news-and-events--landing .more-link a.button:hover, .news-and-events--landing .darkBlueBackground .js-pager__items.pager .more-link a.button:hover, .darkBlueBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a.button:hover, .news-and-events--landing .darkBlueBackground .js-pager__items.standard-more-link .more-link a.button:hover, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .more-link a.button:hover, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .more-link a.button:hover, .darkBlueBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a.button:hover, .news-and-events--landing .darkBlueBackground .js-pager__items.view-more-link .more-link a.button:hover, .darkBlueBackground .js-pager__items.pager .view-more-link a.button:hover, .darkBlueBackground .js-pager__items.standard-more-link .view-more-link a.button:hover, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a.button:hover, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .view-more-link a.button:hover, .darkBlueBackground .js-pager__items.view-more-link .view-more-link a.button:hover {
  background-color: #d7e7f4;
  border-color: #d7e7f4;
  color: #222;
  text-decoration: none;
}
/* line 2379, ../sass/_mixins.scss */
.darkBlueBackground .js-pager__items.pager .pager__item a:focus, .darkBlueBackground .js-pager__items.standard-more-link .pager__item a:focus, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .pager__item a:focus, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .pager__item a:focus, .darkBlueBackground .js-pager__items.view-more-link .pager__item a:focus, .darkBlueBackground .js-pager__items.pager .blueRoundButton a:focus, .darkBlueBackground .js-pager__items.standard-more-link .blueRoundButton a:focus, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a:focus, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .blueRoundButton a:focus, .darkBlueBackground .js-pager__items.view-more-link .blueRoundButton a:focus, .darkBlueBackground .js-pager__items.pager .redRoundButton a:focus, .darkBlueBackground .js-pager__items.standard-more-link .redRoundButton a:focus, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a:focus, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .redRoundButton a:focus, .darkBlueBackground .js-pager__items.view-more-link .redRoundButton a:focus, .darkBlueBackground .js-pager__items.pager .standard-more-link a:focus, .darkBlueBackground .js-pager__items.standard-more-link .standard-more-link a:focus, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a:focus, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .standard-more-link a:focus, .darkBlueBackground .js-pager__items.view-more-link .standard-more-link a:focus, .darkBlueBackground .js-pager__items.pager .news-and-events--landing .more-link a:focus, .news-and-events--landing .darkBlueBackground .js-pager__items.pager .more-link a:focus, .darkBlueBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a:focus, .news-and-events--landing .darkBlueBackground .js-pager__items.standard-more-link .more-link a:focus, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .more-link a:focus, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .more-link a:focus, .darkBlueBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a:focus, .news-and-events--landing .darkBlueBackground .js-pager__items.view-more-link .more-link a:focus, .darkBlueBackground .js-pager__items.pager .view-more-link a:focus, .darkBlueBackground .js-pager__items.standard-more-link .view-more-link a:focus, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a:focus, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .view-more-link a:focus, .darkBlueBackground .js-pager__items.view-more-link .view-more-link a:focus, .darkBlueBackground .js-pager__items.pager .pager__item a:active, .darkBlueBackground .js-pager__items.standard-more-link .pager__item a:active, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .pager__item a:active, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .pager__item a:active, .darkBlueBackground .js-pager__items.view-more-link .pager__item a:active, .darkBlueBackground .js-pager__items.pager .blueRoundButton a:active, .darkBlueBackground .js-pager__items.standard-more-link .blueRoundButton a:active, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a:active, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .blueRoundButton a:active, .darkBlueBackground .js-pager__items.view-more-link .blueRoundButton a:active, .darkBlueBackground .js-pager__items.pager .redRoundButton a:active, .darkBlueBackground .js-pager__items.standard-more-link .redRoundButton a:active, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a:active, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .redRoundButton a:active, .darkBlueBackground .js-pager__items.view-more-link .redRoundButton a:active, .darkBlueBackground .js-pager__items.pager .standard-more-link a:active, .darkBlueBackground .js-pager__items.standard-more-link .standard-more-link a:active, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a:active, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .standard-more-link a:active, .darkBlueBackground .js-pager__items.view-more-link .standard-more-link a:active, .darkBlueBackground .js-pager__items.pager .news-and-events--landing .more-link a:active, .news-and-events--landing .darkBlueBackground .js-pager__items.pager .more-link a:active, .darkBlueBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a:active, .news-and-events--landing .darkBlueBackground .js-pager__items.standard-more-link .more-link a:active, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .more-link a:active, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .more-link a:active, .darkBlueBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a:active, .news-and-events--landing .darkBlueBackground .js-pager__items.view-more-link .more-link a:active, .darkBlueBackground .js-pager__items.pager .view-more-link a:active, .darkBlueBackground .js-pager__items.standard-more-link .view-more-link a:active, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a:active, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .view-more-link a:active, .darkBlueBackground .js-pager__items.view-more-link .view-more-link a:active, .darkBlueBackground .js-pager__items.pager .pager__item a.button:focus, .darkBlueBackground .js-pager__items.standard-more-link .pager__item a.button:focus, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .pager__item a.button:focus, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .pager__item a.button:focus, .darkBlueBackground .js-pager__items.view-more-link .pager__item a.button:focus, .darkBlueBackground .js-pager__items.pager .blueRoundButton a.button:focus, .darkBlueBackground .js-pager__items.standard-more-link .blueRoundButton a.button:focus, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a.button:focus, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .blueRoundButton a.button:focus, .darkBlueBackground .js-pager__items.view-more-link .blueRoundButton a.button:focus, .darkBlueBackground .js-pager__items.pager .redRoundButton a.button:focus, .darkBlueBackground .js-pager__items.standard-more-link .redRoundButton a.button:focus, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a.button:focus, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .redRoundButton a.button:focus, .darkBlueBackground .js-pager__items.view-more-link .redRoundButton a.button:focus, .darkBlueBackground .js-pager__items.pager .standard-more-link a.button:focus, .darkBlueBackground .js-pager__items.standard-more-link .standard-more-link a.button:focus, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a.button:focus, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .standard-more-link a.button:focus, .darkBlueBackground .js-pager__items.view-more-link .standard-more-link a.button:focus, .darkBlueBackground .js-pager__items.pager .news-and-events--landing .more-link a.button:focus, .news-and-events--landing .darkBlueBackground .js-pager__items.pager .more-link a.button:focus, .darkBlueBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a.button:focus, .news-and-events--landing .darkBlueBackground .js-pager__items.standard-more-link .more-link a.button:focus, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .more-link a.button:focus, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .more-link a.button:focus, .darkBlueBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a.button:focus, .news-and-events--landing .darkBlueBackground .js-pager__items.view-more-link .more-link a.button:focus, .darkBlueBackground .js-pager__items.pager .view-more-link a.button:focus, .darkBlueBackground .js-pager__items.standard-more-link .view-more-link a.button:focus, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a.button:focus, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .view-more-link a.button:focus, .darkBlueBackground .js-pager__items.view-more-link .view-more-link a.button:focus, .darkBlueBackground .js-pager__items.pager .pager__item a.button:active, .darkBlueBackground .js-pager__items.standard-more-link .pager__item a.button:active, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .pager__item a.button:active, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .pager__item a.button:active, .darkBlueBackground .js-pager__items.view-more-link .pager__item a.button:active, .darkBlueBackground .js-pager__items.pager .blueRoundButton a.button:active, .darkBlueBackground .js-pager__items.standard-more-link .blueRoundButton a.button:active, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a.button:active, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .blueRoundButton a.button:active, .darkBlueBackground .js-pager__items.view-more-link .blueRoundButton a.button:active, .darkBlueBackground .js-pager__items.pager .redRoundButton a.button:active, .darkBlueBackground .js-pager__items.standard-more-link .redRoundButton a.button:active, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a.button:active, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .redRoundButton a.button:active, .darkBlueBackground .js-pager__items.view-more-link .redRoundButton a.button:active, .darkBlueBackground .js-pager__items.pager .standard-more-link a.button:active, .darkBlueBackground .js-pager__items.standard-more-link .standard-more-link a.button:active, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a.button:active, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .standard-more-link a.button:active, .darkBlueBackground .js-pager__items.view-more-link .standard-more-link a.button:active, .darkBlueBackground .js-pager__items.pager .news-and-events--landing .more-link a.button:active, .news-and-events--landing .darkBlueBackground .js-pager__items.pager .more-link a.button:active, .darkBlueBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a.button:active, .news-and-events--landing .darkBlueBackground .js-pager__items.standard-more-link .more-link a.button:active, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .more-link a.button:active, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .more-link a.button:active, .darkBlueBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a.button:active, .news-and-events--landing .darkBlueBackground .js-pager__items.view-more-link .more-link a.button:active, .darkBlueBackground .js-pager__items.pager .view-more-link a.button:active, .darkBlueBackground .js-pager__items.standard-more-link .view-more-link a.button:active, .darkBlueBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a.button:active, .news-and-events--landing .darkBlueBackground .js-pager__items.more-link .view-more-link a.button:active, .darkBlueBackground .js-pager__items.view-more-link .view-more-link a.button:active {
  outline: #fff dotted 3px !important;
}

/* line 460, ../sass/_styleguide.scss */
.primaryRedBackground .js-pager__items.pager .pager__item a, .primaryRedBackground .js-pager__items.standard-more-link .pager__item a, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .pager__item a, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .pager__item a, .primaryRedBackground .js-pager__items.view-more-link .pager__item a, .primaryRedBackground .js-pager__items.pager .blueRoundButton a, .primaryRedBackground .js-pager__items.standard-more-link .blueRoundButton a, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .blueRoundButton a, .primaryRedBackground .js-pager__items.view-more-link .blueRoundButton a, .primaryRedBackground .js-pager__items.pager .redRoundButton a, .primaryRedBackground .js-pager__items.standard-more-link .redRoundButton a, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .redRoundButton a, .primaryRedBackground .js-pager__items.view-more-link .redRoundButton a, .primaryRedBackground .js-pager__items.pager .standard-more-link a, .primaryRedBackground .js-pager__items.standard-more-link .standard-more-link a, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .standard-more-link a, .primaryRedBackground .js-pager__items.view-more-link .standard-more-link a, .primaryRedBackground .js-pager__items.pager .news-and-events--landing .more-link a, .news-and-events--landing .primaryRedBackground .js-pager__items.pager .more-link a, .primaryRedBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a, .news-and-events--landing .primaryRedBackground .js-pager__items.standard-more-link .more-link a, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .more-link a, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .more-link a, .primaryRedBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a, .news-and-events--landing .primaryRedBackground .js-pager__items.view-more-link .more-link a, .primaryRedBackground .js-pager__items.pager .view-more-link a, .primaryRedBackground .js-pager__items.standard-more-link .view-more-link a, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .view-more-link a, .primaryRedBackground .js-pager__items.view-more-link .view-more-link a, .primaryRedBackground .js-pager__items.pager .pager__item a.button, .primaryRedBackground .js-pager__items.standard-more-link .pager__item a.button, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .pager__item a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .pager__item a.button, .primaryRedBackground .js-pager__items.view-more-link .pager__item a.button, .primaryRedBackground .js-pager__items.pager .blueRoundButton a.button, .primaryRedBackground .js-pager__items.standard-more-link .blueRoundButton a.button, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .blueRoundButton a.button, .primaryRedBackground .js-pager__items.view-more-link .blueRoundButton a.button, .primaryRedBackground .js-pager__items.pager .redRoundButton a.button, .primaryRedBackground .js-pager__items.standard-more-link .redRoundButton a.button, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .redRoundButton a.button, .primaryRedBackground .js-pager__items.view-more-link .redRoundButton a.button, .primaryRedBackground .js-pager__items.pager .standard-more-link a.button, .primaryRedBackground .js-pager__items.standard-more-link .standard-more-link a.button, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .standard-more-link a.button, .primaryRedBackground .js-pager__items.view-more-link .standard-more-link a.button, .primaryRedBackground .js-pager__items.pager .news-and-events--landing .more-link a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.pager .more-link a.button, .primaryRedBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.standard-more-link .more-link a.button, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .more-link a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .more-link a.button, .primaryRedBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.view-more-link .more-link a.button, .primaryRedBackground .js-pager__items.pager .view-more-link a.button, .primaryRedBackground .js-pager__items.standard-more-link .view-more-link a.button, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .view-more-link a.button, .primaryRedBackground .js-pager__items.view-more-link .view-more-link a.button {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #850920;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #fff;
  padding: 0.8em 3em;
  display: table !important;
  background-image: none;
}
@media all and (min-width: 1440px) {
  /* line 460, ../sass/_styleguide.scss */
  .primaryRedBackground .js-pager__items.pager .pager__item a, .primaryRedBackground .js-pager__items.standard-more-link .pager__item a, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .pager__item a, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .pager__item a, .primaryRedBackground .js-pager__items.view-more-link .pager__item a, .primaryRedBackground .js-pager__items.pager .blueRoundButton a, .primaryRedBackground .js-pager__items.standard-more-link .blueRoundButton a, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .blueRoundButton a, .primaryRedBackground .js-pager__items.view-more-link .blueRoundButton a, .primaryRedBackground .js-pager__items.pager .redRoundButton a, .primaryRedBackground .js-pager__items.standard-more-link .redRoundButton a, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .redRoundButton a, .primaryRedBackground .js-pager__items.view-more-link .redRoundButton a, .primaryRedBackground .js-pager__items.pager .standard-more-link a, .primaryRedBackground .js-pager__items.standard-more-link .standard-more-link a, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .standard-more-link a, .primaryRedBackground .js-pager__items.view-more-link .standard-more-link a, .primaryRedBackground .js-pager__items.pager .news-and-events--landing .more-link a, .news-and-events--landing .primaryRedBackground .js-pager__items.pager .more-link a, .primaryRedBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a, .news-and-events--landing .primaryRedBackground .js-pager__items.standard-more-link .more-link a, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .more-link a, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .more-link a, .primaryRedBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a, .news-and-events--landing .primaryRedBackground .js-pager__items.view-more-link .more-link a, .primaryRedBackground .js-pager__items.pager .view-more-link a, .primaryRedBackground .js-pager__items.standard-more-link .view-more-link a, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .view-more-link a, .primaryRedBackground .js-pager__items.view-more-link .view-more-link a, .primaryRedBackground .js-pager__items.pager .pager__item a.button, .primaryRedBackground .js-pager__items.standard-more-link .pager__item a.button, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .pager__item a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .pager__item a.button, .primaryRedBackground .js-pager__items.view-more-link .pager__item a.button, .primaryRedBackground .js-pager__items.pager .blueRoundButton a.button, .primaryRedBackground .js-pager__items.standard-more-link .blueRoundButton a.button, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .blueRoundButton a.button, .primaryRedBackground .js-pager__items.view-more-link .blueRoundButton a.button, .primaryRedBackground .js-pager__items.pager .redRoundButton a.button, .primaryRedBackground .js-pager__items.standard-more-link .redRoundButton a.button, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .redRoundButton a.button, .primaryRedBackground .js-pager__items.view-more-link .redRoundButton a.button, .primaryRedBackground .js-pager__items.pager .standard-more-link a.button, .primaryRedBackground .js-pager__items.standard-more-link .standard-more-link a.button, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .standard-more-link a.button, .primaryRedBackground .js-pager__items.view-more-link .standard-more-link a.button, .primaryRedBackground .js-pager__items.pager .news-and-events--landing .more-link a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.pager .more-link a.button, .primaryRedBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.standard-more-link .more-link a.button, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .more-link a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .more-link a.button, .primaryRedBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.view-more-link .more-link a.button, .primaryRedBackground .js-pager__items.pager .view-more-link a.button, .primaryRedBackground .js-pager__items.standard-more-link .view-more-link a.button, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .view-more-link a.button, .primaryRedBackground .js-pager__items.view-more-link .view-more-link a.button {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 460, ../sass/_styleguide.scss */
  .primaryRedBackground .js-pager__items.pager .pager__item a, .primaryRedBackground .js-pager__items.standard-more-link .pager__item a, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .pager__item a, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .pager__item a, .primaryRedBackground .js-pager__items.view-more-link .pager__item a, .primaryRedBackground .js-pager__items.pager .blueRoundButton a, .primaryRedBackground .js-pager__items.standard-more-link .blueRoundButton a, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .blueRoundButton a, .primaryRedBackground .js-pager__items.view-more-link .blueRoundButton a, .primaryRedBackground .js-pager__items.pager .redRoundButton a, .primaryRedBackground .js-pager__items.standard-more-link .redRoundButton a, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .redRoundButton a, .primaryRedBackground .js-pager__items.view-more-link .redRoundButton a, .primaryRedBackground .js-pager__items.pager .standard-more-link a, .primaryRedBackground .js-pager__items.standard-more-link .standard-more-link a, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .standard-more-link a, .primaryRedBackground .js-pager__items.view-more-link .standard-more-link a, .primaryRedBackground .js-pager__items.pager .news-and-events--landing .more-link a, .news-and-events--landing .primaryRedBackground .js-pager__items.pager .more-link a, .primaryRedBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a, .news-and-events--landing .primaryRedBackground .js-pager__items.standard-more-link .more-link a, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .more-link a, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .more-link a, .primaryRedBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a, .news-and-events--landing .primaryRedBackground .js-pager__items.view-more-link .more-link a, .primaryRedBackground .js-pager__items.pager .view-more-link a, .primaryRedBackground .js-pager__items.standard-more-link .view-more-link a, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .view-more-link a, .primaryRedBackground .js-pager__items.view-more-link .view-more-link a, .primaryRedBackground .js-pager__items.pager .pager__item a.button, .primaryRedBackground .js-pager__items.standard-more-link .pager__item a.button, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .pager__item a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .pager__item a.button, .primaryRedBackground .js-pager__items.view-more-link .pager__item a.button, .primaryRedBackground .js-pager__items.pager .blueRoundButton a.button, .primaryRedBackground .js-pager__items.standard-more-link .blueRoundButton a.button, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .blueRoundButton a.button, .primaryRedBackground .js-pager__items.view-more-link .blueRoundButton a.button, .primaryRedBackground .js-pager__items.pager .redRoundButton a.button, .primaryRedBackground .js-pager__items.standard-more-link .redRoundButton a.button, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .redRoundButton a.button, .primaryRedBackground .js-pager__items.view-more-link .redRoundButton a.button, .primaryRedBackground .js-pager__items.pager .standard-more-link a.button, .primaryRedBackground .js-pager__items.standard-more-link .standard-more-link a.button, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .standard-more-link a.button, .primaryRedBackground .js-pager__items.view-more-link .standard-more-link a.button, .primaryRedBackground .js-pager__items.pager .news-and-events--landing .more-link a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.pager .more-link a.button, .primaryRedBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.standard-more-link .more-link a.button, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .more-link a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .more-link a.button, .primaryRedBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.view-more-link .more-link a.button, .primaryRedBackground .js-pager__items.pager .view-more-link a.button, .primaryRedBackground .js-pager__items.standard-more-link .view-more-link a.button, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .view-more-link a.button, .primaryRedBackground .js-pager__items.view-more-link .view-more-link a.button {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 460, ../sass/_styleguide.scss */
  .primaryRedBackground .js-pager__items.pager .pager__item a, .primaryRedBackground .js-pager__items.standard-more-link .pager__item a, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .pager__item a, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .pager__item a, .primaryRedBackground .js-pager__items.view-more-link .pager__item a, .primaryRedBackground .js-pager__items.pager .blueRoundButton a, .primaryRedBackground .js-pager__items.standard-more-link .blueRoundButton a, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .blueRoundButton a, .primaryRedBackground .js-pager__items.view-more-link .blueRoundButton a, .primaryRedBackground .js-pager__items.pager .redRoundButton a, .primaryRedBackground .js-pager__items.standard-more-link .redRoundButton a, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .redRoundButton a, .primaryRedBackground .js-pager__items.view-more-link .redRoundButton a, .primaryRedBackground .js-pager__items.pager .standard-more-link a, .primaryRedBackground .js-pager__items.standard-more-link .standard-more-link a, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .standard-more-link a, .primaryRedBackground .js-pager__items.view-more-link .standard-more-link a, .primaryRedBackground .js-pager__items.pager .news-and-events--landing .more-link a, .news-and-events--landing .primaryRedBackground .js-pager__items.pager .more-link a, .primaryRedBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a, .news-and-events--landing .primaryRedBackground .js-pager__items.standard-more-link .more-link a, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .more-link a, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .more-link a, .primaryRedBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a, .news-and-events--landing .primaryRedBackground .js-pager__items.view-more-link .more-link a, .primaryRedBackground .js-pager__items.pager .view-more-link a, .primaryRedBackground .js-pager__items.standard-more-link .view-more-link a, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .view-more-link a, .primaryRedBackground .js-pager__items.view-more-link .view-more-link a, .primaryRedBackground .js-pager__items.pager .pager__item a.button, .primaryRedBackground .js-pager__items.standard-more-link .pager__item a.button, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .pager__item a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .pager__item a.button, .primaryRedBackground .js-pager__items.view-more-link .pager__item a.button, .primaryRedBackground .js-pager__items.pager .blueRoundButton a.button, .primaryRedBackground .js-pager__items.standard-more-link .blueRoundButton a.button, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .blueRoundButton a.button, .primaryRedBackground .js-pager__items.view-more-link .blueRoundButton a.button, .primaryRedBackground .js-pager__items.pager .redRoundButton a.button, .primaryRedBackground .js-pager__items.standard-more-link .redRoundButton a.button, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .redRoundButton a.button, .primaryRedBackground .js-pager__items.view-more-link .redRoundButton a.button, .primaryRedBackground .js-pager__items.pager .standard-more-link a.button, .primaryRedBackground .js-pager__items.standard-more-link .standard-more-link a.button, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .standard-more-link a.button, .primaryRedBackground .js-pager__items.view-more-link .standard-more-link a.button, .primaryRedBackground .js-pager__items.pager .news-and-events--landing .more-link a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.pager .more-link a.button, .primaryRedBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.standard-more-link .more-link a.button, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .more-link a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .more-link a.button, .primaryRedBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.view-more-link .more-link a.button, .primaryRedBackground .js-pager__items.pager .view-more-link a.button, .primaryRedBackground .js-pager__items.standard-more-link .view-more-link a.button, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .view-more-link a.button, .primaryRedBackground .js-pager__items.view-more-link .view-more-link a.button {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 460, ../sass/_styleguide.scss */
  .primaryRedBackground .js-pager__items.pager .pager__item a, .primaryRedBackground .js-pager__items.standard-more-link .pager__item a, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .pager__item a, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .pager__item a, .primaryRedBackground .js-pager__items.view-more-link .pager__item a, .primaryRedBackground .js-pager__items.pager .blueRoundButton a, .primaryRedBackground .js-pager__items.standard-more-link .blueRoundButton a, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .blueRoundButton a, .primaryRedBackground .js-pager__items.view-more-link .blueRoundButton a, .primaryRedBackground .js-pager__items.pager .redRoundButton a, .primaryRedBackground .js-pager__items.standard-more-link .redRoundButton a, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .redRoundButton a, .primaryRedBackground .js-pager__items.view-more-link .redRoundButton a, .primaryRedBackground .js-pager__items.pager .standard-more-link a, .primaryRedBackground .js-pager__items.standard-more-link .standard-more-link a, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .standard-more-link a, .primaryRedBackground .js-pager__items.view-more-link .standard-more-link a, .primaryRedBackground .js-pager__items.pager .news-and-events--landing .more-link a, .news-and-events--landing .primaryRedBackground .js-pager__items.pager .more-link a, .primaryRedBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a, .news-and-events--landing .primaryRedBackground .js-pager__items.standard-more-link .more-link a, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .more-link a, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .more-link a, .primaryRedBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a, .news-and-events--landing .primaryRedBackground .js-pager__items.view-more-link .more-link a, .primaryRedBackground .js-pager__items.pager .view-more-link a, .primaryRedBackground .js-pager__items.standard-more-link .view-more-link a, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .view-more-link a, .primaryRedBackground .js-pager__items.view-more-link .view-more-link a, .primaryRedBackground .js-pager__items.pager .pager__item a.button, .primaryRedBackground .js-pager__items.standard-more-link .pager__item a.button, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .pager__item a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .pager__item a.button, .primaryRedBackground .js-pager__items.view-more-link .pager__item a.button, .primaryRedBackground .js-pager__items.pager .blueRoundButton a.button, .primaryRedBackground .js-pager__items.standard-more-link .blueRoundButton a.button, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .blueRoundButton a.button, .primaryRedBackground .js-pager__items.view-more-link .blueRoundButton a.button, .primaryRedBackground .js-pager__items.pager .redRoundButton a.button, .primaryRedBackground .js-pager__items.standard-more-link .redRoundButton a.button, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .redRoundButton a.button, .primaryRedBackground .js-pager__items.view-more-link .redRoundButton a.button, .primaryRedBackground .js-pager__items.pager .standard-more-link a.button, .primaryRedBackground .js-pager__items.standard-more-link .standard-more-link a.button, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .standard-more-link a.button, .primaryRedBackground .js-pager__items.view-more-link .standard-more-link a.button, .primaryRedBackground .js-pager__items.pager .news-and-events--landing .more-link a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.pager .more-link a.button, .primaryRedBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.standard-more-link .more-link a.button, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .more-link a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .more-link a.button, .primaryRedBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.view-more-link .more-link a.button, .primaryRedBackground .js-pager__items.pager .view-more-link a.button, .primaryRedBackground .js-pager__items.standard-more-link .view-more-link a.button, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .view-more-link a.button, .primaryRedBackground .js-pager__items.view-more-link .view-more-link a.button {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.primaryRedBackground .js-pager__items.pager .pager__item a :hover, .primaryRedBackground .js-pager__items.standard-more-link .pager__item a :hover, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .pager__item a :hover, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .pager__item a :hover, .primaryRedBackground .js-pager__items.view-more-link .pager__item a :hover, .primaryRedBackground .js-pager__items.pager .blueRoundButton a :hover, .primaryRedBackground .js-pager__items.standard-more-link .blueRoundButton a :hover, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a :hover, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .blueRoundButton a :hover, .primaryRedBackground .js-pager__items.view-more-link .blueRoundButton a :hover, .primaryRedBackground .js-pager__items.pager .redRoundButton a :hover, .primaryRedBackground .js-pager__items.standard-more-link .redRoundButton a :hover, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a :hover, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .redRoundButton a :hover, .primaryRedBackground .js-pager__items.view-more-link .redRoundButton a :hover, .primaryRedBackground .js-pager__items.pager .standard-more-link a :hover, .primaryRedBackground .js-pager__items.standard-more-link .standard-more-link a :hover, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a :hover, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .standard-more-link a :hover, .primaryRedBackground .js-pager__items.view-more-link .standard-more-link a :hover, .primaryRedBackground .js-pager__items.pager .news-and-events--landing .more-link a :hover, .news-and-events--landing .primaryRedBackground .js-pager__items.pager .more-link a :hover, .primaryRedBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a :hover, .news-and-events--landing .primaryRedBackground .js-pager__items.standard-more-link .more-link a :hover, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .more-link a :hover, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .more-link a :hover, .primaryRedBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a :hover, .news-and-events--landing .primaryRedBackground .js-pager__items.view-more-link .more-link a :hover, .primaryRedBackground .js-pager__items.pager .view-more-link a :hover, .primaryRedBackground .js-pager__items.standard-more-link .view-more-link a :hover, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a :hover, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .view-more-link a :hover, .primaryRedBackground .js-pager__items.view-more-link .view-more-link a :hover, .primaryRedBackground .js-pager__items.pager .pager__item a.button :hover, .primaryRedBackground .js-pager__items.standard-more-link .pager__item a.button :hover, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .pager__item a.button :hover, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .pager__item a.button :hover, .primaryRedBackground .js-pager__items.view-more-link .pager__item a.button :hover, .primaryRedBackground .js-pager__items.pager .blueRoundButton a.button :hover, .primaryRedBackground .js-pager__items.standard-more-link .blueRoundButton a.button :hover, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a.button :hover, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .blueRoundButton a.button :hover, .primaryRedBackground .js-pager__items.view-more-link .blueRoundButton a.button :hover, .primaryRedBackground .js-pager__items.pager .redRoundButton a.button :hover, .primaryRedBackground .js-pager__items.standard-more-link .redRoundButton a.button :hover, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a.button :hover, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .redRoundButton a.button :hover, .primaryRedBackground .js-pager__items.view-more-link .redRoundButton a.button :hover, .primaryRedBackground .js-pager__items.pager .standard-more-link a.button :hover, .primaryRedBackground .js-pager__items.standard-more-link .standard-more-link a.button :hover, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a.button :hover, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .standard-more-link a.button :hover, .primaryRedBackground .js-pager__items.view-more-link .standard-more-link a.button :hover, .primaryRedBackground .js-pager__items.pager .news-and-events--landing .more-link a.button :hover, .news-and-events--landing .primaryRedBackground .js-pager__items.pager .more-link a.button :hover, .primaryRedBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a.button :hover, .news-and-events--landing .primaryRedBackground .js-pager__items.standard-more-link .more-link a.button :hover, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .more-link a.button :hover, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .more-link a.button :hover, .primaryRedBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a.button :hover, .news-and-events--landing .primaryRedBackground .js-pager__items.view-more-link .more-link a.button :hover, .primaryRedBackground .js-pager__items.pager .view-more-link a.button :hover, .primaryRedBackground .js-pager__items.standard-more-link .view-more-link a.button :hover, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a.button :hover, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .view-more-link a.button :hover, .primaryRedBackground .js-pager__items.view-more-link .view-more-link a.button :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 460, ../sass/_styleguide.scss */
  .primaryRedBackground .js-pager__items.pager .pager__item a, .primaryRedBackground .js-pager__items.standard-more-link .pager__item a, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .pager__item a, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .pager__item a, .primaryRedBackground .js-pager__items.view-more-link .pager__item a, .primaryRedBackground .js-pager__items.pager .blueRoundButton a, .primaryRedBackground .js-pager__items.standard-more-link .blueRoundButton a, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .blueRoundButton a, .primaryRedBackground .js-pager__items.view-more-link .blueRoundButton a, .primaryRedBackground .js-pager__items.pager .redRoundButton a, .primaryRedBackground .js-pager__items.standard-more-link .redRoundButton a, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .redRoundButton a, .primaryRedBackground .js-pager__items.view-more-link .redRoundButton a, .primaryRedBackground .js-pager__items.pager .standard-more-link a, .primaryRedBackground .js-pager__items.standard-more-link .standard-more-link a, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .standard-more-link a, .primaryRedBackground .js-pager__items.view-more-link .standard-more-link a, .primaryRedBackground .js-pager__items.pager .news-and-events--landing .more-link a, .news-and-events--landing .primaryRedBackground .js-pager__items.pager .more-link a, .primaryRedBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a, .news-and-events--landing .primaryRedBackground .js-pager__items.standard-more-link .more-link a, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .more-link a, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .more-link a, .primaryRedBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a, .news-and-events--landing .primaryRedBackground .js-pager__items.view-more-link .more-link a, .primaryRedBackground .js-pager__items.pager .view-more-link a, .primaryRedBackground .js-pager__items.standard-more-link .view-more-link a, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .view-more-link a, .primaryRedBackground .js-pager__items.view-more-link .view-more-link a, .primaryRedBackground .js-pager__items.pager .pager__item a.button, .primaryRedBackground .js-pager__items.standard-more-link .pager__item a.button, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .pager__item a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .pager__item a.button, .primaryRedBackground .js-pager__items.view-more-link .pager__item a.button, .primaryRedBackground .js-pager__items.pager .blueRoundButton a.button, .primaryRedBackground .js-pager__items.standard-more-link .blueRoundButton a.button, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .blueRoundButton a.button, .primaryRedBackground .js-pager__items.view-more-link .blueRoundButton a.button, .primaryRedBackground .js-pager__items.pager .redRoundButton a.button, .primaryRedBackground .js-pager__items.standard-more-link .redRoundButton a.button, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .redRoundButton a.button, .primaryRedBackground .js-pager__items.view-more-link .redRoundButton a.button, .primaryRedBackground .js-pager__items.pager .standard-more-link a.button, .primaryRedBackground .js-pager__items.standard-more-link .standard-more-link a.button, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .standard-more-link a.button, .primaryRedBackground .js-pager__items.view-more-link .standard-more-link a.button, .primaryRedBackground .js-pager__items.pager .news-and-events--landing .more-link a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.pager .more-link a.button, .primaryRedBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.standard-more-link .more-link a.button, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .more-link a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .more-link a.button, .primaryRedBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.view-more-link .more-link a.button, .primaryRedBackground .js-pager__items.pager .view-more-link a.button, .primaryRedBackground .js-pager__items.standard-more-link .view-more-link a.button, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .view-more-link a.button, .primaryRedBackground .js-pager__items.view-more-link .view-more-link a.button {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 460, ../sass/_styleguide.scss */
  .primaryRedBackground .js-pager__items.pager .pager__item a, .primaryRedBackground .js-pager__items.standard-more-link .pager__item a, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .pager__item a, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .pager__item a, .primaryRedBackground .js-pager__items.view-more-link .pager__item a, .primaryRedBackground .js-pager__items.pager .blueRoundButton a, .primaryRedBackground .js-pager__items.standard-more-link .blueRoundButton a, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .blueRoundButton a, .primaryRedBackground .js-pager__items.view-more-link .blueRoundButton a, .primaryRedBackground .js-pager__items.pager .redRoundButton a, .primaryRedBackground .js-pager__items.standard-more-link .redRoundButton a, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .redRoundButton a, .primaryRedBackground .js-pager__items.view-more-link .redRoundButton a, .primaryRedBackground .js-pager__items.pager .standard-more-link a, .primaryRedBackground .js-pager__items.standard-more-link .standard-more-link a, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .standard-more-link a, .primaryRedBackground .js-pager__items.view-more-link .standard-more-link a, .primaryRedBackground .js-pager__items.pager .news-and-events--landing .more-link a, .news-and-events--landing .primaryRedBackground .js-pager__items.pager .more-link a, .primaryRedBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a, .news-and-events--landing .primaryRedBackground .js-pager__items.standard-more-link .more-link a, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .more-link a, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .more-link a, .primaryRedBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a, .news-and-events--landing .primaryRedBackground .js-pager__items.view-more-link .more-link a, .primaryRedBackground .js-pager__items.pager .view-more-link a, .primaryRedBackground .js-pager__items.standard-more-link .view-more-link a, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .view-more-link a, .primaryRedBackground .js-pager__items.view-more-link .view-more-link a, .primaryRedBackground .js-pager__items.pager .pager__item a.button, .primaryRedBackground .js-pager__items.standard-more-link .pager__item a.button, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .pager__item a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .pager__item a.button, .primaryRedBackground .js-pager__items.view-more-link .pager__item a.button, .primaryRedBackground .js-pager__items.pager .blueRoundButton a.button, .primaryRedBackground .js-pager__items.standard-more-link .blueRoundButton a.button, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .blueRoundButton a.button, .primaryRedBackground .js-pager__items.view-more-link .blueRoundButton a.button, .primaryRedBackground .js-pager__items.pager .redRoundButton a.button, .primaryRedBackground .js-pager__items.standard-more-link .redRoundButton a.button, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .redRoundButton a.button, .primaryRedBackground .js-pager__items.view-more-link .redRoundButton a.button, .primaryRedBackground .js-pager__items.pager .standard-more-link a.button, .primaryRedBackground .js-pager__items.standard-more-link .standard-more-link a.button, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .standard-more-link a.button, .primaryRedBackground .js-pager__items.view-more-link .standard-more-link a.button, .primaryRedBackground .js-pager__items.pager .news-and-events--landing .more-link a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.pager .more-link a.button, .primaryRedBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.standard-more-link .more-link a.button, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .more-link a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .more-link a.button, .primaryRedBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.view-more-link .more-link a.button, .primaryRedBackground .js-pager__items.pager .view-more-link a.button, .primaryRedBackground .js-pager__items.standard-more-link .view-more-link a.button, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .view-more-link a.button, .primaryRedBackground .js-pager__items.view-more-link .view-more-link a.button {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 460, ../sass/_styleguide.scss */
  .primaryRedBackground .js-pager__items.pager .pager__item a, .primaryRedBackground .js-pager__items.standard-more-link .pager__item a, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .pager__item a, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .pager__item a, .primaryRedBackground .js-pager__items.view-more-link .pager__item a, .primaryRedBackground .js-pager__items.pager .blueRoundButton a, .primaryRedBackground .js-pager__items.standard-more-link .blueRoundButton a, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .blueRoundButton a, .primaryRedBackground .js-pager__items.view-more-link .blueRoundButton a, .primaryRedBackground .js-pager__items.pager .redRoundButton a, .primaryRedBackground .js-pager__items.standard-more-link .redRoundButton a, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .redRoundButton a, .primaryRedBackground .js-pager__items.view-more-link .redRoundButton a, .primaryRedBackground .js-pager__items.pager .standard-more-link a, .primaryRedBackground .js-pager__items.standard-more-link .standard-more-link a, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .standard-more-link a, .primaryRedBackground .js-pager__items.view-more-link .standard-more-link a, .primaryRedBackground .js-pager__items.pager .news-and-events--landing .more-link a, .news-and-events--landing .primaryRedBackground .js-pager__items.pager .more-link a, .primaryRedBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a, .news-and-events--landing .primaryRedBackground .js-pager__items.standard-more-link .more-link a, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .more-link a, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .more-link a, .primaryRedBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a, .news-and-events--landing .primaryRedBackground .js-pager__items.view-more-link .more-link a, .primaryRedBackground .js-pager__items.pager .view-more-link a, .primaryRedBackground .js-pager__items.standard-more-link .view-more-link a, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .view-more-link a, .primaryRedBackground .js-pager__items.view-more-link .view-more-link a, .primaryRedBackground .js-pager__items.pager .pager__item a.button, .primaryRedBackground .js-pager__items.standard-more-link .pager__item a.button, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .pager__item a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .pager__item a.button, .primaryRedBackground .js-pager__items.view-more-link .pager__item a.button, .primaryRedBackground .js-pager__items.pager .blueRoundButton a.button, .primaryRedBackground .js-pager__items.standard-more-link .blueRoundButton a.button, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .blueRoundButton a.button, .primaryRedBackground .js-pager__items.view-more-link .blueRoundButton a.button, .primaryRedBackground .js-pager__items.pager .redRoundButton a.button, .primaryRedBackground .js-pager__items.standard-more-link .redRoundButton a.button, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .redRoundButton a.button, .primaryRedBackground .js-pager__items.view-more-link .redRoundButton a.button, .primaryRedBackground .js-pager__items.pager .standard-more-link a.button, .primaryRedBackground .js-pager__items.standard-more-link .standard-more-link a.button, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .standard-more-link a.button, .primaryRedBackground .js-pager__items.view-more-link .standard-more-link a.button, .primaryRedBackground .js-pager__items.pager .news-and-events--landing .more-link a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.pager .more-link a.button, .primaryRedBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.standard-more-link .more-link a.button, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .more-link a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .more-link a.button, .primaryRedBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.view-more-link .more-link a.button, .primaryRedBackground .js-pager__items.pager .view-more-link a.button, .primaryRedBackground .js-pager__items.standard-more-link .view-more-link a.button, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .view-more-link a.button, .primaryRedBackground .js-pager__items.view-more-link .view-more-link a.button {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 460, ../sass/_styleguide.scss */
  .primaryRedBackground .js-pager__items.pager .pager__item a, .primaryRedBackground .js-pager__items.standard-more-link .pager__item a, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .pager__item a, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .pager__item a, .primaryRedBackground .js-pager__items.view-more-link .pager__item a, .primaryRedBackground .js-pager__items.pager .blueRoundButton a, .primaryRedBackground .js-pager__items.standard-more-link .blueRoundButton a, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .blueRoundButton a, .primaryRedBackground .js-pager__items.view-more-link .blueRoundButton a, .primaryRedBackground .js-pager__items.pager .redRoundButton a, .primaryRedBackground .js-pager__items.standard-more-link .redRoundButton a, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .redRoundButton a, .primaryRedBackground .js-pager__items.view-more-link .redRoundButton a, .primaryRedBackground .js-pager__items.pager .standard-more-link a, .primaryRedBackground .js-pager__items.standard-more-link .standard-more-link a, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .standard-more-link a, .primaryRedBackground .js-pager__items.view-more-link .standard-more-link a, .primaryRedBackground .js-pager__items.pager .news-and-events--landing .more-link a, .news-and-events--landing .primaryRedBackground .js-pager__items.pager .more-link a, .primaryRedBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a, .news-and-events--landing .primaryRedBackground .js-pager__items.standard-more-link .more-link a, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .more-link a, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .more-link a, .primaryRedBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a, .news-and-events--landing .primaryRedBackground .js-pager__items.view-more-link .more-link a, .primaryRedBackground .js-pager__items.pager .view-more-link a, .primaryRedBackground .js-pager__items.standard-more-link .view-more-link a, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .view-more-link a, .primaryRedBackground .js-pager__items.view-more-link .view-more-link a, .primaryRedBackground .js-pager__items.pager .pager__item a.button, .primaryRedBackground .js-pager__items.standard-more-link .pager__item a.button, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .pager__item a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .pager__item a.button, .primaryRedBackground .js-pager__items.view-more-link .pager__item a.button, .primaryRedBackground .js-pager__items.pager .blueRoundButton a.button, .primaryRedBackground .js-pager__items.standard-more-link .blueRoundButton a.button, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .blueRoundButton a.button, .primaryRedBackground .js-pager__items.view-more-link .blueRoundButton a.button, .primaryRedBackground .js-pager__items.pager .redRoundButton a.button, .primaryRedBackground .js-pager__items.standard-more-link .redRoundButton a.button, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .redRoundButton a.button, .primaryRedBackground .js-pager__items.view-more-link .redRoundButton a.button, .primaryRedBackground .js-pager__items.pager .standard-more-link a.button, .primaryRedBackground .js-pager__items.standard-more-link .standard-more-link a.button, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .standard-more-link a.button, .primaryRedBackground .js-pager__items.view-more-link .standard-more-link a.button, .primaryRedBackground .js-pager__items.pager .news-and-events--landing .more-link a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.pager .more-link a.button, .primaryRedBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.standard-more-link .more-link a.button, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .more-link a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .more-link a.button, .primaryRedBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.view-more-link .more-link a.button, .primaryRedBackground .js-pager__items.pager .view-more-link a.button, .primaryRedBackground .js-pager__items.standard-more-link .view-more-link a.button, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .view-more-link a.button, .primaryRedBackground .js-pager__items.view-more-link .view-more-link a.button {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 460, ../sass/_styleguide.scss */
  .primaryRedBackground .js-pager__items.pager .pager__item a, .primaryRedBackground .js-pager__items.standard-more-link .pager__item a, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .pager__item a, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .pager__item a, .primaryRedBackground .js-pager__items.view-more-link .pager__item a, .primaryRedBackground .js-pager__items.pager .blueRoundButton a, .primaryRedBackground .js-pager__items.standard-more-link .blueRoundButton a, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .blueRoundButton a, .primaryRedBackground .js-pager__items.view-more-link .blueRoundButton a, .primaryRedBackground .js-pager__items.pager .redRoundButton a, .primaryRedBackground .js-pager__items.standard-more-link .redRoundButton a, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .redRoundButton a, .primaryRedBackground .js-pager__items.view-more-link .redRoundButton a, .primaryRedBackground .js-pager__items.pager .standard-more-link a, .primaryRedBackground .js-pager__items.standard-more-link .standard-more-link a, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .standard-more-link a, .primaryRedBackground .js-pager__items.view-more-link .standard-more-link a, .primaryRedBackground .js-pager__items.pager .news-and-events--landing .more-link a, .news-and-events--landing .primaryRedBackground .js-pager__items.pager .more-link a, .primaryRedBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a, .news-and-events--landing .primaryRedBackground .js-pager__items.standard-more-link .more-link a, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .more-link a, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .more-link a, .primaryRedBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a, .news-and-events--landing .primaryRedBackground .js-pager__items.view-more-link .more-link a, .primaryRedBackground .js-pager__items.pager .view-more-link a, .primaryRedBackground .js-pager__items.standard-more-link .view-more-link a, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .view-more-link a, .primaryRedBackground .js-pager__items.view-more-link .view-more-link a, .primaryRedBackground .js-pager__items.pager .pager__item a.button, .primaryRedBackground .js-pager__items.standard-more-link .pager__item a.button, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .pager__item a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .pager__item a.button, .primaryRedBackground .js-pager__items.view-more-link .pager__item a.button, .primaryRedBackground .js-pager__items.pager .blueRoundButton a.button, .primaryRedBackground .js-pager__items.standard-more-link .blueRoundButton a.button, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .blueRoundButton a.button, .primaryRedBackground .js-pager__items.view-more-link .blueRoundButton a.button, .primaryRedBackground .js-pager__items.pager .redRoundButton a.button, .primaryRedBackground .js-pager__items.standard-more-link .redRoundButton a.button, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .redRoundButton a.button, .primaryRedBackground .js-pager__items.view-more-link .redRoundButton a.button, .primaryRedBackground .js-pager__items.pager .standard-more-link a.button, .primaryRedBackground .js-pager__items.standard-more-link .standard-more-link a.button, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .standard-more-link a.button, .primaryRedBackground .js-pager__items.view-more-link .standard-more-link a.button, .primaryRedBackground .js-pager__items.pager .news-and-events--landing .more-link a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.pager .more-link a.button, .primaryRedBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.standard-more-link .more-link a.button, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .more-link a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .more-link a.button, .primaryRedBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.view-more-link .more-link a.button, .primaryRedBackground .js-pager__items.pager .view-more-link a.button, .primaryRedBackground .js-pager__items.standard-more-link .view-more-link a.button, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a.button, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .view-more-link a.button, .primaryRedBackground .js-pager__items.view-more-link .view-more-link a.button {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.primaryRedBackground .js-pager__items.pager .pager__item a:hover, .primaryRedBackground .js-pager__items.standard-more-link .pager__item a:hover, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .pager__item a:hover, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .pager__item a:hover, .primaryRedBackground .js-pager__items.view-more-link .pager__item a:hover, .primaryRedBackground .js-pager__items.pager .blueRoundButton a:hover, .primaryRedBackground .js-pager__items.standard-more-link .blueRoundButton a:hover, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a:hover, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .blueRoundButton a:hover, .primaryRedBackground .js-pager__items.view-more-link .blueRoundButton a:hover, .primaryRedBackground .js-pager__items.pager .redRoundButton a:hover, .primaryRedBackground .js-pager__items.standard-more-link .redRoundButton a:hover, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a:hover, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .redRoundButton a:hover, .primaryRedBackground .js-pager__items.view-more-link .redRoundButton a:hover, .primaryRedBackground .js-pager__items.pager .standard-more-link a:hover, .primaryRedBackground .js-pager__items.standard-more-link .standard-more-link a:hover, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a:hover, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .standard-more-link a:hover, .primaryRedBackground .js-pager__items.view-more-link .standard-more-link a:hover, .primaryRedBackground .js-pager__items.pager .news-and-events--landing .more-link a:hover, .news-and-events--landing .primaryRedBackground .js-pager__items.pager .more-link a:hover, .primaryRedBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a:hover, .news-and-events--landing .primaryRedBackground .js-pager__items.standard-more-link .more-link a:hover, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .more-link a:hover, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .more-link a:hover, .primaryRedBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a:hover, .news-and-events--landing .primaryRedBackground .js-pager__items.view-more-link .more-link a:hover, .primaryRedBackground .js-pager__items.pager .view-more-link a:hover, .primaryRedBackground .js-pager__items.standard-more-link .view-more-link a:hover, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a:hover, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .view-more-link a:hover, .primaryRedBackground .js-pager__items.view-more-link .view-more-link a:hover, .primaryRedBackground .js-pager__items.pager .pager__item a.button:hover, .primaryRedBackground .js-pager__items.standard-more-link .pager__item a.button:hover, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .pager__item a.button:hover, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .pager__item a.button:hover, .primaryRedBackground .js-pager__items.view-more-link .pager__item a.button:hover, .primaryRedBackground .js-pager__items.pager .blueRoundButton a.button:hover, .primaryRedBackground .js-pager__items.standard-more-link .blueRoundButton a.button:hover, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a.button:hover, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .blueRoundButton a.button:hover, .primaryRedBackground .js-pager__items.view-more-link .blueRoundButton a.button:hover, .primaryRedBackground .js-pager__items.pager .redRoundButton a.button:hover, .primaryRedBackground .js-pager__items.standard-more-link .redRoundButton a.button:hover, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a.button:hover, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .redRoundButton a.button:hover, .primaryRedBackground .js-pager__items.view-more-link .redRoundButton a.button:hover, .primaryRedBackground .js-pager__items.pager .standard-more-link a.button:hover, .primaryRedBackground .js-pager__items.standard-more-link .standard-more-link a.button:hover, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a.button:hover, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .standard-more-link a.button:hover, .primaryRedBackground .js-pager__items.view-more-link .standard-more-link a.button:hover, .primaryRedBackground .js-pager__items.pager .news-and-events--landing .more-link a.button:hover, .news-and-events--landing .primaryRedBackground .js-pager__items.pager .more-link a.button:hover, .primaryRedBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a.button:hover, .news-and-events--landing .primaryRedBackground .js-pager__items.standard-more-link .more-link a.button:hover, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .more-link a.button:hover, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .more-link a.button:hover, .primaryRedBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a.button:hover, .news-and-events--landing .primaryRedBackground .js-pager__items.view-more-link .more-link a.button:hover, .primaryRedBackground .js-pager__items.pager .view-more-link a.button:hover, .primaryRedBackground .js-pager__items.standard-more-link .view-more-link a.button:hover, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a.button:hover, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .view-more-link a.button:hover, .primaryRedBackground .js-pager__items.view-more-link .view-more-link a.button:hover {
  background-color: #f6c163;
  border-color: #f6c163;
  color: #222;
  text-decoration: none;
}
/* line 2379, ../sass/_mixins.scss */
.primaryRedBackground .js-pager__items.pager .pager__item a:focus, .primaryRedBackground .js-pager__items.standard-more-link .pager__item a:focus, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .pager__item a:focus, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .pager__item a:focus, .primaryRedBackground .js-pager__items.view-more-link .pager__item a:focus, .primaryRedBackground .js-pager__items.pager .blueRoundButton a:focus, .primaryRedBackground .js-pager__items.standard-more-link .blueRoundButton a:focus, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a:focus, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .blueRoundButton a:focus, .primaryRedBackground .js-pager__items.view-more-link .blueRoundButton a:focus, .primaryRedBackground .js-pager__items.pager .redRoundButton a:focus, .primaryRedBackground .js-pager__items.standard-more-link .redRoundButton a:focus, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a:focus, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .redRoundButton a:focus, .primaryRedBackground .js-pager__items.view-more-link .redRoundButton a:focus, .primaryRedBackground .js-pager__items.pager .standard-more-link a:focus, .primaryRedBackground .js-pager__items.standard-more-link .standard-more-link a:focus, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a:focus, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .standard-more-link a:focus, .primaryRedBackground .js-pager__items.view-more-link .standard-more-link a:focus, .primaryRedBackground .js-pager__items.pager .news-and-events--landing .more-link a:focus, .news-and-events--landing .primaryRedBackground .js-pager__items.pager .more-link a:focus, .primaryRedBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a:focus, .news-and-events--landing .primaryRedBackground .js-pager__items.standard-more-link .more-link a:focus, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .more-link a:focus, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .more-link a:focus, .primaryRedBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a:focus, .news-and-events--landing .primaryRedBackground .js-pager__items.view-more-link .more-link a:focus, .primaryRedBackground .js-pager__items.pager .view-more-link a:focus, .primaryRedBackground .js-pager__items.standard-more-link .view-more-link a:focus, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a:focus, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .view-more-link a:focus, .primaryRedBackground .js-pager__items.view-more-link .view-more-link a:focus, .primaryRedBackground .js-pager__items.pager .pager__item a:active, .primaryRedBackground .js-pager__items.standard-more-link .pager__item a:active, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .pager__item a:active, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .pager__item a:active, .primaryRedBackground .js-pager__items.view-more-link .pager__item a:active, .primaryRedBackground .js-pager__items.pager .blueRoundButton a:active, .primaryRedBackground .js-pager__items.standard-more-link .blueRoundButton a:active, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a:active, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .blueRoundButton a:active, .primaryRedBackground .js-pager__items.view-more-link .blueRoundButton a:active, .primaryRedBackground .js-pager__items.pager .redRoundButton a:active, .primaryRedBackground .js-pager__items.standard-more-link .redRoundButton a:active, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a:active, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .redRoundButton a:active, .primaryRedBackground .js-pager__items.view-more-link .redRoundButton a:active, .primaryRedBackground .js-pager__items.pager .standard-more-link a:active, .primaryRedBackground .js-pager__items.standard-more-link .standard-more-link a:active, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a:active, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .standard-more-link a:active, .primaryRedBackground .js-pager__items.view-more-link .standard-more-link a:active, .primaryRedBackground .js-pager__items.pager .news-and-events--landing .more-link a:active, .news-and-events--landing .primaryRedBackground .js-pager__items.pager .more-link a:active, .primaryRedBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a:active, .news-and-events--landing .primaryRedBackground .js-pager__items.standard-more-link .more-link a:active, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .more-link a:active, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .more-link a:active, .primaryRedBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a:active, .news-and-events--landing .primaryRedBackground .js-pager__items.view-more-link .more-link a:active, .primaryRedBackground .js-pager__items.pager .view-more-link a:active, .primaryRedBackground .js-pager__items.standard-more-link .view-more-link a:active, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a:active, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .view-more-link a:active, .primaryRedBackground .js-pager__items.view-more-link .view-more-link a:active, .primaryRedBackground .js-pager__items.pager .pager__item a.button:focus, .primaryRedBackground .js-pager__items.standard-more-link .pager__item a.button:focus, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .pager__item a.button:focus, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .pager__item a.button:focus, .primaryRedBackground .js-pager__items.view-more-link .pager__item a.button:focus, .primaryRedBackground .js-pager__items.pager .blueRoundButton a.button:focus, .primaryRedBackground .js-pager__items.standard-more-link .blueRoundButton a.button:focus, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a.button:focus, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .blueRoundButton a.button:focus, .primaryRedBackground .js-pager__items.view-more-link .blueRoundButton a.button:focus, .primaryRedBackground .js-pager__items.pager .redRoundButton a.button:focus, .primaryRedBackground .js-pager__items.standard-more-link .redRoundButton a.button:focus, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a.button:focus, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .redRoundButton a.button:focus, .primaryRedBackground .js-pager__items.view-more-link .redRoundButton a.button:focus, .primaryRedBackground .js-pager__items.pager .standard-more-link a.button:focus, .primaryRedBackground .js-pager__items.standard-more-link .standard-more-link a.button:focus, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a.button:focus, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .standard-more-link a.button:focus, .primaryRedBackground .js-pager__items.view-more-link .standard-more-link a.button:focus, .primaryRedBackground .js-pager__items.pager .news-and-events--landing .more-link a.button:focus, .news-and-events--landing .primaryRedBackground .js-pager__items.pager .more-link a.button:focus, .primaryRedBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a.button:focus, .news-and-events--landing .primaryRedBackground .js-pager__items.standard-more-link .more-link a.button:focus, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .more-link a.button:focus, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .more-link a.button:focus, .primaryRedBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a.button:focus, .news-and-events--landing .primaryRedBackground .js-pager__items.view-more-link .more-link a.button:focus, .primaryRedBackground .js-pager__items.pager .view-more-link a.button:focus, .primaryRedBackground .js-pager__items.standard-more-link .view-more-link a.button:focus, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a.button:focus, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .view-more-link a.button:focus, .primaryRedBackground .js-pager__items.view-more-link .view-more-link a.button:focus, .primaryRedBackground .js-pager__items.pager .pager__item a.button:active, .primaryRedBackground .js-pager__items.standard-more-link .pager__item a.button:active, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .pager__item a.button:active, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .pager__item a.button:active, .primaryRedBackground .js-pager__items.view-more-link .pager__item a.button:active, .primaryRedBackground .js-pager__items.pager .blueRoundButton a.button:active, .primaryRedBackground .js-pager__items.standard-more-link .blueRoundButton a.button:active, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a.button:active, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .blueRoundButton a.button:active, .primaryRedBackground .js-pager__items.view-more-link .blueRoundButton a.button:active, .primaryRedBackground .js-pager__items.pager .redRoundButton a.button:active, .primaryRedBackground .js-pager__items.standard-more-link .redRoundButton a.button:active, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a.button:active, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .redRoundButton a.button:active, .primaryRedBackground .js-pager__items.view-more-link .redRoundButton a.button:active, .primaryRedBackground .js-pager__items.pager .standard-more-link a.button:active, .primaryRedBackground .js-pager__items.standard-more-link .standard-more-link a.button:active, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a.button:active, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .standard-more-link a.button:active, .primaryRedBackground .js-pager__items.view-more-link .standard-more-link a.button:active, .primaryRedBackground .js-pager__items.pager .news-and-events--landing .more-link a.button:active, .news-and-events--landing .primaryRedBackground .js-pager__items.pager .more-link a.button:active, .primaryRedBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a.button:active, .news-and-events--landing .primaryRedBackground .js-pager__items.standard-more-link .more-link a.button:active, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .more-link a.button:active, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .more-link a.button:active, .primaryRedBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a.button:active, .news-and-events--landing .primaryRedBackground .js-pager__items.view-more-link .more-link a.button:active, .primaryRedBackground .js-pager__items.pager .view-more-link a.button:active, .primaryRedBackground .js-pager__items.standard-more-link .view-more-link a.button:active, .primaryRedBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a.button:active, .news-and-events--landing .primaryRedBackground .js-pager__items.more-link .view-more-link a.button:active, .primaryRedBackground .js-pager__items.view-more-link .view-more-link a.button:active {
  outline: #fff dotted 3px !important;
}

/* line 468, ../sass/_styleguide.scss */
.darkRedBackground .js-pager__items.pager .pager__item a, .darkRedBackground .js-pager__items.standard-more-link .pager__item a, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .pager__item a, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .pager__item a, .darkRedBackground .js-pager__items.view-more-link .pager__item a, .darkRedBackground .js-pager__items.pager .blueRoundButton a, .darkRedBackground .js-pager__items.standard-more-link .blueRoundButton a, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .blueRoundButton a, .darkRedBackground .js-pager__items.view-more-link .blueRoundButton a, .darkRedBackground .js-pager__items.pager .redRoundButton a, .darkRedBackground .js-pager__items.standard-more-link .redRoundButton a, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .redRoundButton a, .darkRedBackground .js-pager__items.view-more-link .redRoundButton a, .darkRedBackground .js-pager__items.pager .standard-more-link a, .darkRedBackground .js-pager__items.standard-more-link .standard-more-link a, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .standard-more-link a, .darkRedBackground .js-pager__items.view-more-link .standard-more-link a, .darkRedBackground .js-pager__items.pager .news-and-events--landing .more-link a, .news-and-events--landing .darkRedBackground .js-pager__items.pager .more-link a, .darkRedBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a, .news-and-events--landing .darkRedBackground .js-pager__items.standard-more-link .more-link a, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .more-link a, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .more-link a, .darkRedBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a, .news-and-events--landing .darkRedBackground .js-pager__items.view-more-link .more-link a, .darkRedBackground .js-pager__items.pager .view-more-link a, .darkRedBackground .js-pager__items.standard-more-link .view-more-link a, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .view-more-link a, .darkRedBackground .js-pager__items.view-more-link .view-more-link a, .darkRedBackground .js-pager__items.pager .pager__item a.button, .darkRedBackground .js-pager__items.standard-more-link .pager__item a.button, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .pager__item a.button, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .pager__item a.button, .darkRedBackground .js-pager__items.view-more-link .pager__item a.button, .darkRedBackground .js-pager__items.pager .blueRoundButton a.button, .darkRedBackground .js-pager__items.standard-more-link .blueRoundButton a.button, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a.button, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .blueRoundButton a.button, .darkRedBackground .js-pager__items.view-more-link .blueRoundButton a.button, .darkRedBackground .js-pager__items.pager .redRoundButton a.button, .darkRedBackground .js-pager__items.standard-more-link .redRoundButton a.button, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a.button, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .redRoundButton a.button, .darkRedBackground .js-pager__items.view-more-link .redRoundButton a.button, .darkRedBackground .js-pager__items.pager .standard-more-link a.button, .darkRedBackground .js-pager__items.standard-more-link .standard-more-link a.button, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a.button, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .standard-more-link a.button, .darkRedBackground .js-pager__items.view-more-link .standard-more-link a.button, .darkRedBackground .js-pager__items.pager .news-and-events--landing .more-link a.button, .news-and-events--landing .darkRedBackground .js-pager__items.pager .more-link a.button, .darkRedBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .darkRedBackground .js-pager__items.standard-more-link .more-link a.button, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .more-link a.button, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .more-link a.button, .darkRedBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .darkRedBackground .js-pager__items.view-more-link .more-link a.button, .darkRedBackground .js-pager__items.pager .view-more-link a.button, .darkRedBackground .js-pager__items.standard-more-link .view-more-link a.button, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a.button, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .view-more-link a.button, .darkRedBackground .js-pager__items.view-more-link .view-more-link a.button {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #850920;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #fff;
  padding: 0.8em 3em;
  display: table !important;
  background-image: none;
}
@media all and (min-width: 1440px) {
  /* line 468, ../sass/_styleguide.scss */
  .darkRedBackground .js-pager__items.pager .pager__item a, .darkRedBackground .js-pager__items.standard-more-link .pager__item a, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .pager__item a, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .pager__item a, .darkRedBackground .js-pager__items.view-more-link .pager__item a, .darkRedBackground .js-pager__items.pager .blueRoundButton a, .darkRedBackground .js-pager__items.standard-more-link .blueRoundButton a, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .blueRoundButton a, .darkRedBackground .js-pager__items.view-more-link .blueRoundButton a, .darkRedBackground .js-pager__items.pager .redRoundButton a, .darkRedBackground .js-pager__items.standard-more-link .redRoundButton a, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .redRoundButton a, .darkRedBackground .js-pager__items.view-more-link .redRoundButton a, .darkRedBackground .js-pager__items.pager .standard-more-link a, .darkRedBackground .js-pager__items.standard-more-link .standard-more-link a, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .standard-more-link a, .darkRedBackground .js-pager__items.view-more-link .standard-more-link a, .darkRedBackground .js-pager__items.pager .news-and-events--landing .more-link a, .news-and-events--landing .darkRedBackground .js-pager__items.pager .more-link a, .darkRedBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a, .news-and-events--landing .darkRedBackground .js-pager__items.standard-more-link .more-link a, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .more-link a, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .more-link a, .darkRedBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a, .news-and-events--landing .darkRedBackground .js-pager__items.view-more-link .more-link a, .darkRedBackground .js-pager__items.pager .view-more-link a, .darkRedBackground .js-pager__items.standard-more-link .view-more-link a, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .view-more-link a, .darkRedBackground .js-pager__items.view-more-link .view-more-link a, .darkRedBackground .js-pager__items.pager .pager__item a.button, .darkRedBackground .js-pager__items.standard-more-link .pager__item a.button, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .pager__item a.button, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .pager__item a.button, .darkRedBackground .js-pager__items.view-more-link .pager__item a.button, .darkRedBackground .js-pager__items.pager .blueRoundButton a.button, .darkRedBackground .js-pager__items.standard-more-link .blueRoundButton a.button, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a.button, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .blueRoundButton a.button, .darkRedBackground .js-pager__items.view-more-link .blueRoundButton a.button, .darkRedBackground .js-pager__items.pager .redRoundButton a.button, .darkRedBackground .js-pager__items.standard-more-link .redRoundButton a.button, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a.button, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .redRoundButton a.button, .darkRedBackground .js-pager__items.view-more-link .redRoundButton a.button, .darkRedBackground .js-pager__items.pager .standard-more-link a.button, .darkRedBackground .js-pager__items.standard-more-link .standard-more-link a.button, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a.button, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .standard-more-link a.button, .darkRedBackground .js-pager__items.view-more-link .standard-more-link a.button, .darkRedBackground .js-pager__items.pager .news-and-events--landing .more-link a.button, .news-and-events--landing .darkRedBackground .js-pager__items.pager .more-link a.button, .darkRedBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .darkRedBackground .js-pager__items.standard-more-link .more-link a.button, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .more-link a.button, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .more-link a.button, .darkRedBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .darkRedBackground .js-pager__items.view-more-link .more-link a.button, .darkRedBackground .js-pager__items.pager .view-more-link a.button, .darkRedBackground .js-pager__items.standard-more-link .view-more-link a.button, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a.button, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .view-more-link a.button, .darkRedBackground .js-pager__items.view-more-link .view-more-link a.button {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 468, ../sass/_styleguide.scss */
  .darkRedBackground .js-pager__items.pager .pager__item a, .darkRedBackground .js-pager__items.standard-more-link .pager__item a, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .pager__item a, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .pager__item a, .darkRedBackground .js-pager__items.view-more-link .pager__item a, .darkRedBackground .js-pager__items.pager .blueRoundButton a, .darkRedBackground .js-pager__items.standard-more-link .blueRoundButton a, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .blueRoundButton a, .darkRedBackground .js-pager__items.view-more-link .blueRoundButton a, .darkRedBackground .js-pager__items.pager .redRoundButton a, .darkRedBackground .js-pager__items.standard-more-link .redRoundButton a, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .redRoundButton a, .darkRedBackground .js-pager__items.view-more-link .redRoundButton a, .darkRedBackground .js-pager__items.pager .standard-more-link a, .darkRedBackground .js-pager__items.standard-more-link .standard-more-link a, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .standard-more-link a, .darkRedBackground .js-pager__items.view-more-link .standard-more-link a, .darkRedBackground .js-pager__items.pager .news-and-events--landing .more-link a, .news-and-events--landing .darkRedBackground .js-pager__items.pager .more-link a, .darkRedBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a, .news-and-events--landing .darkRedBackground .js-pager__items.standard-more-link .more-link a, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .more-link a, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .more-link a, .darkRedBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a, .news-and-events--landing .darkRedBackground .js-pager__items.view-more-link .more-link a, .darkRedBackground .js-pager__items.pager .view-more-link a, .darkRedBackground .js-pager__items.standard-more-link .view-more-link a, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .view-more-link a, .darkRedBackground .js-pager__items.view-more-link .view-more-link a, .darkRedBackground .js-pager__items.pager .pager__item a.button, .darkRedBackground .js-pager__items.standard-more-link .pager__item a.button, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .pager__item a.button, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .pager__item a.button, .darkRedBackground .js-pager__items.view-more-link .pager__item a.button, .darkRedBackground .js-pager__items.pager .blueRoundButton a.button, .darkRedBackground .js-pager__items.standard-more-link .blueRoundButton a.button, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a.button, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .blueRoundButton a.button, .darkRedBackground .js-pager__items.view-more-link .blueRoundButton a.button, .darkRedBackground .js-pager__items.pager .redRoundButton a.button, .darkRedBackground .js-pager__items.standard-more-link .redRoundButton a.button, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a.button, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .redRoundButton a.button, .darkRedBackground .js-pager__items.view-more-link .redRoundButton a.button, .darkRedBackground .js-pager__items.pager .standard-more-link a.button, .darkRedBackground .js-pager__items.standard-more-link .standard-more-link a.button, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a.button, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .standard-more-link a.button, .darkRedBackground .js-pager__items.view-more-link .standard-more-link a.button, .darkRedBackground .js-pager__items.pager .news-and-events--landing .more-link a.button, .news-and-events--landing .darkRedBackground .js-pager__items.pager .more-link a.button, .darkRedBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .darkRedBackground .js-pager__items.standard-more-link .more-link a.button, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .more-link a.button, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .more-link a.button, .darkRedBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .darkRedBackground .js-pager__items.view-more-link .more-link a.button, .darkRedBackground .js-pager__items.pager .view-more-link a.button, .darkRedBackground .js-pager__items.standard-more-link .view-more-link a.button, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a.button, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .view-more-link a.button, .darkRedBackground .js-pager__items.view-more-link .view-more-link a.button {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 468, ../sass/_styleguide.scss */
  .darkRedBackground .js-pager__items.pager .pager__item a, .darkRedBackground .js-pager__items.standard-more-link .pager__item a, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .pager__item a, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .pager__item a, .darkRedBackground .js-pager__items.view-more-link .pager__item a, .darkRedBackground .js-pager__items.pager .blueRoundButton a, .darkRedBackground .js-pager__items.standard-more-link .blueRoundButton a, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .blueRoundButton a, .darkRedBackground .js-pager__items.view-more-link .blueRoundButton a, .darkRedBackground .js-pager__items.pager .redRoundButton a, .darkRedBackground .js-pager__items.standard-more-link .redRoundButton a, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .redRoundButton a, .darkRedBackground .js-pager__items.view-more-link .redRoundButton a, .darkRedBackground .js-pager__items.pager .standard-more-link a, .darkRedBackground .js-pager__items.standard-more-link .standard-more-link a, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .standard-more-link a, .darkRedBackground .js-pager__items.view-more-link .standard-more-link a, .darkRedBackground .js-pager__items.pager .news-and-events--landing .more-link a, .news-and-events--landing .darkRedBackground .js-pager__items.pager .more-link a, .darkRedBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a, .news-and-events--landing .darkRedBackground .js-pager__items.standard-more-link .more-link a, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .more-link a, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .more-link a, .darkRedBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a, .news-and-events--landing .darkRedBackground .js-pager__items.view-more-link .more-link a, .darkRedBackground .js-pager__items.pager .view-more-link a, .darkRedBackground .js-pager__items.standard-more-link .view-more-link a, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .view-more-link a, .darkRedBackground .js-pager__items.view-more-link .view-more-link a, .darkRedBackground .js-pager__items.pager .pager__item a.button, .darkRedBackground .js-pager__items.standard-more-link .pager__item a.button, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .pager__item a.button, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .pager__item a.button, .darkRedBackground .js-pager__items.view-more-link .pager__item a.button, .darkRedBackground .js-pager__items.pager .blueRoundButton a.button, .darkRedBackground .js-pager__items.standard-more-link .blueRoundButton a.button, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a.button, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .blueRoundButton a.button, .darkRedBackground .js-pager__items.view-more-link .blueRoundButton a.button, .darkRedBackground .js-pager__items.pager .redRoundButton a.button, .darkRedBackground .js-pager__items.standard-more-link .redRoundButton a.button, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a.button, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .redRoundButton a.button, .darkRedBackground .js-pager__items.view-more-link .redRoundButton a.button, .darkRedBackground .js-pager__items.pager .standard-more-link a.button, .darkRedBackground .js-pager__items.standard-more-link .standard-more-link a.button, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a.button, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .standard-more-link a.button, .darkRedBackground .js-pager__items.view-more-link .standard-more-link a.button, .darkRedBackground .js-pager__items.pager .news-and-events--landing .more-link a.button, .news-and-events--landing .darkRedBackground .js-pager__items.pager .more-link a.button, .darkRedBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .darkRedBackground .js-pager__items.standard-more-link .more-link a.button, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .more-link a.button, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .more-link a.button, .darkRedBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .darkRedBackground .js-pager__items.view-more-link .more-link a.button, .darkRedBackground .js-pager__items.pager .view-more-link a.button, .darkRedBackground .js-pager__items.standard-more-link .view-more-link a.button, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a.button, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .view-more-link a.button, .darkRedBackground .js-pager__items.view-more-link .view-more-link a.button {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 468, ../sass/_styleguide.scss */
  .darkRedBackground .js-pager__items.pager .pager__item a, .darkRedBackground .js-pager__items.standard-more-link .pager__item a, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .pager__item a, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .pager__item a, .darkRedBackground .js-pager__items.view-more-link .pager__item a, .darkRedBackground .js-pager__items.pager .blueRoundButton a, .darkRedBackground .js-pager__items.standard-more-link .blueRoundButton a, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .blueRoundButton a, .darkRedBackground .js-pager__items.view-more-link .blueRoundButton a, .darkRedBackground .js-pager__items.pager .redRoundButton a, .darkRedBackground .js-pager__items.standard-more-link .redRoundButton a, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .redRoundButton a, .darkRedBackground .js-pager__items.view-more-link .redRoundButton a, .darkRedBackground .js-pager__items.pager .standard-more-link a, .darkRedBackground .js-pager__items.standard-more-link .standard-more-link a, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .standard-more-link a, .darkRedBackground .js-pager__items.view-more-link .standard-more-link a, .darkRedBackground .js-pager__items.pager .news-and-events--landing .more-link a, .news-and-events--landing .darkRedBackground .js-pager__items.pager .more-link a, .darkRedBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a, .news-and-events--landing .darkRedBackground .js-pager__items.standard-more-link .more-link a, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .more-link a, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .more-link a, .darkRedBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a, .news-and-events--landing .darkRedBackground .js-pager__items.view-more-link .more-link a, .darkRedBackground .js-pager__items.pager .view-more-link a, .darkRedBackground .js-pager__items.standard-more-link .view-more-link a, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .view-more-link a, .darkRedBackground .js-pager__items.view-more-link .view-more-link a, .darkRedBackground .js-pager__items.pager .pager__item a.button, .darkRedBackground .js-pager__items.standard-more-link .pager__item a.button, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .pager__item a.button, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .pager__item a.button, .darkRedBackground .js-pager__items.view-more-link .pager__item a.button, .darkRedBackground .js-pager__items.pager .blueRoundButton a.button, .darkRedBackground .js-pager__items.standard-more-link .blueRoundButton a.button, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a.button, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .blueRoundButton a.button, .darkRedBackground .js-pager__items.view-more-link .blueRoundButton a.button, .darkRedBackground .js-pager__items.pager .redRoundButton a.button, .darkRedBackground .js-pager__items.standard-more-link .redRoundButton a.button, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a.button, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .redRoundButton a.button, .darkRedBackground .js-pager__items.view-more-link .redRoundButton a.button, .darkRedBackground .js-pager__items.pager .standard-more-link a.button, .darkRedBackground .js-pager__items.standard-more-link .standard-more-link a.button, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a.button, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .standard-more-link a.button, .darkRedBackground .js-pager__items.view-more-link .standard-more-link a.button, .darkRedBackground .js-pager__items.pager .news-and-events--landing .more-link a.button, .news-and-events--landing .darkRedBackground .js-pager__items.pager .more-link a.button, .darkRedBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .darkRedBackground .js-pager__items.standard-more-link .more-link a.button, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .more-link a.button, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .more-link a.button, .darkRedBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .darkRedBackground .js-pager__items.view-more-link .more-link a.button, .darkRedBackground .js-pager__items.pager .view-more-link a.button, .darkRedBackground .js-pager__items.standard-more-link .view-more-link a.button, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a.button, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .view-more-link a.button, .darkRedBackground .js-pager__items.view-more-link .view-more-link a.button {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.darkRedBackground .js-pager__items.pager .pager__item a :hover, .darkRedBackground .js-pager__items.standard-more-link .pager__item a :hover, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .pager__item a :hover, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .pager__item a :hover, .darkRedBackground .js-pager__items.view-more-link .pager__item a :hover, .darkRedBackground .js-pager__items.pager .blueRoundButton a :hover, .darkRedBackground .js-pager__items.standard-more-link .blueRoundButton a :hover, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a :hover, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .blueRoundButton a :hover, .darkRedBackground .js-pager__items.view-more-link .blueRoundButton a :hover, .darkRedBackground .js-pager__items.pager .redRoundButton a :hover, .darkRedBackground .js-pager__items.standard-more-link .redRoundButton a :hover, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a :hover, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .redRoundButton a :hover, .darkRedBackground .js-pager__items.view-more-link .redRoundButton a :hover, .darkRedBackground .js-pager__items.pager .standard-more-link a :hover, .darkRedBackground .js-pager__items.standard-more-link .standard-more-link a :hover, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a :hover, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .standard-more-link a :hover, .darkRedBackground .js-pager__items.view-more-link .standard-more-link a :hover, .darkRedBackground .js-pager__items.pager .news-and-events--landing .more-link a :hover, .news-and-events--landing .darkRedBackground .js-pager__items.pager .more-link a :hover, .darkRedBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a :hover, .news-and-events--landing .darkRedBackground .js-pager__items.standard-more-link .more-link a :hover, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .more-link a :hover, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .more-link a :hover, .darkRedBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a :hover, .news-and-events--landing .darkRedBackground .js-pager__items.view-more-link .more-link a :hover, .darkRedBackground .js-pager__items.pager .view-more-link a :hover, .darkRedBackground .js-pager__items.standard-more-link .view-more-link a :hover, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a :hover, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .view-more-link a :hover, .darkRedBackground .js-pager__items.view-more-link .view-more-link a :hover, .darkRedBackground .js-pager__items.pager .pager__item a.button :hover, .darkRedBackground .js-pager__items.standard-more-link .pager__item a.button :hover, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .pager__item a.button :hover, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .pager__item a.button :hover, .darkRedBackground .js-pager__items.view-more-link .pager__item a.button :hover, .darkRedBackground .js-pager__items.pager .blueRoundButton a.button :hover, .darkRedBackground .js-pager__items.standard-more-link .blueRoundButton a.button :hover, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a.button :hover, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .blueRoundButton a.button :hover, .darkRedBackground .js-pager__items.view-more-link .blueRoundButton a.button :hover, .darkRedBackground .js-pager__items.pager .redRoundButton a.button :hover, .darkRedBackground .js-pager__items.standard-more-link .redRoundButton a.button :hover, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a.button :hover, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .redRoundButton a.button :hover, .darkRedBackground .js-pager__items.view-more-link .redRoundButton a.button :hover, .darkRedBackground .js-pager__items.pager .standard-more-link a.button :hover, .darkRedBackground .js-pager__items.standard-more-link .standard-more-link a.button :hover, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a.button :hover, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .standard-more-link a.button :hover, .darkRedBackground .js-pager__items.view-more-link .standard-more-link a.button :hover, .darkRedBackground .js-pager__items.pager .news-and-events--landing .more-link a.button :hover, .news-and-events--landing .darkRedBackground .js-pager__items.pager .more-link a.button :hover, .darkRedBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a.button :hover, .news-and-events--landing .darkRedBackground .js-pager__items.standard-more-link .more-link a.button :hover, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .more-link a.button :hover, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .more-link a.button :hover, .darkRedBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a.button :hover, .news-and-events--landing .darkRedBackground .js-pager__items.view-more-link .more-link a.button :hover, .darkRedBackground .js-pager__items.pager .view-more-link a.button :hover, .darkRedBackground .js-pager__items.standard-more-link .view-more-link a.button :hover, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a.button :hover, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .view-more-link a.button :hover, .darkRedBackground .js-pager__items.view-more-link .view-more-link a.button :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 468, ../sass/_styleguide.scss */
  .darkRedBackground .js-pager__items.pager .pager__item a, .darkRedBackground .js-pager__items.standard-more-link .pager__item a, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .pager__item a, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .pager__item a, .darkRedBackground .js-pager__items.view-more-link .pager__item a, .darkRedBackground .js-pager__items.pager .blueRoundButton a, .darkRedBackground .js-pager__items.standard-more-link .blueRoundButton a, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .blueRoundButton a, .darkRedBackground .js-pager__items.view-more-link .blueRoundButton a, .darkRedBackground .js-pager__items.pager .redRoundButton a, .darkRedBackground .js-pager__items.standard-more-link .redRoundButton a, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .redRoundButton a, .darkRedBackground .js-pager__items.view-more-link .redRoundButton a, .darkRedBackground .js-pager__items.pager .standard-more-link a, .darkRedBackground .js-pager__items.standard-more-link .standard-more-link a, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .standard-more-link a, .darkRedBackground .js-pager__items.view-more-link .standard-more-link a, .darkRedBackground .js-pager__items.pager .news-and-events--landing .more-link a, .news-and-events--landing .darkRedBackground .js-pager__items.pager .more-link a, .darkRedBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a, .news-and-events--landing .darkRedBackground .js-pager__items.standard-more-link .more-link a, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .more-link a, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .more-link a, .darkRedBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a, .news-and-events--landing .darkRedBackground .js-pager__items.view-more-link .more-link a, .darkRedBackground .js-pager__items.pager .view-more-link a, .darkRedBackground .js-pager__items.standard-more-link .view-more-link a, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .view-more-link a, .darkRedBackground .js-pager__items.view-more-link .view-more-link a, .darkRedBackground .js-pager__items.pager .pager__item a.button, .darkRedBackground .js-pager__items.standard-more-link .pager__item a.button, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .pager__item a.button, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .pager__item a.button, .darkRedBackground .js-pager__items.view-more-link .pager__item a.button, .darkRedBackground .js-pager__items.pager .blueRoundButton a.button, .darkRedBackground .js-pager__items.standard-more-link .blueRoundButton a.button, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a.button, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .blueRoundButton a.button, .darkRedBackground .js-pager__items.view-more-link .blueRoundButton a.button, .darkRedBackground .js-pager__items.pager .redRoundButton a.button, .darkRedBackground .js-pager__items.standard-more-link .redRoundButton a.button, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a.button, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .redRoundButton a.button, .darkRedBackground .js-pager__items.view-more-link .redRoundButton a.button, .darkRedBackground .js-pager__items.pager .standard-more-link a.button, .darkRedBackground .js-pager__items.standard-more-link .standard-more-link a.button, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a.button, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .standard-more-link a.button, .darkRedBackground .js-pager__items.view-more-link .standard-more-link a.button, .darkRedBackground .js-pager__items.pager .news-and-events--landing .more-link a.button, .news-and-events--landing .darkRedBackground .js-pager__items.pager .more-link a.button, .darkRedBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .darkRedBackground .js-pager__items.standard-more-link .more-link a.button, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .more-link a.button, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .more-link a.button, .darkRedBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .darkRedBackground .js-pager__items.view-more-link .more-link a.button, .darkRedBackground .js-pager__items.pager .view-more-link a.button, .darkRedBackground .js-pager__items.standard-more-link .view-more-link a.button, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a.button, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .view-more-link a.button, .darkRedBackground .js-pager__items.view-more-link .view-more-link a.button {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 468, ../sass/_styleguide.scss */
  .darkRedBackground .js-pager__items.pager .pager__item a, .darkRedBackground .js-pager__items.standard-more-link .pager__item a, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .pager__item a, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .pager__item a, .darkRedBackground .js-pager__items.view-more-link .pager__item a, .darkRedBackground .js-pager__items.pager .blueRoundButton a, .darkRedBackground .js-pager__items.standard-more-link .blueRoundButton a, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .blueRoundButton a, .darkRedBackground .js-pager__items.view-more-link .blueRoundButton a, .darkRedBackground .js-pager__items.pager .redRoundButton a, .darkRedBackground .js-pager__items.standard-more-link .redRoundButton a, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .redRoundButton a, .darkRedBackground .js-pager__items.view-more-link .redRoundButton a, .darkRedBackground .js-pager__items.pager .standard-more-link a, .darkRedBackground .js-pager__items.standard-more-link .standard-more-link a, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .standard-more-link a, .darkRedBackground .js-pager__items.view-more-link .standard-more-link a, .darkRedBackground .js-pager__items.pager .news-and-events--landing .more-link a, .news-and-events--landing .darkRedBackground .js-pager__items.pager .more-link a, .darkRedBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a, .news-and-events--landing .darkRedBackground .js-pager__items.standard-more-link .more-link a, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .more-link a, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .more-link a, .darkRedBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a, .news-and-events--landing .darkRedBackground .js-pager__items.view-more-link .more-link a, .darkRedBackground .js-pager__items.pager .view-more-link a, .darkRedBackground .js-pager__items.standard-more-link .view-more-link a, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .view-more-link a, .darkRedBackground .js-pager__items.view-more-link .view-more-link a, .darkRedBackground .js-pager__items.pager .pager__item a.button, .darkRedBackground .js-pager__items.standard-more-link .pager__item a.button, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .pager__item a.button, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .pager__item a.button, .darkRedBackground .js-pager__items.view-more-link .pager__item a.button, .darkRedBackground .js-pager__items.pager .blueRoundButton a.button, .darkRedBackground .js-pager__items.standard-more-link .blueRoundButton a.button, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a.button, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .blueRoundButton a.button, .darkRedBackground .js-pager__items.view-more-link .blueRoundButton a.button, .darkRedBackground .js-pager__items.pager .redRoundButton a.button, .darkRedBackground .js-pager__items.standard-more-link .redRoundButton a.button, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a.button, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .redRoundButton a.button, .darkRedBackground .js-pager__items.view-more-link .redRoundButton a.button, .darkRedBackground .js-pager__items.pager .standard-more-link a.button, .darkRedBackground .js-pager__items.standard-more-link .standard-more-link a.button, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a.button, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .standard-more-link a.button, .darkRedBackground .js-pager__items.view-more-link .standard-more-link a.button, .darkRedBackground .js-pager__items.pager .news-and-events--landing .more-link a.button, .news-and-events--landing .darkRedBackground .js-pager__items.pager .more-link a.button, .darkRedBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .darkRedBackground .js-pager__items.standard-more-link .more-link a.button, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .more-link a.button, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .more-link a.button, .darkRedBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .darkRedBackground .js-pager__items.view-more-link .more-link a.button, .darkRedBackground .js-pager__items.pager .view-more-link a.button, .darkRedBackground .js-pager__items.standard-more-link .view-more-link a.button, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a.button, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .view-more-link a.button, .darkRedBackground .js-pager__items.view-more-link .view-more-link a.button {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 468, ../sass/_styleguide.scss */
  .darkRedBackground .js-pager__items.pager .pager__item a, .darkRedBackground .js-pager__items.standard-more-link .pager__item a, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .pager__item a, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .pager__item a, .darkRedBackground .js-pager__items.view-more-link .pager__item a, .darkRedBackground .js-pager__items.pager .blueRoundButton a, .darkRedBackground .js-pager__items.standard-more-link .blueRoundButton a, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .blueRoundButton a, .darkRedBackground .js-pager__items.view-more-link .blueRoundButton a, .darkRedBackground .js-pager__items.pager .redRoundButton a, .darkRedBackground .js-pager__items.standard-more-link .redRoundButton a, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .redRoundButton a, .darkRedBackground .js-pager__items.view-more-link .redRoundButton a, .darkRedBackground .js-pager__items.pager .standard-more-link a, .darkRedBackground .js-pager__items.standard-more-link .standard-more-link a, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .standard-more-link a, .darkRedBackground .js-pager__items.view-more-link .standard-more-link a, .darkRedBackground .js-pager__items.pager .news-and-events--landing .more-link a, .news-and-events--landing .darkRedBackground .js-pager__items.pager .more-link a, .darkRedBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a, .news-and-events--landing .darkRedBackground .js-pager__items.standard-more-link .more-link a, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .more-link a, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .more-link a, .darkRedBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a, .news-and-events--landing .darkRedBackground .js-pager__items.view-more-link .more-link a, .darkRedBackground .js-pager__items.pager .view-more-link a, .darkRedBackground .js-pager__items.standard-more-link .view-more-link a, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .view-more-link a, .darkRedBackground .js-pager__items.view-more-link .view-more-link a, .darkRedBackground .js-pager__items.pager .pager__item a.button, .darkRedBackground .js-pager__items.standard-more-link .pager__item a.button, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .pager__item a.button, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .pager__item a.button, .darkRedBackground .js-pager__items.view-more-link .pager__item a.button, .darkRedBackground .js-pager__items.pager .blueRoundButton a.button, .darkRedBackground .js-pager__items.standard-more-link .blueRoundButton a.button, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a.button, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .blueRoundButton a.button, .darkRedBackground .js-pager__items.view-more-link .blueRoundButton a.button, .darkRedBackground .js-pager__items.pager .redRoundButton a.button, .darkRedBackground .js-pager__items.standard-more-link .redRoundButton a.button, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a.button, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .redRoundButton a.button, .darkRedBackground .js-pager__items.view-more-link .redRoundButton a.button, .darkRedBackground .js-pager__items.pager .standard-more-link a.button, .darkRedBackground .js-pager__items.standard-more-link .standard-more-link a.button, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a.button, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .standard-more-link a.button, .darkRedBackground .js-pager__items.view-more-link .standard-more-link a.button, .darkRedBackground .js-pager__items.pager .news-and-events--landing .more-link a.button, .news-and-events--landing .darkRedBackground .js-pager__items.pager .more-link a.button, .darkRedBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .darkRedBackground .js-pager__items.standard-more-link .more-link a.button, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .more-link a.button, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .more-link a.button, .darkRedBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .darkRedBackground .js-pager__items.view-more-link .more-link a.button, .darkRedBackground .js-pager__items.pager .view-more-link a.button, .darkRedBackground .js-pager__items.standard-more-link .view-more-link a.button, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a.button, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .view-more-link a.button, .darkRedBackground .js-pager__items.view-more-link .view-more-link a.button {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 468, ../sass/_styleguide.scss */
  .darkRedBackground .js-pager__items.pager .pager__item a, .darkRedBackground .js-pager__items.standard-more-link .pager__item a, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .pager__item a, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .pager__item a, .darkRedBackground .js-pager__items.view-more-link .pager__item a, .darkRedBackground .js-pager__items.pager .blueRoundButton a, .darkRedBackground .js-pager__items.standard-more-link .blueRoundButton a, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .blueRoundButton a, .darkRedBackground .js-pager__items.view-more-link .blueRoundButton a, .darkRedBackground .js-pager__items.pager .redRoundButton a, .darkRedBackground .js-pager__items.standard-more-link .redRoundButton a, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .redRoundButton a, .darkRedBackground .js-pager__items.view-more-link .redRoundButton a, .darkRedBackground .js-pager__items.pager .standard-more-link a, .darkRedBackground .js-pager__items.standard-more-link .standard-more-link a, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .standard-more-link a, .darkRedBackground .js-pager__items.view-more-link .standard-more-link a, .darkRedBackground .js-pager__items.pager .news-and-events--landing .more-link a, .news-and-events--landing .darkRedBackground .js-pager__items.pager .more-link a, .darkRedBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a, .news-and-events--landing .darkRedBackground .js-pager__items.standard-more-link .more-link a, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .more-link a, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .more-link a, .darkRedBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a, .news-and-events--landing .darkRedBackground .js-pager__items.view-more-link .more-link a, .darkRedBackground .js-pager__items.pager .view-more-link a, .darkRedBackground .js-pager__items.standard-more-link .view-more-link a, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .view-more-link a, .darkRedBackground .js-pager__items.view-more-link .view-more-link a, .darkRedBackground .js-pager__items.pager .pager__item a.button, .darkRedBackground .js-pager__items.standard-more-link .pager__item a.button, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .pager__item a.button, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .pager__item a.button, .darkRedBackground .js-pager__items.view-more-link .pager__item a.button, .darkRedBackground .js-pager__items.pager .blueRoundButton a.button, .darkRedBackground .js-pager__items.standard-more-link .blueRoundButton a.button, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a.button, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .blueRoundButton a.button, .darkRedBackground .js-pager__items.view-more-link .blueRoundButton a.button, .darkRedBackground .js-pager__items.pager .redRoundButton a.button, .darkRedBackground .js-pager__items.standard-more-link .redRoundButton a.button, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a.button, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .redRoundButton a.button, .darkRedBackground .js-pager__items.view-more-link .redRoundButton a.button, .darkRedBackground .js-pager__items.pager .standard-more-link a.button, .darkRedBackground .js-pager__items.standard-more-link .standard-more-link a.button, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a.button, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .standard-more-link a.button, .darkRedBackground .js-pager__items.view-more-link .standard-more-link a.button, .darkRedBackground .js-pager__items.pager .news-and-events--landing .more-link a.button, .news-and-events--landing .darkRedBackground .js-pager__items.pager .more-link a.button, .darkRedBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .darkRedBackground .js-pager__items.standard-more-link .more-link a.button, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .more-link a.button, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .more-link a.button, .darkRedBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .darkRedBackground .js-pager__items.view-more-link .more-link a.button, .darkRedBackground .js-pager__items.pager .view-more-link a.button, .darkRedBackground .js-pager__items.standard-more-link .view-more-link a.button, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a.button, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .view-more-link a.button, .darkRedBackground .js-pager__items.view-more-link .view-more-link a.button {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 468, ../sass/_styleguide.scss */
  .darkRedBackground .js-pager__items.pager .pager__item a, .darkRedBackground .js-pager__items.standard-more-link .pager__item a, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .pager__item a, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .pager__item a, .darkRedBackground .js-pager__items.view-more-link .pager__item a, .darkRedBackground .js-pager__items.pager .blueRoundButton a, .darkRedBackground .js-pager__items.standard-more-link .blueRoundButton a, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .blueRoundButton a, .darkRedBackground .js-pager__items.view-more-link .blueRoundButton a, .darkRedBackground .js-pager__items.pager .redRoundButton a, .darkRedBackground .js-pager__items.standard-more-link .redRoundButton a, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .redRoundButton a, .darkRedBackground .js-pager__items.view-more-link .redRoundButton a, .darkRedBackground .js-pager__items.pager .standard-more-link a, .darkRedBackground .js-pager__items.standard-more-link .standard-more-link a, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .standard-more-link a, .darkRedBackground .js-pager__items.view-more-link .standard-more-link a, .darkRedBackground .js-pager__items.pager .news-and-events--landing .more-link a, .news-and-events--landing .darkRedBackground .js-pager__items.pager .more-link a, .darkRedBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a, .news-and-events--landing .darkRedBackground .js-pager__items.standard-more-link .more-link a, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .more-link a, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .more-link a, .darkRedBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a, .news-and-events--landing .darkRedBackground .js-pager__items.view-more-link .more-link a, .darkRedBackground .js-pager__items.pager .view-more-link a, .darkRedBackground .js-pager__items.standard-more-link .view-more-link a, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .view-more-link a, .darkRedBackground .js-pager__items.view-more-link .view-more-link a, .darkRedBackground .js-pager__items.pager .pager__item a.button, .darkRedBackground .js-pager__items.standard-more-link .pager__item a.button, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .pager__item a.button, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .pager__item a.button, .darkRedBackground .js-pager__items.view-more-link .pager__item a.button, .darkRedBackground .js-pager__items.pager .blueRoundButton a.button, .darkRedBackground .js-pager__items.standard-more-link .blueRoundButton a.button, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a.button, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .blueRoundButton a.button, .darkRedBackground .js-pager__items.view-more-link .blueRoundButton a.button, .darkRedBackground .js-pager__items.pager .redRoundButton a.button, .darkRedBackground .js-pager__items.standard-more-link .redRoundButton a.button, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a.button, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .redRoundButton a.button, .darkRedBackground .js-pager__items.view-more-link .redRoundButton a.button, .darkRedBackground .js-pager__items.pager .standard-more-link a.button, .darkRedBackground .js-pager__items.standard-more-link .standard-more-link a.button, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a.button, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .standard-more-link a.button, .darkRedBackground .js-pager__items.view-more-link .standard-more-link a.button, .darkRedBackground .js-pager__items.pager .news-and-events--landing .more-link a.button, .news-and-events--landing .darkRedBackground .js-pager__items.pager .more-link a.button, .darkRedBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .darkRedBackground .js-pager__items.standard-more-link .more-link a.button, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .more-link a.button, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .more-link a.button, .darkRedBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a.button, .news-and-events--landing .darkRedBackground .js-pager__items.view-more-link .more-link a.button, .darkRedBackground .js-pager__items.pager .view-more-link a.button, .darkRedBackground .js-pager__items.standard-more-link .view-more-link a.button, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a.button, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .view-more-link a.button, .darkRedBackground .js-pager__items.view-more-link .view-more-link a.button {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.darkRedBackground .js-pager__items.pager .pager__item a:hover, .darkRedBackground .js-pager__items.standard-more-link .pager__item a:hover, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .pager__item a:hover, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .pager__item a:hover, .darkRedBackground .js-pager__items.view-more-link .pager__item a:hover, .darkRedBackground .js-pager__items.pager .blueRoundButton a:hover, .darkRedBackground .js-pager__items.standard-more-link .blueRoundButton a:hover, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a:hover, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .blueRoundButton a:hover, .darkRedBackground .js-pager__items.view-more-link .blueRoundButton a:hover, .darkRedBackground .js-pager__items.pager .redRoundButton a:hover, .darkRedBackground .js-pager__items.standard-more-link .redRoundButton a:hover, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a:hover, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .redRoundButton a:hover, .darkRedBackground .js-pager__items.view-more-link .redRoundButton a:hover, .darkRedBackground .js-pager__items.pager .standard-more-link a:hover, .darkRedBackground .js-pager__items.standard-more-link .standard-more-link a:hover, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a:hover, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .standard-more-link a:hover, .darkRedBackground .js-pager__items.view-more-link .standard-more-link a:hover, .darkRedBackground .js-pager__items.pager .news-and-events--landing .more-link a:hover, .news-and-events--landing .darkRedBackground .js-pager__items.pager .more-link a:hover, .darkRedBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a:hover, .news-and-events--landing .darkRedBackground .js-pager__items.standard-more-link .more-link a:hover, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .more-link a:hover, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .more-link a:hover, .darkRedBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a:hover, .news-and-events--landing .darkRedBackground .js-pager__items.view-more-link .more-link a:hover, .darkRedBackground .js-pager__items.pager .view-more-link a:hover, .darkRedBackground .js-pager__items.standard-more-link .view-more-link a:hover, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a:hover, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .view-more-link a:hover, .darkRedBackground .js-pager__items.view-more-link .view-more-link a:hover, .darkRedBackground .js-pager__items.pager .pager__item a.button:hover, .darkRedBackground .js-pager__items.standard-more-link .pager__item a.button:hover, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .pager__item a.button:hover, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .pager__item a.button:hover, .darkRedBackground .js-pager__items.view-more-link .pager__item a.button:hover, .darkRedBackground .js-pager__items.pager .blueRoundButton a.button:hover, .darkRedBackground .js-pager__items.standard-more-link .blueRoundButton a.button:hover, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a.button:hover, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .blueRoundButton a.button:hover, .darkRedBackground .js-pager__items.view-more-link .blueRoundButton a.button:hover, .darkRedBackground .js-pager__items.pager .redRoundButton a.button:hover, .darkRedBackground .js-pager__items.standard-more-link .redRoundButton a.button:hover, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a.button:hover, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .redRoundButton a.button:hover, .darkRedBackground .js-pager__items.view-more-link .redRoundButton a.button:hover, .darkRedBackground .js-pager__items.pager .standard-more-link a.button:hover, .darkRedBackground .js-pager__items.standard-more-link .standard-more-link a.button:hover, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a.button:hover, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .standard-more-link a.button:hover, .darkRedBackground .js-pager__items.view-more-link .standard-more-link a.button:hover, .darkRedBackground .js-pager__items.pager .news-and-events--landing .more-link a.button:hover, .news-and-events--landing .darkRedBackground .js-pager__items.pager .more-link a.button:hover, .darkRedBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a.button:hover, .news-and-events--landing .darkRedBackground .js-pager__items.standard-more-link .more-link a.button:hover, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .more-link a.button:hover, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .more-link a.button:hover, .darkRedBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a.button:hover, .news-and-events--landing .darkRedBackground .js-pager__items.view-more-link .more-link a.button:hover, .darkRedBackground .js-pager__items.pager .view-more-link a.button:hover, .darkRedBackground .js-pager__items.standard-more-link .view-more-link a.button:hover, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a.button:hover, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .view-more-link a.button:hover, .darkRedBackground .js-pager__items.view-more-link .view-more-link a.button:hover {
  background-color: #f6c163;
  border-color: #f6c163;
  color: #222;
  text-decoration: none;
}
/* line 2379, ../sass/_mixins.scss */
.darkRedBackground .js-pager__items.pager .pager__item a:focus, .darkRedBackground .js-pager__items.standard-more-link .pager__item a:focus, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .pager__item a:focus, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .pager__item a:focus, .darkRedBackground .js-pager__items.view-more-link .pager__item a:focus, .darkRedBackground .js-pager__items.pager .blueRoundButton a:focus, .darkRedBackground .js-pager__items.standard-more-link .blueRoundButton a:focus, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a:focus, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .blueRoundButton a:focus, .darkRedBackground .js-pager__items.view-more-link .blueRoundButton a:focus, .darkRedBackground .js-pager__items.pager .redRoundButton a:focus, .darkRedBackground .js-pager__items.standard-more-link .redRoundButton a:focus, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a:focus, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .redRoundButton a:focus, .darkRedBackground .js-pager__items.view-more-link .redRoundButton a:focus, .darkRedBackground .js-pager__items.pager .standard-more-link a:focus, .darkRedBackground .js-pager__items.standard-more-link .standard-more-link a:focus, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a:focus, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .standard-more-link a:focus, .darkRedBackground .js-pager__items.view-more-link .standard-more-link a:focus, .darkRedBackground .js-pager__items.pager .news-and-events--landing .more-link a:focus, .news-and-events--landing .darkRedBackground .js-pager__items.pager .more-link a:focus, .darkRedBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a:focus, .news-and-events--landing .darkRedBackground .js-pager__items.standard-more-link .more-link a:focus, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .more-link a:focus, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .more-link a:focus, .darkRedBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a:focus, .news-and-events--landing .darkRedBackground .js-pager__items.view-more-link .more-link a:focus, .darkRedBackground .js-pager__items.pager .view-more-link a:focus, .darkRedBackground .js-pager__items.standard-more-link .view-more-link a:focus, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a:focus, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .view-more-link a:focus, .darkRedBackground .js-pager__items.view-more-link .view-more-link a:focus, .darkRedBackground .js-pager__items.pager .pager__item a:active, .darkRedBackground .js-pager__items.standard-more-link .pager__item a:active, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .pager__item a:active, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .pager__item a:active, .darkRedBackground .js-pager__items.view-more-link .pager__item a:active, .darkRedBackground .js-pager__items.pager .blueRoundButton a:active, .darkRedBackground .js-pager__items.standard-more-link .blueRoundButton a:active, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a:active, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .blueRoundButton a:active, .darkRedBackground .js-pager__items.view-more-link .blueRoundButton a:active, .darkRedBackground .js-pager__items.pager .redRoundButton a:active, .darkRedBackground .js-pager__items.standard-more-link .redRoundButton a:active, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a:active, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .redRoundButton a:active, .darkRedBackground .js-pager__items.view-more-link .redRoundButton a:active, .darkRedBackground .js-pager__items.pager .standard-more-link a:active, .darkRedBackground .js-pager__items.standard-more-link .standard-more-link a:active, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a:active, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .standard-more-link a:active, .darkRedBackground .js-pager__items.view-more-link .standard-more-link a:active, .darkRedBackground .js-pager__items.pager .news-and-events--landing .more-link a:active, .news-and-events--landing .darkRedBackground .js-pager__items.pager .more-link a:active, .darkRedBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a:active, .news-and-events--landing .darkRedBackground .js-pager__items.standard-more-link .more-link a:active, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .more-link a:active, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .more-link a:active, .darkRedBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a:active, .news-and-events--landing .darkRedBackground .js-pager__items.view-more-link .more-link a:active, .darkRedBackground .js-pager__items.pager .view-more-link a:active, .darkRedBackground .js-pager__items.standard-more-link .view-more-link a:active, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a:active, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .view-more-link a:active, .darkRedBackground .js-pager__items.view-more-link .view-more-link a:active, .darkRedBackground .js-pager__items.pager .pager__item a.button:focus, .darkRedBackground .js-pager__items.standard-more-link .pager__item a.button:focus, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .pager__item a.button:focus, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .pager__item a.button:focus, .darkRedBackground .js-pager__items.view-more-link .pager__item a.button:focus, .darkRedBackground .js-pager__items.pager .blueRoundButton a.button:focus, .darkRedBackground .js-pager__items.standard-more-link .blueRoundButton a.button:focus, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a.button:focus, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .blueRoundButton a.button:focus, .darkRedBackground .js-pager__items.view-more-link .blueRoundButton a.button:focus, .darkRedBackground .js-pager__items.pager .redRoundButton a.button:focus, .darkRedBackground .js-pager__items.standard-more-link .redRoundButton a.button:focus, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a.button:focus, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .redRoundButton a.button:focus, .darkRedBackground .js-pager__items.view-more-link .redRoundButton a.button:focus, .darkRedBackground .js-pager__items.pager .standard-more-link a.button:focus, .darkRedBackground .js-pager__items.standard-more-link .standard-more-link a.button:focus, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a.button:focus, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .standard-more-link a.button:focus, .darkRedBackground .js-pager__items.view-more-link .standard-more-link a.button:focus, .darkRedBackground .js-pager__items.pager .news-and-events--landing .more-link a.button:focus, .news-and-events--landing .darkRedBackground .js-pager__items.pager .more-link a.button:focus, .darkRedBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a.button:focus, .news-and-events--landing .darkRedBackground .js-pager__items.standard-more-link .more-link a.button:focus, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .more-link a.button:focus, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .more-link a.button:focus, .darkRedBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a.button:focus, .news-and-events--landing .darkRedBackground .js-pager__items.view-more-link .more-link a.button:focus, .darkRedBackground .js-pager__items.pager .view-more-link a.button:focus, .darkRedBackground .js-pager__items.standard-more-link .view-more-link a.button:focus, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a.button:focus, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .view-more-link a.button:focus, .darkRedBackground .js-pager__items.view-more-link .view-more-link a.button:focus, .darkRedBackground .js-pager__items.pager .pager__item a.button:active, .darkRedBackground .js-pager__items.standard-more-link .pager__item a.button:active, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .pager__item a.button:active, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .pager__item a.button:active, .darkRedBackground .js-pager__items.view-more-link .pager__item a.button:active, .darkRedBackground .js-pager__items.pager .blueRoundButton a.button:active, .darkRedBackground .js-pager__items.standard-more-link .blueRoundButton a.button:active, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .blueRoundButton a.button:active, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .blueRoundButton a.button:active, .darkRedBackground .js-pager__items.view-more-link .blueRoundButton a.button:active, .darkRedBackground .js-pager__items.pager .redRoundButton a.button:active, .darkRedBackground .js-pager__items.standard-more-link .redRoundButton a.button:active, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .redRoundButton a.button:active, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .redRoundButton a.button:active, .darkRedBackground .js-pager__items.view-more-link .redRoundButton a.button:active, .darkRedBackground .js-pager__items.pager .standard-more-link a.button:active, .darkRedBackground .js-pager__items.standard-more-link .standard-more-link a.button:active, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .standard-more-link a.button:active, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .standard-more-link a.button:active, .darkRedBackground .js-pager__items.view-more-link .standard-more-link a.button:active, .darkRedBackground .js-pager__items.pager .news-and-events--landing .more-link a.button:active, .news-and-events--landing .darkRedBackground .js-pager__items.pager .more-link a.button:active, .darkRedBackground .js-pager__items.standard-more-link .news-and-events--landing .more-link a.button:active, .news-and-events--landing .darkRedBackground .js-pager__items.standard-more-link .more-link a.button:active, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .more-link a.button:active, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .more-link a.button:active, .darkRedBackground .js-pager__items.view-more-link .news-and-events--landing .more-link a.button:active, .news-and-events--landing .darkRedBackground .js-pager__items.view-more-link .more-link a.button:active, .darkRedBackground .js-pager__items.pager .view-more-link a.button:active, .darkRedBackground .js-pager__items.standard-more-link .view-more-link a.button:active, .darkRedBackground .news-and-events--landing .js-pager__items.more-link .view-more-link a.button:active, .news-and-events--landing .darkRedBackground .js-pager__items.more-link .view-more-link a.button:active, .darkRedBackground .js-pager__items.view-more-link .view-more-link a.button:active {
  outline: #fff dotted 3px !important;
}

/* line 475, ../sass/_styleguide.scss */
a.bluebutton,
a.bluebutton:link,
.ui-widget-content a.bluebutton:link {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  background-color: #1a568c;
  border: 1px solid #1a568c;
  clear: both;
  margin: 1em auto;
  padding: 0.8em 3em;
  font-size: 1rem;
  margin: 1em auto 2em;
}
@media all and (min-width: 1440px) {
  /* line 475, ../sass/_styleguide.scss */
  a.bluebutton,
  a.bluebutton:link,
  .ui-widget-content a.bluebutton:link {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 475, ../sass/_styleguide.scss */
  a.bluebutton,
  a.bluebutton:link,
  .ui-widget-content a.bluebutton:link {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 475, ../sass/_styleguide.scss */
  a.bluebutton,
  a.bluebutton:link,
  .ui-widget-content a.bluebutton:link {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 475, ../sass/_styleguide.scss */
  a.bluebutton,
  a.bluebutton:link,
  .ui-widget-content a.bluebutton:link {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
a.bluebutton :hover,
a.bluebutton:link :hover,
.ui-widget-content a.bluebutton:link :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 475, ../sass/_styleguide.scss */
  a.bluebutton,
  a.bluebutton:link,
  .ui-widget-content a.bluebutton:link {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 475, ../sass/_styleguide.scss */
  a.bluebutton,
  a.bluebutton:link,
  .ui-widget-content a.bluebutton:link {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 475, ../sass/_styleguide.scss */
  a.bluebutton,
  a.bluebutton:link,
  .ui-widget-content a.bluebutton:link {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 475, ../sass/_styleguide.scss */
  a.bluebutton,
  a.bluebutton:link,
  .ui-widget-content a.bluebutton:link {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 475, ../sass/_styleguide.scss */
  a.bluebutton,
  a.bluebutton:link,
  .ui-widget-content a.bluebutton:link {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
a.bluebutton:hover,
a.bluebutton:link:hover,
.ui-widget-content a.bluebutton:link:hover {
  background-color: #102d66;
  border-color: #102d66;
  color: #fff;
  text-decoration: none;
}
@media all and (min-width: 1440px) {
  /* line 475, ../sass/_styleguide.scss */
  a.bluebutton,
  a.bluebutton:link,
  .ui-widget-content a.bluebutton:link {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 475, ../sass/_styleguide.scss */
  a.bluebutton,
  a.bluebutton:link,
  .ui-widget-content a.bluebutton:link {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 475, ../sass/_styleguide.scss */
  a.bluebutton,
  a.bluebutton:link,
  .ui-widget-content a.bluebutton:link {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 475, ../sass/_styleguide.scss */
  a.bluebutton,
  a.bluebutton:link,
  .ui-widget-content a.bluebutton:link {
    font-size: 1rem;
  }
}

/* line 484, ../sass/_styleguide.scss */
.file-download-button {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  background-color: #1a568c;
  border: 1px solid #1a568c;
  color: #fff;
  background-color: #1a568c;
  font-size: 0.875rem;
  margin-top: 1em;
  margin-bottom: 1em;
  clear: both;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
}
@media all and (min-width: 1440px) {
  /* line 484, ../sass/_styleguide.scss */
  .file-download-button {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 484, ../sass/_styleguide.scss */
  .file-download-button {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 484, ../sass/_styleguide.scss */
  .file-download-button {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 484, ../sass/_styleguide.scss */
  .file-download-button {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.file-download-button :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 484, ../sass/_styleguide.scss */
  .file-download-button {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 484, ../sass/_styleguide.scss */
  .file-download-button {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 484, ../sass/_styleguide.scss */
  .file-download-button {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 484, ../sass/_styleguide.scss */
  .file-download-button {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 484, ../sass/_styleguide.scss */
  .file-download-button {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.file-download-button:hover {
  background-color: #102d66;
  border-color: #102d66;
  color: #fff;
  text-decoration: none;
}
/* line 126, ../sass/_mixins.scss */
.file-download-button a, .file-download-button a:link {
  color: #fff;
  text-decoration: underline;
}
/* line 132, ../sass/_mixins.scss */
.file-download-button a:visited {
  color: #D7E7F4;
}
/* line 145, ../sass/_mixins.scss */
.file-download-button a:hover {
  font-weight: bold;
}
/* line 154, ../sass/_mixins.scss */
.file-download-button h1, .file-download-button .photocredit {
  color: #fff;
}
/* line 492, ../sass/_styleguide.scss */
.file-download-button .file-size {
  font-size: 0.6rem;
}
/* line 495, ../sass/_styleguide.scss */
.file-download-button .file-size.graydetail {
  color: #fff;
}

/* line 503, ../sass/_styleguide.scss */
.file-download-button.file {
  background-position: 20% 40%;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 503, ../sass/_styleguide.scss */
  .file-download-button.file {
    background-position: 12% 40%;
  }
}

/* line 510, ../sass/_styleguide.scss */
.grayLabel, .trendingHealthTopicsView .view-content .views-row .views-field-title, .field--name-field-featured-health-topics .field__item, .field--name-field-featured-health-topics .view-content .views-row .views-field-title {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 8px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  clear: both;
  margin: 1em auto;
  padding: 0.8em 3em;
  color: #fff;
  background-color: #575b5e;
  font-size: 1rem;
}
@media all and (min-width: 1440px) {
  /* line 510, ../sass/_styleguide.scss */
  .grayLabel, .trendingHealthTopicsView .view-content .views-row .views-field-title, .field--name-field-featured-health-topics .field__item, .field--name-field-featured-health-topics .view-content .views-row .views-field-title {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 510, ../sass/_styleguide.scss */
  .grayLabel, .trendingHealthTopicsView .view-content .views-row .views-field-title, .field--name-field-featured-health-topics .field__item, .field--name-field-featured-health-topics .view-content .views-row .views-field-title {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 510, ../sass/_styleguide.scss */
  .grayLabel, .trendingHealthTopicsView .view-content .views-row .views-field-title, .field--name-field-featured-health-topics .field__item, .field--name-field-featured-health-topics .view-content .views-row .views-field-title {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 510, ../sass/_styleguide.scss */
  .grayLabel, .trendingHealthTopicsView .view-content .views-row .views-field-title, .field--name-field-featured-health-topics .field__item, .field--name-field-featured-health-topics .view-content .views-row .views-field-title {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.grayLabel :hover, .trendingHealthTopicsView .view-content .views-row .views-field-title :hover, .field--name-field-featured-health-topics .field__item :hover, .field--name-field-featured-health-topics .view-content .views-row .views-field-title :hover {
  color: #3885ca;
  background-color: transparent;
}
/* line 126, ../sass/_mixins.scss */
.grayLabel a, .trendingHealthTopicsView .view-content .views-row .views-field-title a, .field--name-field-featured-health-topics .field__item a, .field--name-field-featured-health-topics .view-content .views-row .views-field-title a, .grayLabel a:link, .trendingHealthTopicsView .view-content .views-row .views-field-title a:link, .field--name-field-featured-health-topics .field__item a:link, .field--name-field-featured-health-topics .view-content .views-row .views-field-title a:link {
  color: #fff;
  text-decoration: underline;
}
/* line 132, ../sass/_mixins.scss */
.grayLabel a:visited, .trendingHealthTopicsView .view-content .views-row .views-field-title a:visited, .field--name-field-featured-health-topics .field__item a:visited, .field--name-field-featured-health-topics .view-content .views-row .views-field-title a:visited {
  color: #D7E7F4;
}
/* line 145, ../sass/_mixins.scss */
.grayLabel a:hover, .trendingHealthTopicsView .view-content .views-row .views-field-title a:hover, .field--name-field-featured-health-topics .field__item a:hover, .field--name-field-featured-health-topics .view-content .views-row .views-field-title a:hover {
  font-weight: bold;
}
/* line 154, ../sass/_mixins.scss */
.grayLabel h1, .trendingHealthTopicsView .view-content .views-row .views-field-title h1, .field--name-field-featured-health-topics .field__item h1, .field--name-field-featured-health-topics .view-content .views-row .views-field-title h1, .grayLabel .photocredit, .trendingHealthTopicsView .view-content .views-row .views-field-title .photocredit, .field--name-field-featured-health-topics .field__item .photocredit, .field--name-field-featured-health-topics .view-content .views-row .views-field-title .photocredit {
  color: #fff;
}
/* line 1478, ../sass/_mixins.scss */
.grayLabel a, .trendingHealthTopicsView .view-content .views-row .views-field-title a, .field--name-field-featured-health-topics .field__item a, .field--name-field-featured-health-topics .view-content .views-row .views-field-title a, .grayLabel a:visited, .trendingHealthTopicsView .view-content .views-row .views-field-title a:visited, .field--name-field-featured-health-topics .field__item a:visited, .field--name-field-featured-health-topics .view-content .views-row .views-field-title a:visited, .grayLabel a:link, .trendingHealthTopicsView .view-content .views-row .views-field-title a:link, .field--name-field-featured-health-topics .field__item a:link, .field--name-field-featured-health-topics .view-content .views-row .views-field-title a:link {
  color: #fff;
  text-decoration: none;
}
/* line 1482, ../sass/_mixins.scss */
.grayLabel a:hover, .trendingHealthTopicsView .view-content .views-row .views-field-title a:hover, .field--name-field-featured-health-topics .field__item a:hover, .field--name-field-featured-health-topics .view-content .views-row .views-field-title a:hover {
  color: #fff;
  font-weight: normal;
}
/* line 1486, ../sass/_mixins.scss */
.grayLabel:hover, .trendingHealthTopicsView .view-content .views-row .views-field-title:hover, .field--name-field-featured-health-topics .field__item:hover, .field--name-field-featured-health-topics .view-content .views-row .views-field-title:hover {
  background-color: #232526;
}
@media all and (min-width: 1440px) {
  /* line 510, ../sass/_styleguide.scss */
  .grayLabel, .trendingHealthTopicsView .view-content .views-row .views-field-title, .field--name-field-featured-health-topics .field__item, .field--name-field-featured-health-topics .view-content .views-row .views-field-title {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 510, ../sass/_styleguide.scss */
  .grayLabel, .trendingHealthTopicsView .view-content .views-row .views-field-title, .field--name-field-featured-health-topics .field__item, .field--name-field-featured-health-topics .view-content .views-row .views-field-title {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 510, ../sass/_styleguide.scss */
  .grayLabel, .trendingHealthTopicsView .view-content .views-row .views-field-title, .field--name-field-featured-health-topics .field__item, .field--name-field-featured-health-topics .view-content .views-row .views-field-title {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 510, ../sass/_styleguide.scss */
  .grayLabel, .trendingHealthTopicsView .view-content .views-row .views-field-title, .field--name-field-featured-health-topics .field__item, .field--name-field-featured-health-topics .view-content .views-row .views-field-title {
    font-size: 1rem;
  }
}

/* line 515, ../sass/_styleguide.scss */
.redLabel {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 8px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  clear: both;
  margin: 1em auto;
  padding: 0.8em 3em;
  color: #fff;
  background-color: #850920;
}
@media all and (min-width: 1440px) {
  /* line 515, ../sass/_styleguide.scss */
  .redLabel {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 515, ../sass/_styleguide.scss */
  .redLabel {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 515, ../sass/_styleguide.scss */
  .redLabel {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 515, ../sass/_styleguide.scss */
  .redLabel {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.redLabel :hover {
  color: #3885ca;
  background-color: transparent;
}
/* line 126, ../sass/_mixins.scss */
.redLabel a, .redLabel a:link {
  color: #fff;
  text-decoration: underline;
}
/* line 132, ../sass/_mixins.scss */
.redLabel a:visited {
  color: #D7E7F4;
}
/* line 145, ../sass/_mixins.scss */
.redLabel a:hover {
  font-weight: bold;
}
/* line 154, ../sass/_mixins.scss */
.redLabel h1, .redLabel .photocredit {
  color: #fff;
}
/* line 1478, ../sass/_mixins.scss */
.redLabel a, .redLabel a:visited, .redLabel a:link {
  color: #fff;
  text-decoration: none;
}
/* line 1482, ../sass/_mixins.scss */
.redLabel a:hover {
  color: #fff;
  font-weight: normal;
}
/* line 1486, ../sass/_mixins.scss */
.redLabel:hover {
  background-color: #590716;
}

/* line 520, ../sass/_styleguide.scss */
.darkerRedLabel, .node--type-feature-article.node--view-mode-landing-page-teaser .flexItemText .field--name-field-related-health-topics > .field__item,
.node--type-general.node--view-mode-landing-page-teaser .flexItemText .field--name-field-related-health-topics > .field__item,
.node--type-press-release.node--view-mode-landing-page-teaser .flexItemText .field--name-field-related-health-topics > .field__item, .health-topic-teaser-container .flexItemTextHalf .field--name-field-related-health-topics > .field__item {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 8px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  clear: both;
  margin: 1em auto;
  padding: 0.8em 3em;
  color: #fff;
  background-color: #590716;
}
@media all and (min-width: 1440px) {
  /* line 520, ../sass/_styleguide.scss */
  .darkerRedLabel, .node--type-feature-article.node--view-mode-landing-page-teaser .flexItemText .field--name-field-related-health-topics > .field__item,
  .node--type-general.node--view-mode-landing-page-teaser .flexItemText .field--name-field-related-health-topics > .field__item,
  .node--type-press-release.node--view-mode-landing-page-teaser .flexItemText .field--name-field-related-health-topics > .field__item, .health-topic-teaser-container .flexItemTextHalf .field--name-field-related-health-topics > .field__item {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 520, ../sass/_styleguide.scss */
  .darkerRedLabel, .node--type-feature-article.node--view-mode-landing-page-teaser .flexItemText .field--name-field-related-health-topics > .field__item,
  .node--type-general.node--view-mode-landing-page-teaser .flexItemText .field--name-field-related-health-topics > .field__item,
  .node--type-press-release.node--view-mode-landing-page-teaser .flexItemText .field--name-field-related-health-topics > .field__item, .health-topic-teaser-container .flexItemTextHalf .field--name-field-related-health-topics > .field__item {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 520, ../sass/_styleguide.scss */
  .darkerRedLabel, .node--type-feature-article.node--view-mode-landing-page-teaser .flexItemText .field--name-field-related-health-topics > .field__item,
  .node--type-general.node--view-mode-landing-page-teaser .flexItemText .field--name-field-related-health-topics > .field__item,
  .node--type-press-release.node--view-mode-landing-page-teaser .flexItemText .field--name-field-related-health-topics > .field__item, .health-topic-teaser-container .flexItemTextHalf .field--name-field-related-health-topics > .field__item {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 520, ../sass/_styleguide.scss */
  .darkerRedLabel, .node--type-feature-article.node--view-mode-landing-page-teaser .flexItemText .field--name-field-related-health-topics > .field__item,
  .node--type-general.node--view-mode-landing-page-teaser .flexItemText .field--name-field-related-health-topics > .field__item,
  .node--type-press-release.node--view-mode-landing-page-teaser .flexItemText .field--name-field-related-health-topics > .field__item, .health-topic-teaser-container .flexItemTextHalf .field--name-field-related-health-topics > .field__item {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.darkerRedLabel :hover, .node--type-feature-article.node--view-mode-landing-page-teaser .flexItemText .field--name-field-related-health-topics > .field__item :hover,
.node--type-general.node--view-mode-landing-page-teaser .flexItemText .field--name-field-related-health-topics > .field__item :hover,
.node--type-press-release.node--view-mode-landing-page-teaser .flexItemText .field--name-field-related-health-topics > .field__item :hover, .health-topic-teaser-container .flexItemTextHalf .field--name-field-related-health-topics > .field__item :hover {
  color: #3885ca;
  background-color: transparent;
}
/* line 126, ../sass/_mixins.scss */
.darkerRedLabel a, .node--type-feature-article.node--view-mode-landing-page-teaser .flexItemText .field--name-field-related-health-topics > .field__item a,
.node--type-general.node--view-mode-landing-page-teaser .flexItemText .field--name-field-related-health-topics > .field__item a,
.node--type-press-release.node--view-mode-landing-page-teaser .flexItemText .field--name-field-related-health-topics > .field__item a, .health-topic-teaser-container .flexItemTextHalf .field--name-field-related-health-topics > .field__item a, .darkerRedLabel a:link, .node--type-feature-article.node--view-mode-landing-page-teaser .flexItemText .field--name-field-related-health-topics > .field__item a:link,
.node--type-general.node--view-mode-landing-page-teaser .flexItemText .field--name-field-related-health-topics > .field__item a:link,
.node--type-press-release.node--view-mode-landing-page-teaser .flexItemText .field--name-field-related-health-topics > .field__item a:link, .health-topic-teaser-container .flexItemTextHalf .field--name-field-related-health-topics > .field__item a:link {
  color: #fff;
  text-decoration: underline;
}
/* line 132, ../sass/_mixins.scss */
.darkerRedLabel a:visited, .node--type-feature-article.node--view-mode-landing-page-teaser .flexItemText .field--name-field-related-health-topics > .field__item a:visited,
.node--type-general.node--view-mode-landing-page-teaser .flexItemText .field--name-field-related-health-topics > .field__item a:visited,
.node--type-press-release.node--view-mode-landing-page-teaser .flexItemText .field--name-field-related-health-topics > .field__item a:visited, .health-topic-teaser-container .flexItemTextHalf .field--name-field-related-health-topics > .field__item a:visited {
  color: #D7E7F4;
}
/* line 145, ../sass/_mixins.scss */
.darkerRedLabel a:hover, .node--type-feature-article.node--view-mode-landing-page-teaser .flexItemText .field--name-field-related-health-topics > .field__item a:hover,
.node--type-general.node--view-mode-landing-page-teaser .flexItemText .field--name-field-related-health-topics > .field__item a:hover,
.node--type-press-release.node--view-mode-landing-page-teaser .flexItemText .field--name-field-related-health-topics > .field__item a:hover, .health-topic-teaser-container .flexItemTextHalf .field--name-field-related-health-topics > .field__item a:hover {
  font-weight: bold;
}
/* line 154, ../sass/_mixins.scss */
.darkerRedLabel h1, .node--type-feature-article.node--view-mode-landing-page-teaser .flexItemText .field--name-field-related-health-topics > .field__item h1,
.node--type-general.node--view-mode-landing-page-teaser .flexItemText .field--name-field-related-health-topics > .field__item h1,
.node--type-press-release.node--view-mode-landing-page-teaser .flexItemText .field--name-field-related-health-topics > .field__item h1, .health-topic-teaser-container .flexItemTextHalf .field--name-field-related-health-topics > .field__item h1, .darkerRedLabel .photocredit, .node--type-feature-article.node--view-mode-landing-page-teaser .flexItemText .field--name-field-related-health-topics > .field__item .photocredit,
.node--type-general.node--view-mode-landing-page-teaser .flexItemText .field--name-field-related-health-topics > .field__item .photocredit,
.node--type-press-release.node--view-mode-landing-page-teaser .flexItemText .field--name-field-related-health-topics > .field__item .photocredit, .health-topic-teaser-container .flexItemTextHalf .field--name-field-related-health-topics > .field__item .photocredit {
  color: #fff;
}
/* line 1478, ../sass/_mixins.scss */
.darkerRedLabel a, .node--type-feature-article.node--view-mode-landing-page-teaser .flexItemText .field--name-field-related-health-topics > .field__item a,
.node--type-general.node--view-mode-landing-page-teaser .flexItemText .field--name-field-related-health-topics > .field__item a,
.node--type-press-release.node--view-mode-landing-page-teaser .flexItemText .field--name-field-related-health-topics > .field__item a, .health-topic-teaser-container .flexItemTextHalf .field--name-field-related-health-topics > .field__item a, .darkerRedLabel a:visited, .node--type-feature-article.node--view-mode-landing-page-teaser .flexItemText .field--name-field-related-health-topics > .field__item a:visited,
.node--type-general.node--view-mode-landing-page-teaser .flexItemText .field--name-field-related-health-topics > .field__item a:visited,
.node--type-press-release.node--view-mode-landing-page-teaser .flexItemText .field--name-field-related-health-topics > .field__item a:visited, .health-topic-teaser-container .flexItemTextHalf .field--name-field-related-health-topics > .field__item a:visited, .darkerRedLabel a:link, .node--type-feature-article.node--view-mode-landing-page-teaser .flexItemText .field--name-field-related-health-topics > .field__item a:link,
.node--type-general.node--view-mode-landing-page-teaser .flexItemText .field--name-field-related-health-topics > .field__item a:link,
.node--type-press-release.node--view-mode-landing-page-teaser .flexItemText .field--name-field-related-health-topics > .field__item a:link, .health-topic-teaser-container .flexItemTextHalf .field--name-field-related-health-topics > .field__item a:link {
  color: #fff;
  text-decoration: none;
}
/* line 1482, ../sass/_mixins.scss */
.darkerRedLabel a:hover, .node--type-feature-article.node--view-mode-landing-page-teaser .flexItemText .field--name-field-related-health-topics > .field__item a:hover,
.node--type-general.node--view-mode-landing-page-teaser .flexItemText .field--name-field-related-health-topics > .field__item a:hover,
.node--type-press-release.node--view-mode-landing-page-teaser .flexItemText .field--name-field-related-health-topics > .field__item a:hover, .health-topic-teaser-container .flexItemTextHalf .field--name-field-related-health-topics > .field__item a:hover {
  color: #fff;
  font-weight: normal;
}
/* line 1486, ../sass/_mixins.scss */
.darkerRedLabel:hover, .node--type-feature-article.node--view-mode-landing-page-teaser .flexItemText .field--name-field-related-health-topics > .field__item:hover,
.node--type-general.node--view-mode-landing-page-teaser .flexItemText .field--name-field-related-health-topics > .field__item:hover,
.node--type-press-release.node--view-mode-landing-page-teaser .flexItemText .field--name-field-related-health-topics > .field__item:hover, .health-topic-teaser-container .flexItemTextHalf .field--name-field-related-health-topics > .field__item:hover {
  background-color: #232526;
}

/* line 524, ../sass/_styleguide.scss */
.blueLabel {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 8px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  clear: both;
  margin: 1em auto;
  padding: 0.8em 3em;
  color: #fff;
  background-color: #1a568c;
}
@media all and (min-width: 1440px) {
  /* line 524, ../sass/_styleguide.scss */
  .blueLabel {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 524, ../sass/_styleguide.scss */
  .blueLabel {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 524, ../sass/_styleguide.scss */
  .blueLabel {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 524, ../sass/_styleguide.scss */
  .blueLabel {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.blueLabel :hover {
  color: #3885ca;
  background-color: transparent;
}
/* line 126, ../sass/_mixins.scss */
.blueLabel a, .blueLabel a:link {
  color: #fff;
  text-decoration: underline;
}
/* line 132, ../sass/_mixins.scss */
.blueLabel a:visited {
  color: #D7E7F4;
}
/* line 145, ../sass/_mixins.scss */
.blueLabel a:hover {
  font-weight: bold;
}
/* line 154, ../sass/_mixins.scss */
.blueLabel h1, .blueLabel .photocredit {
  color: #fff;
}
/* line 1478, ../sass/_mixins.scss */
.blueLabel a, .blueLabel a:visited, .blueLabel a:link {
  color: #fff;
  text-decoration: none;
}
/* line 1482, ../sass/_mixins.scss */
.blueLabel a:hover {
  color: #fff;
  font-weight: normal;
}
/* line 1486, ../sass/_mixins.scss */
.blueLabel:hover {
  background-color: #144571;
}

/* line 528, ../sass/_styleguide.scss */
.whiteBlueLabel, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-download-file > .field__item,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-download-file > .field__item {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 4px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  clear: both;
  margin: 1em auto;
  padding: 0.8em 3em;
  color: #222;
  background-color: #fff;
  padding: 0.5em 2em;
  border: solid 1px #d7d7d7;
}
@media all and (min-width: 1440px) {
  /* line 528, ../sass/_styleguide.scss */
  .whiteBlueLabel, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-download-file > .field__item,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-download-file > .field__item {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 528, ../sass/_styleguide.scss */
  .whiteBlueLabel, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-download-file > .field__item,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-download-file > .field__item {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 528, ../sass/_styleguide.scss */
  .whiteBlueLabel, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-download-file > .field__item,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-download-file > .field__item {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 528, ../sass/_styleguide.scss */
  .whiteBlueLabel, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-download-file > .field__item,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-download-file > .field__item {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.whiteBlueLabel :hover, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-download-file > .field__item :hover,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-download-file > .field__item :hover {
  color: #3885ca;
  background-color: transparent;
}
/* line 126, ../sass/_mixins.scss */
.whiteBlueLabel a, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-download-file > .field__item a,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-download-file > .field__item a, .whiteBlueLabel a:link, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-download-file > .field__item a:link,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-download-file > .field__item a:link {
  color: #fff;
  text-decoration: underline;
}
/* line 136, ../sass/_mixins.scss */
.whiteBlueLabel a:visited, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-download-file > .field__item a:visited,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-download-file > .field__item a:visited {
  color: #6f57B5;
}
/* line 145, ../sass/_mixins.scss */
.whiteBlueLabel a:hover, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-download-file > .field__item a:hover,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-download-file > .field__item a:hover {
  font-weight: bold;
}
/* line 154, ../sass/_mixins.scss */
.whiteBlueLabel h1, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-download-file > .field__item h1,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-download-file > .field__item h1, .whiteBlueLabel .photocredit, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-download-file > .field__item .photocredit,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-download-file > .field__item .photocredit {
  color: #222;
}
/* line 1478, ../sass/_mixins.scss */
.whiteBlueLabel a, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-download-file > .field__item a,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-download-file > .field__item a, .whiteBlueLabel a:visited, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-download-file > .field__item a:visited,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-download-file > .field__item a:visited, .whiteBlueLabel a:link, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-download-file > .field__item a:link,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-download-file > .field__item a:link {
  color: #222;
  text-decoration: none;
}
/* line 1482, ../sass/_mixins.scss */
.whiteBlueLabel a:hover, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-download-file > .field__item a:hover,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-download-file > .field__item a:hover {
  color: #fff;
  font-weight: normal;
}
/* line 1486, ../sass/_mixins.scss */
.whiteBlueLabel:hover, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-download-file > .field__item:hover,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-download-file > .field__item:hover {
  background-color: #1a568c;
}

/* line 535, ../sass/_styleguide.scss */
.darkBlueLabel, .rtFlexContainer .field--name-field-related-sfas a {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 8px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  clear: both;
  margin: 1em auto;
  padding: 0.8em 3em;
  color: #fff;
  background-color: #102d66;
}
@media all and (min-width: 1440px) {
  /* line 535, ../sass/_styleguide.scss */
  .darkBlueLabel, .rtFlexContainer .field--name-field-related-sfas a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 535, ../sass/_styleguide.scss */
  .darkBlueLabel, .rtFlexContainer .field--name-field-related-sfas a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 535, ../sass/_styleguide.scss */
  .darkBlueLabel, .rtFlexContainer .field--name-field-related-sfas a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 535, ../sass/_styleguide.scss */
  .darkBlueLabel, .rtFlexContainer .field--name-field-related-sfas a {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.darkBlueLabel :hover, .rtFlexContainer .field--name-field-related-sfas a :hover {
  color: #3885ca;
  background-color: transparent;
}
/* line 126, ../sass/_mixins.scss */
.darkBlueLabel a, .rtFlexContainer .field--name-field-related-sfas a a, .darkBlueLabel a:link, .rtFlexContainer .field--name-field-related-sfas a a:link {
  color: #fff;
  text-decoration: underline;
}
/* line 132, ../sass/_mixins.scss */
.darkBlueLabel a:visited, .rtFlexContainer .field--name-field-related-sfas a a:visited {
  color: #D7E7F4;
}
/* line 145, ../sass/_mixins.scss */
.darkBlueLabel a:hover, .rtFlexContainer .field--name-field-related-sfas a a:hover {
  font-weight: bold;
}
/* line 154, ../sass/_mixins.scss */
.darkBlueLabel h1, .rtFlexContainer .field--name-field-related-sfas a h1, .darkBlueLabel .photocredit, .rtFlexContainer .field--name-field-related-sfas a .photocredit {
  color: #fff;
}
/* line 1478, ../sass/_mixins.scss */
.darkBlueLabel a, .rtFlexContainer .field--name-field-related-sfas a a, .darkBlueLabel a:visited, .rtFlexContainer .field--name-field-related-sfas a a:visited, .darkBlueLabel a:link, .rtFlexContainer .field--name-field-related-sfas a a:link {
  color: #fff;
  text-decoration: none;
}
/* line 1482, ../sass/_mixins.scss */
.darkBlueLabel a:hover, .rtFlexContainer .field--name-field-related-sfas a a:hover {
  color: #fff;
  font-weight: normal;
}
/* line 1486, ../sass/_mixins.scss */
.darkBlueLabel:hover, .rtFlexContainer .field--name-field-related-sfas a:hover {
  background-color: #222;
}

/* line 539, ../sass/_styleguide.scss */
.darkerGreyLabel, .last-updated-date-container {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 8px;
  padding: 0.5em, 1.5em;
  background-color: #d7d7d7;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 539, ../sass/_styleguide.scss */
  .darkerGreyLabel, .last-updated-date-container {
    padding: 0.35em, 1em;
  }
}

/* line 548, ../sass/_styleguide.scss */
.sv-green {
  color: #1c6071;
}

/* line 551, ../sass/_styleguide.scss */
.sv-blue {
  color: #1c2b49;
}

/* line 554, ../sass/_styleguide.scss */
.sv-orange {
  color: #C35507;
}

/* line 557, ../sass/_styleguide.scss */
.sv-red {
  color: #bb2440;
}

/**
 * Icons
 **/
/* line 566, ../sass/_styleguide.scss */
.event-icon {
  background-image: url("../images/ico-event.png");
  background-size: 24.8px 40px;
  background-repeat: no-repeat;
  background-position: center;
  display: table-cell;
  content: " ";
  height: 40px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 566, ../sass/_styleguide.scss */
  .event-icon {
    background-size: 24.8px 40px;
    height: 40px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 566, ../sass/_styleguide.scss */
  .event-icon {
    background-size: 24.8px 40px;
    height: 40px;
  }
}

/* line 570, ../sass/_styleguide.scss */
.rt-research-icon {
  /*
  @include background-icon('ico-beakers.png',60px,60px,60px,60px,60px,60px,block,center);
  @include bp-retina {
    @include background-icon('ico-beakers@2x.png',60px,60px,60px,60px,60px,60px,block,center);
  }
  min-width:60px;
  */
  background-image: url("../images/ico-beakers.png");
  background-size: 45px 45px;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  content: " ";
  height: 45px;
  margin-right: auto;
  margin-left: auto;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 570, ../sass/_styleguide.scss */
  .rt-research-icon {
    background-size: 40px 40px;
    height: 40px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 570, ../sass/_styleguide.scss */
  .rt-research-icon {
    background-size: 40px 40px;
    height: 40px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2), all and (min--moz-device-pixel-ratio: 2), all and (-o-min-device-pixel-ratio: 2 / 1), all and (min-device-pixel-ratio: 2), all and (min-resolution: 192dpi), all and (min-resolution: 2dppx) {
  /* line 570, ../sass/_styleguide.scss */
  .rt-research-icon {
    background-image: url("../images/ico-beakers@2x.png");
    background-size: 45px 45px;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    content: " ";
    height: 45px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 768px) and (max-width: 1099px), all and (min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 192dpi) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 2dppx) and (min-width: 768px) and (max-width: 1099px) {
  /* line 570, ../sass/_styleguide.scss */
  .rt-research-icon {
    background-size: 40px 40px;
    height: 40px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) {
  /* line 570, ../sass/_styleguide.scss */
  .rt-research-icon {
    background-size: 40px 40px;
    height: 40px;
  }
}

@media all and (min-width: 1100px) {
  /* line 570, ../sass/_styleguide.scss */
  .rt-research-icon {
    width: 45px;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 570, ../sass/_styleguide.scss */
  .rt-research-icon {
    width: 40px;
  }
}

/* line 592, ../sass/_styleguide.scss */
.rt-staff-icon {
  /*
  @include background-icon('ico-people.png',72px,60px,72px,60px,72px,60px,block,center);
  @include bp-retina {
    @include background-icon('ico-people@2x.png',72px,60px,72px,60px,72px,60px,block,center);
  }
  min-width:72px;
  */
  background-image: url("../images/ico-people.png");
  background-size: 55px 45px;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  content: " ";
  height: 45px;
  margin-right: auto;
  margin-left: auto;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 592, ../sass/_styleguide.scss */
  .rt-staff-icon {
    background-size: 49px 40px;
    height: 40px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 592, ../sass/_styleguide.scss */
  .rt-staff-icon {
    background-size: 49px 40px;
    height: 40px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2), all and (min--moz-device-pixel-ratio: 2), all and (-o-min-device-pixel-ratio: 2 / 1), all and (min-device-pixel-ratio: 2), all and (min-resolution: 192dpi), all and (min-resolution: 2dppx) {
  /* line 592, ../sass/_styleguide.scss */
  .rt-staff-icon {
    background-image: url("../images/ico-people@2x.png");
    background-size: 55px 45px;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    content: " ";
    height: 45px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 768px) and (max-width: 1099px), all and (min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 192dpi) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 2dppx) and (min-width: 768px) and (max-width: 1099px) {
  /* line 592, ../sass/_styleguide.scss */
  .rt-staff-icon {
    background-size: 49px 40px;
    height: 40px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) {
  /* line 592, ../sass/_styleguide.scss */
  .rt-staff-icon {
    background-size: 49px 40px;
    height: 40px;
  }
}

@media all and (min-width: 1100px) {
  /* line 592, ../sass/_styleguide.scss */
  .rt-staff-icon {
    width: 55px;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 592, ../sass/_styleguide.scss */
  .rt-staff-icon {
    width: 49px;
  }
}

/* line 615, ../sass/_styleguide.scss */
.rt-resources-icon {
  /*

  @include background-icon('ico-tools.png',60px,60px,60px,60px,60px,60px,block,center);
  @include bp-retina {
    @include background-icon('ico-tools@2x.png',60px,60px,60px,60px,60px,60px,block,center);
  }
  min-width:60px;
  */
  background-image: url("../images/ico-tools.png");
  background-size: 49px 45px;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  content: " ";
  height: 45px;
  margin-right: auto;
  margin-left: auto;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 615, ../sass/_styleguide.scss */
  .rt-resources-icon {
    background-size: 44px 40px;
    height: 40px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 615, ../sass/_styleguide.scss */
  .rt-resources-icon {
    background-size: 44px 40px;
    height: 40px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2), all and (min--moz-device-pixel-ratio: 2), all and (-o-min-device-pixel-ratio: 2 / 1), all and (min-device-pixel-ratio: 2), all and (min-resolution: 192dpi), all and (min-resolution: 2dppx) {
  /* line 615, ../sass/_styleguide.scss */
  .rt-resources-icon {
    background-image: url("../images/ico-tools@2x.png");
    background-size: 49px 45px;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    content: " ";
    height: 45px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 768px) and (max-width: 1099px), all and (min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 192dpi) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 2dppx) and (min-width: 768px) and (max-width: 1099px) {
  /* line 615, ../sass/_styleguide.scss */
  .rt-resources-icon {
    background-size: 44px 40px;
    height: 40px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) {
  /* line 615, ../sass/_styleguide.scss */
  .rt-resources-icon {
    background-size: 44px 40px;
    height: 40px;
  }
}

@media all and (min-width: 1100px) {
  /* line 615, ../sass/_styleguide.scss */
  .rt-resources-icon {
    width: 49px;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 615, ../sass/_styleguide.scss */
  .rt-resources-icon {
    width: 44px;
  }
}

/* line 638, ../sass/_styleguide.scss */
.rt-study-icon {
  background-image: url("../images/ico-study-new.png");
  background-size: 38px 45px;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  content: " ";
  height: 45px;
  margin-right: auto;
  margin-left: auto;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 638, ../sass/_styleguide.scss */
  .rt-study-icon {
    background-size: 34px 40px;
    height: 40px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 638, ../sass/_styleguide.scss */
  .rt-study-icon {
    background-size: 34px 40px;
    height: 40px;
  }
}
@media all and (min-width: 1100px) {
  /* line 638, ../sass/_styleguide.scss */
  .rt-study-icon {
    width: 38px;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 638, ../sass/_styleguide.scss */
  .rt-study-icon {
    width: 34px;
  }
}

/* line 653, ../sass/_styleguide.scss */
.skills-icon, .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-member-skills .labIcon {
  background-image: url("../images/ico-beakers.png");
  background-size: 30px 30px;
  background-repeat: no-repeat;
  background-position: initial;
  display: table-cell;
  content: " ";
  height: 30px;
  min-width: 30px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 653, ../sass/_styleguide.scss */
  .skills-icon, .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-member-skills .labIcon {
    background-size: 30px 30px;
    height: 30px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 653, ../sass/_styleguide.scss */
  .skills-icon, .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-member-skills .labIcon {
    background-size: 30px 30px;
    height: 30px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 653, ../sass/_styleguide.scss */
  .skills-icon, .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-member-skills .labIcon {
    min-width: 30px;
  }
}

/* line 661, ../sass/_styleguide.scss */
.education-icon, .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-member-education .labIcon {
  background-image: url("../images/ico-education.png");
  background-size: 34px 30px;
  background-repeat: no-repeat;
  background-position: initial;
  display: table-cell;
  content: " ";
  height: 30px;
  min-width: 34px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 661, ../sass/_styleguide.scss */
  .education-icon, .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-member-education .labIcon {
    background-size: 34px 30px;
    height: 30px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 661, ../sass/_styleguide.scss */
  .education-icon, .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-member-education .labIcon {
    background-size: 34px 30px;
    height: 30px;
  }
}

/* line 666, ../sass/_styleguide.scss */
.previous-arrow-icon, .previousNavigation {
  background-image: url("../images/previousarrow.png");
  background-size: 20px 35px;
  background-repeat: no-repeat;
  background-position: initial;
  display: table-cell;
  content: " ";
  height: 35px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 666, ../sass/_styleguide.scss */
  .previous-arrow-icon, .previousNavigation {
    background-size: 15px 25px;
    height: 25px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 666, ../sass/_styleguide.scss */
  .previous-arrow-icon, .previousNavigation {
    background-size: 15px 25px;
    height: 25px;
  }
}

/* line 671, ../sass/_styleguide.scss */
.next-arrow-icon, .nextNavigation {
  background-image: url("../images/nextarrow.png");
  background-size: 20px 35px;
  background-repeat: no-repeat;
  background-position: initial;
  display: table-cell;
  content: " ";
  height: 35px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 671, ../sass/_styleguide.scss */
  .next-arrow-icon, .nextNavigation {
    background-size: 15px 25px;
    height: 25px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 671, ../sass/_styleguide.scss */
  .next-arrow-icon, .nextNavigation {
    background-size: 15px 25px;
    height: 25px;
  }
}

/* line 676, ../sass/_styleguide.scss */
.next-arrow-small-icon, .bottom-view-link {
  background-image: url("../images/nextarrow.png");
  background-size: 11px 19px;
  background-repeat: no-repeat;
  background-position: initial;
  display: table-cell;
  content: " ";
  height: 19px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 676, ../sass/_styleguide.scss */
  .next-arrow-small-icon, .bottom-view-link {
    background-size: 11px 19px;
    height: 19px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 676, ../sass/_styleguide.scss */
  .next-arrow-small-icon, .bottom-view-link {
    background-size: 8px 14px;
    height: 14px;
  }
}

/* line 681, ../sass/_styleguide.scss */
.doc-icon {
  background-image: url("../images/ico-doc.png");
  background-size: 74px 77px;
  background-repeat: no-repeat;
  background-position: initial;
  display: table-cell;
  content: " ";
  height: 77px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 681, ../sass/_styleguide.scss */
  .doc-icon {
    background-size: 74px 77px;
    height: 77px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 681, ../sass/_styleguide.scss */
  .doc-icon {
    background-size: 74px 77px;
    height: 77px;
  }
}

/* line 685, ../sass/_styleguide.scss */
.awards-icon, .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-member-honors .labIcon, .paragraph--type--award .awards-icon-positioned {
  background-image: url("../images/ico-awards.png");
  background-size: 38px 42.11px;
  background-repeat: no-repeat;
  background-position: initial;
  display: table-cell;
  content: " ";
  height: 42.11px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 685, ../sass/_styleguide.scss */
  .awards-icon, .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-member-honors .labIcon, .paragraph--type--award .awards-icon-positioned {
    background-size: 38px 42.11px;
    height: 42.11px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 685, ../sass/_styleguide.scss */
  .awards-icon, .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-member-honors .labIcon, .paragraph--type--award .awards-icon-positioned {
    background-size: 33px 36.57px;
    height: 36.57px;
  }
}

/* line 689, ../sass/_styleguide.scss */
.extlink-icon {
  background-image: url("../images/ico-external-link.png");
  background-size: 10px 10px;
  background-repeat: no-repeat;
  background-position: initial;
  display: inline-block;
  content: " ";
  height: 10px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 689, ../sass/_styleguide.scss */
  .extlink-icon {
    background-size: 10px 10px;
    height: 10px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 689, ../sass/_styleguide.scss */
  .extlink-icon {
    background-size: 10px 10px;
    height: 10px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2), all and (min--moz-device-pixel-ratio: 2), all and (-o-min-device-pixel-ratio: 2 / 1), all and (min-device-pixel-ratio: 2), all and (min-resolution: 192dpi), all and (min-resolution: 2dppx) {
  /* line 689, ../sass/_styleguide.scss */
  .extlink-icon {
    background-image: url("../images/ico-external-link@2x.png");
    background-size: 10px 10px;
    background-repeat: no-repeat;
    background-position: initial;
    display: inline-block;
    content: " ";
    height: 10px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 768px) and (max-width: 1099px), all and (min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 192dpi) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 2dppx) and (min-width: 768px) and (max-width: 1099px) {
  /* line 689, ../sass/_styleguide.scss */
  .extlink-icon {
    background-size: 10px 10px;
    height: 10px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) {
  /* line 689, ../sass/_styleguide.scss */
  .extlink-icon {
    background-size: 10px 10px;
    height: 10px;
  }
}

/* line 697, ../sass/_styleguide.scss */
.address-icon, .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-address .labIcon {
  background-image: url("../images/ico-location.png");
  background-size: 30px 40px;
  background-repeat: no-repeat;
  background-position: initial;
  display: table-cell;
  content: " ";
  height: 40px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 697, ../sass/_styleguide.scss */
  .address-icon, .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-address .labIcon {
    background-size: 30px 40px;
    height: 40px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 697, ../sass/_styleguide.scss */
  .address-icon, .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-address .labIcon {
    background-size: 26px 34.67px;
    height: 34.67px;
  }
}

/* line 701, ../sass/_styleguide.scss */
.building-icon, .contact-method-icon-postal-mail {
  background-image: url("../images/ico-building2.png");
  background-size: 29.5px 30.5px;
  background-repeat: no-repeat;
  background-position: left top;
  display: table-cell;
  content: " ";
  height: 30.5px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 701, ../sass/_styleguide.scss */
  .building-icon, .contact-method-icon-postal-mail {
    background-size: 29.5px 30.5px;
    height: 30.5px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 701, ../sass/_styleguide.scss */
  .building-icon, .contact-method-icon-postal-mail {
    background-size: 29.5px 30.5px;
    height: 30.5px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2), all and (min--moz-device-pixel-ratio: 2), all and (-o-min-device-pixel-ratio: 2 / 1), all and (min-device-pixel-ratio: 2), all and (min-resolution: 192dpi), all and (min-resolution: 2dppx) {
  /* line 701, ../sass/_styleguide.scss */
  .building-icon, .contact-method-icon-postal-mail {
    background-image: url("../images/ico-building2@2x.png");
    background-size: 29.5px 30.5px;
    background-repeat: no-repeat;
    background-position: left top;
    display: table-cell;
    content: " ";
    height: 30.5px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 768px) and (max-width: 1099px), all and (min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 192dpi) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 2dppx) and (min-width: 768px) and (max-width: 1099px) {
  /* line 701, ../sass/_styleguide.scss */
  .building-icon, .contact-method-icon-postal-mail {
    background-size: 29.5px 30.5px;
    height: 30.5px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) {
  /* line 701, ../sass/_styleguide.scss */
  .building-icon, .contact-method-icon-postal-mail {
    background-size: 29.5px 30.5px;
    height: 30.5px;
  }
}

/* line 709, ../sass/_styleguide.scss */
.phone-icon, .contact-method-icon-phone, .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-phone-number .labIcon, .contact-card .contact-number .contact-icon {
  background-image: url("../images/ico-phone.png");
  background-size: 25px 25px;
  background-repeat: no-repeat;
  background-position: initial;
  display: table-cell;
  content: " ";
  height: 25px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 709, ../sass/_styleguide.scss */
  .phone-icon, .contact-method-icon-phone, .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-phone-number .labIcon, .contact-card .contact-number .contact-icon {
    background-size: 25px 25px;
    height: 25px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 709, ../sass/_styleguide.scss */
  .phone-icon, .contact-method-icon-phone, .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-phone-number .labIcon, .contact-card .contact-number .contact-icon {
    background-size: 25px 25px;
    height: 25px;
  }
}

/* line 712, ../sass/_styleguide.scss */
.small-phone-icon, .contact-box > .field--name-field-contact-methods .contact-method-container-phone .contact-method-icon-phone {
  background-image: url("../images/ico-phone.png");
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: initial;
  display: table-cell;
  content: " ";
  height: 20px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 712, ../sass/_styleguide.scss */
  .small-phone-icon, .contact-box > .field--name-field-contact-methods .contact-method-container-phone .contact-method-icon-phone {
    background-size: 20px 20px;
    height: 20px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 712, ../sass/_styleguide.scss */
  .small-phone-icon, .contact-box > .field--name-field-contact-methods .contact-method-container-phone .contact-method-icon-phone {
    background-size: 20px 20px;
    height: 20px;
  }
}

/* line 717, ../sass/_styleguide.scss */
.web-form-icon, .contact-method-icon-web-form {
  background-image: url("../images/ico-webform.svg");
  background-size: 25px 25px;
  background-repeat: no-repeat;
  background-position: initial;
  display: table-cell;
  content: " ";
  height: 25px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 717, ../sass/_styleguide.scss */
  .web-form-icon, .contact-method-icon-web-form {
    background-size: 25px 25px;
    height: 25px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 717, ../sass/_styleguide.scss */
  .web-form-icon, .contact-method-icon-web-form {
    background-size: 25px 25px;
    height: 25px;
  }
}

/* line 721, ../sass/_styleguide.scss */
.fax-icon, .contact-method-icon-fax, .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-fax-number .labIcon {
  background-image: url("../images/ico-fax.png");
  background-size: 34px 31.88px;
  background-repeat: no-repeat;
  background-position: initial;
  display: table-cell;
  content: " ";
  height: 31.88px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 721, ../sass/_styleguide.scss */
  .fax-icon, .contact-method-icon-fax, .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-fax-number .labIcon {
    background-size: 34px 31.88px;
    height: 31.88px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 721, ../sass/_styleguide.scss */
  .fax-icon, .contact-method-icon-fax, .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-fax-number .labIcon {
    background-size: 34px 31.88px;
    height: 31.88px;
  }
}

/* line 725, ../sass/_styleguide.scss */
.email-icon, .contact-method-icon-email, .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-email .labIcon, .contact-card .contact-mail .contact-icon {
  background-image: url("../images/ico-email.png");
  background-size: 31px 19px;
  background-repeat: no-repeat;
  background-position: initial;
  display: table-cell;
  content: " ";
  height: 19px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 725, ../sass/_styleguide.scss */
  .email-icon, .contact-method-icon-email, .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-email .labIcon, .contact-card .contact-mail .contact-icon {
    background-size: 31px 19px;
    height: 19px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 725, ../sass/_styleguide.scss */
  .email-icon, .contact-method-icon-email, .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-email .labIcon, .contact-card .contact-mail .contact-icon {
    background-size: 31px 19px;
    height: 19px;
  }
}

/* line 733, ../sass/_styleguide.scss */
.map-icon {
  background-image: url("../images/ico-map_pin.png");
  background-size: 21px 30px;
  background-repeat: no-repeat;
  background-position: center;
  display: table-cell;
  content: " ";
  height: 30px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 733, ../sass/_styleguide.scss */
  .map-icon {
    background-size: 21px 30px;
    height: 30px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 733, ../sass/_styleguide.scss */
  .map-icon {
    background-size: 21px 30px;
    height: 30px;
  }
}

/* line 736, ../sass/_styleguide.scss */
.map-icon-top, .about-nhlbi-how-to-reach-us-wrapper .locationMap.contact-location-map-container .mapLocation, .node--type-events.node--view-mode-full .locationMap .mapLocation-container .mapLocation,
.node--type-events.node--view-mode-subscribe .locationMap .mapLocation-container .mapLocation, .blue-hei .hei-events .hei-related-events .flexItemText .eventdatesLocationType .eventLocation .map-icon-top-page, .green-blue-hei .hei-events .hei-related-events .flexItemText .eventdatesLocationType .eventLocation .map-icon-top-page {
  background-image: url("../images/ico-map_pin.png");
  background-size: 21px 30px;
  background-repeat: no-repeat;
  background-position: left top;
  display: table-cell;
  content: " ";
  height: 30px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 736, ../sass/_styleguide.scss */
  .map-icon-top, .about-nhlbi-how-to-reach-us-wrapper .locationMap.contact-location-map-container .mapLocation, .node--type-events.node--view-mode-full .locationMap .mapLocation-container .mapLocation,
  .node--type-events.node--view-mode-subscribe .locationMap .mapLocation-container .mapLocation, .blue-hei .hei-events .hei-related-events .flexItemText .eventdatesLocationType .eventLocation .map-icon-top-page, .green-blue-hei .hei-events .hei-related-events .flexItemText .eventdatesLocationType .eventLocation .map-icon-top-page {
    background-size: 21px 30px;
    height: 30px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 736, ../sass/_styleguide.scss */
  .map-icon-top, .about-nhlbi-how-to-reach-us-wrapper .locationMap.contact-location-map-container .mapLocation, .node--type-events.node--view-mode-full .locationMap .mapLocation-container .mapLocation,
  .node--type-events.node--view-mode-subscribe .locationMap .mapLocation-container .mapLocation, .blue-hei .hei-events .hei-related-events .flexItemText .eventdatesLocationType .eventLocation .map-icon-top-page, .green-blue-hei .hei-events .hei-related-events .flexItemText .eventdatesLocationType .eventLocation .map-icon-top-page {
    background-size: 21px 30px;
    height: 30px;
  }
}

/* line 739, ../sass/_styleguide.scss */
.map-icon-top-page {
  background-image: url("../images/ico-map_pin.png");
  background-size: 21px 30px;
  background-repeat: no-repeat;
  background-position: 15% top;
  display: table-cell;
  content: " ";
  height: 30px;
  width: 47px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 739, ../sass/_styleguide.scss */
  .map-icon-top-page {
    background-size: 21px 30px;
    height: 30px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 739, ../sass/_styleguide.scss */
  .map-icon-top-page {
    background-size: 21px 30px;
    height: 30px;
  }
}

/* line 744, ../sass/_styleguide.scss */
.map-icon-white, .whiteEventIcons .eventdatesLocationType .eventLocation .map-icon, .tcd-events-container .eventdatesLocationType .eventLocation .map-icon {
  background-image: url("../images/ico-map_pin-white.png");
  background-size: 21px 30px;
  background-repeat: no-repeat;
  background-position: center;
  display: table-cell;
  content: " ";
  height: 30px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 744, ../sass/_styleguide.scss */
  .map-icon-white, .whiteEventIcons .eventdatesLocationType .eventLocation .map-icon, .tcd-events-container .eventdatesLocationType .eventLocation .map-icon {
    background-size: 21px 30px;
    height: 30px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 744, ../sass/_styleguide.scss */
  .map-icon-white, .whiteEventIcons .eventdatesLocationType .eventLocation .map-icon, .tcd-events-container .eventdatesLocationType .eventLocation .map-icon {
    background-size: 21px 30px;
    height: 30px;
  }
}

/* line 747, ../sass/_styleguide.scss */
.map-icon-white-top, .locationMap.contact-location-map-container .mapLocation, .locationMap .mapLocation, .hei-related-events .flexItemText.flexItemTextHalf .eventdatesLocationType .eventLocation .map-icon-top-page {
  background-image: url("../images/ico-map_pin-white.png");
  background-size: 21px 30px;
  background-repeat: no-repeat;
  background-position: left top;
  display: table-cell;
  content: " ";
  height: 30px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 747, ../sass/_styleguide.scss */
  .map-icon-white-top, .locationMap.contact-location-map-container .mapLocation, .locationMap .mapLocation, .hei-related-events .flexItemText.flexItemTextHalf .eventdatesLocationType .eventLocation .map-icon-top-page {
    background-size: 21px 30px;
    height: 30px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 747, ../sass/_styleguide.scss */
  .map-icon-white-top, .locationMap.contact-location-map-container .mapLocation, .locationMap .mapLocation, .hei-related-events .flexItemText.flexItemTextHalf .eventdatesLocationType .eventLocation .map-icon-top-page {
    background-size: 21px 30px;
    height: 30px;
  }
}

/* line 751, ../sass/_styleguide.scss */
.calendar-icon, .eventCalendarIcon, .blue-hei .hei-events .hei-related-events .flexItemText .eventdatesLocationType .eventCalendarIcon, .green-blue-hei .hei-events .hei-related-events .flexItemText .eventdatesLocationType .eventCalendarIcon {
  background-image: url("../images/ico-cal2.png");
  background-size: 31px 30px;
  background-repeat: no-repeat;
  background-position: center;
  display: table-cell;
  content: " ";
  height: 30px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 751, ../sass/_styleguide.scss */
  .calendar-icon, .eventCalendarIcon, .blue-hei .hei-events .hei-related-events .flexItemText .eventdatesLocationType .eventCalendarIcon, .green-blue-hei .hei-events .hei-related-events .flexItemText .eventdatesLocationType .eventCalendarIcon {
    background-size: 31px 30px;
    height: 30px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 751, ../sass/_styleguide.scss */
  .calendar-icon, .eventCalendarIcon, .blue-hei .hei-events .hei-related-events .flexItemText .eventdatesLocationType .eventCalendarIcon, .green-blue-hei .hei-events .hei-related-events .flexItemText .eventdatesLocationType .eventCalendarIcon {
    background-size: 31px 30px;
    height: 30px;
  }
}

/* line 755, ../sass/_styleguide.scss */
.calendar-icon-white, .whiteEventIcons .eventdatesLocationType .eventCalendarIcon, .tcd-events-container .eventdatesLocationType .eventCalendarIcon, .hei-related-events .flexItemText.flexItemTextHalf .eventdatesLocationType .eventCalendarIcon {
  background-image: url("../images/ico-cal2-white.png");
  background-size: 31px 30px;
  background-repeat: no-repeat;
  background-position: center;
  display: table-cell;
  content: " ";
  height: 30px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 755, ../sass/_styleguide.scss */
  .calendar-icon-white, .whiteEventIcons .eventdatesLocationType .eventCalendarIcon, .tcd-events-container .eventdatesLocationType .eventCalendarIcon, .hei-related-events .flexItemText.flexItemTextHalf .eventdatesLocationType .eventCalendarIcon {
    background-size: 31px 30px;
    height: 30px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 755, ../sass/_styleguide.scss */
  .calendar-icon-white, .whiteEventIcons .eventdatesLocationType .eventCalendarIcon, .tcd-events-container .eventdatesLocationType .eventCalendarIcon, .hei-related-events .flexItemText.flexItemTextHalf .eventdatesLocationType .eventCalendarIcon {
    background-size: 31px 30px;
    height: 30px;
  }
}

/* line 759, ../sass/_styleguide.scss */
.health-education-background-image, .healthEducationBlock .standard-teaser {
  background-image: url("../images/healthed_texturebackground@2x.png");
  background-size: 100% 100%;
  background-repeat: repeat;
  background-position: center;
  display: table-cell;
  content: " ";
  height: 100%;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 759, ../sass/_styleguide.scss */
  .health-education-background-image, .healthEducationBlock .standard-teaser {
    background-size: 100% 100%;
    height: 100%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 759, ../sass/_styleguide.scss */
  .health-education-background-image, .healthEducationBlock .standard-teaser {
    background-size: 100% 100%;
    height: 100%;
  }
}

/* line 763, ../sass/_styleguide.scss */
.standard-icon-container {
  width: 100%;
}
@media all and (min-width: 1100px) {
  /* line 763, ../sass/_styleguide.scss */
  .standard-icon-container {
    height: 81px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 763, ../sass/_styleguide.scss */
  .standard-icon-container {
    height: 56px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 763, ../sass/_styleguide.scss */
  .standard-icon-container {
    height: 50px;
  }
}

/* line 775, ../sass/_styleguide.scss */
.standard-icon-current-vacancies {
  background-image: url("../images/ico-currentvacancies.png");
  background-size: 50px 60px;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  content: " ";
  height: 60px;
  margin-right: auto;
  margin-left: auto;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 775, ../sass/_styleguide.scss */
  .standard-icon-current-vacancies {
    background-size: 39px 47px;
    height: 47px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 775, ../sass/_styleguide.scss */
  .standard-icon-current-vacancies {
    background-size: 34px 41px;
    height: 41px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2), all and (min--moz-device-pixel-ratio: 2), all and (-o-min-device-pixel-ratio: 2 / 1), all and (min-device-pixel-ratio: 2), all and (min-resolution: 192dpi), all and (min-resolution: 2dppx) {
  /* line 775, ../sass/_styleguide.scss */
  .standard-icon-current-vacancies {
    background-image: url("../images/ico-currentvacancies@2x.png");
    background-size: 50px 60px;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    content: " ";
    height: 60px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 768px) and (max-width: 1099px), all and (min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 192dpi) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 2dppx) and (min-width: 768px) and (max-width: 1099px) {
  /* line 775, ../sass/_styleguide.scss */
  .standard-icon-current-vacancies {
    background-size: 39px 47px;
    height: 47px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) {
  /* line 775, ../sass/_styleguide.scss */
  .standard-icon-current-vacancies {
    background-size: 34px 41px;
    height: 41px;
  }
}

@media all and (min-width: 1100px) {
  /* line 775, ../sass/_styleguide.scss */
  .standard-icon-current-vacancies {
    width: 50px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 775, ../sass/_styleguide.scss */
  .standard-icon-current-vacancies {
    width: 39px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 775, ../sass/_styleguide.scss */
  .standard-icon-current-vacancies {
    width: 34px;
  }
}

/* line 793, ../sass/_styleguide.scss */
.questionmark-icon, .ppg-funding-process-link {
  background-image: url("../images/ico-questionmark.png");
  background-size: 28.5px 28.5px;
  background-repeat: no-repeat;
  background-position: 5% center;
  display: table-cell;
  content: " ";
  height: 28.5px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 793, ../sass/_styleguide.scss */
  .questionmark-icon, .ppg-funding-process-link {
    background-size: 23.5px 23.5px;
    height: 23.5px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 793, ../sass/_styleguide.scss */
  .questionmark-icon, .ppg-funding-process-link {
    background-size: 19.5px 19.5px;
    height: 19.5px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2), all and (min--moz-device-pixel-ratio: 2), all and (-o-min-device-pixel-ratio: 2 / 1), all and (min-device-pixel-ratio: 2), all and (min-resolution: 192dpi), all and (min-resolution: 2dppx) {
  /* line 793, ../sass/_styleguide.scss */
  .questionmark-icon, .ppg-funding-process-link {
    background-image: url("../images/ico-questionmark@2x.png");
    background-size: 28.5px 28.5px;
    background-repeat: no-repeat;
    background-position: 5% center;
    display: table-cell;
    content: " ";
    height: 28.5px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 768px) and (max-width: 1099px), all and (min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 192dpi) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 2dppx) and (min-width: 768px) and (max-width: 1099px) {
  /* line 793, ../sass/_styleguide.scss */
  .questionmark-icon, .ppg-funding-process-link {
    background-size: 23.5px 23.5px;
    height: 23.5px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) {
  /* line 793, ../sass/_styleguide.scss */
  .questionmark-icon, .ppg-funding-process-link {
    background-size: 19.5px 19.5px;
    height: 19.5px;
  }
}

/* line 801, ../sass/_styleguide.scss */
.standard-icon-future-vacancies {
  background-image: url("../images/ico-futurevacancies.png");
  background-size: 62.5px 48px;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  content: " ";
  height: 48px;
  margin-right: auto;
  margin-left: auto;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 801, ../sass/_styleguide.scss */
  .standard-icon-future-vacancies {
    background-size: 50px 43px;
    height: 43px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 801, ../sass/_styleguide.scss */
  .standard-icon-future-vacancies {
    background-size: 41px 35px;
    height: 35px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2), all and (min--moz-device-pixel-ratio: 2), all and (-o-min-device-pixel-ratio: 2 / 1), all and (min-device-pixel-ratio: 2), all and (min-resolution: 192dpi), all and (min-resolution: 2dppx) {
  /* line 801, ../sass/_styleguide.scss */
  .standard-icon-future-vacancies {
    background-image: url("../images/ico-futurevacancies@2x.png");
    background-size: 62.5px 48px;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    content: " ";
    height: 48px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 768px) and (max-width: 1099px), all and (min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 192dpi) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 2dppx) and (min-width: 768px) and (max-width: 1099px) {
  /* line 801, ../sass/_styleguide.scss */
  .standard-icon-future-vacancies {
    background-size: 50px 43px;
    height: 43px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) {
  /* line 801, ../sass/_styleguide.scss */
  .standard-icon-future-vacancies {
    background-size: 41px 35px;
    height: 35px;
  }
}

@media all and (min-width: 1100px) {
  /* line 801, ../sass/_styleguide.scss */
  .standard-icon-future-vacancies {
    width: 62.5px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 801, ../sass/_styleguide.scss */
  .standard-icon-future-vacancies {
    width: 50px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 801, ../sass/_styleguide.scss */
  .standard-icon-future-vacancies {
    width: 41px;
  }
}

/* line 818, ../sass/_styleguide.scss */
.standard-icon-training-opportunities {
  background-image: url("../images/ico-microscope.png");
  background-size: 43px 57px;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  content: " ";
  height: 57px;
  margin-right: auto;
  margin-left: auto;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 818, ../sass/_styleguide.scss */
  .standard-icon-training-opportunities {
    background-size: 34px 45px;
    height: 45px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 818, ../sass/_styleguide.scss */
  .standard-icon-training-opportunities {
    background-size: 29px 38px;
    height: 38px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2), all and (min--moz-device-pixel-ratio: 2), all and (-o-min-device-pixel-ratio: 2 / 1), all and (min-device-pixel-ratio: 2), all and (min-resolution: 192dpi), all and (min-resolution: 2dppx) {
  /* line 818, ../sass/_styleguide.scss */
  .standard-icon-training-opportunities {
    background-image: url("../images/ico-microscope@2x.png");
    background-size: 43px 57px;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    content: " ";
    height: 57px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 768px) and (max-width: 1099px), all and (min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 192dpi) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 2dppx) and (min-width: 768px) and (max-width: 1099px) {
  /* line 818, ../sass/_styleguide.scss */
  .standard-icon-training-opportunities {
    background-size: 34px 45px;
    height: 45px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) {
  /* line 818, ../sass/_styleguide.scss */
  .standard-icon-training-opportunities {
    background-size: 29px 38px;
    height: 38px;
  }
}

@media all and (min-width: 1100px) {
  /* line 818, ../sass/_styleguide.scss */
  .standard-icon-training-opportunities {
    width: 43px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 818, ../sass/_styleguide.scss */
  .standard-icon-training-opportunities {
    width: 34px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 818, ../sass/_styleguide.scss */
  .standard-icon-training-opportunities {
    width: 29px;
  }
}

/* line 836, ../sass/_styleguide.scss */
.contact-type-icon-container {
  width: 100%;
  margin-bottom: 0.5em;
}
@media all and (min-width: 1100px) {
  /* line 836, ../sass/_styleguide.scss */
  .contact-type-icon-container {
    height: 63px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 836, ../sass/_styleguide.scss */
  .contact-type-icon-container {
    height: 51px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 836, ../sass/_styleguide.scss */
  .contact-type-icon-container {
    height: 43px;
  }
}

/* line 850, ../sass/_styleguide.scss */
.contact-type-icon-health {
  background-image: url("../images/ico-study-red.png");
  background-size: 49px 58px;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  content: " ";
  height: 58px;
  margin-right: auto;
  margin-left: auto;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 850, ../sass/_styleguide.scss */
  .contact-type-icon-health {
    background-size: 38px 45px;
    height: 45px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 850, ../sass/_styleguide.scss */
  .contact-type-icon-health {
    background-size: 36px 43px;
    height: 43px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2), all and (min--moz-device-pixel-ratio: 2), all and (-o-min-device-pixel-ratio: 2 / 1), all and (min-device-pixel-ratio: 2), all and (min-resolution: 192dpi), all and (min-resolution: 2dppx) {
  /* line 850, ../sass/_styleguide.scss */
  .contact-type-icon-health {
    background-image: url("../images/ico-study-red@2x.png");
    background-size: 49px 58px;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    content: " ";
    height: 58px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 768px) and (max-width: 1099px), all and (min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 192dpi) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 2dppx) and (min-width: 768px) and (max-width: 1099px) {
  /* line 850, ../sass/_styleguide.scss */
  .contact-type-icon-health {
    background-size: 38px 45px;
    height: 45px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) {
  /* line 850, ../sass/_styleguide.scss */
  .contact-type-icon-health {
    background-size: 36px 43px;
    height: 43px;
  }
}

@media all and (min-width: 1100px) {
  /* line 850, ../sass/_styleguide.scss */
  .contact-type-icon-health {
    width: 49px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 850, ../sass/_styleguide.scss */
  .contact-type-icon-health {
    width: 38px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 850, ../sass/_styleguide.scss */
  .contact-type-icon-health {
    width: 36px;
  }
}

/* line 868, ../sass/_styleguide.scss */
.contact-type-icon-branding {
  background-image: url("../images/ico-registeredmark.png");
  background-size: 56px 56px;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  content: " ";
  height: 56px;
  margin-right: auto;
  margin-left: auto;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 868, ../sass/_styleguide.scss */
  .contact-type-icon-branding {
    background-size: 42px 42px;
    height: 42px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 868, ../sass/_styleguide.scss */
  .contact-type-icon-branding {
    background-size: 40px 40px;
    height: 40px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2), all and (min--moz-device-pixel-ratio: 2), all and (-o-min-device-pixel-ratio: 2 / 1), all and (min-device-pixel-ratio: 2), all and (min-resolution: 192dpi), all and (min-resolution: 2dppx) {
  /* line 868, ../sass/_styleguide.scss */
  .contact-type-icon-branding {
    background-image: url("../images/ico-registeredmark@2x.png");
    background-size: 56px 56px;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    content: " ";
    height: 56px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 768px) and (max-width: 1099px), all and (min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 192dpi) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 2dppx) and (min-width: 768px) and (max-width: 1099px) {
  /* line 868, ../sass/_styleguide.scss */
  .contact-type-icon-branding {
    background-size: 42px 42px;
    height: 42px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) {
  /* line 868, ../sass/_styleguide.scss */
  .contact-type-icon-branding {
    background-size: 40px 40px;
    height: 40px;
  }
}

@media all and (min-width: 1100px) {
  /* line 868, ../sass/_styleguide.scss */
  .contact-type-icon-branding {
    width: 56px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 868, ../sass/_styleguide.scss */
  .contact-type-icon-branding {
    width: 42px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 868, ../sass/_styleguide.scss */
  .contact-type-icon-branding {
    width: 40px;
  }
}

/* line 886, ../sass/_styleguide.scss */
.contact-type-icon-news {
  background-image: url("../images/ico-megaphone.png");
  background-size: 66px 57px;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  content: " ";
  height: 57px;
  margin-right: auto;
  margin-left: auto;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 886, ../sass/_styleguide.scss */
  .contact-type-icon-news {
    background-size: 53px 46px;
    height: 46px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 886, ../sass/_styleguide.scss */
  .contact-type-icon-news {
    background-size: 44px 38px;
    height: 38px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2), all and (min--moz-device-pixel-ratio: 2), all and (-o-min-device-pixel-ratio: 2 / 1), all and (min-device-pixel-ratio: 2), all and (min-resolution: 192dpi), all and (min-resolution: 2dppx) {
  /* line 886, ../sass/_styleguide.scss */
  .contact-type-icon-news {
    background-image: url("../images/ico-megaphone@2x.png");
    background-size: 66px 57px;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    content: " ";
    height: 57px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 768px) and (max-width: 1099px), all and (min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 192dpi) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 2dppx) and (min-width: 768px) and (max-width: 1099px) {
  /* line 886, ../sass/_styleguide.scss */
  .contact-type-icon-news {
    background-size: 53px 46px;
    height: 46px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) {
  /* line 886, ../sass/_styleguide.scss */
  .contact-type-icon-news {
    background-size: 44px 38px;
    height: 38px;
  }
}

@media all and (min-width: 1100px) {
  /* line 886, ../sass/_styleguide.scss */
  .contact-type-icon-news {
    width: 66px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 886, ../sass/_styleguide.scss */
  .contact-type-icon-news {
    width: 53px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 886, ../sass/_styleguide.scss */
  .contact-type-icon-news {
    width: 44px;
  }
}

/* line 904, ../sass/_styleguide.scss */
.contact-type-icon-website {
  background-image: url("../images/ico-browser.png");
  background-size: 54px 49px;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  content: " ";
  height: 49px;
  margin-right: auto;
  margin-left: auto;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 904, ../sass/_styleguide.scss */
  .contact-type-icon-website {
    background-size: 45px 41px;
    height: 41px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 904, ../sass/_styleguide.scss */
  .contact-type-icon-website {
    background-size: 39px 35px;
    height: 35px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2), all and (min--moz-device-pixel-ratio: 2), all and (-o-min-device-pixel-ratio: 2 / 1), all and (min-device-pixel-ratio: 2), all and (min-resolution: 192dpi), all and (min-resolution: 2dppx) {
  /* line 904, ../sass/_styleguide.scss */
  .contact-type-icon-website {
    background-image: url("../images/ico-browser@2x.png");
    background-size: 54px 49px;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    content: " ";
    height: 49px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 768px) and (max-width: 1099px), all and (min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 192dpi) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 2dppx) and (min-width: 768px) and (max-width: 1099px) {
  /* line 904, ../sass/_styleguide.scss */
  .contact-type-icon-website {
    background-size: 45px 41px;
    height: 41px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) {
  /* line 904, ../sass/_styleguide.scss */
  .contact-type-icon-website {
    background-size: 39px 35px;
    height: 35px;
  }
}

@media all and (min-width: 1100px) {
  /* line 904, ../sass/_styleguide.scss */
  .contact-type-icon-website {
    width: 54px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 904, ../sass/_styleguide.scss */
  .contact-type-icon-website {
    width: 45px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 904, ../sass/_styleguide.scss */
  .contact-type-icon-website {
    width: 39px;
  }
}

/* line 922, ../sass/_styleguide.scss */
.contact-type-icon-operations {
  background-image: url("../images/ico-budget.png");
  background-size: 41px 57px;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  content: " ";
  height: 57px;
  margin-right: auto;
  margin-left: auto;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 922, ../sass/_styleguide.scss */
  .contact-type-icon-operations {
    background-size: 36px 50px;
    height: 50px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 922, ../sass/_styleguide.scss */
  .contact-type-icon-operations {
    background-size: 29px 41px;
    height: 41px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2), all and (min--moz-device-pixel-ratio: 2), all and (-o-min-device-pixel-ratio: 2 / 1), all and (min-device-pixel-ratio: 2), all and (min-resolution: 192dpi), all and (min-resolution: 2dppx) {
  /* line 922, ../sass/_styleguide.scss */
  .contact-type-icon-operations {
    background-image: url("../images/ico-budget@2x.png");
    background-size: 41px 57px;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    content: " ";
    height: 57px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 768px) and (max-width: 1099px), all and (min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 192dpi) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 2dppx) and (min-width: 768px) and (max-width: 1099px) {
  /* line 922, ../sass/_styleguide.scss */
  .contact-type-icon-operations {
    background-size: 36px 50px;
    height: 50px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) {
  /* line 922, ../sass/_styleguide.scss */
  .contact-type-icon-operations {
    background-size: 29px 41px;
    height: 41px;
  }
}

@media all and (min-width: 1100px) {
  /* line 922, ../sass/_styleguide.scss */
  .contact-type-icon-operations {
    width: 41px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 922, ../sass/_styleguide.scss */
  .contact-type-icon-operations {
    width: 36px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 922, ../sass/_styleguide.scss */
  .contact-type-icon-operations {
    width: 29px;
  }
}

/* line 940, ../sass/_styleguide.scss */
.banner-promotion-icon, .banner-promotion-container {
  background-image: url("../images/banner-promotion-icon.svg");
  background-size: 55px 70px;
  background-repeat: no-repeat;
  background-position: left;
  display: block;
  content: " ";
  height: 70px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 940, ../sass/_styleguide.scss */
  .banner-promotion-icon, .banner-promotion-container {
    background-size: 55px 70px;
    height: 70px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 940, ../sass/_styleguide.scss */
  .banner-promotion-icon, .banner-promotion-container {
    background-size: 55px 70px;
    height: 70px;
  }
}

/* line 944, ../sass/_styleguide.scss */
.grants-training-icon-container {
  height: 65px;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 944, ../sass/_styleguide.scss */
  .grants-training-icon-container {
    height: 55px;
  }
}

/* line 952, ../sass/_styleguide.scss */
.grants-and-training-icon-policies-and-guidelines {
  background-image: url("../images/ico-policiesandguidelines.png");
  background-size: 44.5px 48px;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  content: " ";
  height: 48px;
  margin-right: auto;
  margin-left: auto;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 952, ../sass/_styleguide.scss */
  .grants-and-training-icon-policies-and-guidelines {
    background-size: 37.5px 40px;
    height: 40px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 952, ../sass/_styleguide.scss */
  .grants-and-training-icon-policies-and-guidelines {
    background-size: 37.5px 40px;
    height: 40px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2), all and (min--moz-device-pixel-ratio: 2), all and (-o-min-device-pixel-ratio: 2 / 1), all and (min-device-pixel-ratio: 2), all and (min-resolution: 192dpi), all and (min-resolution: 2dppx) {
  /* line 952, ../sass/_styleguide.scss */
  .grants-and-training-icon-policies-and-guidelines {
    background-image: url("../images/ico-policiesandguidelines@2x.png");
    background-size: 44.5px 48px;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    content: " ";
    height: 48px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 768px) and (max-width: 1099px), all and (min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 192dpi) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 2dppx) and (min-width: 768px) and (max-width: 1099px) {
  /* line 952, ../sass/_styleguide.scss */
  .grants-and-training-icon-policies-and-guidelines {
    background-size: 37.5px 40px;
    height: 40px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) {
  /* line 952, ../sass/_styleguide.scss */
  .grants-and-training-icon-policies-and-guidelines {
    background-size: 37.5px 40px;
    height: 40px;
  }
}

@media all and (min-width: 1100px) {
  /* line 952, ../sass/_styleguide.scss */
  .grants-and-training-icon-policies-and-guidelines {
    width: 44.5px;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 952, ../sass/_styleguide.scss */
  .grants-and-training-icon-policies-and-guidelines {
    width: 37.5px;
  }
}

/* line 967, ../sass/_styleguide.scss */
.grants-and-training-icon-funding-opportunities-and-contacts {
  background-image: url("../images/ico-fundingoppcontacts.png");
  background-size: 65px 43.5px;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  content: " ";
  height: 43.5px;
  margin-right: auto;
  margin-left: auto;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 967, ../sass/_styleguide.scss */
  .grants-and-training-icon-funding-opportunities-and-contacts {
    background-size: 52.5px 35px;
    height: 35px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 967, ../sass/_styleguide.scss */
  .grants-and-training-icon-funding-opportunities-and-contacts {
    background-size: 52.5px 35px;
    height: 35px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2), all and (min--moz-device-pixel-ratio: 2), all and (-o-min-device-pixel-ratio: 2 / 1), all and (min-device-pixel-ratio: 2), all and (min-resolution: 192dpi), all and (min-resolution: 2dppx) {
  /* line 967, ../sass/_styleguide.scss */
  .grants-and-training-icon-funding-opportunities-and-contacts {
    background-image: url("../images/ico-fundingoppcontacts@2x.png");
    background-size: 65px 43.5px;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    content: " ";
    height: 43.5px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 768px) and (max-width: 1099px), all and (min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 192dpi) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 2dppx) and (min-width: 768px) and (max-width: 1099px) {
  /* line 967, ../sass/_styleguide.scss */
  .grants-and-training-icon-funding-opportunities-and-contacts {
    background-size: 52.5px 35px;
    height: 35px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) {
  /* line 967, ../sass/_styleguide.scss */
  .grants-and-training-icon-funding-opportunities-and-contacts {
    background-size: 52.5px 35px;
    height: 35px;
  }
}

@media all and (min-width: 1100px) {
  /* line 967, ../sass/_styleguide.scss */
  .grants-and-training-icon-funding-opportunities-and-contacts {
    width: 65px;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 967, ../sass/_styleguide.scss */
  .grants-and-training-icon-funding-opportunities-and-contacts {
    width: 52.5px;
  }
}

/* line 983, ../sass/_styleguide.scss */
.grants-and-training-icon-training-and-career-development {
  background-image: url("../images/ico-trainingcareerdev.png");
  background-size: 37px 50px;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  content: " ";
  height: 50px;
  margin-right: auto;
  margin-left: auto;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 983, ../sass/_styleguide.scss */
  .grants-and-training-icon-training-and-career-development {
    background-size: 29.5px 40px;
    height: 40px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 983, ../sass/_styleguide.scss */
  .grants-and-training-icon-training-and-career-development {
    background-size: 29.5px 40px;
    height: 40px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2), all and (min--moz-device-pixel-ratio: 2), all and (-o-min-device-pixel-ratio: 2 / 1), all and (min-device-pixel-ratio: 2), all and (min-resolution: 192dpi), all and (min-resolution: 2dppx) {
  /* line 983, ../sass/_styleguide.scss */
  .grants-and-training-icon-training-and-career-development {
    background-image: url("../images/ico-trainingcareerdev@2x.png");
    background-size: 37px 50px;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    content: " ";
    height: 50px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 768px) and (max-width: 1099px), all and (min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 192dpi) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 2dppx) and (min-width: 768px) and (max-width: 1099px) {
  /* line 983, ../sass/_styleguide.scss */
  .grants-and-training-icon-training-and-career-development {
    background-size: 29.5px 40px;
    height: 40px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) {
  /* line 983, ../sass/_styleguide.scss */
  .grants-and-training-icon-training-and-career-development {
    background-size: 29.5px 40px;
    height: 40px;
  }
}

@media all and (min-width: 1100px) {
  /* line 983, ../sass/_styleguide.scss */
  .grants-and-training-icon-training-and-career-development {
    width: 37px;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 983, ../sass/_styleguide.scss */
  .grants-and-training-icon-training-and-career-development {
    width: 29.5px;
  }
}

/* line 999, ../sass/_styleguide.scss */
.division-icon-scientific-divisions {
  background-image: url("../images/ico-helix.png");
  background-size: 64px 65px;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  content: " ";
  height: 65px;
  margin-right: auto;
  margin-left: auto;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 999, ../sass/_styleguide.scss */
  .division-icon-scientific-divisions {
    background-size: 49px 50px;
    height: 50px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 999, ../sass/_styleguide.scss */
  .division-icon-scientific-divisions {
    background-size: 49px 50px;
    height: 50px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2), all and (min--moz-device-pixel-ratio: 2), all and (-o-min-device-pixel-ratio: 2 / 1), all and (min-device-pixel-ratio: 2), all and (min-resolution: 192dpi), all and (min-resolution: 2dppx) {
  /* line 999, ../sass/_styleguide.scss */
  .division-icon-scientific-divisions {
    background-image: url("../images/ico-helix@2x.png");
    background-size: 64px 65px;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    content: " ";
    height: 65px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 768px) and (max-width: 1099px), all and (min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 192dpi) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 2dppx) and (min-width: 768px) and (max-width: 1099px) {
  /* line 999, ../sass/_styleguide.scss */
  .division-icon-scientific-divisions {
    background-size: 49px 50px;
    height: 50px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) {
  /* line 999, ../sass/_styleguide.scss */
  .division-icon-scientific-divisions {
    background-size: 49px 50px;
    height: 50px;
  }
}

@media all and (min-width: 1100px) {
  /* line 999, ../sass/_styleguide.scss */
  .division-icon-scientific-divisions {
    width: 64px;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 999, ../sass/_styleguide.scss */
  .division-icon-scientific-divisions {
    width: 49px;
  }
}

/* line 1014, ../sass/_styleguide.scss */
.division-icon-operations-and-administration {
  background-image: url("../images/ico-opsadmin.png");
  background-size: 59.5px 55px;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  content: " ";
  height: 55px;
  margin-right: auto;
  margin-left: auto;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1014, ../sass/_styleguide.scss */
  .division-icon-operations-and-administration {
    background-size: 44px 40px;
    height: 40px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1014, ../sass/_styleguide.scss */
  .division-icon-operations-and-administration {
    background-size: 44px 40px;
    height: 40px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2), all and (min--moz-device-pixel-ratio: 2), all and (-o-min-device-pixel-ratio: 2 / 1), all and (min-device-pixel-ratio: 2), all and (min-resolution: 192dpi), all and (min-resolution: 2dppx) {
  /* line 1014, ../sass/_styleguide.scss */
  .division-icon-operations-and-administration {
    background-image: url("../images/ico-opsadmin@2x.png");
    background-size: 59.5px 55px;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    content: " ";
    height: 55px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 768px) and (max-width: 1099px), all and (min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 192dpi) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 2dppx) and (min-width: 768px) and (max-width: 1099px) {
  /* line 1014, ../sass/_styleguide.scss */
  .division-icon-operations-and-administration {
    background-size: 44px 40px;
    height: 40px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) {
  /* line 1014, ../sass/_styleguide.scss */
  .division-icon-operations-and-administration {
    background-size: 44px 40px;
    height: 40px;
  }
}

@media all and (min-width: 1100px) {
  /* line 1014, ../sass/_styleguide.scss */
  .division-icon-operations-and-administration {
    width: 59.5px;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 1014, ../sass/_styleguide.scss */
  .division-icon-operations-and-administration {
    width: 44px;
  }
}

/* line 1029, ../sass/_styleguide.scss */
.division-icon-advisory-committees {
  background-image: url("../images/ico-advisory.png");
  background-size: 73px 55px;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  content: " ";
  height: 55px;
  margin-right: auto;
  margin-left: auto;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1029, ../sass/_styleguide.scss */
  .division-icon-advisory-committees {
    background-size: 53.5px 40px;
    height: 40px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1029, ../sass/_styleguide.scss */
  .division-icon-advisory-committees {
    background-size: 53.5px 40px;
    height: 40px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2), all and (min--moz-device-pixel-ratio: 2), all and (-o-min-device-pixel-ratio: 2 / 1), all and (min-device-pixel-ratio: 2), all and (min-resolution: 192dpi), all and (min-resolution: 2dppx) {
  /* line 1029, ../sass/_styleguide.scss */
  .division-icon-advisory-committees {
    background-image: url("../images/ico-advisory@2x.png");
    background-size: 73px 55px;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    content: " ";
    height: 55px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 768px) and (max-width: 1099px), all and (min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 192dpi) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 2dppx) and (min-width: 768px) and (max-width: 1099px) {
  /* line 1029, ../sass/_styleguide.scss */
  .division-icon-advisory-committees {
    background-size: 53.5px 40px;
    height: 40px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) {
  /* line 1029, ../sass/_styleguide.scss */
  .division-icon-advisory-committees {
    background-size: 53.5px 40px;
    height: 40px;
  }
}

@media all and (min-width: 1100px) {
  /* line 1029, ../sass/_styleguide.scss */
  .division-icon-advisory-committees {
    width: 73px;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 1029, ../sass/_styleguide.scss */
  .division-icon-advisory-committees {
    width: 53.5px;
  }
}

/* line 1044, ../sass/_styleguide.scss */
.division-icon-budget-and-legislative {
  background-image: url("../images/ico-budgetlegislative.png");
  background-size: 55px 55px;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  content: " ";
  height: 55px;
  margin-right: auto;
  margin-left: auto;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1044, ../sass/_styleguide.scss */
  .division-icon-budget-and-legislative {
    background-size: 40px 40px;
    height: 40px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1044, ../sass/_styleguide.scss */
  .division-icon-budget-and-legislative {
    background-size: 40px 40px;
    height: 40px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2), all and (min--moz-device-pixel-ratio: 2), all and (-o-min-device-pixel-ratio: 2 / 1), all and (min-device-pixel-ratio: 2), all and (min-resolution: 192dpi), all and (min-resolution: 2dppx) {
  /* line 1044, ../sass/_styleguide.scss */
  .division-icon-budget-and-legislative {
    background-image: url("../images/ico-budgetlegislative@2x.png");
    background-size: 55px 55px;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    content: " ";
    height: 55px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 768px) and (max-width: 1099px), all and (min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 192dpi) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 2dppx) and (min-width: 768px) and (max-width: 1099px) {
  /* line 1044, ../sass/_styleguide.scss */
  .division-icon-budget-and-legislative {
    background-size: 40px 40px;
    height: 40px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) {
  /* line 1044, ../sass/_styleguide.scss */
  .division-icon-budget-and-legislative {
    background-size: 40px 40px;
    height: 40px;
  }
}

@media all and (min-width: 1100px) {
  /* line 1044, ../sass/_styleguide.scss */
  .division-icon-budget-and-legislative {
    width: 55px;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 1044, ../sass/_styleguide.scss */
  .division-icon-budget-and-legislative {
    width: 40px;
  }
}

/* line 1059, ../sass/_styleguide.scss */
.division-icon-meet-the-director {
  background-image: url("../images/ico-director.svg");
  background-size: 55px 55px;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  content: " ";
  height: 55px;
  margin-right: auto;
  margin-left: auto;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1059, ../sass/_styleguide.scss */
  .division-icon-meet-the-director {
    background-size: 40px 40px;
    height: 40px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1059, ../sass/_styleguide.scss */
  .division-icon-meet-the-director {
    background-size: 40px 40px;
    height: 40px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2), all and (min--moz-device-pixel-ratio: 2), all and (-o-min-device-pixel-ratio: 2 / 1), all and (min-device-pixel-ratio: 2), all and (min-resolution: 192dpi), all and (min-resolution: 2dppx) {
  /* line 1059, ../sass/_styleguide.scss */
  .division-icon-meet-the-director {
    background-image: url("../images/ico-director.svg");
    background-size: 55px 55px;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    content: " ";
    height: 55px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 768px) and (max-width: 1099px), all and (min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 192dpi) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 2dppx) and (min-width: 768px) and (max-width: 1099px) {
  /* line 1059, ../sass/_styleguide.scss */
  .division-icon-meet-the-director {
    background-size: 40px 40px;
    height: 40px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) {
  /* line 1059, ../sass/_styleguide.scss */
  .division-icon-meet-the-director {
    background-size: 40px 40px;
    height: 40px;
  }
}

@media all and (min-width: 1100px) {
  /* line 1059, ../sass/_styleguide.scss */
  .division-icon-meet-the-director {
    width: 55px;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 1059, ../sass/_styleguide.scss */
  .division-icon-meet-the-director {
    width: 40px;
  }
}

/* line 1073, ../sass/_styleguide.scss */
.division-icon-meet-the-director-female {
  background-image: url("../images/meetthedirector_female.svg");
  background-size: 55px 55px;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  content: " ";
  height: 55px;
  margin-right: auto;
  margin-left: auto;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1073, ../sass/_styleguide.scss */
  .division-icon-meet-the-director-female {
    background-size: 40px 40px;
    height: 40px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1073, ../sass/_styleguide.scss */
  .division-icon-meet-the-director-female {
    background-size: 40px 40px;
    height: 40px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2), all and (min--moz-device-pixel-ratio: 2), all and (-o-min-device-pixel-ratio: 2 / 1), all and (min-device-pixel-ratio: 2), all and (min-resolution: 192dpi), all and (min-resolution: 2dppx) {
  /* line 1073, ../sass/_styleguide.scss */
  .division-icon-meet-the-director-female {
    background-image: url("../images/meetthedirector_female.svg");
    background-size: 55px 55px;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    content: " ";
    height: 55px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 768px) and (max-width: 1099px), all and (min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 192dpi) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 2dppx) and (min-width: 768px) and (max-width: 1099px) {
  /* line 1073, ../sass/_styleguide.scss */
  .division-icon-meet-the-director-female {
    background-size: 40px 40px;
    height: 40px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) {
  /* line 1073, ../sass/_styleguide.scss */
  .division-icon-meet-the-director-female {
    background-size: 40px 40px;
    height: 40px;
  }
}

@media all and (min-width: 1100px) {
  /* line 1073, ../sass/_styleguide.scss */
  .division-icon-meet-the-director-female {
    width: 55px;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 1073, ../sass/_styleguide.scss */
  .division-icon-meet-the-director-female {
    width: 40px;
  }
}

/* line 1090, ../sass/_styleguide.scss */
.career-stage-background-high-school {
  background-image: url("../images/chevron-highschool.png");
  background-size: 233px 147px;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  content: " ";
  height: 147px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1090, ../sass/_styleguide.scss */
  .career-stage-background-high-school {
    background-size: 233px 147px;
    height: 147px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1090, ../sass/_styleguide.scss */
  .career-stage-background-high-school {
    background-size: 233px 147px;
    height: 147px;
  }
}
@media all and (min-width: 1100px) {
  /* line 1090, ../sass/_styleguide.scss */
  .career-stage-background-high-school {
    width: 233px;
  }
}

/* line 1096, ../sass/_styleguide.scss */
.career-stage-background-postbac {
  background-image: url("../images/chevron-postbac.png");
  background-size: 189px 147px;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  content: " ";
  height: 147px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1096, ../sass/_styleguide.scss */
  .career-stage-background-postbac {
    background-size: 189px 147px;
    height: 147px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1096, ../sass/_styleguide.scss */
  .career-stage-background-postbac {
    background-size: 189px 147px;
    height: 147px;
  }
}
@media all and (min-width: 1100px) {
  /* line 1096, ../sass/_styleguide.scss */
  .career-stage-background-postbac {
    width: 189px;
  }
}

/* line 1102, ../sass/_styleguide.scss */
.career-stage-background-graduate {
  background-image: url("../images/chevron-graduate.png");
  background-size: 189px 147px;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  content: " ";
  height: 147px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1102, ../sass/_styleguide.scss */
  .career-stage-background-graduate {
    background-size: 189px 147px;
    height: 147px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1102, ../sass/_styleguide.scss */
  .career-stage-background-graduate {
    background-size: 189px 147px;
    height: 147px;
  }
}
@media all and (min-width: 1100px) {
  /* line 1102, ../sass/_styleguide.scss */
  .career-stage-background-graduate {
    width: 189px;
  }
}

/* line 1108, ../sass/_styleguide.scss */
.career-stage-background-postdoctoral {
  background-image: url("../images/chevron-postdoctoral.png");
  background-size: 190px 147px;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  content: " ";
  height: 147px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1108, ../sass/_styleguide.scss */
  .career-stage-background-postdoctoral {
    background-size: 190px 147px;
    height: 147px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1108, ../sass/_styleguide.scss */
  .career-stage-background-postdoctoral {
    background-size: 190px 147px;
    height: 147px;
  }
}
@media all and (min-width: 1100px) {
  /* line 1108, ../sass/_styleguide.scss */
  .career-stage-background-postdoctoral {
    width: 190px;
  }
}

/* line 1114, ../sass/_styleguide.scss */
.career-stage-background-earlycareer {
  background-image: url("../images/chevron-earlycareer.png");
  background-size: 189px 147px;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  content: " ";
  height: 147px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1114, ../sass/_styleguide.scss */
  .career-stage-background-earlycareer {
    background-size: 189px 147px;
    height: 147px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1114, ../sass/_styleguide.scss */
  .career-stage-background-earlycareer {
    background-size: 189px 147px;
    height: 147px;
  }
}
@media all and (min-width: 1100px) {
  /* line 1114, ../sass/_styleguide.scss */
  .career-stage-background-earlycareer {
    width: 189px;
  }
}

/* line 1120, ../sass/_styleguide.scss */
.career-stage-background-established {
  background-image: url("../images/chevron-established.png");
  background-size: 172px 147px;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  content: " ";
  height: 147px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1120, ../sass/_styleguide.scss */
  .career-stage-background-established {
    background-size: 172px 147px;
    height: 147px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1120, ../sass/_styleguide.scss */
  .career-stage-background-established {
    background-size: 172px 147px;
    height: 147px;
  }
}
@media all and (min-width: 1100px) {
  /* line 1120, ../sass/_styleguide.scss */
  .career-stage-background-established {
    width: 172px;
  }
}

/* line 1127, ../sass/_styleguide.scss */
.searchbox-icon, #searchBoxIcon, #searchBoxIconInner {
  background-image: url("../images/ico-search.png");
  background-size: 25px 25px;
  background-repeat: no-repeat;
  background-position: initial;
  display: inline-block;
  content: " ";
  height: 25px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1127, ../sass/_styleguide.scss */
  .searchbox-icon, #searchBoxIcon, #searchBoxIconInner {
    background-size: 25px 25px;
    height: 25px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1127, ../sass/_styleguide.scss */
  .searchbox-icon, #searchBoxIcon, #searchBoxIconInner {
    background-size: 25px 25px;
    height: 25px;
  }
}

/* line 1131, ../sass/_styleguide.scss */
.viewmore-blue-icon, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content a.viewalllink, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .field--name-field-url > a, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content a, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content a, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .field--name-field-promotional-link > a, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content a, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .field--name-field-url > a {
  background-image: url("../images/viewmoreblue.png");
  background-size: 13px 17px;
  background-repeat: no-repeat;
  background-position: left center;
  display: table-cell;
  content: " ";
  height: 17px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1131, ../sass/_styleguide.scss */
  .viewmore-blue-icon, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content a.viewalllink, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .field--name-field-url > a, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content a, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content a, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .field--name-field-promotional-link > a, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content a, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .field--name-field-url > a {
    background-size: 13px 17px;
    height: 17px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1131, ../sass/_styleguide.scss */
  .viewmore-blue-icon, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content a.viewalllink, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .field--name-field-url > a, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content a, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content a, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .field--name-field-promotional-link > a, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content a, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .field--name-field-url > a {
    background-size: 13px 17px;
    height: 17px;
  }
}

/* line 1135, ../sass/_styleguide.scss */
.viewmore-white-icon, .viewalllink, .promoted-content-container .flexItemText .field--name-field-url > a, .contact-nhlbi--landing .field--name-field-directions-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .fixedDarkBluePane .field--name-field-traveling-and-security a, .field--name-field-community-card .field--name-field-url > a, a.viewalllink, .node--type-research-topic .field--name-field-content > .field__item a.viewalllink, .node--type-research-topic .field--name-field-content > .field__item .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .node--type-research-topic .field--name-field-content > .field__item .field--name-field-url > a, .node--type-research-topic .field--name-field-content > .field__item .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .node--type-research-topic .field--name-field-content > .field__item a, .node--type-research-topic .field--name-field-content > .field__item .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .node--type-research-topic .field--name-field-content > .field__item a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .node--type-research-topic .field--name-field-content > .field__item .field--name-field-promotional-link > a, .node--type-research-topic .field--name-field-content > .field__item .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .node--type-research-topic .field--name-field-content > .field__item a, .node--type-research-topic .field--name-field-content > .field__item .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .node--type-research-topic .field--name-field-content > .field__item .field--name-field-url > a, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content a.viewalllink, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .field--name-field-url > a, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content a, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .field--name-field-promotional-link > a, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content a, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .field--name-field-url > a,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content a.viewalllink,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .promoted-content-container .flexItemText .field--name-field-url > a,
.promoted-content-container .flexItemText .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .field--name-field-url > a,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .contact-nhlbi--landing .field--name-field-directions-link a,
.contact-nhlbi--landing .field--name-field-directions-link .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content a,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .isi-job-opportunities--landing .field--name-field-vacancies-link a,
.isi-job-opportunities--landing .field--name-field-vacancies-link .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content a,
.field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .field--name-field-promotional-link > a,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .fixedDarkBluePane .field--name-field-traveling-and-security a,
.fixedDarkBluePane .field--name-field-traveling-and-security .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content a,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .field--name-field-community-card .field--name-field-url > a,
.field--name-field-community-card .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .field--name-field-url > a {
  background-image: url("../images/viewmorewhite.png");
  background-size: 13px 17px;
  background-repeat: no-repeat;
  background-position: left center;
  display: table-cell;
  content: " ";
  height: 17px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1135, ../sass/_styleguide.scss */
  .viewmore-white-icon, .viewalllink, .promoted-content-container .flexItemText .field--name-field-url > a, .contact-nhlbi--landing .field--name-field-directions-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .fixedDarkBluePane .field--name-field-traveling-and-security a, .field--name-field-community-card .field--name-field-url > a, a.viewalllink, .node--type-research-topic .field--name-field-content > .field__item a.viewalllink, .node--type-research-topic .field--name-field-content > .field__item .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .node--type-research-topic .field--name-field-content > .field__item .field--name-field-url > a, .node--type-research-topic .field--name-field-content > .field__item .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .node--type-research-topic .field--name-field-content > .field__item a, .node--type-research-topic .field--name-field-content > .field__item .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .node--type-research-topic .field--name-field-content > .field__item a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .node--type-research-topic .field--name-field-content > .field__item .field--name-field-promotional-link > a, .node--type-research-topic .field--name-field-content > .field__item .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .node--type-research-topic .field--name-field-content > .field__item a, .node--type-research-topic .field--name-field-content > .field__item .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .node--type-research-topic .field--name-field-content > .field__item .field--name-field-url > a, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content a.viewalllink, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .field--name-field-url > a, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content a, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .field--name-field-promotional-link > a, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content a, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .field--name-field-url > a,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content a.viewalllink,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .promoted-content-container .flexItemText .field--name-field-url > a,
  .promoted-content-container .flexItemText .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .field--name-field-url > a,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .contact-nhlbi--landing .field--name-field-directions-link a,
  .contact-nhlbi--landing .field--name-field-directions-link .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content a,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .isi-job-opportunities--landing .field--name-field-vacancies-link a,
  .isi-job-opportunities--landing .field--name-field-vacancies-link .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content a,
  .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .field--name-field-promotional-link > a,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .fixedDarkBluePane .field--name-field-traveling-and-security a,
  .fixedDarkBluePane .field--name-field-traveling-and-security .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content a,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .field--name-field-community-card .field--name-field-url > a,
  .field--name-field-community-card .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .field--name-field-url > a {
    background-size: 13px 17px;
    height: 17px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1135, ../sass/_styleguide.scss */
  .viewmore-white-icon, .viewalllink, .promoted-content-container .flexItemText .field--name-field-url > a, .contact-nhlbi--landing .field--name-field-directions-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .fixedDarkBluePane .field--name-field-traveling-and-security a, .field--name-field-community-card .field--name-field-url > a, a.viewalllink, .node--type-research-topic .field--name-field-content > .field__item a.viewalllink, .node--type-research-topic .field--name-field-content > .field__item .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .node--type-research-topic .field--name-field-content > .field__item .field--name-field-url > a, .node--type-research-topic .field--name-field-content > .field__item .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .node--type-research-topic .field--name-field-content > .field__item a, .node--type-research-topic .field--name-field-content > .field__item .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .node--type-research-topic .field--name-field-content > .field__item a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .node--type-research-topic .field--name-field-content > .field__item .field--name-field-promotional-link > a, .node--type-research-topic .field--name-field-content > .field__item .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .node--type-research-topic .field--name-field-content > .field__item a, .node--type-research-topic .field--name-field-content > .field__item .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .node--type-research-topic .field--name-field-content > .field__item .field--name-field-url > a, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content a.viewalllink, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .field--name-field-url > a, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content a, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .field--name-field-promotional-link > a, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content a, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .field--name-field-url > a,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content a.viewalllink,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .promoted-content-container .flexItemText .field--name-field-url > a,
  .promoted-content-container .flexItemText .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .field--name-field-url > a,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .contact-nhlbi--landing .field--name-field-directions-link a,
  .contact-nhlbi--landing .field--name-field-directions-link .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content a,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .isi-job-opportunities--landing .field--name-field-vacancies-link a,
  .isi-job-opportunities--landing .field--name-field-vacancies-link .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content a,
  .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .field--name-field-promotional-link > a,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .fixedDarkBluePane .field--name-field-traveling-and-security a,
  .fixedDarkBluePane .field--name-field-traveling-and-security .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content a,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .field--name-field-community-card .field--name-field-url > a,
  .field--name-field-community-card .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .field--name-field-url > a {
    background-size: 13px 17px;
    height: 17px;
  }
}

/* line 1139, ../sass/_styleguide.scss */
.updates-icon, .updateListTeaserTitle {
  background-image: url("../images/ico-updates.png");
  background-size: 36px 34px;
  background-repeat: no-repeat;
  background-position: left top;
  display: table-cell;
  content: " ";
  height: 34px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1139, ../sass/_styleguide.scss */
  .updates-icon, .updateListTeaserTitle {
    background-size: 36px 34px;
    height: 34px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1139, ../sass/_styleguide.scss */
  .updates-icon, .updateListTeaserTitle {
    background-size: 36px 34px;
    height: 34px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2), all and (min--moz-device-pixel-ratio: 2), all and (-o-min-device-pixel-ratio: 2 / 1), all and (min-device-pixel-ratio: 2), all and (min-resolution: 192dpi), all and (min-resolution: 2dppx) {
  /* line 1139, ../sass/_styleguide.scss */
  .updates-icon, .updateListTeaserTitle {
    background-image: url("../images/ico-updates@2x.png");
    background-size: 36px 34px;
    background-repeat: no-repeat;
    background-position: left top;
    display: table-cell;
    content: " ";
    height: 34px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 768px) and (max-width: 1099px), all and (min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 192dpi) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 2dppx) and (min-width: 768px) and (max-width: 1099px) {
  /* line 1139, ../sass/_styleguide.scss */
  .updates-icon, .updateListTeaserTitle {
    background-size: 36px 34px;
    height: 34px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) {
  /* line 1139, ../sass/_styleguide.scss */
  .updates-icon, .updateListTeaserTitle {
    background-size: 36px 34px;
    height: 34px;
  }
}

/* line 1146, ../sass/_styleguide.scss */
.event-type-icon {
  background-image: url("../images/event-type-icon.png");
  background-size: 36px 30px;
  background-repeat: no-repeat;
  background-position: center;
  display: table-cell;
  content: " ";
  height: 30px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1146, ../sass/_styleguide.scss */
  .event-type-icon {
    background-size: 36px 30px;
    height: 30px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1146, ../sass/_styleguide.scss */
  .event-type-icon {
    background-size: 36px 30px;
    height: 30px;
  }
}

/* line 1150, ../sass/_styleguide.scss */
.at-a-glance-icon, .node--type-extramural-science-instance.node--view-mode-full .at-a-glance .storycallouttitle,
.node--type-extramural-science-instance.node--view-mode-subscribe .at-a-glance .storycallouttitle {
  background-image: url("../images/ico-ataglance.png");
  background-size: 156px 144px;
  background-repeat: no-repeat;
  background-position: right center;
  display: inline;
  content: " ";
  height: 144px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1150, ../sass/_styleguide.scss */
  .at-a-glance-icon, .node--type-extramural-science-instance.node--view-mode-full .at-a-glance .storycallouttitle,
  .node--type-extramural-science-instance.node--view-mode-subscribe .at-a-glance .storycallouttitle {
    background-size: 129px 119px;
    height: 119px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1150, ../sass/_styleguide.scss */
  .at-a-glance-icon, .node--type-extramural-science-instance.node--view-mode-full .at-a-glance .storycallouttitle,
  .node--type-extramural-science-instance.node--view-mode-subscribe .at-a-glance .storycallouttitle {
    background-size: 86px 79px;
    height: 79px;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 1150, ../sass/_styleguide.scss */
  .at-a-glance-icon, .node--type-extramural-science-instance.node--view-mode-full .at-a-glance .storycallouttitle,
  .node--type-extramural-science-instance.node--view-mode-subscribe .at-a-glance .storycallouttitle {
    background-position: center center;
  }
}

/* line 1157, ../sass/_styleguide.scss */
.why-its-important-icon, .node--type-scientific-focus-area.node--view-mode-full .why-its-important .storycallouttitle,
.node--type-scientific-focus-area.node--view-mode-subscribe .why-its-important .storycallouttitle {
  background-image: url("../images/ico-star.png");
  background-size: 156px 156px;
  background-repeat: no-repeat;
  background-position: right center;
  display: inline;
  content: " ";
  height: 156px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1157, ../sass/_styleguide.scss */
  .why-its-important-icon, .node--type-scientific-focus-area.node--view-mode-full .why-its-important .storycallouttitle,
  .node--type-scientific-focus-area.node--view-mode-subscribe .why-its-important .storycallouttitle {
    background-size: 129px 129px;
    height: 129px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1157, ../sass/_styleguide.scss */
  .why-its-important-icon, .node--type-scientific-focus-area.node--view-mode-full .why-its-important .storycallouttitle,
  .node--type-scientific-focus-area.node--view-mode-subscribe .why-its-important .storycallouttitle {
    background-size: 86px 86px;
    height: 86px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2), all and (min--moz-device-pixel-ratio: 2), all and (-o-min-device-pixel-ratio: 2 / 1), all and (min-device-pixel-ratio: 2), all and (min-resolution: 192dpi), all and (min-resolution: 2dppx) {
  /* line 1157, ../sass/_styleguide.scss */
  .why-its-important-icon, .node--type-scientific-focus-area.node--view-mode-full .why-its-important .storycallouttitle,
  .node--type-scientific-focus-area.node--view-mode-subscribe .why-its-important .storycallouttitle {
    background-image: url("../images/ico-star@2x.png");
    background-size: 156px 156px;
    background-repeat: no-repeat;
    background-position: right center;
    display: inline;
    content: " ";
    height: 156px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 768px) and (max-width: 1099px), all and (min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 192dpi) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 2dppx) and (min-width: 768px) and (max-width: 1099px) {
  /* line 1157, ../sass/_styleguide.scss */
  .why-its-important-icon, .node--type-scientific-focus-area.node--view-mode-full .why-its-important .storycallouttitle,
  .node--type-scientific-focus-area.node--view-mode-subscribe .why-its-important .storycallouttitle {
    background-size: 129px 129px;
    height: 129px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) {
  /* line 1157, ../sass/_styleguide.scss */
  .why-its-important-icon, .node--type-scientific-focus-area.node--view-mode-full .why-its-important .storycallouttitle,
  .node--type-scientific-focus-area.node--view-mode-subscribe .why-its-important .storycallouttitle {
    background-size: 86px 86px;
    height: 86px;
  }
}

@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 1157, ../sass/_styleguide.scss */
  .why-its-important-icon, .node--type-scientific-focus-area.node--view-mode-full .why-its-important .storycallouttitle,
  .node--type-scientific-focus-area.node--view-mode-subscribe .why-its-important .storycallouttitle {
    background-position: center center;
  }
}

/* line 1167, ../sass/_styleguide.scss */
.key-accomplishments-icon, .node--type-scientific-focus-area.node--view-mode-full .key-accomplishments .storycallouttitle,
.node--type-scientific-focus-area.node--view-mode-subscribe .key-accomplishments .storycallouttitle {
  background-image: url("../images/ico-medal.png");
  background-size: 156px 184px;
  background-repeat: no-repeat;
  background-position: right center;
  display: inline;
  content: " ";
  height: 184px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1167, ../sass/_styleguide.scss */
  .key-accomplishments-icon, .node--type-scientific-focus-area.node--view-mode-full .key-accomplishments .storycallouttitle,
  .node--type-scientific-focus-area.node--view-mode-subscribe .key-accomplishments .storycallouttitle {
    background-size: 129px 152px;
    height: 152px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1167, ../sass/_styleguide.scss */
  .key-accomplishments-icon, .node--type-scientific-focus-area.node--view-mode-full .key-accomplishments .storycallouttitle,
  .node--type-scientific-focus-area.node--view-mode-subscribe .key-accomplishments .storycallouttitle {
    background-size: 86px 102px;
    height: 102px;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 1167, ../sass/_styleguide.scss */
  .key-accomplishments-icon, .node--type-scientific-focus-area.node--view-mode-full .key-accomplishments .storycallouttitle,
  .node--type-scientific-focus-area.node--view-mode-subscribe .key-accomplishments .storycallouttitle {
    background-position: center center;
  }
}

/* line 1174, ../sass/_styleguide.scss */
.opportunities-and-challenges-icon, .node--type-scientific-focus-area.node--view-mode-full .opportunities-and-challenges .storycallouttitle,
.node--type-scientific-focus-area.node--view-mode-subscribe .opportunities-and-challenges .storycallouttitle {
  background-image: url("../images/ico-mountain.png");
  background-size: 156px 115px;
  background-repeat: no-repeat;
  background-position: right center;
  display: inline;
  content: " ";
  height: 115px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1174, ../sass/_styleguide.scss */
  .opportunities-and-challenges-icon, .node--type-scientific-focus-area.node--view-mode-full .opportunities-and-challenges .storycallouttitle,
  .node--type-scientific-focus-area.node--view-mode-subscribe .opportunities-and-challenges .storycallouttitle {
    background-size: 129px 95px;
    height: 95px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1174, ../sass/_styleguide.scss */
  .opportunities-and-challenges-icon, .node--type-scientific-focus-area.node--view-mode-full .opportunities-and-challenges .storycallouttitle,
  .node--type-scientific-focus-area.node--view-mode-subscribe .opportunities-and-challenges .storycallouttitle {
    background-size: 86px 64px;
    height: 64px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2), all and (min--moz-device-pixel-ratio: 2), all and (-o-min-device-pixel-ratio: 2 / 1), all and (min-device-pixel-ratio: 2), all and (min-resolution: 192dpi), all and (min-resolution: 2dppx) {
  /* line 1174, ../sass/_styleguide.scss */
  .opportunities-and-challenges-icon, .node--type-scientific-focus-area.node--view-mode-full .opportunities-and-challenges .storycallouttitle,
  .node--type-scientific-focus-area.node--view-mode-subscribe .opportunities-and-challenges .storycallouttitle {
    background-image: url("../images/ico-mountain@2x.png");
    background-size: 156px 115px;
    background-repeat: no-repeat;
    background-position: right center;
    display: inline;
    content: " ";
    height: 115px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 768px) and (max-width: 1099px), all and (min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 192dpi) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 2dppx) and (min-width: 768px) and (max-width: 1099px) {
  /* line 1174, ../sass/_styleguide.scss */
  .opportunities-and-challenges-icon, .node--type-scientific-focus-area.node--view-mode-full .opportunities-and-challenges .storycallouttitle,
  .node--type-scientific-focus-area.node--view-mode-subscribe .opportunities-and-challenges .storycallouttitle {
    background-size: 129px 95px;
    height: 95px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) {
  /* line 1174, ../sass/_styleguide.scss */
  .opportunities-and-challenges-icon, .node--type-scientific-focus-area.node--view-mode-full .opportunities-and-challenges .storycallouttitle,
  .node--type-scientific-focus-area.node--view-mode-subscribe .opportunities-and-challenges .storycallouttitle {
    background-size: 86px 64px;
    height: 64px;
  }
}

@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 1174, ../sass/_styleguide.scss */
  .opportunities-and-challenges-icon, .node--type-scientific-focus-area.node--view-mode-full .opportunities-and-challenges .storycallouttitle,
  .node--type-scientific-focus-area.node--view-mode-subscribe .opportunities-and-challenges .storycallouttitle {
    background-position: center center;
  }
}

/* line 1185, ../sass/_styleguide.scss */
.blue-quote-icon, .node--type-scientific-focus-area.node--view-mode-full .research-making-a-difference .pullquote,
.node--type-scientific-focus-area.node--view-mode-subscribe .research-making-a-difference .pullquote {
  background-image: url("../images/largebluequote.png");
  background-size: 56px 41px;
  background-repeat: no-repeat;
  background-position: left top;
  display: table-cell;
  content: " ";
  height: 41px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1185, ../sass/_styleguide.scss */
  .blue-quote-icon, .node--type-scientific-focus-area.node--view-mode-full .research-making-a-difference .pullquote,
  .node--type-scientific-focus-area.node--view-mode-subscribe .research-making-a-difference .pullquote {
    background-size: 30px 22px;
    height: 22px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1185, ../sass/_styleguide.scss */
  .blue-quote-icon, .node--type-scientific-focus-area.node--view-mode-full .research-making-a-difference .pullquote,
  .node--type-scientific-focus-area.node--view-mode-subscribe .research-making-a-difference .pullquote {
    background-size: 30px 22px;
    height: 22px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2), all and (min--moz-device-pixel-ratio: 2), all and (-o-min-device-pixel-ratio: 2 / 1), all and (min-device-pixel-ratio: 2), all and (min-resolution: 192dpi), all and (min-resolution: 2dppx) {
  /* line 1185, ../sass/_styleguide.scss */
  .blue-quote-icon, .node--type-scientific-focus-area.node--view-mode-full .research-making-a-difference .pullquote,
  .node--type-scientific-focus-area.node--view-mode-subscribe .research-making-a-difference .pullquote {
    background-image: url("../images/largebluequote@2x.png");
    background-size: 56px 41px;
    background-repeat: no-repeat;
    background-position: left top;
    display: table-cell;
    content: " ";
    height: 41px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 768px) and (max-width: 1099px), all and (min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 192dpi) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 2dppx) and (min-width: 768px) and (max-width: 1099px) {
  /* line 1185, ../sass/_styleguide.scss */
  .blue-quote-icon, .node--type-scientific-focus-area.node--view-mode-full .research-making-a-difference .pullquote,
  .node--type-scientific-focus-area.node--view-mode-subscribe .research-making-a-difference .pullquote {
    background-size: 30px 22px;
    height: 22px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) {
  /* line 1185, ../sass/_styleguide.scss */
  .blue-quote-icon, .node--type-scientific-focus-area.node--view-mode-full .research-making-a-difference .pullquote,
  .node--type-scientific-focus-area.node--view-mode-subscribe .research-making-a-difference .pullquote {
    background-size: 30px 22px;
    height: 22px;
  }
}

/* line 1193, ../sass/_styleguide.scss */
.arrow-icon, .storycalloutlist li:before {
  background-image: url("../images/ico-arrowbullet.png");
  background-size: 11px 17px;
  background-repeat: no-repeat;
  background-position: left 18%;
  display: table-cell;
  content: " ";
  height: 17px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1193, ../sass/_styleguide.scss */
  .arrow-icon, .storycalloutlist li:before {
    background-size: 11px 17px;
    height: 17px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1193, ../sass/_styleguide.scss */
  .arrow-icon, .storycalloutlist li:before {
    background-size: 7px 11px;
    height: 11px;
  }
}

/* line 1198, ../sass/_styleguide.scss */
.bluesquare-icon {
  background-image: url("../images/ico-bluesquarebullet.png");
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-position: left top;
  display: table-cell;
  content: " ";
  height: 14px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1198, ../sass/_styleguide.scss */
  .bluesquare-icon {
    background-size: 14px 14px;
    height: 14px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1198, ../sass/_styleguide.scss */
  .bluesquare-icon {
    background-size: 14px 14px;
    height: 14px;
  }
}

/* line 1202, ../sass/_styleguide.scss */
.transparent-icon {
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-position: left top;
  display: table-cell;
  content: " ";
  height: 14px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1202, ../sass/_styleguide.scss */
  .transparent-icon {
    background-size: 14px 14px;
    height: 14px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1202, ../sass/_styleguide.scss */
  .transparent-icon {
    background-size: 14px 14px;
    height: 14px;
  }
}

/* line 1205, ../sass/_styleguide.scss */
.card-icon {
  height: 80px;
  padding-bottom: 1em;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 1205, ../sass/_styleguide.scss */
  .card-icon {
    height: 60px;
  }
}

/* line 1213, ../sass/_styleguide.scss */
.card-icon-pivotal-trial {
  background-image: url("../images/ico-pivotaltrial.png");
  background-size: 108px 62px;
  background-repeat: no-repeat;
  background-position: center top;
  display: block;
  content: " ";
  height: 62px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1213, ../sass/_styleguide.scss */
  .card-icon-pivotal-trial {
    background-size: 89px 51px;
    height: 51px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1213, ../sass/_styleguide.scss */
  .card-icon-pivotal-trial {
    background-size: 89px 51px;
    height: 51px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2), all and (min--moz-device-pixel-ratio: 2), all and (-o-min-device-pixel-ratio: 2 / 1), all and (min-device-pixel-ratio: 2), all and (min-resolution: 192dpi), all and (min-resolution: 2dppx) {
  /* line 1213, ../sass/_styleguide.scss */
  .card-icon-pivotal-trial {
    background-image: url("../images/ico-pivotaltrial@2x.png");
    background-size: 108px 62px;
    background-repeat: no-repeat;
    background-position: center top;
    display: block;
    content: " ";
    height: 62px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 768px) and (max-width: 1099px), all and (min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 192dpi) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 2dppx) and (min-width: 768px) and (max-width: 1099px) {
  /* line 1213, ../sass/_styleguide.scss */
  .card-icon-pivotal-trial {
    background-size: 89px 51px;
    height: 51px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) {
  /* line 1213, ../sass/_styleguide.scss */
  .card-icon-pivotal-trial {
    background-size: 89px 51px;
    height: 51px;
  }
}

/* line 1220, ../sass/_styleguide.scss */
.card-icon-research-tools {
  background-image: url("../images/ico-researchtools.png");
  background-size: 82px 80px;
  background-repeat: no-repeat;
  background-position: center top;
  display: block;
  content: " ";
  height: 80px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1220, ../sass/_styleguide.scss */
  .card-icon-research-tools {
    background-size: 61px 59px;
    height: 59px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1220, ../sass/_styleguide.scss */
  .card-icon-research-tools {
    background-size: 61px 59px;
    height: 59px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2), all and (min--moz-device-pixel-ratio: 2), all and (-o-min-device-pixel-ratio: 2 / 1), all and (min-device-pixel-ratio: 2), all and (min-resolution: 192dpi), all and (min-resolution: 2dppx) {
  /* line 1220, ../sass/_styleguide.scss */
  .card-icon-research-tools {
    background-image: url("../images/ico-researchtools@2x.png");
    background-size: 82px 80px;
    background-repeat: no-repeat;
    background-position: center top;
    display: block;
    content: " ";
    height: 80px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 768px) and (max-width: 1099px), all and (min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 192dpi) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 2dppx) and (min-width: 768px) and (max-width: 1099px) {
  /* line 1220, ../sass/_styleguide.scss */
  .card-icon-research-tools {
    background-size: 61px 59px;
    height: 59px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) {
  /* line 1220, ../sass/_styleguide.scss */
  .card-icon-research-tools {
    background-size: 61px 59px;
    height: 59px;
  }
}

/* line 1226, ../sass/_styleguide.scss */
.card-icon-research-resources {
  background-image: url("../images/ico-researchtools.png");
  background-size: 82px 80px;
  background-repeat: no-repeat;
  background-position: center top;
  display: block;
  content: " ";
  height: 80px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1226, ../sass/_styleguide.scss */
  .card-icon-research-resources {
    background-size: 61px 59px;
    height: 59px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1226, ../sass/_styleguide.scss */
  .card-icon-research-resources {
    background-size: 61px 59px;
    height: 59px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2), all and (min--moz-device-pixel-ratio: 2), all and (-o-min-device-pixel-ratio: 2 / 1), all and (min-device-pixel-ratio: 2), all and (min-resolution: 192dpi), all and (min-resolution: 2dppx) {
  /* line 1226, ../sass/_styleguide.scss */
  .card-icon-research-resources {
    background-image: url("../images/ico-researchtools@2x.png");
    background-size: 82px 80px;
    background-repeat: no-repeat;
    background-position: center top;
    display: block;
    content: " ";
    height: 80px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 768px) and (max-width: 1099px), all and (min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 192dpi) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 2dppx) and (min-width: 768px) and (max-width: 1099px) {
  /* line 1226, ../sass/_styleguide.scss */
  .card-icon-research-resources {
    background-size: 61px 59px;
    height: 59px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) {
  /* line 1226, ../sass/_styleguide.scss */
  .card-icon-research-resources {
    background-size: 61px 59px;
    height: 59px;
  }
}

/* line 1233, ../sass/_styleguide.scss */
.card-icon-branch-lab {
  background-image: url("../images/ico-branchlab.png");
  background-size: 87px 78px;
  background-repeat: no-repeat;
  background-position: center top;
  display: block;
  content: " ";
  height: 78px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1233, ../sass/_styleguide.scss */
  .card-icon-branch-lab {
    background-size: 65px 58px;
    height: 58px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1233, ../sass/_styleguide.scss */
  .card-icon-branch-lab {
    background-size: 65px 58px;
    height: 58px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2), all and (min--moz-device-pixel-ratio: 2), all and (-o-min-device-pixel-ratio: 2 / 1), all and (min-device-pixel-ratio: 2), all and (min-resolution: 192dpi), all and (min-resolution: 2dppx) {
  /* line 1233, ../sass/_styleguide.scss */
  .card-icon-branch-lab {
    background-image: url("../images/ico-branchlab@2x.png");
    background-size: 87px 78px;
    background-repeat: no-repeat;
    background-position: center top;
    display: block;
    content: " ";
    height: 78px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 768px) and (max-width: 1099px), all and (min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 192dpi) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 2dppx) and (min-width: 768px) and (max-width: 1099px) {
  /* line 1233, ../sass/_styleguide.scss */
  .card-icon-branch-lab {
    background-size: 65px 58px;
    height: 58px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) {
  /* line 1233, ../sass/_styleguide.scss */
  .card-icon-branch-lab {
    background-size: 65px 58px;
    height: 58px;
  }
}

/* line 1240, ../sass/_styleguide.scss */
.card-icon-programs {
  background-image: url("../images/ico-programs.png");
  background-size: 79px 79px;
  background-repeat: no-repeat;
  background-position: center top;
  display: block;
  content: " ";
  height: 79px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1240, ../sass/_styleguide.scss */
  .card-icon-programs {
    background-size: 60px 60px;
    height: 60px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1240, ../sass/_styleguide.scss */
  .card-icon-programs {
    background-size: 60px 60px;
    height: 60px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2), all and (min--moz-device-pixel-ratio: 2), all and (-o-min-device-pixel-ratio: 2 / 1), all and (min-device-pixel-ratio: 2), all and (min-resolution: 192dpi), all and (min-resolution: 2dppx) {
  /* line 1240, ../sass/_styleguide.scss */
  .card-icon-programs {
    background-image: url("../images/ico-programs@2x.png");
    background-size: 79px 79px;
    background-repeat: no-repeat;
    background-position: center top;
    display: block;
    content: " ";
    height: 79px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 768px) and (max-width: 1099px), all and (min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 192dpi) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 2dppx) and (min-width: 768px) and (max-width: 1099px) {
  /* line 1240, ../sass/_styleguide.scss */
  .card-icon-programs {
    background-size: 60px 60px;
    height: 60px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) {
  /* line 1240, ../sass/_styleguide.scss */
  .card-icon-programs {
    background-size: 60px 60px;
    height: 60px;
  }
}

/* line 1247, ../sass/_styleguide.scss */
.card-icon-consortium {
  background-image: url("../images/ico-consortium.png");
  background-size: 96px 79px;
  background-repeat: no-repeat;
  background-position: center top;
  display: block;
  content: " ";
  height: 79px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1247, ../sass/_styleguide.scss */
  .card-icon-consortium {
    background-size: 80px 66px;
    height: 66px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1247, ../sass/_styleguide.scss */
  .card-icon-consortium {
    background-size: 80px 66px;
    height: 66px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2), all and (min--moz-device-pixel-ratio: 2), all and (-o-min-device-pixel-ratio: 2 / 1), all and (min-device-pixel-ratio: 2), all and (min-resolution: 192dpi), all and (min-resolution: 2dppx) {
  /* line 1247, ../sass/_styleguide.scss */
  .card-icon-consortium {
    background-image: url("../images/ico-consortium@2x.png");
    background-size: 96px 79px;
    background-repeat: no-repeat;
    background-position: center top;
    display: block;
    content: " ";
    height: 79px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 768px) and (max-width: 1099px), all and (min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 192dpi) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 2dppx) and (min-width: 768px) and (max-width: 1099px) {
  /* line 1247, ../sass/_styleguide.scss */
  .card-icon-consortium {
    background-size: 80px 66px;
    height: 66px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) {
  /* line 1247, ../sass/_styleguide.scss */
  .card-icon-consortium {
    background-size: 80px 66px;
    height: 66px;
  }
}

/* line 1256, ../sass/_styleguide.scss */
.btn-dismiss, #image-container a.modal-close {
  background-image: url("../images/btn-dismiss2.png");
  background-size: 25px 23px;
  background-repeat: no-repeat;
  background-position: initial;
  display: inline-block;
  content: " ";
  height: 23px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1256, ../sass/_styleguide.scss */
  .btn-dismiss, #image-container a.modal-close {
    background-size: 25px 23px;
    height: 23px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1256, ../sass/_styleguide.scss */
  .btn-dismiss, #image-container a.modal-close {
    background-size: 25px 23px;
    height: 23px;
  }
}

/* line 1259, ../sass/_styleguide.scss */
.btn-promotion-close, #banner-promotion-wrapper a.banner-promotion-close, #banner-promotion-wrapper a.banner-promotion-close:link, #banner-promotion-wrapper a.banner-promotion-close:active, #banner-promotion-wrapper a.banner-promotion-close:visited {
  background-image: url("../images/ico-deletecross.png");
  background-size: 19px 19px;
  background-repeat: no-repeat;
  background-position: initial;
  display: inline-block;
  content: " ";
  height: 19px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1259, ../sass/_styleguide.scss */
  .btn-promotion-close, #banner-promotion-wrapper a.banner-promotion-close, #banner-promotion-wrapper a.banner-promotion-close:link, #banner-promotion-wrapper a.banner-promotion-close:active, #banner-promotion-wrapper a.banner-promotion-close:visited {
    background-size: 19px 19px;
    height: 19px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1259, ../sass/_styleguide.scss */
  .btn-promotion-close, #banner-promotion-wrapper a.banner-promotion-close, #banner-promotion-wrapper a.banner-promotion-close:link, #banner-promotion-wrapper a.banner-promotion-close:active, #banner-promotion-wrapper a.banner-promotion-close:visited {
    background-size: 19px 19px;
    height: 19px;
  }
}

/* line 1263, ../sass/_styleguide.scss */
.cross-icon {
  background-image: url("../images/ico-cross.png");
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: center;
  display: table-cell;
  content: " ";
  height: 20px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1263, ../sass/_styleguide.scss */
  .cross-icon {
    background-size: 20px 20px;
    height: 20px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1263, ../sass/_styleguide.scss */
  .cross-icon {
    background-size: 20px 20px;
    height: 20px;
  }
}

/* line 1267, ../sass/_styleguide.scss */
.info-icon, .contact-nhlbi-titleblock .callout-contact-link a {
  background-image: url("../images/ico-info.png");
  background-size: 40px 40px;
  background-repeat: no-repeat;
  background-position: center;
  display: table-cell;
  content: " ";
  height: 40px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1267, ../sass/_styleguide.scss */
  .info-icon, .contact-nhlbi-titleblock .callout-contact-link a {
    background-size: 40px 40px;
    height: 40px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1267, ../sass/_styleguide.scss */
  .info-icon, .contact-nhlbi-titleblock .callout-contact-link a {
    background-size: 40px 40px;
    height: 40px;
  }
}

/* Topic Icons */
/* line 1273, ../sass/_styleguide.scss */
.topic-icon-Heart {
  background-image: url("../images/ico-heart.png");
  background-repeat: no-repeat;
  background-size: 40px 40px;
  width: 40px;
  height: 40px;
  display: inline-block;
  margin: 6px 6px 6px 0;
}

/* line 1276, ../sass/_styleguide.scss */
.topic-icon-Lung {
  background-image: url("../images/ico-lung.png");
  background-repeat: no-repeat;
  background-size: 40px 40px;
  width: 40px;
  height: 40px;
  display: inline-block;
  margin: 6px 6px 6px 0;
}

/* line 1279, ../sass/_styleguide.scss */
.topic-icon-Blood {
  background-image: url("../images/ico-blood.png");
  background-repeat: no-repeat;
  background-size: 40px 40px;
  width: 40px;
  height: 40px;
  display: inline-block;
  margin: 6px 6px 6px 0;
}

/* line 1282, ../sass/_styleguide.scss */
.topic-icon-Sleep {
  background-image: url("../images/ico-sleep.png");
  background-repeat: no-repeat;
  background-size: 40px 40px;
  width: 40px;
  height: 40px;
  display: inline-block;
  margin: 6px 6px 6px 0;
}

/* line 1285, ../sass/_styleguide.scss */
.topic-icon-Basic-Science {
  background-image: url("../images/ico-basic-science-2.png");
  background-repeat: no-repeat;
  background-size: 40px 40px;
  width: 40px;
  height: 40px;
  display: inline-block;
  margin: 6px 6px 6px 0;
}

/**
* Social meida icons
**/
/* line 1292, ../sass/_styleguide.scss */
.twitter-icon {
  background-image: url("../images/ico-tw.png");
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-position: left bottom;
  display: inline-block;
  content: " ";
  height: 14px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1292, ../sass/_styleguide.scss */
  .twitter-icon {
    background-size: 14px 14px;
    height: 14px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1292, ../sass/_styleguide.scss */
  .twitter-icon {
    background-size: 14px 14px;
    height: 14px;
  }
}

/* line 1295, ../sass/_styleguide.scss */
.facebook-icon {
  background-image: url("../images/ico-fb.png");
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-position: left bottom;
  display: inline-block;
  content: " ";
  height: 14px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1295, ../sass/_styleguide.scss */
  .facebook-icon {
    background-size: 14px 14px;
    height: 14px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1295, ../sass/_styleguide.scss */
  .facebook-icon {
    background-size: 14px 14px;
    height: 14px;
  }
}

/* line 1298, ../sass/_styleguide.scss */
.linkedin-square-icon {
  background-image: url("../images/ico-linkedin-square.png");
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-position: left bottom;
  display: inline-block;
  content: " ";
  height: 14px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1298, ../sass/_styleguide.scss */
  .linkedin-square-icon {
    background-size: 14px 14px;
    height: 14px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1298, ../sass/_styleguide.scss */
  .linkedin-square-icon {
    background-size: 14px 14px;
    height: 14px;
  }
}

/* line 1301, ../sass/_styleguide.scss */
.instagram-icon {
  background-image: url("../images/ico-fb.png");
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-position: left bottom;
  display: inline-block;
  content: " ";
  height: 14px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1301, ../sass/_styleguide.scss */
  .instagram-icon {
    background-size: 14px 14px;
    height: 14px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1301, ../sass/_styleguide.scss */
  .instagram-icon {
    background-size: 14px 14px;
    height: 14px;
  }
}

/* line 1304, ../sass/_styleguide.scss */
.youtube-icon {
  background-image: url("../images/ico-fb.png");
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-position: left bottom;
  display: inline-block;
  content: " ";
  height: 14px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1304, ../sass/_styleguide.scss */
  .youtube-icon {
    background-size: 14px 14px;
    height: 14px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1304, ../sass/_styleguide.scss */
  .youtube-icon {
    background-size: 14px 14px;
    height: 14px;
  }
}

/* line 1308, ../sass/_styleguide.scss */
.twitter-icon-large, .social-link-twitter {
  background-image: url("../images/ico-tw.png");
  background-size: 25px 25px;
  background-repeat: no-repeat;
  background-position: left bottom;
  display: inline-block;
  content: " ";
  height: 25px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1308, ../sass/_styleguide.scss */
  .twitter-icon-large, .social-link-twitter {
    background-size: 25px 25px;
    height: 25px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1308, ../sass/_styleguide.scss */
  .twitter-icon-large, .social-link-twitter {
    background-size: 25px 25px;
    height: 25px;
  }
}

/* line 1311, ../sass/_styleguide.scss */
.facebook-icon-large, .social-link-facebook {
  background-image: url("../images/ico-fb.png");
  background-size: 25px 25px;
  background-repeat: no-repeat;
  background-position: left bottom;
  display: inline-block;
  content: " ";
  height: 25px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1311, ../sass/_styleguide.scss */
  .facebook-icon-large, .social-link-facebook {
    background-size: 25px 25px;
    height: 25px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1311, ../sass/_styleguide.scss */
  .facebook-icon-large, .social-link-facebook {
    background-size: 25px 25px;
    height: 25px;
  }
}

/* line 1314, ../sass/_styleguide.scss */
.linkedin-square-icon-large, .social-link-linkedin {
  background-image: url("../images/ico-linkedin-square.png");
  background-size: 25px 25px;
  background-repeat: no-repeat;
  background-position: left bottom;
  display: inline-block;
  content: " ";
  height: 25px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1314, ../sass/_styleguide.scss */
  .linkedin-square-icon-large, .social-link-linkedin {
    background-size: 25px 25px;
    height: 25px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1314, ../sass/_styleguide.scss */
  .linkedin-square-icon-large, .social-link-linkedin {
    background-size: 25px 25px;
    height: 25px;
  }
}

/* line 1317, ../sass/_styleguide.scss */
.instagram-icon-large, .social-link-instagram {
  background-image: url("../images/ico-instagram.png");
  background-size: 25px 25px;
  background-repeat: no-repeat;
  background-position: left bottom;
  display: inline-block;
  content: " ";
  height: 25px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1317, ../sass/_styleguide.scss */
  .instagram-icon-large, .social-link-instagram {
    background-size: 25px 25px;
    height: 25px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1317, ../sass/_styleguide.scss */
  .instagram-icon-large, .social-link-instagram {
    background-size: 25px 25px;
    height: 25px;
  }
}

/* line 1320, ../sass/_styleguide.scss */
.youtube-icon-hei-large, .social-link-youtube {
  background-image: url("../images/ico-youtube.svg");
  background-size: 25px 25px;
  background-repeat: no-repeat;
  background-position: left bottom;
  display: inline-block;
  content: " ";
  height: 25px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1320, ../sass/_styleguide.scss */
  .youtube-icon-hei-large, .social-link-youtube {
    background-size: 25px 25px;
    height: 25px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1320, ../sass/_styleguide.scss */
  .youtube-icon-hei-large, .social-link-youtube {
    background-size: 25px 25px;
    height: 25px;
  }
}

/* line 1323, ../sass/_styleguide.scss */
.youtube-icon-large {
  background-image: url("../images/ico-youtube.png");
  background-size: 25px 25px;
  background-repeat: no-repeat;
  background-position: left bottom;
  display: inline-block;
  content: " ";
  height: 25px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1323, ../sass/_styleguide.scss */
  .youtube-icon-large {
    background-size: 25px 25px;
    height: 25px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1323, ../sass/_styleguide.scss */
  .youtube-icon-large {
    background-size: 25px 25px;
    height: 25px;
  }
}

/* line 1327, ../sass/_styleguide.scss */
.twitter-silhouette-icon, .twitterlink {
  background-image: url("../images/twittersilhouette.png");
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-position: left bottom;
  display: inline-block;
  content: " ";
  height: 14px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1327, ../sass/_styleguide.scss */
  .twitter-silhouette-icon, .twitterlink {
    background-size: 14px 14px;
    height: 14px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1327, ../sass/_styleguide.scss */
  .twitter-silhouette-icon, .twitterlink {
    background-size: 14px 14px;
    height: 14px;
  }
}

/* line 1330, ../sass/_styleguide.scss */
.twitter-large-silhouette-icon, .contact-method-icon-twitter {
  background-image: url("../images/twittersilhouette.png");
  background-size: 25px 20px;
  background-repeat: no-repeat;
  background-position: left bottom;
  display: inline-block;
  content: " ";
  height: 20px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1330, ../sass/_styleguide.scss */
  .twitter-large-silhouette-icon, .contact-method-icon-twitter {
    background-size: 25px 20px;
    height: 20px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1330, ../sass/_styleguide.scss */
  .twitter-large-silhouette-icon, .contact-method-icon-twitter {
    background-size: 25px 20px;
    height: 20px;
  }
}

/**
 * Global Header
 **/
/* line 1336, ../sass/_styleguide.scss */
.grayheader {
  height: 35px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.75rem;
  background-color: #E8E8E8;
  color: #999;
}

/* line 1343, ../sass/_styleguide.scss */
a.menuItem, #main-menu-header #block-mainnavigation a, .menuItem, #main-menu-header #block-mainnavigation a {
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 1rem;
  font-weight: normal;
  color: #999;
}

/* line 1349, ../sass/_styleguide.scss */
a.menuItem:hover, #main-menu-header #block-mainnavigation a:hover, a.menuItem:active, #main-menu-header #block-mainnavigation a:active, .menuItem:hover, #main-menu-header #block-mainnavigation a:hover, .menuItem:active, #main-menu-header #block-mainnavigation a:active {
  color: #990000;
  background-color: transparent;
}

/**
 * Page Banner Graphics
 **/
/* line 1358, ../sass/_styleguide.scss */
.pageBanner {
  height: 55px;
  width: 100%;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1358, ../sass/_styleguide.scss */
  .pageBanner {
    height: 45px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1358, ../sass/_styleguide.scss */
  .pageBanner {
    height: 35px;
  }
}
/* line 1368, ../sass/_styleguide.scss */
.pageBanner img {
  max-height: 55px;
  width: 100%;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1368, ../sass/_styleguide.scss */
  .pageBanner img {
    max-height: 45px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1368, ../sass/_styleguide.scss */
  .pageBanner img {
    max-height: 35px;
  }
}

/* line 1381, ../sass/_styleguide.scss */
.banner-red {
  background-image: url("../images/banner-red.png");
  background-size: 797px 55px;
  background-repeat: repeat;
  background-position: center;
  display: block;
  content: " ";
  height: 55px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1381, ../sass/_styleguide.scss */
  .banner-red {
    background-size: 652px 45px;
    height: 45px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1381, ../sass/_styleguide.scss */
  .banner-red {
    background-size: 507px 35px;
    height: 35px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1381, ../sass/_styleguide.scss */
  .banner-red {
    background-image: url("../images/banner-red-mobile.png");
    background-size: 768px 35px;
    background-repeat: repeat;
    background-position: center;
    display: block;
    content: " ";
    height: 35px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) and (min-width: 768px) and (max-width: 1099px) {
  /* line 1381, ../sass/_styleguide.scss */
  .banner-red {
    background-size: 768px 35px;
    height: 35px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) and (min-width: 0em) and (max-width: 767px) {
  /* line 1381, ../sass/_styleguide.scss */
  .banner-red {
    background-size: 768px 35px;
    height: 35px;
  }
}

/* line 1388, ../sass/_styleguide.scss */
.banner-blue {
  background-image: url("../images/banner-blue.png");
  background-size: 797px 55px;
  background-repeat: repeat;
  background-position: center;
  display: block;
  content: " ";
  height: 55px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1388, ../sass/_styleguide.scss */
  .banner-blue {
    background-size: 652px 45px;
    height: 45px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1388, ../sass/_styleguide.scss */
  .banner-blue {
    background-size: 507px 35px;
    height: 35px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1388, ../sass/_styleguide.scss */
  .banner-blue {
    background-image: url("../images/banner-blue-mobile.png");
    background-size: 768px 35px;
    background-repeat: repeat;
    background-position: center;
    display: block;
    content: " ";
    height: 35px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) and (min-width: 768px) and (max-width: 1099px) {
  /* line 1388, ../sass/_styleguide.scss */
  .banner-blue {
    background-size: 768px 35px;
    height: 35px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) and (min-width: 0em) and (max-width: 767px) {
  /* line 1388, ../sass/_styleguide.scss */
  .banner-blue {
    background-size: 768px 35px;
    height: 35px;
  }
}

/* line 1395, ../sass/_styleguide.scss */
.banner-light-blue {
  background-image: url("../images/banner-light-blue.png");
  background-size: 797px 55px;
  background-repeat: repeat;
  background-position: center;
  display: block;
  content: " ";
  height: 55px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1395, ../sass/_styleguide.scss */
  .banner-light-blue {
    background-size: 652px 45px;
    height: 45px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1395, ../sass/_styleguide.scss */
  .banner-light-blue {
    background-size: 507px 35px;
    height: 35px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1395, ../sass/_styleguide.scss */
  .banner-light-blue {
    background-image: url("../images/banner-light-blue-mobile.png");
    background-size: 768px 35px;
    background-repeat: repeat;
    background-position: center;
    display: block;
    content: " ";
    height: 35px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) and (min-width: 768px) and (max-width: 1099px) {
  /* line 1395, ../sass/_styleguide.scss */
  .banner-light-blue {
    background-size: 768px 35px;
    height: 35px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) and (min-width: 0em) and (max-width: 767px) {
  /* line 1395, ../sass/_styleguide.scss */
  .banner-light-blue {
    background-size: 768px 35px;
    height: 35px;
  }
}

/* line 1402, ../sass/_styleguide.scss */
.banner-yellow {
  background-image: url("../images/banner-yellow.png");
  background-size: 797px 55px;
  background-repeat: repeat;
  background-position: center;
  display: block;
  content: " ";
  height: 55px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1402, ../sass/_styleguide.scss */
  .banner-yellow {
    background-size: 652px 45px;
    height: 45px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1402, ../sass/_styleguide.scss */
  .banner-yellow {
    background-size: 507px 35px;
    height: 35px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1402, ../sass/_styleguide.scss */
  .banner-yellow {
    background-image: url("../images/banner-yellow-mobile.png");
    background-size: 768px 35px;
    background-repeat: repeat;
    background-position: center;
    display: block;
    content: " ";
    height: 35px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) and (min-width: 768px) and (max-width: 1099px) {
  /* line 1402, ../sass/_styleguide.scss */
  .banner-yellow {
    background-size: 768px 35px;
    height: 35px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) and (min-width: 0em) and (max-width: 767px) {
  /* line 1402, ../sass/_styleguide.scss */
  .banner-yellow {
    background-size: 768px 35px;
    height: 35px;
  }
}

/* line 1409, ../sass/_styleguide.scss */
.banner-gray {
  background-image: url("../images/banner-gray.png");
  background-size: 797px 55px;
  background-repeat: repeat;
  background-position: center;
  display: block;
  content: " ";
  height: 55px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1409, ../sass/_styleguide.scss */
  .banner-gray {
    background-size: 652px 45px;
    height: 45px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1409, ../sass/_styleguide.scss */
  .banner-gray {
    background-size: 507px 35px;
    height: 35px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1409, ../sass/_styleguide.scss */
  .banner-gray {
    background-image: url("../images/banner-gray-mobile.png");
    background-size: 768px 35px;
    background-repeat: repeat;
    background-position: center;
    display: block;
    content: " ";
    height: 35px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) and (min-width: 768px) and (max-width: 1099px) {
  /* line 1409, ../sass/_styleguide.scss */
  .banner-gray {
    background-size: 768px 35px;
    height: 35px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) and (min-width: 0em) and (max-width: 767px) {
  /* line 1409, ../sass/_styleguide.scss */
  .banner-gray {
    background-size: 768px 35px;
    height: 35px;
  }
}

/* line 1416, ../sass/_styleguide.scss */
.banner-hazel {
  background-image: url("../images/banner-hazel.png");
  background-size: 797px 55px;
  background-repeat: repeat;
  background-position: center;
  display: block;
  content: " ";
  height: 55px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1416, ../sass/_styleguide.scss */
  .banner-hazel {
    background-size: 652px 45px;
    height: 45px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1416, ../sass/_styleguide.scss */
  .banner-hazel {
    background-size: 507px 35px;
    height: 35px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1416, ../sass/_styleguide.scss */
  .banner-hazel {
    background-image: url("../images/banner-hazel-mobile.png");
    background-size: 768px 35px;
    background-repeat: repeat;
    background-position: center;
    display: block;
    content: " ";
    height: 35px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) and (min-width: 768px) and (max-width: 1099px) {
  /* line 1416, ../sass/_styleguide.scss */
  .banner-hazel {
    background-size: 768px 35px;
    height: 35px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) and (min-width: 0em) and (max-width: 767px) {
  /* line 1416, ../sass/_styleguide.scss */
  .banner-hazel {
    background-size: 768px 35px;
    height: 35px;
  }
}

/* line 1423, ../sass/_styleguide.scss */
.banner-red-blue {
  background-image: url("../images/newsbanner.png");
  background-size: 797px 55px;
  background-repeat: repeat;
  background-position: center;
  display: block;
  content: " ";
  height: 55px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1423, ../sass/_styleguide.scss */
  .banner-red-blue {
    background-size: 652px 45px;
    height: 45px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1423, ../sass/_styleguide.scss */
  .banner-red-blue {
    background-size: 507px 35px;
    height: 35px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1423, ../sass/_styleguide.scss */
  .banner-red-blue {
    background-image: url("../images/newsbanner-mobile.png");
    background-size: 768px 35px;
    background-repeat: repeat;
    background-position: center;
    display: block;
    content: " ";
    height: 35px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) and (min-width: 768px) and (max-width: 1099px) {
  /* line 1423, ../sass/_styleguide.scss */
  .banner-red-blue {
    background-size: 768px 35px;
    height: 35px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) and (min-width: 0em) and (max-width: 767px) {
  /* line 1423, ../sass/_styleguide.scss */
  .banner-red-blue {
    background-size: 768px 35px;
    height: 35px;
  }
}

/* line 1430, ../sass/_styleguide.scss */
.banner-new-red-high {
  background-image: url("../images/Red@2x.png");
  background-size: 1440px 55px;
  background-repeat: repeat;
  background-position: center;
  display: block;
  content: " ";
  height: 55px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1430, ../sass/_styleguide.scss */
  .banner-new-red-high {
    background-size: 1100px 45px;
    height: 45px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1430, ../sass/_styleguide.scss */
  .banner-new-red-high {
    background-size: 767px 35px;
    height: 35px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1430, ../sass/_styleguide.scss */
  .banner-new-red-high {
    background-image: url("../images/Red@2x-mobile.png");
    background-size: 768px 35px;
    background-repeat: repeat;
    background-position: center;
    display: block;
    content: " ";
    height: 35px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) and (min-width: 768px) and (max-width: 1099px) {
  /* line 1430, ../sass/_styleguide.scss */
  .banner-new-red-high {
    background-size: 768px 35px;
    height: 35px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) and (min-width: 0em) and (max-width: 767px) {
  /* line 1430, ../sass/_styleguide.scss */
  .banner-new-red-high {
    background-size: 768px 35px;
    height: 35px;
  }
}

/* line 1436, ../sass/_styleguide.scss */
.banner-new-red {
  background-image: url("../images/Red.png");
  background-size: 1440px 55px;
  background-repeat: repeat;
  background-position: center;
  display: block;
  content: " ";
  height: 55px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1436, ../sass/_styleguide.scss */
  .banner-new-red {
    background-size: 1100px 45px;
    height: 45px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1436, ../sass/_styleguide.scss */
  .banner-new-red {
    background-size: 767px 35px;
    height: 35px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1436, ../sass/_styleguide.scss */
  .banner-new-red {
    background-image: url("../images/Red-mobile.png");
    background-size: 768px 35px;
    background-repeat: repeat;
    background-position: center;
    display: block;
    content: " ";
    height: 35px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) and (min-width: 768px) and (max-width: 1099px) {
  /* line 1436, ../sass/_styleguide.scss */
  .banner-new-red {
    background-size: 768px 35px;
    height: 35px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) and (min-width: 0em) and (max-width: 767px) {
  /* line 1436, ../sass/_styleguide.scss */
  .banner-new-red {
    background-size: 768px 35px;
    height: 35px;
  }
}

@media all and (-webkit-min-device-pixel-ratio: 2), all and (min--moz-device-pixel-ratio: 2), all and (-o-min-device-pixel-ratio: 2 / 1), all and (min-device-pixel-ratio: 2), all and (min-resolution: 192dpi), all and (min-resolution: 2dppx) {
  /* line 1436, ../sass/_styleguide.scss */
  .banner-new-red {
    background-image: url("../images/Red@2x.png");
    background-size: 1440px 55px;
    background-repeat: repeat;
    background-position: center;
    display: block;
    content: " ";
    height: 55px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 768px) and (max-width: 1099px), all and (min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 192dpi) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 2dppx) and (min-width: 768px) and (max-width: 1099px) {
  /* line 1436, ../sass/_styleguide.scss */
  .banner-new-red {
    background-size: 1100px 45px;
    height: 45px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) {
  /* line 1436, ../sass/_styleguide.scss */
  .banner-new-red {
    background-size: 767px 35px;
    height: 35px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) {
  /* line 1436, ../sass/_styleguide.scss */
  .banner-new-red {
    background-image: url("../images/Red@2x-mobile.png");
    background-size: 768px 35px;
    background-repeat: repeat;
    background-position: center;
    display: block;
    content: " ";
    height: 35px;
  }
}

@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px) and (min-width: 768px) and (max-width: 1099px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px) and (min-width: 768px) and (max-width: 1099px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px) and (min-width: 768px) and (max-width: 1099px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) and (min-width: 768px) and (max-width: 1099px) {
  /* line 1436, ../sass/_styleguide.scss */
  .banner-new-red {
    background-size: 768px 35px;
    height: 35px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px) and (min-width: 0em) and (max-width: 767px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px) and (min-width: 0em) and (max-width: 767px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px) and (min-width: 0em) and (max-width: 767px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) and (min-width: 0em) and (max-width: 767px) {
  /* line 1436, ../sass/_styleguide.scss */
  .banner-new-red {
    background-size: 768px 35px;
    height: 35px;
  }
}

/* line 1448, ../sass/_styleguide.scss */
.banner-new-light-red-high {
  background-image: url("../images/Redv2@2x.png");
  background-size: 1440px 55px;
  background-repeat: repeat;
  background-position: center;
  display: block;
  content: " ";
  height: 55px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1448, ../sass/_styleguide.scss */
  .banner-new-light-red-high {
    background-size: 1100px 45px;
    height: 45px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1448, ../sass/_styleguide.scss */
  .banner-new-light-red-high {
    background-size: 767px 35px;
    height: 35px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1448, ../sass/_styleguide.scss */
  .banner-new-light-red-high {
    background-image: url("../images/Redv2@2x-mobile.png");
    background-size: 768px 35px;
    background-repeat: repeat;
    background-position: center;
    display: block;
    content: " ";
    height: 35px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) and (min-width: 768px) and (max-width: 1099px) {
  /* line 1448, ../sass/_styleguide.scss */
  .banner-new-light-red-high {
    background-size: 768px 35px;
    height: 35px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) and (min-width: 0em) and (max-width: 767px) {
  /* line 1448, ../sass/_styleguide.scss */
  .banner-new-light-red-high {
    background-size: 768px 35px;
    height: 35px;
  }
}

/* line 1454, ../sass/_styleguide.scss */
.banner-new-light-red {
  background-image: url("../images/Redv2.png");
  background-size: 1440px 55px;
  background-repeat: repeat;
  background-position: center;
  display: block;
  content: " ";
  height: 55px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1454, ../sass/_styleguide.scss */
  .banner-new-light-red {
    background-size: 1100px 45px;
    height: 45px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1454, ../sass/_styleguide.scss */
  .banner-new-light-red {
    background-size: 767px 35px;
    height: 35px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1454, ../sass/_styleguide.scss */
  .banner-new-light-red {
    background-image: url("../images/Redv2-mobile.png");
    background-size: 768px 35px;
    background-repeat: repeat;
    background-position: center;
    display: block;
    content: " ";
    height: 35px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) and (min-width: 768px) and (max-width: 1099px) {
  /* line 1454, ../sass/_styleguide.scss */
  .banner-new-light-red {
    background-size: 768px 35px;
    height: 35px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) and (min-width: 0em) and (max-width: 767px) {
  /* line 1454, ../sass/_styleguide.scss */
  .banner-new-light-red {
    background-size: 768px 35px;
    height: 35px;
  }
}

@media all and (-webkit-min-device-pixel-ratio: 2), all and (min--moz-device-pixel-ratio: 2), all and (-o-min-device-pixel-ratio: 2 / 1), all and (min-device-pixel-ratio: 2), all and (min-resolution: 192dpi), all and (min-resolution: 2dppx) {
  /* line 1454, ../sass/_styleguide.scss */
  .banner-new-light-red {
    background-image: url("../images/Redv2@2x.png");
    background-size: 1440px 55px;
    background-repeat: repeat;
    background-position: center;
    display: block;
    content: " ";
    height: 55px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 768px) and (max-width: 1099px), all and (min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 192dpi) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 2dppx) and (min-width: 768px) and (max-width: 1099px) {
  /* line 1454, ../sass/_styleguide.scss */
  .banner-new-light-red {
    background-size: 1100px 45px;
    height: 45px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) {
  /* line 1454, ../sass/_styleguide.scss */
  .banner-new-light-red {
    background-size: 767px 35px;
    height: 35px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) {
  /* line 1454, ../sass/_styleguide.scss */
  .banner-new-light-red {
    background-image: url("../images/Redv2@2x-mobile.png");
    background-size: 768px 35px;
    background-repeat: repeat;
    background-position: center;
    display: block;
    content: " ";
    height: 35px;
  }
}

@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px) and (min-width: 768px) and (max-width: 1099px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px) and (min-width: 768px) and (max-width: 1099px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px) and (min-width: 768px) and (max-width: 1099px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) and (min-width: 768px) and (max-width: 1099px) {
  /* line 1454, ../sass/_styleguide.scss */
  .banner-new-light-red {
    background-size: 768px 35px;
    height: 35px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px) and (min-width: 0em) and (max-width: 767px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px) and (min-width: 0em) and (max-width: 767px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px) and (min-width: 0em) and (max-width: 767px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) and (min-width: 0em) and (max-width: 767px) {
  /* line 1454, ../sass/_styleguide.scss */
  .banner-new-light-red {
    background-size: 768px 35px;
    height: 35px;
  }
}

/* line 1466, ../sass/_styleguide.scss */
.banner-new-red-orange-high {
  background-image: url("../images/RedOrange@2x.png");
  background-size: 1440px 55px;
  background-repeat: repeat;
  background-position: center;
  display: block;
  content: " ";
  height: 55px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1466, ../sass/_styleguide.scss */
  .banner-new-red-orange-high {
    background-size: 1100px 45px;
    height: 45px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1466, ../sass/_styleguide.scss */
  .banner-new-red-orange-high {
    background-size: 767px 35px;
    height: 35px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1466, ../sass/_styleguide.scss */
  .banner-new-red-orange-high {
    background-image: url("../images/RedOrange@2x-mobile.png");
    background-size: 768px 35px;
    background-repeat: repeat;
    background-position: center;
    display: block;
    content: " ";
    height: 35px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) and (min-width: 768px) and (max-width: 1099px) {
  /* line 1466, ../sass/_styleguide.scss */
  .banner-new-red-orange-high {
    background-size: 768px 35px;
    height: 35px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) and (min-width: 0em) and (max-width: 767px) {
  /* line 1466, ../sass/_styleguide.scss */
  .banner-new-red-orange-high {
    background-size: 768px 35px;
    height: 35px;
  }
}

/* line 1472, ../sass/_styleguide.scss */
.banner-new-red-orange {
  background-image: url("../images/RedOrange.png");
  background-size: 1440px 55px;
  background-repeat: repeat;
  background-position: center;
  display: block;
  content: " ";
  height: 55px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1472, ../sass/_styleguide.scss */
  .banner-new-red-orange {
    background-size: 1100px 45px;
    height: 45px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1472, ../sass/_styleguide.scss */
  .banner-new-red-orange {
    background-size: 767px 35px;
    height: 35px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1472, ../sass/_styleguide.scss */
  .banner-new-red-orange {
    background-image: url("../images/RedOrange-mobile.png");
    background-size: 768px 35px;
    background-repeat: repeat;
    background-position: center;
    display: block;
    content: " ";
    height: 35px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) and (min-width: 768px) and (max-width: 1099px) {
  /* line 1472, ../sass/_styleguide.scss */
  .banner-new-red-orange {
    background-size: 768px 35px;
    height: 35px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) and (min-width: 0em) and (max-width: 767px) {
  /* line 1472, ../sass/_styleguide.scss */
  .banner-new-red-orange {
    background-size: 768px 35px;
    height: 35px;
  }
}

@media all and (-webkit-min-device-pixel-ratio: 2), all and (min--moz-device-pixel-ratio: 2), all and (-o-min-device-pixel-ratio: 2 / 1), all and (min-device-pixel-ratio: 2), all and (min-resolution: 192dpi), all and (min-resolution: 2dppx) {
  /* line 1472, ../sass/_styleguide.scss */
  .banner-new-red-orange {
    background-image: url("../images/RedOrange@2x.png");
    background-size: 1440px 55px;
    background-repeat: repeat;
    background-position: center;
    display: block;
    content: " ";
    height: 55px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 768px) and (max-width: 1099px), all and (min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 192dpi) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 2dppx) and (min-width: 768px) and (max-width: 1099px) {
  /* line 1472, ../sass/_styleguide.scss */
  .banner-new-red-orange {
    background-size: 1100px 45px;
    height: 45px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) {
  /* line 1472, ../sass/_styleguide.scss */
  .banner-new-red-orange {
    background-size: 767px 35px;
    height: 35px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) {
  /* line 1472, ../sass/_styleguide.scss */
  .banner-new-red-orange {
    background-image: url("../images/RedOrange@2x-mobile.png");
    background-size: 768px 35px;
    background-repeat: repeat;
    background-position: center;
    display: block;
    content: " ";
    height: 35px;
  }
}

@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px) and (min-width: 768px) and (max-width: 1099px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px) and (min-width: 768px) and (max-width: 1099px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px) and (min-width: 768px) and (max-width: 1099px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) and (min-width: 768px) and (max-width: 1099px) {
  /* line 1472, ../sass/_styleguide.scss */
  .banner-new-red-orange {
    background-size: 768px 35px;
    height: 35px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px) and (min-width: 0em) and (max-width: 767px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px) and (min-width: 0em) and (max-width: 767px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px) and (min-width: 0em) and (max-width: 767px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) and (min-width: 0em) and (max-width: 767px) {
  /* line 1472, ../sass/_styleguide.scss */
  .banner-new-red-orange {
    background-size: 768px 35px;
    height: 35px;
  }
}

/* line 1484, ../sass/_styleguide.scss */
.banner-new-blue-high {
  background-image: url("../images/Blue@2x.png");
  background-size: 1440px 55px;
  background-repeat: repeat;
  background-position: center;
  display: block;
  content: " ";
  height: 55px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1484, ../sass/_styleguide.scss */
  .banner-new-blue-high {
    background-size: 1100px 45px;
    height: 45px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1484, ../sass/_styleguide.scss */
  .banner-new-blue-high {
    background-size: 767px 35px;
    height: 35px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1484, ../sass/_styleguide.scss */
  .banner-new-blue-high {
    background-image: url("../images/Blue@2x-mobile.png");
    background-size: 768px 35px;
    background-repeat: repeat;
    background-position: center;
    display: block;
    content: " ";
    height: 35px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) and (min-width: 768px) and (max-width: 1099px) {
  /* line 1484, ../sass/_styleguide.scss */
  .banner-new-blue-high {
    background-size: 768px 35px;
    height: 35px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) and (min-width: 0em) and (max-width: 767px) {
  /* line 1484, ../sass/_styleguide.scss */
  .banner-new-blue-high {
    background-size: 768px 35px;
    height: 35px;
  }
}

/* line 1490, ../sass/_styleguide.scss */
.banner-new-blue {
  background-image: url("../images/Blue.png");
  background-size: 1440px 55px;
  background-repeat: repeat;
  background-position: center;
  display: block;
  content: " ";
  height: 55px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1490, ../sass/_styleguide.scss */
  .banner-new-blue {
    background-size: 1100px 45px;
    height: 45px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1490, ../sass/_styleguide.scss */
  .banner-new-blue {
    background-size: 767px 35px;
    height: 35px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1490, ../sass/_styleguide.scss */
  .banner-new-blue {
    background-image: url("../images/Blue-mobile.png");
    background-size: 768px 35px;
    background-repeat: repeat;
    background-position: center;
    display: block;
    content: " ";
    height: 35px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) and (min-width: 768px) and (max-width: 1099px) {
  /* line 1490, ../sass/_styleguide.scss */
  .banner-new-blue {
    background-size: 768px 35px;
    height: 35px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) and (min-width: 0em) and (max-width: 767px) {
  /* line 1490, ../sass/_styleguide.scss */
  .banner-new-blue {
    background-size: 768px 35px;
    height: 35px;
  }
}

@media all and (-webkit-min-device-pixel-ratio: 2), all and (min--moz-device-pixel-ratio: 2), all and (-o-min-device-pixel-ratio: 2 / 1), all and (min-device-pixel-ratio: 2), all and (min-resolution: 192dpi), all and (min-resolution: 2dppx) {
  /* line 1490, ../sass/_styleguide.scss */
  .banner-new-blue {
    background-image: url("../images/Blue@2x.png");
    background-size: 1440px 55px;
    background-repeat: repeat;
    background-position: center;
    display: block;
    content: " ";
    height: 55px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 768px) and (max-width: 1099px), all and (min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 192dpi) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 2dppx) and (min-width: 768px) and (max-width: 1099px) {
  /* line 1490, ../sass/_styleguide.scss */
  .banner-new-blue {
    background-size: 1100px 45px;
    height: 45px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) {
  /* line 1490, ../sass/_styleguide.scss */
  .banner-new-blue {
    background-size: 767px 35px;
    height: 35px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) {
  /* line 1490, ../sass/_styleguide.scss */
  .banner-new-blue {
    background-image: url("../images/Blue@2x-mobile.png");
    background-size: 768px 35px;
    background-repeat: repeat;
    background-position: center;
    display: block;
    content: " ";
    height: 35px;
  }
}

@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px) and (min-width: 768px) and (max-width: 1099px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px) and (min-width: 768px) and (max-width: 1099px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px) and (min-width: 768px) and (max-width: 1099px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) and (min-width: 768px) and (max-width: 1099px) {
  /* line 1490, ../sass/_styleguide.scss */
  .banner-new-blue {
    background-size: 768px 35px;
    height: 35px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px) and (min-width: 0em) and (max-width: 767px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px) and (min-width: 0em) and (max-width: 767px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px) and (min-width: 0em) and (max-width: 767px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) and (min-width: 0em) and (max-width: 767px) {
  /* line 1490, ../sass/_styleguide.scss */
  .banner-new-blue {
    background-size: 768px 35px;
    height: 35px;
  }
}

/* line 1502, ../sass/_styleguide.scss */
.banner-new-dark-blue-high {
  background-image: url("../images/Bluev2@2x.png");
  background-size: 1440px 55px;
  background-repeat: repeat;
  background-position: center;
  display: block;
  content: " ";
  height: 55px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1502, ../sass/_styleguide.scss */
  .banner-new-dark-blue-high {
    background-size: 1100px 45px;
    height: 45px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1502, ../sass/_styleguide.scss */
  .banner-new-dark-blue-high {
    background-size: 767px 35px;
    height: 35px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1502, ../sass/_styleguide.scss */
  .banner-new-dark-blue-high {
    background-image: url("../images/Bluev2@2x-mobile.png");
    background-size: 768px 35px;
    background-repeat: repeat;
    background-position: center;
    display: block;
    content: " ";
    height: 35px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) and (min-width: 768px) and (max-width: 1099px) {
  /* line 1502, ../sass/_styleguide.scss */
  .banner-new-dark-blue-high {
    background-size: 768px 35px;
    height: 35px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) and (min-width: 0em) and (max-width: 767px) {
  /* line 1502, ../sass/_styleguide.scss */
  .banner-new-dark-blue-high {
    background-size: 768px 35px;
    height: 35px;
  }
}

/* line 1508, ../sass/_styleguide.scss */
.banner-new-dark-blue {
  background-image: url("../images/Bluev2.png");
  background-size: 1440px 55px;
  background-repeat: repeat;
  background-position: center;
  display: block;
  content: " ";
  height: 55px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1508, ../sass/_styleguide.scss */
  .banner-new-dark-blue {
    background-size: 1100px 45px;
    height: 45px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1508, ../sass/_styleguide.scss */
  .banner-new-dark-blue {
    background-size: 767px 35px;
    height: 35px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1508, ../sass/_styleguide.scss */
  .banner-new-dark-blue {
    background-image: url("../images/Bluev2-mobile.png");
    background-size: 768px 35px;
    background-repeat: repeat;
    background-position: center;
    display: block;
    content: " ";
    height: 35px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) and (min-width: 768px) and (max-width: 1099px) {
  /* line 1508, ../sass/_styleguide.scss */
  .banner-new-dark-blue {
    background-size: 768px 35px;
    height: 35px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) and (min-width: 0em) and (max-width: 767px) {
  /* line 1508, ../sass/_styleguide.scss */
  .banner-new-dark-blue {
    background-size: 768px 35px;
    height: 35px;
  }
}

@media all and (-webkit-min-device-pixel-ratio: 2), all and (min--moz-device-pixel-ratio: 2), all and (-o-min-device-pixel-ratio: 2 / 1), all and (min-device-pixel-ratio: 2), all and (min-resolution: 192dpi), all and (min-resolution: 2dppx) {
  /* line 1508, ../sass/_styleguide.scss */
  .banner-new-dark-blue {
    background-image: url("../images/Bluev2@2x.png");
    background-size: 1440px 55px;
    background-repeat: repeat;
    background-position: center;
    display: block;
    content: " ";
    height: 55px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 768px) and (max-width: 1099px), all and (min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 192dpi) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 2dppx) and (min-width: 768px) and (max-width: 1099px) {
  /* line 1508, ../sass/_styleguide.scss */
  .banner-new-dark-blue {
    background-size: 1100px 45px;
    height: 45px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) {
  /* line 1508, ../sass/_styleguide.scss */
  .banner-new-dark-blue {
    background-size: 767px 35px;
    height: 35px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) {
  /* line 1508, ../sass/_styleguide.scss */
  .banner-new-dark-blue {
    background-image: url("../images/Bluev2@2x-mobile.png");
    background-size: 768px 35px;
    background-repeat: repeat;
    background-position: center;
    display: block;
    content: " ";
    height: 35px;
  }
}

@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px) and (min-width: 768px) and (max-width: 1099px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px) and (min-width: 768px) and (max-width: 1099px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px) and (min-width: 768px) and (max-width: 1099px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) and (min-width: 768px) and (max-width: 1099px) {
  /* line 1508, ../sass/_styleguide.scss */
  .banner-new-dark-blue {
    background-size: 768px 35px;
    height: 35px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px) and (min-width: 0em) and (max-width: 767px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px) and (min-width: 0em) and (max-width: 767px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px) and (min-width: 0em) and (max-width: 767px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) and (min-width: 0em) and (max-width: 767px) {
  /* line 1508, ../sass/_styleguide.scss */
  .banner-new-dark-blue {
    background-size: 768px 35px;
    height: 35px;
  }
}

/* line 1520, ../sass/_styleguide.scss */
.banner-new-light-blue-high {
  background-image: url("../images/LightBlue@2x.png");
  background-size: 1440px 55px;
  background-repeat: repeat;
  background-position: center;
  display: block;
  content: " ";
  height: 55px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1520, ../sass/_styleguide.scss */
  .banner-new-light-blue-high {
    background-size: 1100px 45px;
    height: 45px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1520, ../sass/_styleguide.scss */
  .banner-new-light-blue-high {
    background-size: 767px 35px;
    height: 35px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1520, ../sass/_styleguide.scss */
  .banner-new-light-blue-high {
    background-image: url("../images/LightBlue@2x-mobile.png");
    background-size: 768px 35px;
    background-repeat: repeat;
    background-position: center;
    display: block;
    content: " ";
    height: 35px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) and (min-width: 768px) and (max-width: 1099px) {
  /* line 1520, ../sass/_styleguide.scss */
  .banner-new-light-blue-high {
    background-size: 768px 35px;
    height: 35px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) and (min-width: 0em) and (max-width: 767px) {
  /* line 1520, ../sass/_styleguide.scss */
  .banner-new-light-blue-high {
    background-size: 768px 35px;
    height: 35px;
  }
}

/* line 1526, ../sass/_styleguide.scss */
.banner-new-light-blue {
  background-image: url("../images/LightBlueNew.png");
  background-size: 1440px 55px;
  background-repeat: repeat;
  background-position: center;
  display: block;
  content: " ";
  height: 55px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1526, ../sass/_styleguide.scss */
  .banner-new-light-blue {
    background-size: 1100px 45px;
    height: 45px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1526, ../sass/_styleguide.scss */
  .banner-new-light-blue {
    background-size: 767px 35px;
    height: 35px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1526, ../sass/_styleguide.scss */
  .banner-new-light-blue {
    background-image: url("../images/LightBlueNew-mobile.png");
    background-size: 768px 35px;
    background-repeat: repeat;
    background-position: center;
    display: block;
    content: " ";
    height: 35px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) and (min-width: 768px) and (max-width: 1099px) {
  /* line 1526, ../sass/_styleguide.scss */
  .banner-new-light-blue {
    background-size: 768px 35px;
    height: 35px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) and (min-width: 0em) and (max-width: 767px) {
  /* line 1526, ../sass/_styleguide.scss */
  .banner-new-light-blue {
    background-size: 768px 35px;
    height: 35px;
  }
}

@media all and (-webkit-min-device-pixel-ratio: 2), all and (min--moz-device-pixel-ratio: 2), all and (-o-min-device-pixel-ratio: 2 / 1), all and (min-device-pixel-ratio: 2), all and (min-resolution: 192dpi), all and (min-resolution: 2dppx) {
  /* line 1526, ../sass/_styleguide.scss */
  .banner-new-light-blue {
    background-image: url("../images/LightBlue@2x.png");
    background-size: 1440px 55px;
    background-repeat: repeat;
    background-position: center;
    display: block;
    content: " ";
    height: 55px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 768px) and (max-width: 1099px), all and (min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 192dpi) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 2dppx) and (min-width: 768px) and (max-width: 1099px) {
  /* line 1526, ../sass/_styleguide.scss */
  .banner-new-light-blue {
    background-size: 1100px 45px;
    height: 45px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) {
  /* line 1526, ../sass/_styleguide.scss */
  .banner-new-light-blue {
    background-size: 767px 35px;
    height: 35px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) {
  /* line 1526, ../sass/_styleguide.scss */
  .banner-new-light-blue {
    background-image: url("../images/LightBlue@2x-mobile.png");
    background-size: 768px 35px;
    background-repeat: repeat;
    background-position: center;
    display: block;
    content: " ";
    height: 35px;
  }
}

@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px) and (min-width: 768px) and (max-width: 1099px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px) and (min-width: 768px) and (max-width: 1099px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px) and (min-width: 768px) and (max-width: 1099px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) and (min-width: 768px) and (max-width: 1099px) {
  /* line 1526, ../sass/_styleguide.scss */
  .banner-new-light-blue {
    background-size: 768px 35px;
    height: 35px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px) and (min-width: 0em) and (max-width: 767px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px) and (min-width: 0em) and (max-width: 767px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px) and (min-width: 0em) and (max-width: 767px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) and (min-width: 0em) and (max-width: 767px) {
  /* line 1526, ../sass/_styleguide.scss */
  .banner-new-light-blue {
    background-size: 768px 35px;
    height: 35px;
  }
}

/* line 1538, ../sass/_styleguide.scss */
.banner-new-lighter-blue-high {
  background-image: url("../images/LightBluev2@2x.png");
  background-size: 1440px 55px;
  background-repeat: repeat;
  background-position: center;
  display: block;
  content: " ";
  height: 55px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1538, ../sass/_styleguide.scss */
  .banner-new-lighter-blue-high {
    background-size: 1100px 45px;
    height: 45px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1538, ../sass/_styleguide.scss */
  .banner-new-lighter-blue-high {
    background-size: 767px 35px;
    height: 35px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1538, ../sass/_styleguide.scss */
  .banner-new-lighter-blue-high {
    background-image: url("../images/LightBluev2@2x-mobile.png");
    background-size: 768px 35px;
    background-repeat: repeat;
    background-position: center;
    display: block;
    content: " ";
    height: 35px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) and (min-width: 768px) and (max-width: 1099px) {
  /* line 1538, ../sass/_styleguide.scss */
  .banner-new-lighter-blue-high {
    background-size: 768px 35px;
    height: 35px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) and (min-width: 0em) and (max-width: 767px) {
  /* line 1538, ../sass/_styleguide.scss */
  .banner-new-lighter-blue-high {
    background-size: 768px 35px;
    height: 35px;
  }
}

/* line 1544, ../sass/_styleguide.scss */
.banner-new-lighter-blue {
  background-image: url("../images/LightBluev2.png");
  background-size: 1440px 55px;
  background-repeat: repeat;
  background-position: center;
  display: block;
  content: " ";
  height: 55px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1544, ../sass/_styleguide.scss */
  .banner-new-lighter-blue {
    background-size: 1100px 45px;
    height: 45px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1544, ../sass/_styleguide.scss */
  .banner-new-lighter-blue {
    background-size: 767px 35px;
    height: 35px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1544, ../sass/_styleguide.scss */
  .banner-new-lighter-blue {
    background-image: url("../images/LightBluev2-mobile.png");
    background-size: 768px 35px;
    background-repeat: repeat;
    background-position: center;
    display: block;
    content: " ";
    height: 35px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) and (min-width: 768px) and (max-width: 1099px) {
  /* line 1544, ../sass/_styleguide.scss */
  .banner-new-lighter-blue {
    background-size: 768px 35px;
    height: 35px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) and (min-width: 0em) and (max-width: 767px) {
  /* line 1544, ../sass/_styleguide.scss */
  .banner-new-lighter-blue {
    background-size: 768px 35px;
    height: 35px;
  }
}

@media all and (-webkit-min-device-pixel-ratio: 2), all and (min--moz-device-pixel-ratio: 2), all and (-o-min-device-pixel-ratio: 2 / 1), all and (min-device-pixel-ratio: 2), all and (min-resolution: 192dpi), all and (min-resolution: 2dppx) {
  /* line 1544, ../sass/_styleguide.scss */
  .banner-new-lighter-blue {
    background-image: url("../images/LightBluev2@2x.png");
    background-size: 1440px 55px;
    background-repeat: repeat;
    background-position: center;
    display: block;
    content: " ";
    height: 55px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 768px) and (max-width: 1099px), all and (min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 192dpi) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 2dppx) and (min-width: 768px) and (max-width: 1099px) {
  /* line 1544, ../sass/_styleguide.scss */
  .banner-new-lighter-blue {
    background-size: 1100px 45px;
    height: 45px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) {
  /* line 1544, ../sass/_styleguide.scss */
  .banner-new-lighter-blue {
    background-size: 767px 35px;
    height: 35px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) {
  /* line 1544, ../sass/_styleguide.scss */
  .banner-new-lighter-blue {
    background-image: url("../images/LightBluev2@2x-mobile.png");
    background-size: 768px 35px;
    background-repeat: repeat;
    background-position: center;
    display: block;
    content: " ";
    height: 35px;
  }
}

@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px) and (min-width: 768px) and (max-width: 1099px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px) and (min-width: 768px) and (max-width: 1099px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px) and (min-width: 768px) and (max-width: 1099px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) and (min-width: 768px) and (max-width: 1099px) {
  /* line 1544, ../sass/_styleguide.scss */
  .banner-new-lighter-blue {
    background-size: 768px 35px;
    height: 35px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px) and (min-width: 0em) and (max-width: 767px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px) and (min-width: 0em) and (max-width: 767px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px) and (min-width: 0em) and (max-width: 767px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) and (min-width: 0em) and (max-width: 767px) {
  /* line 1544, ../sass/_styleguide.scss */
  .banner-new-lighter-blue {
    background-size: 768px 35px;
    height: 35px;
  }
}

/* line 1557, ../sass/_styleguide.scss */
.home-page-background-image-hiv-cells {
  background-image: url("../images/1-hiv-cells.png");
  background-size: 1440px 1000px;
  background-repeat: repeat;
  background-position: center;
  display: block;
  content: " ";
  height: 1000px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1557, ../sass/_styleguide.scss */
  .home-page-background-image-hiv-cells {
    background-size: 1100px 764px;
    height: 764px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1557, ../sass/_styleguide.scss */
  .home-page-background-image-hiv-cells {
    background-size: 767px 533px;
    height: 533px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2), all and (min--moz-device-pixel-ratio: 2), all and (-o-min-device-pixel-ratio: 2 / 1), all and (min-device-pixel-ratio: 2), all and (min-resolution: 192dpi), all and (min-resolution: 2dppx) {
  /* line 1557, ../sass/_styleguide.scss */
  .home-page-background-image-hiv-cells {
    background-image: url("../images/1-hiv-cells@2x.png");
    background-size: 1440px 1000px;
    background-repeat: repeat;
    background-position: center;
    display: block;
    content: " ";
    height: 1000px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 768px) and (max-width: 1099px), all and (min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 192dpi) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 2dppx) and (min-width: 768px) and (max-width: 1099px) {
  /* line 1557, ../sass/_styleguide.scss */
  .home-page-background-image-hiv-cells {
    background-size: 1100px 764px;
    height: 764px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) {
  /* line 1557, ../sass/_styleguide.scss */
  .home-page-background-image-hiv-cells {
    background-size: 767px 533px;
    height: 533px;
  }
}

/* line 1565, ../sass/_styleguide.scss */
.home-page-background-image-pneumonia {
  background-image: url("../images/2-pneumonia.png");
  background-size: 1440px 1000px;
  background-repeat: repeat;
  background-position: center;
  display: block;
  content: " ";
  height: 1000px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1565, ../sass/_styleguide.scss */
  .home-page-background-image-pneumonia {
    background-size: 1100px 764px;
    height: 764px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1565, ../sass/_styleguide.scss */
  .home-page-background-image-pneumonia {
    background-size: 767px 533px;
    height: 533px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2), all and (min--moz-device-pixel-ratio: 2), all and (-o-min-device-pixel-ratio: 2 / 1), all and (min-device-pixel-ratio: 2), all and (min-resolution: 192dpi), all and (min-resolution: 2dppx) {
  /* line 1565, ../sass/_styleguide.scss */
  .home-page-background-image-pneumonia {
    background-image: url("../images/2-pneumonia@2x.png");
    background-size: 1440px 1000px;
    background-repeat: repeat;
    background-position: center;
    display: block;
    content: " ";
    height: 1000px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 768px) and (max-width: 1099px), all and (min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 192dpi) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 2dppx) and (min-width: 768px) and (max-width: 1099px) {
  /* line 1565, ../sass/_styleguide.scss */
  .home-page-background-image-pneumonia {
    background-size: 1100px 764px;
    height: 764px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) {
  /* line 1565, ../sass/_styleguide.scss */
  .home-page-background-image-pneumonia {
    background-size: 767px 533px;
    height: 533px;
  }
}

/* line 1571, ../sass/_styleguide.scss */
.home-page-background-image-cell-lining {
  background-image: url("../images/3-cell-lining.png");
  background-size: 1440px 1000px;
  background-repeat: repeat;
  background-position: center;
  display: block;
  content: " ";
  height: 1000px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1571, ../sass/_styleguide.scss */
  .home-page-background-image-cell-lining {
    background-size: 1100px 764px;
    height: 764px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1571, ../sass/_styleguide.scss */
  .home-page-background-image-cell-lining {
    background-size: 767px 533px;
    height: 533px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2), all and (min--moz-device-pixel-ratio: 2), all and (-o-min-device-pixel-ratio: 2 / 1), all and (min-device-pixel-ratio: 2), all and (min-resolution: 192dpi), all and (min-resolution: 2dppx) {
  /* line 1571, ../sass/_styleguide.scss */
  .home-page-background-image-cell-lining {
    background-image: url("../images/3-cell-lining@2x.png");
    background-size: 1440px 1000px;
    background-repeat: repeat;
    background-position: center;
    display: block;
    content: " ";
    height: 1000px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 768px) and (max-width: 1099px), all and (min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 192dpi) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 2dppx) and (min-width: 768px) and (max-width: 1099px) {
  /* line 1571, ../sass/_styleguide.scss */
  .home-page-background-image-cell-lining {
    background-size: 1100px 764px;
    height: 764px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) {
  /* line 1571, ../sass/_styleguide.scss */
  .home-page-background-image-cell-lining {
    background-size: 767px 533px;
    height: 533px;
  }
}

/* line 1577, ../sass/_styleguide.scss */
.home-page-background-image-dividing-cells {
  background-image: url("../images/4-dividing-cells.png");
  background-size: 1440px 1000px;
  background-repeat: repeat;
  background-position: center;
  display: block;
  content: " ";
  height: 1000px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1577, ../sass/_styleguide.scss */
  .home-page-background-image-dividing-cells {
    background-size: 1100px 764px;
    height: 764px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1577, ../sass/_styleguide.scss */
  .home-page-background-image-dividing-cells {
    background-size: 767px 533px;
    height: 533px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2), all and (min--moz-device-pixel-ratio: 2), all and (-o-min-device-pixel-ratio: 2 / 1), all and (min-device-pixel-ratio: 2), all and (min-resolution: 192dpi), all and (min-resolution: 2dppx) {
  /* line 1577, ../sass/_styleguide.scss */
  .home-page-background-image-dividing-cells {
    background-image: url("../images/4-dividing-cells@2x.png");
    background-size: 1440px 1000px;
    background-repeat: repeat;
    background-position: center;
    display: block;
    content: " ";
    height: 1000px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 768px) and (max-width: 1099px), all and (min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 192dpi) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 2dppx) and (min-width: 768px) and (max-width: 1099px) {
  /* line 1577, ../sass/_styleguide.scss */
  .home-page-background-image-dividing-cells {
    background-size: 1100px 764px;
    height: 764px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) {
  /* line 1577, ../sass/_styleguide.scss */
  .home-page-background-image-dividing-cells {
    background-size: 767px 533px;
    height: 533px;
  }
}

/* line 1583, ../sass/_styleguide.scss */
.home-page-background-image-cell-protein {
  background-image: url("../images/5-cell-protein.png");
  background-size: 1440px 1000px;
  background-repeat: repeat;
  background-position: center;
  display: block;
  content: " ";
  height: 1000px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1583, ../sass/_styleguide.scss */
  .home-page-background-image-cell-protein {
    background-size: 1100px 764px;
    height: 764px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1583, ../sass/_styleguide.scss */
  .home-page-background-image-cell-protein {
    background-size: 767px 533px;
    height: 533px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2), all and (min--moz-device-pixel-ratio: 2), all and (-o-min-device-pixel-ratio: 2 / 1), all and (min-device-pixel-ratio: 2), all and (min-resolution: 192dpi), all and (min-resolution: 2dppx) {
  /* line 1583, ../sass/_styleguide.scss */
  .home-page-background-image-cell-protein {
    background-image: url("../images/5-cell-protein@2x.png");
    background-size: 1440px 1000px;
    background-repeat: repeat;
    background-position: center;
    display: block;
    content: " ";
    height: 1000px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 768px) and (max-width: 1099px), all and (min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 192dpi) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 2dppx) and (min-width: 768px) and (max-width: 1099px) {
  /* line 1583, ../sass/_styleguide.scss */
  .home-page-background-image-cell-protein {
    background-size: 1100px 764px;
    height: 764px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) {
  /* line 1583, ../sass/_styleguide.scss */
  .home-page-background-image-cell-protein {
    background-size: 767px 533px;
    height: 533px;
  }
}

/* line 1589, ../sass/_styleguide.scss */
.home-page-background-mission {
  background-image: url("../images/homepage_cells.png");
  background-size: 1440px 669px;
  background-repeat: repeat;
  background-position: center;
  display: block;
  content: " ";
  height: 669px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1589, ../sass/_styleguide.scss */
  .home-page-background-mission {
    background-size: 1100px 511px;
    height: 511px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1589, ../sass/_styleguide.scss */
  .home-page-background-mission {
    background-size: 1100px 511px;
    height: 511px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2), all and (min--moz-device-pixel-ratio: 2), all and (-o-min-device-pixel-ratio: 2 / 1), all and (min-device-pixel-ratio: 2), all and (min-resolution: 192dpi), all and (min-resolution: 2dppx) {
  /* line 1589, ../sass/_styleguide.scss */
  .home-page-background-mission {
    background-image: url("../images/homepage_cells@2x.png");
    background-size: 1440px 669px;
    background-repeat: repeat;
    background-position: center;
    display: block;
    content: " ";
    height: 669px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 768px) and (max-width: 1099px), all and (min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 192dpi) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 2dppx) and (min-width: 768px) and (max-width: 1099px) {
  /* line 1589, ../sass/_styleguide.scss */
  .home-page-background-mission {
    background-size: 1100px 511px;
    height: 511px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) {
  /* line 1589, ../sass/_styleguide.scss */
  .home-page-background-mission {
    background-size: 1100px 511px;
    height: 511px;
  }
}

/* line 1598, ../sass/_styleguide.scss */
.home-page-background-image-cut-hiv-cells {
  background-image: url("../images/1-hiv-cells-cut.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom right;
  display: block;
  content: " ";
}
@media all and (-webkit-min-device-pixel-ratio: 2), all and (min--moz-device-pixel-ratio: 2), all and (-o-min-device-pixel-ratio: 2 / 1), all and (min-device-pixel-ratio: 2), all and (min-resolution: 192dpi), all and (min-resolution: 2dppx) {
  /* line 1598, ../sass/_styleguide.scss */
  .home-page-background-image-cut-hiv-cells {
    background-image: url("../images/1-hiv-cells-cut@2x.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom right;
    display: block;
    content: " ";
  }
}

/* line 1604, ../sass/_styleguide.scss */
.home-page-background-image-cut-pneumonia {
  background-image: url("../images/2-pneumonia-cut.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom right;
  display: block;
  content: " ";
}
@media all and (-webkit-min-device-pixel-ratio: 2), all and (min--moz-device-pixel-ratio: 2), all and (-o-min-device-pixel-ratio: 2 / 1), all and (min-device-pixel-ratio: 2), all and (min-resolution: 192dpi), all and (min-resolution: 2dppx) {
  /* line 1604, ../sass/_styleguide.scss */
  .home-page-background-image-cut-pneumonia {
    background-image: url("../images/2-pneumonia-cut@2x.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom right;
    display: block;
    content: " ";
  }
}

/* line 1610, ../sass/_styleguide.scss */
.home-page-background-image-cut-cell-lining {
  background-image: url("../images/3-cell-lining-cut.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom right;
  display: block;
  content: " ";
}
@media all and (-webkit-min-device-pixel-ratio: 2), all and (min--moz-device-pixel-ratio: 2), all and (-o-min-device-pixel-ratio: 2 / 1), all and (min-device-pixel-ratio: 2), all and (min-resolution: 192dpi), all and (min-resolution: 2dppx) {
  /* line 1610, ../sass/_styleguide.scss */
  .home-page-background-image-cut-cell-lining {
    background-image: url("../images/3-cell-lining-cut@2x.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom right;
    display: block;
    content: " ";
  }
}

/* line 1616, ../sass/_styleguide.scss */
.home-page-background-image-cut-dividing-cells {
  background-image: url("../images/4-dividing-cells-cut.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom right;
  display: block;
  content: " ";
}
@media all and (-webkit-min-device-pixel-ratio: 2), all and (min--moz-device-pixel-ratio: 2), all and (-o-min-device-pixel-ratio: 2 / 1), all and (min-device-pixel-ratio: 2), all and (min-resolution: 192dpi), all and (min-resolution: 2dppx) {
  /* line 1616, ../sass/_styleguide.scss */
  .home-page-background-image-cut-dividing-cells {
    background-image: url("../images/4-dividing-cells-cut@2x.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom right;
    display: block;
    content: " ";
  }
}

/* line 1622, ../sass/_styleguide.scss */
.home-page-background-image-cut-cell-protein {
  background-image: url("../images/5-cell-protein-cut.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom right;
  display: block;
  content: " ";
}
@media all and (-webkit-min-device-pixel-ratio: 2), all and (min--moz-device-pixel-ratio: 2), all and (-o-min-device-pixel-ratio: 2 / 1), all and (min-device-pixel-ratio: 2), all and (min-resolution: 192dpi), all and (min-resolution: 2dppx) {
  /* line 1622, ../sass/_styleguide.scss */
  .home-page-background-image-cut-cell-protein {
    background-image: url("../images/5-cell-protein-cut@2x.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom right;
    display: block;
    content: " ";
  }
}

/* line 1631, ../sass/_styleguide.scss */
.home-page-background-image-cut-tall-hiv-cells {
  /*
   @include background-icon-cover('1-hiv-cells-cut-tall.png',1440px,auto,1100px,auto,767px,auto,block,bottom right);
   @include bp-retina {
     @include background-icon-cover('1-hiv-cells-cut-tall@2x.png',1440px,auto,1100px,auto,767px,auto,block,bottom right);
   } */
  background-image: url("../images/1-HIV-Cells_v2.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom right;
  display: block;
  content: " ";
  background-size: cover;
}
@media all and (-webkit-min-device-pixel-ratio: 2), all and (min--moz-device-pixel-ratio: 2), all and (-o-min-device-pixel-ratio: 2 / 1), all and (min-device-pixel-ratio: 2), all and (min-resolution: 192dpi), all and (min-resolution: 2dppx) {
  /* line 1631, ../sass/_styleguide.scss */
  .home-page-background-image-cut-tall-hiv-cells {
    background-image: url("../images/1-HIV-Cells_v2@2x.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom right;
    display: block;
    content: " ";
    background-size: cover;
  }
}

/* line 1644, ../sass/_styleguide.scss */
.home-page-background-image-cut-tall-pneumonia {
  background-image: url("../images/2-pneumonia-cut-tall.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom right;
  display: block;
  content: " ";
  background-size: cover;
}
@media all and (-webkit-min-device-pixel-ratio: 2), all and (min--moz-device-pixel-ratio: 2), all and (-o-min-device-pixel-ratio: 2 / 1), all and (min-device-pixel-ratio: 2), all and (min-resolution: 192dpi), all and (min-resolution: 2dppx) {
  /* line 1644, ../sass/_styleguide.scss */
  .home-page-background-image-cut-tall-pneumonia {
    background-image: url("../images/2-pneumonia-cut-tall@2x.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom right;
    display: block;
    content: " ";
    background-size: cover;
  }
}

/* line 1652, ../sass/_styleguide.scss */
.home-page-background-image-cut-tall-cell-lining {
  background-image: url("../images/3-cell-lining-cut-tall.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom right;
  display: block;
  content: " ";
  background-size: cover;
}
@media all and (-webkit-min-device-pixel-ratio: 2), all and (min--moz-device-pixel-ratio: 2), all and (-o-min-device-pixel-ratio: 2 / 1), all and (min-device-pixel-ratio: 2), all and (min-resolution: 192dpi), all and (min-resolution: 2dppx) {
  /* line 1652, ../sass/_styleguide.scss */
  .home-page-background-image-cut-tall-cell-lining {
    background-image: url("../images/3-cell-lining-cut-tall@2x.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom right;
    display: block;
    content: " ";
    background-size: cover;
  }
}

/* line 1660, ../sass/_styleguide.scss */
.home-page-background-image-cut-tall-dividing-cells {
  background-image: url("../images/4-dividing-cells-cut-tall.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom right;
  display: block;
  content: " ";
  background-size: cover;
}
@media all and (-webkit-min-device-pixel-ratio: 2), all and (min--moz-device-pixel-ratio: 2), all and (-o-min-device-pixel-ratio: 2 / 1), all and (min-device-pixel-ratio: 2), all and (min-resolution: 192dpi), all and (min-resolution: 2dppx) {
  /* line 1660, ../sass/_styleguide.scss */
  .home-page-background-image-cut-tall-dividing-cells {
    background-image: url("../images/4-dividing-cells-cut-tall@2x.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom right;
    display: block;
    content: " ";
    background-size: cover;
  }
}

/* line 1668, ../sass/_styleguide.scss */
.home-page-background-image-cut-tall-cell-protein {
  background-image: url("../images/5-cell-protein-cut-tall.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom right;
  display: block;
  content: " ";
  background-size: cover;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1668, ../sass/_styleguide.scss */
  .home-page-background-image-cut-tall-cell-protein {
    background-image: url("../images/5-cell-protein-cut-tall-mobile.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom right;
    display: block;
    content: " ";
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2), all and (min--moz-device-pixel-ratio: 2), all and (-o-min-device-pixel-ratio: 2 / 1), all and (min-device-pixel-ratio: 2), all and (min-resolution: 192dpi), all and (min-resolution: 2dppx) {
  /* line 1668, ../sass/_styleguide.scss */
  .home-page-background-image-cut-tall-cell-protein {
    background-image: url("../images/5-cell-protein-cut-tall@2x.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom right;
    display: block;
    content: " ";
    background-size: cover;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) {
  /* line 1668, ../sass/_styleguide.scss */
  .home-page-background-image-cut-tall-cell-protein {
    background-image: url("../images/5-cell-protein-cut-tall@2x-mobile.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom right;
    display: block;
    content: " ";
  }
}

/* line 1682, ../sass/_styleguide.scss */
.home-page-background-mission-cut, .home-page-mission-background {
  background-image: url("../images/homepage_cells-cut.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center right;
  display: block;
  content: " ";
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1682, ../sass/_styleguide.scss */
  .home-page-background-mission-cut, .home-page-mission-background {
    background-image: url("../images/homepage_cells-cut-mobile.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center right;
    display: block;
    content: " ";
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2), all and (min--moz-device-pixel-ratio: 2), all and (-o-min-device-pixel-ratio: 2 / 1), all and (min-device-pixel-ratio: 2), all and (min-resolution: 192dpi), all and (min-resolution: 2dppx) {
  /* line 1682, ../sass/_styleguide.scss */
  .home-page-background-mission-cut, .home-page-mission-background {
    background-image: url("../images/homepage_cells-cut@2x.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center right;
    display: block;
    content: " ";
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) {
  /* line 1682, ../sass/_styleguide.scss */
  .home-page-background-mission-cut, .home-page-mission-background {
    background-image: url("../images/homepage_cells-cut@2x-mobile.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center right;
    display: block;
    content: " ";
  }
}

/* line 1698, ../sass/_styleguide.scss */
.home-page-background-featured-cut {
  background-image: url("../images/homepage-additional-featured-background-short.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  display: block;
  content: " ";
}
@media all and (-webkit-min-device-pixel-ratio: 2), all and (min--moz-device-pixel-ratio: 2), all and (-o-min-device-pixel-ratio: 2 / 1), all and (min-device-pixel-ratio: 2), all and (min-resolution: 192dpi), all and (min-resolution: 2dppx) {
  /* line 1698, ../sass/_styleguide.scss */
  .home-page-background-featured-cut {
    background-image: url("../images/homepage-additional-featured-background-short@2x.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
    display: block;
    content: " ";
  }
}

/* line 1704, ../sass/_styleguide.scss */
.home-page-background-featured-tablet-cut {
  background-image: url("../images/homepage-additional-featured-background-short-tablet.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  display: block;
  content: " ";
}
@media all and (-webkit-min-device-pixel-ratio: 2), all and (min--moz-device-pixel-ratio: 2), all and (-o-min-device-pixel-ratio: 2 / 1), all and (min-device-pixel-ratio: 2), all and (min-resolution: 192dpi), all and (min-resolution: 2dppx) {
  /* line 1704, ../sass/_styleguide.scss */
  .home-page-background-featured-tablet-cut {
    background-image: url("../images/homepage-additional-featured-background-short-tablet@2x.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
    display: block;
    content: " ";
  }
}

/* line 1710, ../sass/_styleguide.scss */
.home-page-background-featured-phone-cut {
  background-image: url("../images/homepage-additional-featured-background-short-phone.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  display: block;
  content: " ";
}
@media all and (-webkit-min-device-pixel-ratio: 2), all and (min--moz-device-pixel-ratio: 2), all and (-o-min-device-pixel-ratio: 2 / 1), all and (min-device-pixel-ratio: 2), all and (min-resolution: 192dpi), all and (min-resolution: 2dppx) {
  /* line 1710, ../sass/_styleguide.scss */
  .home-page-background-featured-phone-cut {
    background-image: url("../images/homepage-additional-featured-background-short-phone@2x.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
    display: block;
    content: " ";
  }
}

/* line 1717, ../sass/_styleguide.scss */
.sv-objectives-high {
  background-image: url("../images/SV-objectives@2x.png");
  background-size: 253px 253px;
  background-repeat: no-repeat;
  background-position: left;
  display: block;
  content: " ";
  height: 253px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1717, ../sass/_styleguide.scss */
  .sv-objectives-high {
    background-size: 184px 184px;
    height: 184px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1717, ../sass/_styleguide.scss */
  .sv-objectives-high {
    background-size: 184px 184px;
    height: 184px;
  }
}

/* line 1720, ../sass/_styleguide.scss */
.sv-objectives, .objective-list-container .objective-list-image, .objective-list-container .objective-list-image-line {
  background-image: url("../images/SV-objectives.png");
  background-size: 253px 253px;
  background-repeat: no-repeat;
  background-position: left;
  display: block;
  content: " ";
  height: 253px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1720, ../sass/_styleguide.scss */
  .sv-objectives, .objective-list-container .objective-list-image, .objective-list-container .objective-list-image-line {
    background-size: 184px 184px;
    height: 184px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1720, ../sass/_styleguide.scss */
  .sv-objectives, .objective-list-container .objective-list-image, .objective-list-container .objective-list-image-line {
    background-size: 184px 184px;
    height: 184px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2), all and (min--moz-device-pixel-ratio: 2), all and (-o-min-device-pixel-ratio: 2 / 1), all and (min-device-pixel-ratio: 2), all and (min-resolution: 192dpi), all and (min-resolution: 2dppx) {
  /* line 1720, ../sass/_styleguide.scss */
  .sv-objectives, .objective-list-container .objective-list-image, .objective-list-container .objective-list-image-line {
    background-image: url("../images/SV-objectives@2x.png");
    background-size: 253px 253px;
    background-repeat: no-repeat;
    background-position: left;
    display: block;
    content: " ";
    height: 253px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 768px) and (max-width: 1099px), all and (min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 192dpi) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 2dppx) and (min-width: 768px) and (max-width: 1099px) {
  /* line 1720, ../sass/_styleguide.scss */
  .sv-objectives, .objective-list-container .objective-list-image, .objective-list-container .objective-list-image-line {
    background-size: 184px 184px;
    height: 184px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) {
  /* line 1720, ../sass/_styleguide.scss */
  .sv-objectives, .objective-list-container .objective-list-image, .objective-list-container .objective-list-image-line {
    background-size: 184px 184px;
    height: 184px;
  }
}

/* line 1726, ../sass/_styleguide.scss */
.sv-objectives-large, .strategic-vision-landing-goals-wrapper .strategic-vision-goals-center {
  background-image: url("../images/SV-objectives.png");
  background-size: 300px 300px;
  background-repeat: no-repeat;
  background-position: left;
  display: block;
  content: " ";
  height: 300px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1726, ../sass/_styleguide.scss */
  .sv-objectives-large, .strategic-vision-landing-goals-wrapper .strategic-vision-goals-center {
    background-size: 200px 200px;
    height: 200px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1726, ../sass/_styleguide.scss */
  .sv-objectives-large, .strategic-vision-landing-goals-wrapper .strategic-vision-goals-center {
    background-size: 150px 150px;
    height: 150px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2), all and (min--moz-device-pixel-ratio: 2), all and (-o-min-device-pixel-ratio: 2 / 1), all and (min-device-pixel-ratio: 2), all and (min-resolution: 192dpi), all and (min-resolution: 2dppx) {
  /* line 1726, ../sass/_styleguide.scss */
  .sv-objectives-large, .strategic-vision-landing-goals-wrapper .strategic-vision-goals-center {
    background-image: url("../images/SV-objectives@2x.png");
    background-size: 300px 300px;
    background-repeat: no-repeat;
    background-position: left;
    display: block;
    content: " ";
    height: 300px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 768px) and (max-width: 1099px), all and (min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 192dpi) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 2dppx) and (min-width: 768px) and (max-width: 1099px) {
  /* line 1726, ../sass/_styleguide.scss */
  .sv-objectives-large, .strategic-vision-landing-goals-wrapper .strategic-vision-goals-center {
    background-size: 200px 200px;
    height: 200px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) {
  /* line 1726, ../sass/_styleguide.scss */
  .sv-objectives-large, .strategic-vision-landing-goals-wrapper .strategic-vision-goals-center {
    background-size: 150px 150px;
    height: 150px;
  }
}

/* line 1732, ../sass/_styleguide.scss */
.sv-objectives-line, .objective-list-container .objective-list-image-line {
  background-image: url("../images/SV-objectives-line.png");
  background-size: 253px 333px;
  background-repeat: no-repeat;
  background-position: left;
  display: block;
  content: " ";
  height: 333px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1732, ../sass/_styleguide.scss */
  .sv-objectives-line, .objective-list-container .objective-list-image-line {
    background-size: 184px 242px;
    height: 242px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1732, ../sass/_styleguide.scss */
  .sv-objectives-line, .objective-list-container .objective-list-image-line {
    background-size: 184px 242px;
    height: 242px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2), all and (min--moz-device-pixel-ratio: 2), all and (-o-min-device-pixel-ratio: 2 / 1), all and (min-device-pixel-ratio: 2), all and (min-resolution: 192dpi), all and (min-resolution: 2dppx) {
  /* line 1732, ../sass/_styleguide.scss */
  .sv-objectives-line, .objective-list-container .objective-list-image-line {
    background-image: url("../images/SV-objectives@2x-line.png");
    background-size: 253px 333px;
    background-repeat: no-repeat;
    background-position: left;
    display: block;
    content: " ";
    height: 333px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 768px) and (max-width: 1099px), all and (min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 192dpi) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 2dppx) and (min-width: 768px) and (max-width: 1099px) {
  /* line 1732, ../sass/_styleguide.scss */
  .sv-objectives-line, .objective-list-container .objective-list-image-line {
    background-size: 184px 242px;
    height: 242px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) {
  /* line 1732, ../sass/_styleguide.scss */
  .sv-objectives-line, .objective-list-container .objective-list-image-line {
    background-size: 184px 242px;
    height: 242px;
  }
}

/* line 1739, ../sass/_styleguide.scss */
.sv-branding-high {
  background-image: url("../images/SV-branding@2x.png");
  background-size: 62px 61px;
  background-repeat: no-repeat;
  background-position: left top;
  display: block;
  content: " ";
  height: 61px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1739, ../sass/_styleguide.scss */
  .sv-branding-high {
    background-size: 62px 61px;
    height: 61px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1739, ../sass/_styleguide.scss */
  .sv-branding-high {
    background-size: 35px 34px;
    height: 34px;
  }
}

/* line 1742, ../sass/_styleguide.scss */
.sv-branding, .objective-page-title {
  background-image: url("../images/SV-branding.png");
  background-size: 62px 61px;
  background-repeat: no-repeat;
  background-position: left top;
  display: block;
  content: " ";
  height: 61px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1742, ../sass/_styleguide.scss */
  .sv-branding, .objective-page-title {
    background-size: 62px 61px;
    height: 61px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1742, ../sass/_styleguide.scss */
  .sv-branding, .objective-page-title {
    background-size: 35px 34px;
    height: 34px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2), all and (min--moz-device-pixel-ratio: 2), all and (-o-min-device-pixel-ratio: 2 / 1), all and (min-device-pixel-ratio: 2), all and (min-resolution: 192dpi), all and (min-resolution: 2dppx) {
  /* line 1742, ../sass/_styleguide.scss */
  .sv-branding, .objective-page-title {
    background-image: url("../images/SV-branding@2x.png");
    background-size: 62px 61px;
    background-repeat: no-repeat;
    background-position: left top;
    display: block;
    content: " ";
    height: 61px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 768px) and (max-width: 1099px), all and (min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 192dpi) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 2dppx) and (min-width: 768px) and (max-width: 1099px) {
  /* line 1742, ../sass/_styleguide.scss */
  .sv-branding, .objective-page-title {
    background-size: 62px 61px;
    height: 61px;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) {
  /* line 1742, ../sass/_styleguide.scss */
  .sv-branding, .objective-page-title {
    background-size: 35px 34px;
    height: 34px;
  }
}

/* line 1749, ../sass/_styleguide.scss */
.topLabel {
  height: 15px;
}

/* line 1752, ../sass/_styleguide.scss */
.top-label-light-blue {
  background-color: #3885ca;
  height: 100%;
}

/* line 1756, ../sass/_styleguide.scss */
.top-label-medium-blue {
  background-color: #1a568c;
  height: 100%;
}

/* line 1760, ../sass/_styleguide.scss */
.top-label-dark-blue {
  background-color: #102d66;
  height: 100%;
}

/* line 1764, ../sass/_styleguide.scss */
.top-label-medium-red {
  background-color: #bf0d2e;
  height: 100%;
}

/* line 1768, ../sass/_styleguide.scss */
.top-label-dark-red {
  background-color: #850920;
  height: 100%;
}

/**
 * Hero Banners
 **/
/* line 1776, ../sass/_styleguide.scss */
.bannerdate, .bannerdate-dark-gray, div.bannerdate-dark-gray, div.bannerdate, div.bannerdate-dark-gray {
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-weight: normal;
  color: #fff;
  border-bottom: #3885ca 1px solid;
  padding-bottom: 0.5em;
  margin-bottom: 1em;
  font-size: 1rem;
  line-height: 1.5;
}
@media all and (min-width: 1440px) {
  /* line 1776, ../sass/_styleguide.scss */
  .bannerdate, .bannerdate-dark-gray, div.bannerdate-dark-gray, div.bannerdate, div.bannerdate-dark-gray {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1776, ../sass/_styleguide.scss */
  .bannerdate, .bannerdate-dark-gray, div.bannerdate-dark-gray, div.bannerdate, div.bannerdate-dark-gray {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1776, ../sass/_styleguide.scss */
  .bannerdate, .bannerdate-dark-gray, div.bannerdate-dark-gray, div.bannerdate, div.bannerdate-dark-gray {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1776, ../sass/_styleguide.scss */
  .bannerdate, .bannerdate-dark-gray, div.bannerdate-dark-gray, div.bannerdate, div.bannerdate-dark-gray {
    font-size: 0.875rem;
  }
}
/* line 1786, ../sass/_styleguide.scss */
.bannerdate div, .bannerdate-dark-gray div, div.bannerdate div, div.bannerdate-dark-gray div {
  display: inline-block;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 1776, ../sass/_styleguide.scss */
  .bannerdate, .bannerdate-dark-gray, div.bannerdate-dark-gray, div.bannerdate, div.bannerdate-dark-gray {
    padding-bottom: 0.5rem;
  }
}

/* line 1793, ../sass/_styleguide.scss */
.white-bottom-border, .bannerdate.white-bottom-border, .white-bottom-border.bannerdate-dark-gray {
  border-color: #fff;
}

/* line 1796, ../sass/_styleguide.scss */
.light-blue-bottom-border {
  border-bottom: #3c86c7 1px solid;
  padding-bottom: 1em;
}

/* line 1801, ../sass/_styleguide.scss */
.bannerdate-dark-gray, div.bannerdate-dark-gray {
  color: #222;
  background-color: transparent;
  color: #222;
}
/* line 126, ../sass/_mixins.scss */
.bannerdate-dark-gray a, .bannerdate-dark-gray a:link, div.bannerdate-dark-gray a, div.bannerdate-dark-gray a:link {
  color: #222;
  text-decoration: underline;
}
/* line 136, ../sass/_mixins.scss */
.bannerdate-dark-gray a:visited, div.bannerdate-dark-gray a:visited {
  color: #6f57B5;
}
/* line 145, ../sass/_mixins.scss */
.bannerdate-dark-gray a:hover, div.bannerdate-dark-gray a:hover {
  font-weight: bold;
}
/* line 154, ../sass/_mixins.scss */
.bannerdate-dark-gray h1, .bannerdate-dark-gray .photocredit, div.bannerdate-dark-gray h1, div.bannerdate-dark-gray .photocredit {
  color: #222;
}

/* line 1807, ../sass/_styleguide.scss */
.herobannertitle, .herobannertitle-grey {
  font-size: 1.75rem;
  font-family: "Merriweather", serif;
  font-weight: normal;
  color: #fff;
  margin-bottom: 0.5em;
  line-height: 1.5;
}
@media all and (min-width: 1440px) {
  /* line 1807, ../sass/_styleguide.scss */
  .herobannertitle, .herobannertitle-grey {
    font-size: 1.75rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1807, ../sass/_styleguide.scss */
  .herobannertitle, .herobannertitle-grey {
    font-size: 1.5rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1807, ../sass/_styleguide.scss */
  .herobannertitle, .herobannertitle-grey {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1807, ../sass/_styleguide.scss */
  .herobannertitle, .herobannertitle-grey {
    font-size: 1.125rem;
  }
}
/* line 1886, ../sass/_mixins.scss */
.herobannertitle a, .herobannertitle-grey a {
  color: #fff;
}
/* line 1889, ../sass/_mixins.scss */
.herobannertitle a:link, .herobannertitle-grey a:link {
  color: #fff;
}
/* line 1893, ../sass/_mixins.scss */
.herobannertitle a:visited, .herobannertitle-grey a:visited {
  color: #D7E7F4;
}

/* line 1816, ../sass/_styleguide.scss */
.herobannertitle-grey {
  color: #222;
  background-color: transparent;
  font-size: 1.75rem;
  margin-top: 1em;
  margin-bottom: 1em;
}
/* line 126, ../sass/_mixins.scss */
.herobannertitle-grey a, .herobannertitle-grey a:link {
  color: #222;
  text-decoration: underline;
}
/* line 136, ../sass/_mixins.scss */
.herobannertitle-grey a:visited {
  color: #6f57B5;
}
/* line 145, ../sass/_mixins.scss */
.herobannertitle-grey a:hover {
  font-weight: bold;
}
/* line 154, ../sass/_mixins.scss */
.herobannertitle-grey h1, .herobannertitle-grey .photocredit {
  color: #222;
}
/* line 1886, ../sass/_mixins.scss */
.herobannertitle-grey a {
  color: #222;
}
/* line 1889, ../sass/_mixins.scss */
.herobannertitle-grey a:link {
  color: #222;
}
/* line 1897, ../sass/_mixins.scss */
.herobannertitle-grey a:visited {
  color: #6f57B5;
}
@media all and (min-width: 1440px) {
  /* line 1816, ../sass/_styleguide.scss */
  .herobannertitle-grey {
    font-size: 1.75rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1816, ../sass/_styleguide.scss */
  .herobannertitle-grey {
    font-size: 1.5rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1816, ../sass/_styleguide.scss */
  .herobannertitle-grey {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1816, ../sass/_styleguide.scss */
  .herobannertitle-grey {
    font-size: 1.125rem;
  }
}

/* line 1824, ../sass/_styleguide.scss */
h3.herobannertitle-grey, .herobannertitle-grey.field--name-field-social-phrase-group-title, .herobannertitle-grey.field--name-field-image-gallery-title {
  margin: 0 0 0.25em;
}

/* line 1827, ../sass/_styleguide.scss */
.subtitle-text .field--name-field-subtitle h3, .subtitle-text .field--name-field-subtitle .field--name-field-social-phrase-group-title, .subtitle-text .field--name-field-subtitle .field--name-field-image-gallery-title {
  color: #222;
}

/* line 1830, ../sass/_styleguide.scss */
.white-text, .bodytext.white-text, .white-text.darkGrayBodyText, .white-text.foa-expiration-date, h1.white-text,
h2.white-text,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.white-text,
.white-text.contact-method-label, h3.white-text, .white-text.field--name-field-social-phrase-group-title, .white-text.field--name-field-image-gallery-title, h4.white-text {
  color: #fff;
}
/* line 1833, ../sass/_styleguide.scss */
.white-text .bodytext, .white-text .darkGrayBodyText, .white-text .foa-expiration-date, .bodytext.white-text .bodytext, .white-text.darkGrayBodyText .bodytext, .white-text.foa-expiration-date .bodytext, .bodytext.white-text .darkGrayBodyText, .white-text.darkGrayBodyText .darkGrayBodyText, .white-text.foa-expiration-date .darkGrayBodyText, .bodytext.white-text .foa-expiration-date, .white-text.darkGrayBodyText .foa-expiration-date, .white-text.foa-expiration-date .foa-expiration-date, h1.white-text .bodytext, h1.white-text .darkGrayBodyText, h1.white-text .foa-expiration-date,
h2.white-text .bodytext,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.white-text .bodytext,
.white-text.contact-method-label .bodytext,
h2.white-text .darkGrayBodyText,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.white-text .darkGrayBodyText,
.white-text.contact-method-label .darkGrayBodyText,
h2.white-text .foa-expiration-date,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.white-text .foa-expiration-date,
.white-text.contact-method-label .foa-expiration-date, h3.white-text .bodytext, .white-text.field--name-field-social-phrase-group-title .bodytext, .white-text.field--name-field-image-gallery-title .bodytext, h3.white-text .darkGrayBodyText, .white-text.field--name-field-social-phrase-group-title .darkGrayBodyText, .white-text.field--name-field-image-gallery-title .darkGrayBodyText, h3.white-text .foa-expiration-date, .white-text.field--name-field-social-phrase-group-title .foa-expiration-date, .white-text.field--name-field-image-gallery-title .foa-expiration-date, h4.white-text .bodytext, h4.white-text .darkGrayBodyText, h4.white-text .foa-expiration-date {
  color: #fff;
}

/* line 1837, ../sass/_styleguide.scss */
.bodytext.white-text, .white-text.darkGrayBodyText, .white-text.foa-expiration-date {
  margin: 0 0 1.25em;
  padding: 0;
}

/* line 1842, ../sass/_styleguide.scss */
h4.white-text a, h4.white-text a:link {
  color: #fff;
}
/* line 1845, ../sass/_styleguide.scss */
h4.white-text a:visited {
  color: #D7E7F4;
}

/* line 1849, ../sass/_styleguide.scss */
.black-text, .bodytext.black-text, .black-text.darkGrayBodyText, .black-text.foa-expiration-date {
  color: #222;
}

/* line 1852, ../sass/_styleguide.scss */
.bold-black-text {
  color: #222;
  font-weight: bold;
}

/* line 1856, ../sass/_styleguide.scss */
.bannertext, .bannertext-black-header, div.bannertext-black-header {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
}
@media all and (min-width: 1440px) {
  /* line 1856, ../sass/_styleguide.scss */
  .bannertext, .bannertext-black-header, div.bannertext-black-header {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1856, ../sass/_styleguide.scss */
  .bannertext, .bannertext-black-header, div.bannertext-black-header {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1856, ../sass/_styleguide.scss */
  .bannertext, .bannertext-black-header, div.bannertext-black-header {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1856, ../sass/_styleguide.scss */
  .bannertext, .bannertext-black-header, div.bannertext-black-header {
    font-size: 0.875rem;
  }
}

/* line 1861, ../sass/_styleguide.scss */
.bannertext-black-header, div.bannertext-black-header {
  color: #222;
}

/* line 1866, ../sass/_styleguide.scss */
.viewalllink, .promoted-content-container .flexItemText .field--name-field-url > a, .contact-nhlbi--landing .field--name-field-directions-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .fixedDarkBluePane .field--name-field-traveling-and-security a, .field--name-field-community-card .field--name-field-url > a, a.viewalllink, .promoted-content-container .flexItemText .field--name-field-url > a, .contact-nhlbi--landing .field--name-field-directions-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .fixedDarkBluePane .field--name-field-traveling-and-security a, .field--name-field-community-card .field--name-field-url > a {
  font-size: 1rem;
  font-weight: normal;
  padding-left: 24px;
  color: #fff;
}
@media all and (min-width: 1440px) {
  /* line 1866, ../sass/_styleguide.scss */
  .viewalllink, .promoted-content-container .flexItemText .field--name-field-url > a, .contact-nhlbi--landing .field--name-field-directions-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .fixedDarkBluePane .field--name-field-traveling-and-security a, .field--name-field-community-card .field--name-field-url > a, a.viewalllink, .promoted-content-container .flexItemText .field--name-field-url > a, .contact-nhlbi--landing .field--name-field-directions-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .fixedDarkBluePane .field--name-field-traveling-and-security a, .field--name-field-community-card .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1866, ../sass/_styleguide.scss */
  .viewalllink, .promoted-content-container .flexItemText .field--name-field-url > a, .contact-nhlbi--landing .field--name-field-directions-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .fixedDarkBluePane .field--name-field-traveling-and-security a, .field--name-field-community-card .field--name-field-url > a, a.viewalllink, .promoted-content-container .flexItemText .field--name-field-url > a, .contact-nhlbi--landing .field--name-field-directions-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .fixedDarkBluePane .field--name-field-traveling-and-security a, .field--name-field-community-card .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1866, ../sass/_styleguide.scss */
  .viewalllink, .promoted-content-container .flexItemText .field--name-field-url > a, .contact-nhlbi--landing .field--name-field-directions-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .fixedDarkBluePane .field--name-field-traveling-and-security a, .field--name-field-community-card .field--name-field-url > a, a.viewalllink, .promoted-content-container .flexItemText .field--name-field-url > a, .contact-nhlbi--landing .field--name-field-directions-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .fixedDarkBluePane .field--name-field-traveling-and-security a, .field--name-field-community-card .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1866, ../sass/_styleguide.scss */
  .viewalllink, .promoted-content-container .flexItemText .field--name-field-url > a, .contact-nhlbi--landing .field--name-field-directions-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .fixedDarkBluePane .field--name-field-traveling-and-security a, .field--name-field-community-card .field--name-field-url > a, a.viewalllink, .promoted-content-container .flexItemText .field--name-field-url > a, .contact-nhlbi--landing .field--name-field-directions-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .fixedDarkBluePane .field--name-field-traveling-and-security a, .field--name-field-community-card .field--name-field-url > a {
    font-size: 0.875rem;
  }
}

/* line 1873, ../sass/_styleguide.scss */
.viewalllink:visited, .promoted-content-container .flexItemText .field--name-field-url > a:visited, .contact-nhlbi--landing .field--name-field-directions-link a:visited, .isi-job-opportunities--landing .field--name-field-vacancies-link a:visited, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:visited, .fixedDarkBluePane .field--name-field-traveling-and-security a:visited, .field--name-field-community-card .field--name-field-url > a:visited {
  color: #D7E7F4;
}

/* line 1876, ../sass/_styleguide.scss */
.viewalllink:hover, .promoted-content-container .flexItemText .field--name-field-url > a:hover, .contact-nhlbi--landing .field--name-field-directions-link a:hover, .isi-job-opportunities--landing .field--name-field-vacancies-link a:hover, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:hover, .fixedDarkBluePane .field--name-field-traveling-and-security a:hover, .field--name-field-community-card .field--name-field-url > a:hover, a.viewalllink:hover, .promoted-content-container .flexItemText .field--name-field-url > a:hover, .contact-nhlbi--landing .field--name-field-directions-link a:hover, .isi-job-opportunities--landing .field--name-field-vacancies-link a:hover, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:hover, .fixedDarkBluePane .field--name-field-traveling-and-security a:hover, .field--name-field-community-card .field--name-field-url > a:hover {
  font-weight: bold;
}

/* line 1880, ../sass/_styleguide.scss */
.updateListTeaserTitle {
  font-size: 1.75rem;
  line-height: 1.25;
  color: #222;
  padding-left: 55px;
  padding-bottom: 1em;
  font-family: "Merriweather", serif;
  font-weight: normal;
}
@media all and (min-width: 1440px) {
  /* line 1880, ../sass/_styleguide.scss */
  .updateListTeaserTitle {
    font-size: 1.75rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1880, ../sass/_styleguide.scss */
  .updateListTeaserTitle {
    font-size: 1.75rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1880, ../sass/_styleguide.scss */
  .updateListTeaserTitle {
    font-size: 1.5rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1880, ../sass/_styleguide.scss */
  .updateListTeaserTitle {
    font-size: 1.25rem;
  }
}

/**
 * Page Title Section
 **/
/* line 1892, ../sass/_styleguide.scss */
.paddedBar {
  padding: 0 0.8em 0 0.8em;
}

/* line 1895, ../sass/_styleguide.scss */
.standardsubhead, .graysubhead, .graysubhead.font-size-l, .bluesubhead, .bluesubhead.font-size-l, .whitesubhead, .whitesubhead.font-size-l, .blackstandardsubhead, .blackstandardsubhea.font-size-l, .standardsubhead.font-size-l, .font-size-l.graysubhead, .font-size-l.bluesubhead, .font-size-l.whitesubhead, .font-size-l.blackstandardsubhead, .font-size-l.blackstandardsubhea {
  font-size: 0.875rem;
  font-size: 1rem;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-weight: normal;
  text-transform: uppercase;
  line-height: 1.5;
}
@media all and (min-width: 1440px) {
  /* line 1895, ../sass/_styleguide.scss */
  .standardsubhead, .graysubhead, .graysubhead.font-size-l, .bluesubhead, .bluesubhead.font-size-l, .whitesubhead, .whitesubhead.font-size-l, .blackstandardsubhead, .blackstandardsubhea.font-size-l, .standardsubhead.font-size-l, .font-size-l.graysubhead, .font-size-l.bluesubhead, .font-size-l.whitesubhead, .font-size-l.blackstandardsubhead, .font-size-l.blackstandardsubhea {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1895, ../sass/_styleguide.scss */
  .standardsubhead, .graysubhead, .graysubhead.font-size-l, .bluesubhead, .bluesubhead.font-size-l, .whitesubhead, .whitesubhead.font-size-l, .blackstandardsubhead, .blackstandardsubhea.font-size-l, .standardsubhead.font-size-l, .font-size-l.graysubhead, .font-size-l.bluesubhead, .font-size-l.whitesubhead, .font-size-l.blackstandardsubhead, .font-size-l.blackstandardsubhea {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1895, ../sass/_styleguide.scss */
  .standardsubhead, .graysubhead, .graysubhead.font-size-l, .bluesubhead, .bluesubhead.font-size-l, .whitesubhead, .whitesubhead.font-size-l, .blackstandardsubhead, .blackstandardsubhea.font-size-l, .standardsubhead.font-size-l, .font-size-l.graysubhead, .font-size-l.bluesubhead, .font-size-l.whitesubhead, .font-size-l.blackstandardsubhead, .font-size-l.blackstandardsubhea {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1895, ../sass/_styleguide.scss */
  .standardsubhead, .graysubhead, .graysubhead.font-size-l, .bluesubhead, .bluesubhead.font-size-l, .whitesubhead, .whitesubhead.font-size-l, .blackstandardsubhead, .blackstandardsubhea.font-size-l, .standardsubhead.font-size-l, .font-size-l.graysubhead, .font-size-l.bluesubhead, .font-size-l.whitesubhead, .font-size-l.blackstandardsubhead, .font-size-l.blackstandardsubhea {
    font-size: 0.75rem;
  }
}
@media all and (min-width: 1440px) {
  /* line 1895, ../sass/_styleguide.scss */
  .standardsubhead, .graysubhead, .graysubhead.font-size-l, .bluesubhead, .bluesubhead.font-size-l, .whitesubhead, .whitesubhead.font-size-l, .blackstandardsubhead, .blackstandardsubhea.font-size-l, .standardsubhead.font-size-l, .font-size-l.graysubhead, .font-size-l.bluesubhead, .font-size-l.whitesubhead, .font-size-l.blackstandardsubhead, .font-size-l.blackstandardsubhea {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1895, ../sass/_styleguide.scss */
  .standardsubhead, .graysubhead, .graysubhead.font-size-l, .bluesubhead, .bluesubhead.font-size-l, .whitesubhead, .whitesubhead.font-size-l, .blackstandardsubhead, .blackstandardsubhea.font-size-l, .standardsubhead.font-size-l, .font-size-l.graysubhead, .font-size-l.bluesubhead, .font-size-l.whitesubhead, .font-size-l.blackstandardsubhead, .font-size-l.blackstandardsubhea {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1895, ../sass/_styleguide.scss */
  .standardsubhead, .graysubhead, .graysubhead.font-size-l, .bluesubhead, .bluesubhead.font-size-l, .whitesubhead, .whitesubhead.font-size-l, .blackstandardsubhead, .blackstandardsubhea.font-size-l, .standardsubhead.font-size-l, .font-size-l.graysubhead, .font-size-l.bluesubhead, .font-size-l.whitesubhead, .font-size-l.blackstandardsubhead, .font-size-l.blackstandardsubhea {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1895, ../sass/_styleguide.scss */
  .standardsubhead, .graysubhead, .graysubhead.font-size-l, .bluesubhead, .bluesubhead.font-size-l, .whitesubhead, .whitesubhead.font-size-l, .blackstandardsubhead, .blackstandardsubhea.font-size-l, .standardsubhead.font-size-l, .font-size-l.graysubhead, .font-size-l.bluesubhead, .font-size-l.whitesubhead, .font-size-l.blackstandardsubhead, .font-size-l.blackstandardsubhea {
    font-size: 0.875rem;
  }
}

/* line 1903, ../sass/_styleguide.scss */
.graysubhead, .graysubhead.font-size-l {
  color: #222;
}

/* line 1907, ../sass/_styleguide.scss */
.bluesubhead, .bluesubhead.font-size-l {
  color: #3885ca;
}

/* line 1911, ../sass/_styleguide.scss */
.primarybluesubhead, h3.primarybluesubhead, .primarybluesubhead.field--name-field-social-phrase-group-title, .primarybluesubhead.field--name-field-image-gallery-title {
  color: #0051a8;
}
/* line 1913, ../sass/_styleguide.scss */
.primarybluesubhead a, .primarybluesubhead a:link, h3.primarybluesubhead a, .primarybluesubhead.field--name-field-social-phrase-group-title a, .primarybluesubhead.field--name-field-image-gallery-title a, h3.primarybluesubhead a:link, .primarybluesubhead.field--name-field-social-phrase-group-title a:link, .primarybluesubhead.field--name-field-image-gallery-title a:link {
  color: #0051a8;
}
/* line 1916, ../sass/_styleguide.scss */
.primarybluesubhead a:visited, h3.primarybluesubhead a:visited, .primarybluesubhead.field--name-field-social-phrase-group-title a:visited, .primarybluesubhead.field--name-field-image-gallery-title a:visited {
  color: #6f57B5;
}

/* line 1920, ../sass/_styleguide.scss */
h3.primarybluesubhead, .primarybluesubhead.field--name-field-social-phrase-group-title, .primarybluesubhead.field--name-field-image-gallery-title {
  margin-top: 0.8em;
}

/* line 1924, ../sass/_styleguide.scss */
.whitesubhead, .whitesubhead.font-size-l {
  color: #fff;
}

/* line 1929, ../sass/_styleguide.scss */
.division-title, h3.division-title, .division-title.field--name-field-social-phrase-group-title, .division-title.field--name-field-image-gallery-title {
  font-size: 1.25rem;
  font-family: "Merriweather", serif;
  color: #0051a8;
  font-weight: normal;
  margin-top: 0;
}
@media all and (min-width: 1440px) {
  /* line 1929, ../sass/_styleguide.scss */
  .division-title, h3.division-title, .division-title.field--name-field-social-phrase-group-title, .division-title.field--name-field-image-gallery-title {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1929, ../sass/_styleguide.scss */
  .division-title, h3.division-title, .division-title.field--name-field-social-phrase-group-title, .division-title.field--name-field-image-gallery-title {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1929, ../sass/_styleguide.scss */
  .division-title, h3.division-title, .division-title.field--name-field-social-phrase-group-title, .division-title.field--name-field-image-gallery-title {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1929, ../sass/_styleguide.scss */
  .division-title, h3.division-title, .division-title.field--name-field-social-phrase-group-title, .division-title.field--name-field-image-gallery-title {
    font-size: 1rem;
  }
}

/* line 1937, ../sass/_styleguide.scss */
.news-events-topical-section .upperCaseHFour, .news-events-topical-section .blackstandardsubhead {
  padding-bottom: 0.5em;
}
/* line 1940, ../sass/_styleguide.scss */
.news-events-topical-section .whitesubhead {
  padding-bottom: 0.25em;
}
@media all and (min-width: 1100px) {
  /* line 1943, ../sass/_styleguide.scss */
  .news-events-topical-section .flexItemText {
    padding-left: 1.5em;
  }
}
/* line 1948, ../sass/_styleguide.scss */
.news-events-topical-section .herobannertitle-grey {
  margin-bottom: 0.25em;
}
/* line 1952, ../sass/_styleguide.scss */
.news-events-topical-section .node--type-press-release .graydate, .news-events-topical-section .node--type-press-release .publicationCard .flexItemText .datetime, .publicationCard .flexItemText .news-events-topical-section .node--type-press-release .datetime, .news-events-topical-section .node--type-feature-article .graydate, .news-events-topical-section .node--type-feature-article .publicationCard .flexItemText .datetime, .publicationCard .flexItemText .news-events-topical-section .node--type-feature-article .datetime {
  padding-bottom: 0.5em;
}
/* line 1957, ../sass/_styleguide.scss */
.news-events-topical-section .eventdatesLocationType .eventCalendarIcon {
  width: 47px;
  background-position: left center;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 1962, ../sass/_styleguide.scss */
  .news-events-topical-section .eventdatesLocationType .eventLocation .map-icon {
    width: 47px;
    background-position: 15% center;
  }
}

/* line 1971, ../sass/_styleguide.scss */
.blackstandardsubhead, .blackstandardsubhea.font-size-l {
  color: #222;
}

/* line 1976, ../sass/_styleguide.scss */
.grayaccordionheading, h3.grayaccordionheading, .grayaccordionheading.field--name-field-social-phrase-group-title, .grayaccordionheading.field--name-field-image-gallery-title,
h3.flataccordionheading
h3.graysubaccordionheading,
.flataccordionheading.field--name-field-social-phrase-group-title
h3.graysubaccordionheading,
.flataccordionheading.field--name-field-image-gallery-title
h3.graysubaccordionheading,
h3.flataccordionheading
.graysubaccordionheading.field--name-field-social-phrase-group-title,
.flataccordionheading.field--name-field-social-phrase-group-title
.graysubaccordionheading.field--name-field-social-phrase-group-title,
.flataccordionheading.field--name-field-image-gallery-title
.graysubaccordionheading.field--name-field-social-phrase-group-title,
h3.flataccordionheading
.graysubaccordionheading.field--name-field-image-gallery-title,
.flataccordionheading.field--name-field-social-phrase-group-title
.graysubaccordionheading.field--name-field-image-gallery-title,
.flataccordionheading.field--name-field-image-gallery-title
.graysubaccordionheading.field--name-field-image-gallery-title,
h3.graysubSecondHeader,
.graysubSecondHeader.field--name-field-social-phrase-group-title,
.graysubSecondHeader.field--name-field-image-gallery-title,
h3.graysubThirdHeader,
.graysubThirdHeader.field--name-field-social-phrase-group-title,
.graysubThirdHeader.field--name-field-image-gallery-title,
h3.flatHeader,
h3.accordion-header-secondary,
.accordion-header-secondary.field--name-field-social-phrase-group-title,
.accordion-header-secondary.field--name-field-image-gallery-title,
.flatHeader.field--name-field-social-phrase-group-title,
div.field--name-field-social-phrase-group-title.flatPlainUnderlinedHeader,
div.field--name-field-social-phrase-group-title.flatPlainHeader,
div.field--name-field-social-phrase-group-title.flatPlainHeaderWhite,
.flatHeader.field--name-field-image-gallery-title,
div.field--name-field-image-gallery-title.flatPlainUnderlinedHeader,
div.field--name-field-image-gallery-title.flatPlainHeader,
div.field--name-field-image-gallery-title.flatPlainHeaderWhite, .accordion-header, .field--name-field-session-subtitle, h3.grayaccordionheading, .grayaccordionheading.field--name-field-social-phrase-group-title, .grayaccordionheading.field--name-field-image-gallery-title,
h3.flataccordionheading
h3.graysubaccordionheading,
.flataccordionheading.field--name-field-social-phrase-group-title
h3.graysubaccordionheading,
.flataccordionheading.field--name-field-image-gallery-title
h3.graysubaccordionheading,
h3.flataccordionheading
.graysubaccordionheading.field--name-field-social-phrase-group-title,
.flataccordionheading.field--name-field-social-phrase-group-title
.graysubaccordionheading.field--name-field-social-phrase-group-title,
.flataccordionheading.field--name-field-image-gallery-title
.graysubaccordionheading.field--name-field-social-phrase-group-title,
h3.flataccordionheading
.graysubaccordionheading.field--name-field-image-gallery-title,
.flataccordionheading.field--name-field-social-phrase-group-title
.graysubaccordionheading.field--name-field-image-gallery-title,
.flataccordionheading.field--name-field-image-gallery-title
.graysubaccordionheading.field--name-field-image-gallery-title,
h3.graysubSecondHeader,
.graysubSecondHeader.field--name-field-social-phrase-group-title,
.graysubSecondHeader.field--name-field-image-gallery-title,
h3.graysubThirdHeader,
.graysubThirdHeader.field--name-field-social-phrase-group-title,
.graysubThirdHeader.field--name-field-image-gallery-title,
h3.flatHeader,
h3.accordion-header-secondary,
.accordion-header-secondary.field--name-field-social-phrase-group-title,
.accordion-header-secondary.field--name-field-image-gallery-title,
.flatHeader.field--name-field-social-phrase-group-title,
div.field--name-field-social-phrase-group-title.flatPlainUnderlinedHeader,
div.field--name-field-social-phrase-group-title.flatPlainHeader,
div.field--name-field-social-phrase-group-title.flatPlainHeaderWhite,
.flatHeader.field--name-field-image-gallery-title,
div.field--name-field-image-gallery-title.flatPlainUnderlinedHeader,
div.field--name-field-image-gallery-title.flatPlainHeader,
div.field--name-field-image-gallery-title.flatPlainHeaderWhite, h3.accordion-header, .accordion-header.field--name-field-social-phrase-group-title, .accordion-header.field--name-field-image-gallery-title, .field--name-field-social-phrase-group-title.field--name-field-session-subtitle, .field--name-field-image-gallery-title.field--name-field-session-subtitle, h3.field--name-field-session-subtitle {
  font-size: 1.25rem;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-weight: bold;
  color: #222;
}
@media all and (min-width: 1440px) {
  /* line 1976, ../sass/_styleguide.scss */
  .grayaccordionheading, h3.grayaccordionheading, .grayaccordionheading.field--name-field-social-phrase-group-title, .grayaccordionheading.field--name-field-image-gallery-title,
  h3.flataccordionheading
  h3.graysubaccordionheading,
  .flataccordionheading.field--name-field-social-phrase-group-title
  h3.graysubaccordionheading,
  .flataccordionheading.field--name-field-image-gallery-title
  h3.graysubaccordionheading,
  h3.flataccordionheading
  .graysubaccordionheading.field--name-field-social-phrase-group-title,
  .flataccordionheading.field--name-field-social-phrase-group-title
  .graysubaccordionheading.field--name-field-social-phrase-group-title,
  .flataccordionheading.field--name-field-image-gallery-title
  .graysubaccordionheading.field--name-field-social-phrase-group-title,
  h3.flataccordionheading
  .graysubaccordionheading.field--name-field-image-gallery-title,
  .flataccordionheading.field--name-field-social-phrase-group-title
  .graysubaccordionheading.field--name-field-image-gallery-title,
  .flataccordionheading.field--name-field-image-gallery-title
  .graysubaccordionheading.field--name-field-image-gallery-title,
  h3.graysubSecondHeader,
  .graysubSecondHeader.field--name-field-social-phrase-group-title,
  .graysubSecondHeader.field--name-field-image-gallery-title,
  h3.graysubThirdHeader,
  .graysubThirdHeader.field--name-field-social-phrase-group-title,
  .graysubThirdHeader.field--name-field-image-gallery-title,
  h3.flatHeader,
  h3.accordion-header-secondary,
  .accordion-header-secondary.field--name-field-social-phrase-group-title,
  .accordion-header-secondary.field--name-field-image-gallery-title,
  .flatHeader.field--name-field-social-phrase-group-title,
  div.field--name-field-social-phrase-group-title.flatPlainUnderlinedHeader,
  div.field--name-field-social-phrase-group-title.flatPlainHeader,
  div.field--name-field-social-phrase-group-title.flatPlainHeaderWhite,
  .flatHeader.field--name-field-image-gallery-title,
  div.field--name-field-image-gallery-title.flatPlainUnderlinedHeader,
  div.field--name-field-image-gallery-title.flatPlainHeader,
  div.field--name-field-image-gallery-title.flatPlainHeaderWhite, .accordion-header, .field--name-field-session-subtitle, h3.grayaccordionheading, .grayaccordionheading.field--name-field-social-phrase-group-title, .grayaccordionheading.field--name-field-image-gallery-title,
  h3.flataccordionheading
  h3.graysubaccordionheading,
  .flataccordionheading.field--name-field-social-phrase-group-title
  h3.graysubaccordionheading,
  .flataccordionheading.field--name-field-image-gallery-title
  h3.graysubaccordionheading,
  h3.flataccordionheading
  .graysubaccordionheading.field--name-field-social-phrase-group-title,
  .flataccordionheading.field--name-field-social-phrase-group-title
  .graysubaccordionheading.field--name-field-social-phrase-group-title,
  .flataccordionheading.field--name-field-image-gallery-title
  .graysubaccordionheading.field--name-field-social-phrase-group-title,
  h3.flataccordionheading
  .graysubaccordionheading.field--name-field-image-gallery-title,
  .flataccordionheading.field--name-field-social-phrase-group-title
  .graysubaccordionheading.field--name-field-image-gallery-title,
  .flataccordionheading.field--name-field-image-gallery-title
  .graysubaccordionheading.field--name-field-image-gallery-title,
  h3.graysubSecondHeader,
  .graysubSecondHeader.field--name-field-social-phrase-group-title,
  .graysubSecondHeader.field--name-field-image-gallery-title,
  h3.graysubThirdHeader,
  .graysubThirdHeader.field--name-field-social-phrase-group-title,
  .graysubThirdHeader.field--name-field-image-gallery-title,
  h3.flatHeader,
  h3.accordion-header-secondary,
  .accordion-header-secondary.field--name-field-social-phrase-group-title,
  .accordion-header-secondary.field--name-field-image-gallery-title,
  .flatHeader.field--name-field-social-phrase-group-title,
  div.field--name-field-social-phrase-group-title.flatPlainUnderlinedHeader,
  div.field--name-field-social-phrase-group-title.flatPlainHeader,
  div.field--name-field-social-phrase-group-title.flatPlainHeaderWhite,
  .flatHeader.field--name-field-image-gallery-title,
  div.field--name-field-image-gallery-title.flatPlainUnderlinedHeader,
  div.field--name-field-image-gallery-title.flatPlainHeader,
  div.field--name-field-image-gallery-title.flatPlainHeaderWhite, h3.accordion-header, .accordion-header.field--name-field-social-phrase-group-title, .accordion-header.field--name-field-image-gallery-title, .field--name-field-social-phrase-group-title.field--name-field-session-subtitle, .field--name-field-image-gallery-title.field--name-field-session-subtitle, h3.field--name-field-session-subtitle {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1976, ../sass/_styleguide.scss */
  .grayaccordionheading, h3.grayaccordionheading, .grayaccordionheading.field--name-field-social-phrase-group-title, .grayaccordionheading.field--name-field-image-gallery-title,
  h3.flataccordionheading
  h3.graysubaccordionheading,
  .flataccordionheading.field--name-field-social-phrase-group-title
  h3.graysubaccordionheading,
  .flataccordionheading.field--name-field-image-gallery-title
  h3.graysubaccordionheading,
  h3.flataccordionheading
  .graysubaccordionheading.field--name-field-social-phrase-group-title,
  .flataccordionheading.field--name-field-social-phrase-group-title
  .graysubaccordionheading.field--name-field-social-phrase-group-title,
  .flataccordionheading.field--name-field-image-gallery-title
  .graysubaccordionheading.field--name-field-social-phrase-group-title,
  h3.flataccordionheading
  .graysubaccordionheading.field--name-field-image-gallery-title,
  .flataccordionheading.field--name-field-social-phrase-group-title
  .graysubaccordionheading.field--name-field-image-gallery-title,
  .flataccordionheading.field--name-field-image-gallery-title
  .graysubaccordionheading.field--name-field-image-gallery-title,
  h3.graysubSecondHeader,
  .graysubSecondHeader.field--name-field-social-phrase-group-title,
  .graysubSecondHeader.field--name-field-image-gallery-title,
  h3.graysubThirdHeader,
  .graysubThirdHeader.field--name-field-social-phrase-group-title,
  .graysubThirdHeader.field--name-field-image-gallery-title,
  h3.flatHeader,
  h3.accordion-header-secondary,
  .accordion-header-secondary.field--name-field-social-phrase-group-title,
  .accordion-header-secondary.field--name-field-image-gallery-title,
  .flatHeader.field--name-field-social-phrase-group-title,
  div.field--name-field-social-phrase-group-title.flatPlainUnderlinedHeader,
  div.field--name-field-social-phrase-group-title.flatPlainHeader,
  div.field--name-field-social-phrase-group-title.flatPlainHeaderWhite,
  .flatHeader.field--name-field-image-gallery-title,
  div.field--name-field-image-gallery-title.flatPlainUnderlinedHeader,
  div.field--name-field-image-gallery-title.flatPlainHeader,
  div.field--name-field-image-gallery-title.flatPlainHeaderWhite, .accordion-header, .field--name-field-session-subtitle, h3.grayaccordionheading, .grayaccordionheading.field--name-field-social-phrase-group-title, .grayaccordionheading.field--name-field-image-gallery-title,
  h3.flataccordionheading
  h3.graysubaccordionheading,
  .flataccordionheading.field--name-field-social-phrase-group-title
  h3.graysubaccordionheading,
  .flataccordionheading.field--name-field-image-gallery-title
  h3.graysubaccordionheading,
  h3.flataccordionheading
  .graysubaccordionheading.field--name-field-social-phrase-group-title,
  .flataccordionheading.field--name-field-social-phrase-group-title
  .graysubaccordionheading.field--name-field-social-phrase-group-title,
  .flataccordionheading.field--name-field-image-gallery-title
  .graysubaccordionheading.field--name-field-social-phrase-group-title,
  h3.flataccordionheading
  .graysubaccordionheading.field--name-field-image-gallery-title,
  .flataccordionheading.field--name-field-social-phrase-group-title
  .graysubaccordionheading.field--name-field-image-gallery-title,
  .flataccordionheading.field--name-field-image-gallery-title
  .graysubaccordionheading.field--name-field-image-gallery-title,
  h3.graysubSecondHeader,
  .graysubSecondHeader.field--name-field-social-phrase-group-title,
  .graysubSecondHeader.field--name-field-image-gallery-title,
  h3.graysubThirdHeader,
  .graysubThirdHeader.field--name-field-social-phrase-group-title,
  .graysubThirdHeader.field--name-field-image-gallery-title,
  h3.flatHeader,
  h3.accordion-header-secondary,
  .accordion-header-secondary.field--name-field-social-phrase-group-title,
  .accordion-header-secondary.field--name-field-image-gallery-title,
  .flatHeader.field--name-field-social-phrase-group-title,
  div.field--name-field-social-phrase-group-title.flatPlainUnderlinedHeader,
  div.field--name-field-social-phrase-group-title.flatPlainHeader,
  div.field--name-field-social-phrase-group-title.flatPlainHeaderWhite,
  .flatHeader.field--name-field-image-gallery-title,
  div.field--name-field-image-gallery-title.flatPlainUnderlinedHeader,
  div.field--name-field-image-gallery-title.flatPlainHeader,
  div.field--name-field-image-gallery-title.flatPlainHeaderWhite, h3.accordion-header, .accordion-header.field--name-field-social-phrase-group-title, .accordion-header.field--name-field-image-gallery-title, .field--name-field-social-phrase-group-title.field--name-field-session-subtitle, .field--name-field-image-gallery-title.field--name-field-session-subtitle, h3.field--name-field-session-subtitle {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1976, ../sass/_styleguide.scss */
  .grayaccordionheading, h3.grayaccordionheading, .grayaccordionheading.field--name-field-social-phrase-group-title, .grayaccordionheading.field--name-field-image-gallery-title,
  h3.flataccordionheading
  h3.graysubaccordionheading,
  .flataccordionheading.field--name-field-social-phrase-group-title
  h3.graysubaccordionheading,
  .flataccordionheading.field--name-field-image-gallery-title
  h3.graysubaccordionheading,
  h3.flataccordionheading
  .graysubaccordionheading.field--name-field-social-phrase-group-title,
  .flataccordionheading.field--name-field-social-phrase-group-title
  .graysubaccordionheading.field--name-field-social-phrase-group-title,
  .flataccordionheading.field--name-field-image-gallery-title
  .graysubaccordionheading.field--name-field-social-phrase-group-title,
  h3.flataccordionheading
  .graysubaccordionheading.field--name-field-image-gallery-title,
  .flataccordionheading.field--name-field-social-phrase-group-title
  .graysubaccordionheading.field--name-field-image-gallery-title,
  .flataccordionheading.field--name-field-image-gallery-title
  .graysubaccordionheading.field--name-field-image-gallery-title,
  h3.graysubSecondHeader,
  .graysubSecondHeader.field--name-field-social-phrase-group-title,
  .graysubSecondHeader.field--name-field-image-gallery-title,
  h3.graysubThirdHeader,
  .graysubThirdHeader.field--name-field-social-phrase-group-title,
  .graysubThirdHeader.field--name-field-image-gallery-title,
  h3.flatHeader,
  h3.accordion-header-secondary,
  .accordion-header-secondary.field--name-field-social-phrase-group-title,
  .accordion-header-secondary.field--name-field-image-gallery-title,
  .flatHeader.field--name-field-social-phrase-group-title,
  div.field--name-field-social-phrase-group-title.flatPlainUnderlinedHeader,
  div.field--name-field-social-phrase-group-title.flatPlainHeader,
  div.field--name-field-social-phrase-group-title.flatPlainHeaderWhite,
  .flatHeader.field--name-field-image-gallery-title,
  div.field--name-field-image-gallery-title.flatPlainUnderlinedHeader,
  div.field--name-field-image-gallery-title.flatPlainHeader,
  div.field--name-field-image-gallery-title.flatPlainHeaderWhite, .accordion-header, .field--name-field-session-subtitle, h3.grayaccordionheading, .grayaccordionheading.field--name-field-social-phrase-group-title, .grayaccordionheading.field--name-field-image-gallery-title,
  h3.flataccordionheading
  h3.graysubaccordionheading,
  .flataccordionheading.field--name-field-social-phrase-group-title
  h3.graysubaccordionheading,
  .flataccordionheading.field--name-field-image-gallery-title
  h3.graysubaccordionheading,
  h3.flataccordionheading
  .graysubaccordionheading.field--name-field-social-phrase-group-title,
  .flataccordionheading.field--name-field-social-phrase-group-title
  .graysubaccordionheading.field--name-field-social-phrase-group-title,
  .flataccordionheading.field--name-field-image-gallery-title
  .graysubaccordionheading.field--name-field-social-phrase-group-title,
  h3.flataccordionheading
  .graysubaccordionheading.field--name-field-image-gallery-title,
  .flataccordionheading.field--name-field-social-phrase-group-title
  .graysubaccordionheading.field--name-field-image-gallery-title,
  .flataccordionheading.field--name-field-image-gallery-title
  .graysubaccordionheading.field--name-field-image-gallery-title,
  h3.graysubSecondHeader,
  .graysubSecondHeader.field--name-field-social-phrase-group-title,
  .graysubSecondHeader.field--name-field-image-gallery-title,
  h3.graysubThirdHeader,
  .graysubThirdHeader.field--name-field-social-phrase-group-title,
  .graysubThirdHeader.field--name-field-image-gallery-title,
  h3.flatHeader,
  h3.accordion-header-secondary,
  .accordion-header-secondary.field--name-field-social-phrase-group-title,
  .accordion-header-secondary.field--name-field-image-gallery-title,
  .flatHeader.field--name-field-social-phrase-group-title,
  div.field--name-field-social-phrase-group-title.flatPlainUnderlinedHeader,
  div.field--name-field-social-phrase-group-title.flatPlainHeader,
  div.field--name-field-social-phrase-group-title.flatPlainHeaderWhite,
  .flatHeader.field--name-field-image-gallery-title,
  div.field--name-field-image-gallery-title.flatPlainUnderlinedHeader,
  div.field--name-field-image-gallery-title.flatPlainHeader,
  div.field--name-field-image-gallery-title.flatPlainHeaderWhite, h3.accordion-header, .accordion-header.field--name-field-social-phrase-group-title, .accordion-header.field--name-field-image-gallery-title, .field--name-field-social-phrase-group-title.field--name-field-session-subtitle, .field--name-field-image-gallery-title.field--name-field-session-subtitle, h3.field--name-field-session-subtitle {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1976, ../sass/_styleguide.scss */
  .grayaccordionheading, h3.grayaccordionheading, .grayaccordionheading.field--name-field-social-phrase-group-title, .grayaccordionheading.field--name-field-image-gallery-title,
  h3.flataccordionheading
  h3.graysubaccordionheading,
  .flataccordionheading.field--name-field-social-phrase-group-title
  h3.graysubaccordionheading,
  .flataccordionheading.field--name-field-image-gallery-title
  h3.graysubaccordionheading,
  h3.flataccordionheading
  .graysubaccordionheading.field--name-field-social-phrase-group-title,
  .flataccordionheading.field--name-field-social-phrase-group-title
  .graysubaccordionheading.field--name-field-social-phrase-group-title,
  .flataccordionheading.field--name-field-image-gallery-title
  .graysubaccordionheading.field--name-field-social-phrase-group-title,
  h3.flataccordionheading
  .graysubaccordionheading.field--name-field-image-gallery-title,
  .flataccordionheading.field--name-field-social-phrase-group-title
  .graysubaccordionheading.field--name-field-image-gallery-title,
  .flataccordionheading.field--name-field-image-gallery-title
  .graysubaccordionheading.field--name-field-image-gallery-title,
  h3.graysubSecondHeader,
  .graysubSecondHeader.field--name-field-social-phrase-group-title,
  .graysubSecondHeader.field--name-field-image-gallery-title,
  h3.graysubThirdHeader,
  .graysubThirdHeader.field--name-field-social-phrase-group-title,
  .graysubThirdHeader.field--name-field-image-gallery-title,
  h3.flatHeader,
  h3.accordion-header-secondary,
  .accordion-header-secondary.field--name-field-social-phrase-group-title,
  .accordion-header-secondary.field--name-field-image-gallery-title,
  .flatHeader.field--name-field-social-phrase-group-title,
  div.field--name-field-social-phrase-group-title.flatPlainUnderlinedHeader,
  div.field--name-field-social-phrase-group-title.flatPlainHeader,
  div.field--name-field-social-phrase-group-title.flatPlainHeaderWhite,
  .flatHeader.field--name-field-image-gallery-title,
  div.field--name-field-image-gallery-title.flatPlainUnderlinedHeader,
  div.field--name-field-image-gallery-title.flatPlainHeader,
  div.field--name-field-image-gallery-title.flatPlainHeaderWhite, .accordion-header, .field--name-field-session-subtitle, h3.grayaccordionheading, .grayaccordionheading.field--name-field-social-phrase-group-title, .grayaccordionheading.field--name-field-image-gallery-title,
  h3.flataccordionheading
  h3.graysubaccordionheading,
  .flataccordionheading.field--name-field-social-phrase-group-title
  h3.graysubaccordionheading,
  .flataccordionheading.field--name-field-image-gallery-title
  h3.graysubaccordionheading,
  h3.flataccordionheading
  .graysubaccordionheading.field--name-field-social-phrase-group-title,
  .flataccordionheading.field--name-field-social-phrase-group-title
  .graysubaccordionheading.field--name-field-social-phrase-group-title,
  .flataccordionheading.field--name-field-image-gallery-title
  .graysubaccordionheading.field--name-field-social-phrase-group-title,
  h3.flataccordionheading
  .graysubaccordionheading.field--name-field-image-gallery-title,
  .flataccordionheading.field--name-field-social-phrase-group-title
  .graysubaccordionheading.field--name-field-image-gallery-title,
  .flataccordionheading.field--name-field-image-gallery-title
  .graysubaccordionheading.field--name-field-image-gallery-title,
  h3.graysubSecondHeader,
  .graysubSecondHeader.field--name-field-social-phrase-group-title,
  .graysubSecondHeader.field--name-field-image-gallery-title,
  h3.graysubThirdHeader,
  .graysubThirdHeader.field--name-field-social-phrase-group-title,
  .graysubThirdHeader.field--name-field-image-gallery-title,
  h3.flatHeader,
  h3.accordion-header-secondary,
  .accordion-header-secondary.field--name-field-social-phrase-group-title,
  .accordion-header-secondary.field--name-field-image-gallery-title,
  .flatHeader.field--name-field-social-phrase-group-title,
  div.field--name-field-social-phrase-group-title.flatPlainUnderlinedHeader,
  div.field--name-field-social-phrase-group-title.flatPlainHeader,
  div.field--name-field-social-phrase-group-title.flatPlainHeaderWhite,
  .flatHeader.field--name-field-image-gallery-title,
  div.field--name-field-image-gallery-title.flatPlainUnderlinedHeader,
  div.field--name-field-image-gallery-title.flatPlainHeader,
  div.field--name-field-image-gallery-title.flatPlainHeaderWhite, h3.accordion-header, .accordion-header.field--name-field-social-phrase-group-title, .accordion-header.field--name-field-image-gallery-title, .field--name-field-social-phrase-group-title.field--name-field-session-subtitle, .field--name-field-image-gallery-title.field--name-field-session-subtitle, h3.field--name-field-session-subtitle {
    font-size: 1rem;
  }
}

/* line 1994, ../sass/_styleguide.scss */
.calloutdescription, .calloutdescriptionwhite, .calloutflattextwhite, .calloutflattext, .node--type-webform .field--name-field-status-message, .webform-submission-form .field--name-field-status-message, .node--type-research-topic .rtDescription .readMoreContainer > .field--name-field-standard-description,
.node--type-research-topic .rtDescription .field--name-field-additional-text p, .calloutdescription p, .calloutdescriptionwhite p, .calloutflattextwhite p, .calloutflattext p, .node--type-webform .field--name-field-status-message p, .webform-submission-form .field--name-field-status-message p, .node--type-research-topic .rtDescription .readMoreContainer > .field--name-field-standard-description p,
.node--type-research-topic .rtDescription .field--name-field-additional-text p p {
  font-size: 1.125rem;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-style: italic;
  color: #222;
  padding: 0;
}
@media all and (min-width: 1440px) {
  /* line 1994, ../sass/_styleguide.scss */
  .calloutdescription, .calloutdescriptionwhite, .calloutflattextwhite, .calloutflattext, .node--type-webform .field--name-field-status-message, .webform-submission-form .field--name-field-status-message, .node--type-research-topic .rtDescription .readMoreContainer > .field--name-field-standard-description,
  .node--type-research-topic .rtDescription .field--name-field-additional-text p, .calloutdescription p, .calloutdescriptionwhite p, .calloutflattextwhite p, .calloutflattext p, .node--type-webform .field--name-field-status-message p, .webform-submission-form .field--name-field-status-message p, .node--type-research-topic .rtDescription .readMoreContainer > .field--name-field-standard-description p,
  .node--type-research-topic .rtDescription .field--name-field-additional-text p p {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1994, ../sass/_styleguide.scss */
  .calloutdescription, .calloutdescriptionwhite, .calloutflattextwhite, .calloutflattext, .node--type-webform .field--name-field-status-message, .webform-submission-form .field--name-field-status-message, .node--type-research-topic .rtDescription .readMoreContainer > .field--name-field-standard-description,
  .node--type-research-topic .rtDescription .field--name-field-additional-text p, .calloutdescription p, .calloutdescriptionwhite p, .calloutflattextwhite p, .calloutflattext p, .node--type-webform .field--name-field-status-message p, .webform-submission-form .field--name-field-status-message p, .node--type-research-topic .rtDescription .readMoreContainer > .field--name-field-standard-description p,
  .node--type-research-topic .rtDescription .field--name-field-additional-text p p {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1994, ../sass/_styleguide.scss */
  .calloutdescription, .calloutdescriptionwhite, .calloutflattextwhite, .calloutflattext, .node--type-webform .field--name-field-status-message, .webform-submission-form .field--name-field-status-message, .node--type-research-topic .rtDescription .readMoreContainer > .field--name-field-standard-description,
  .node--type-research-topic .rtDescription .field--name-field-additional-text p, .calloutdescription p, .calloutdescriptionwhite p, .calloutflattextwhite p, .calloutflattext p, .node--type-webform .field--name-field-status-message p, .webform-submission-form .field--name-field-status-message p, .node--type-research-topic .rtDescription .readMoreContainer > .field--name-field-standard-description p,
  .node--type-research-topic .rtDescription .field--name-field-additional-text p p {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1994, ../sass/_styleguide.scss */
  .calloutdescription, .calloutdescriptionwhite, .calloutflattextwhite, .calloutflattext, .node--type-webform .field--name-field-status-message, .webform-submission-form .field--name-field-status-message, .node--type-research-topic .rtDescription .readMoreContainer > .field--name-field-standard-description,
  .node--type-research-topic .rtDescription .field--name-field-additional-text p, .calloutdescription p, .calloutdescriptionwhite p, .calloutflattextwhite p, .calloutflattext p, .node--type-webform .field--name-field-status-message p, .webform-submission-form .field--name-field-status-message p, .node--type-research-topic .rtDescription .readMoreContainer > .field--name-field-standard-description p,
  .node--type-research-topic .rtDescription .field--name-field-additional-text p p {
    font-size: 1rem;
  }
}

/* line 2001, ../sass/_styleguide.scss */
.calloutdescriptionwhite, .calloutflattextwhite {
  color: #fff;
}

/* line 2005, ../sass/_styleguide.scss */
.calloutflattextwhite {
  font-style: normal;
}

/* line 2009, ../sass/_styleguide.scss */
.calloutflattext {
  font-style: normal;
}

/* line 2013, ../sass/_styleguide.scss */
.associatedorganization, div.associatedorganization {
  font-size: 1rem;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  color: #0051a8;
}
@media all and (min-width: 1440px) {
  /* line 2013, ../sass/_styleguide.scss */
  .associatedorganization, div.associatedorganization {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2013, ../sass/_styleguide.scss */
  .associatedorganization, div.associatedorganization {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2013, ../sass/_styleguide.scss */
  .associatedorganization, div.associatedorganization {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2013, ../sass/_styleguide.scss */
  .associatedorganization, div.associatedorganization {
    font-size: 1rem;
  }
}

/**
 * PI/Officer Profiles
 **/
/* line 2022, ../sass/_styleguide.scss */
.pi-profile-photo {
  max-width: 150px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2022, ../sass/_styleguide.scss */
  .pi-profile-photo {
    max-width: 125px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2022, ../sass/_styleguide.scss */
  .pi-profile-photo {
    max-width: 90px;
  }
}

/* line 2034, ../sass/_styleguide.scss */
.blacksubhead, .blacksubhead.font-size-l {
  font-size: 1rem;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-weight: normal;
  color: #222;
  text-transform: uppercase;
}
@media all and (min-width: 1440px) {
  /* line 2034, ../sass/_styleguide.scss */
  .blacksubhead, .blacksubhead.font-size-l {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2034, ../sass/_styleguide.scss */
  .blacksubhead, .blacksubhead.font-size-l {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2034, ../sass/_styleguide.scss */
  .blacksubhead, .blacksubhead.font-size-l {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2034, ../sass/_styleguide.scss */
  .blacksubhead, .blacksubhead.font-size-l {
    font-size: 1rem;
  }
}

/* line 2041, ../sass/_styleguide.scss */
.blacksubhead-normal, .blacksubhead-normal.font-size-l {
  font-size: 1rem;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-weight: normal;
  color: #222;
  text-transform: none;
}
@media all and (min-width: 1440px) {
  /* line 2041, ../sass/_styleguide.scss */
  .blacksubhead-normal, .blacksubhead-normal.font-size-l {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2041, ../sass/_styleguide.scss */
  .blacksubhead-normal, .blacksubhead-normal.font-size-l {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2041, ../sass/_styleguide.scss */
  .blacksubhead-normal, .blacksubhead-normal.font-size-l {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2041, ../sass/_styleguide.scss */
  .blacksubhead-normal, .blacksubhead-normal.font-size-l {
    font-size: 1rem;
  }
}
/* line 2047, ../sass/_styleguide.scss */
.blacksubhead-normal div, .blacksubhead-normal.font-size-l div {
  display: inline;
}

/* line 2051, ../sass/_styleguide.scss */
.display-inline-block {
  display: inline-block;
}

/* line 2056, ../sass/_styleguide.scss */
.pi-page-profile-photo img {
  max-width: 165px;
}

/* line 2061, ../sass/_styleguide.scss */
.pi-contact-profile-photo a {
  display: block;
}
/* line 2064, ../sass/_styleguide.scss */
.pi-contact-profile-photo img {
  max-width: 100px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2064, ../sass/_styleguide.scss */
  .pi-contact-profile-photo img {
    max-width: 72px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2064, ../sass/_styleguide.scss */
  .pi-contact-profile-photo img {
    max-width: 57px;
  }
}

/**
 * Staff/Team Member
 **/
/* line 2078, ../sass/_styleguide.scss */
.staff-profile-photo {
  max-width: 100px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2078, ../sass/_styleguide.scss */
  .staff-profile-photo {
    max-width: 90px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2078, ../sass/_styleguide.scss */
  .staff-profile-photo {
    max-width: 90px;
  }
}

/* line 2087, ../sass/_styleguide.scss */
.directorprofilephoto, .director-bioCard .flexItemImage, .director-bioCard .flexItemImageHalf, .director-bioCard .flexItemImageTenth, .director-bioCard .flexItemImageFourth, .director-bioCard .flexItemImageThird, .director-bioCard .flexItemImageThirdHalf, .director-bioCard .hero-image {
  width: 165px;
}

@media all and (min-width: 1100px) {
  /* line 2090, ../sass/_styleguide.scss */
  .leadership-bioCard-profile-photo, .leadership-bioCard .flexItemImage, .leadership-bioCard .flexItemImageHalf, .leadership-bioCard .flexItemImageTenth, .leadership-bioCard .flexItemImageFourth, .leadership-bioCard .flexItemImageThird, .leadership-bioCard .flexItemImageThirdHalf, .leadership-bioCard .hero-image {
    width: 144px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2090, ../sass/_styleguide.scss */
  .leadership-bioCard-profile-photo, .leadership-bioCard .flexItemImage, .leadership-bioCard .flexItemImageHalf, .leadership-bioCard .flexItemImageTenth, .leadership-bioCard .flexItemImageFourth, .leadership-bioCard .flexItemImageThird, .leadership-bioCard .flexItemImageThirdHalf, .leadership-bioCard .hero-image {
    width: 101px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2090, ../sass/_styleguide.scss */
  .leadership-bioCard-profile-photo, .leadership-bioCard .flexItemImage, .leadership-bioCard .flexItemImageHalf, .leadership-bioCard .flexItemImageTenth, .leadership-bioCard .flexItemImageFourth, .leadership-bioCard .flexItemImageThird, .leadership-bioCard .flexItemImageThirdHalf, .leadership-bioCard .hero-image {
    width: 91px;
  }
}

/* line 2101, ../sass/_styleguide.scss */
.profilephoto, .bioCard .flexItemImage, .bioCard .flexItemImageHalf, .bioCard .flexItemImageTenth, .bioCard .flexItemImageFourth, .bioCard .flexItemImageThird, .bioCard .flexItemImageThirdHalf, .bioCard .hero-image {
  width: 125px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2101, ../sass/_styleguide.scss */
  .profilephoto, .bioCard .flexItemImage, .bioCard .flexItemImageHalf, .bioCard .flexItemImageTenth, .bioCard .flexItemImageFourth, .bioCard .flexItemImageThird, .bioCard .flexItemImageThirdHalf, .bioCard .hero-image {
    width: 100px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2101, ../sass/_styleguide.scss */
  .profilephoto, .bioCard .flexItemImage, .bioCard .flexItemImageHalf, .bioCard .flexItemImageTenth, .bioCard .flexItemImageFourth, .bioCard .flexItemImageThird, .bioCard .flexItemImageThirdHalf, .bioCard .hero-image {
    width: 90px;
  }
}

/* line 2110, ../sass/_styleguide.scss */
.smaller-profile-photo, .director-short-bioCard {
  width: 100px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2110, ../sass/_styleguide.scss */
  .smaller-profile-photo, .director-short-bioCard {
    width: 100px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2110, ../sass/_styleguide.scss */
  .smaller-profile-photo, .director-short-bioCard {
    width: 75px;
  }
}

/* line 2119, ../sass/_styleguide.scss */
.membername {
  font-size: 1.25rem;
  font-family: "Merriweather", serif;
  font-weight: normal;
  color: #222;
}
@media all and (min-width: 1440px) {
  /* line 2119, ../sass/_styleguide.scss */
  .membername {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2119, ../sass/_styleguide.scss */
  .membername {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2119, ../sass/_styleguide.scss */
  .membername {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2119, ../sass/_styleguide.scss */
  .membername {
    font-size: 1rem;
  }
}
/* line 2124, ../sass/_styleguide.scss */
.membername a, .membername a:link {
  color: #222;
}
/* line 2127, ../sass/_styleguide.scss */
.membername a:visited {
  color: #6f57B5;
}
/* line 2129, ../sass/_styleguide.scss */
.membername a:visited h1 {
  color: #6f57B5;
}

/* line 2134, ../sass/_styleguide.scss */
.membertitle {
  font-size: 1rem;
}

/* line 2138, ../sass/_styleguide.scss */
.profileheader {
  font-size: 1rem;
  text-transform: uppercase;
}

/* line 2144, ../sass/_styleguide.scss */
.normal-case, .profileheader.normal-case {
  text-transform: none;
}

/* line 2149, ../sass/_styleguide.scss */
.profiledescription, .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-address p.address {
  font-size: 1rem;
  font-size: 1rem;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-weight: normal;
  color: #222;
}
@media all and (min-width: 1440px) {
  /* line 2149, ../sass/_styleguide.scss */
  .profiledescription, .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-address p.address {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2149, ../sass/_styleguide.scss */
  .profiledescription, .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-address p.address {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2149, ../sass/_styleguide.scss */
  .profiledescription, .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-address p.address {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2149, ../sass/_styleguide.scss */
  .profiledescription, .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-address p.address {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1440px) {
  /* line 2149, ../sass/_styleguide.scss */
  .profiledescription, .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-address p.address {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2149, ../sass/_styleguide.scss */
  .profiledescription, .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-address p.address {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2149, ../sass/_styleguide.scss */
  .profiledescription, .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-address p.address {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2149, ../sass/_styleguide.scss */
  .profiledescription, .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-address p.address {
    font-size: 0.875rem;
  }
}

/* line 2157, ../sass/_styleguide.scss */
.directordate {
  font-size: 1rem;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-weight: normal;
  color: #222;
}
@media all and (min-width: 1440px) {
  /* line 2157, ../sass/_styleguide.scss */
  .directordate {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2157, ../sass/_styleguide.scss */
  .directordate {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2157, ../sass/_styleguide.scss */
  .directordate {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2157, ../sass/_styleguide.scss */
  .directordate {
    font-size: 1rem;
  }
}

/**
 * Speaker Bios
 **/
/* line 2169, ../sass/_styleguide.scss */
.speaker-photo {
  width: 180px;
  min-width: 180px;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2169, ../sass/_styleguide.scss */
  .speaker-photo {
    width: 160px;
    min-width: 160px;
  }
}

/* line 2178, ../sass/_styleguide.scss */
.speaker-profile-photo, .speakerCard .flexItemImage, .speakerCard .flexItemImageHalf, .speakerCard .flexItemImageTenth, .speakerCard .flexItemImageFourth, .speakerCard .flexItemImageThird, .speakerCard .flexItemImageThirdHalf, .speakerCard .hero-image {
  width: 100px;
  min-width: 100px;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 2178, ../sass/_styleguide.scss */
  .speaker-profile-photo, .speakerCard .flexItemImage, .speakerCard .flexItemImageHalf, .speakerCard .flexItemImageTenth, .speakerCard .flexItemImageFourth, .speakerCard .flexItemImageThird, .speakerCard .flexItemImageThirdHalf, .speakerCard .hero-image {
    width: 90px;
    min-width: 90px;
  }
}

/* line 2188, ../sass/_styleguide.scss */
.centeredImage {
  display: block;
  position: relative;
  text-align: center;
  clear: both;
}

/* line 2196, ../sass/_styleguide.scss */
.clippedImage img {
  border-radius: 50%;
}

/* line 2200, ../sass/_styleguide.scss */
.clippedImage.flexItemImage, .clippedImage.flexItemImageHalf, .clippedImage.flexItemImageTenth, .clippedImage.flexItemImageFourth, .clippedImage.flexItemImageThird, .clippedImage.flexItemImageThirdHalf, .clippedImage.hero-image {
  min-width: inherit;
}

/* line 2203, ../sass/_styleguide.scss */
.speakername {
  font-size: 1rem;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-weight: bold;
  color: #222;
}
@media all and (min-width: 1440px) {
  /* line 2203, ../sass/_styleguide.scss */
  .speakername {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2203, ../sass/_styleguide.scss */
  .speakername {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2203, ../sass/_styleguide.scss */
  .speakername {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2203, ../sass/_styleguide.scss */
  .speakername {
    font-size: 1rem;
  }
}

/**
 * Publications/Fact Sheet Tiles
 **/
/* line 2214, ../sass/_styleguide.scss */
h3.publicationTitle, h3.primary-blue-publication-title, .primary-blue-publication-title.field--name-field-social-phrase-group-title, .primary-blue-publication-title.field--name-field-image-gallery-title, .publicationTitle.field--name-field-social-phrase-group-title, .publicationTitle.field--name-field-image-gallery-title, .publicationTitle, h3.primary-blue-publication-title, .primary-blue-publication-title.field--name-field-social-phrase-group-title, .primary-blue-publication-title.field--name-field-image-gallery-title {
  font-size: 1.25rem;
  font-weight: normal;
  color: #222;
  margin-top: 0;
}
@media all and (min-width: 1440px) {
  /* line 2214, ../sass/_styleguide.scss */
  h3.publicationTitle, h3.primary-blue-publication-title, .primary-blue-publication-title.field--name-field-social-phrase-group-title, .primary-blue-publication-title.field--name-field-image-gallery-title, .publicationTitle.field--name-field-social-phrase-group-title, .publicationTitle.field--name-field-image-gallery-title, .publicationTitle, h3.primary-blue-publication-title, .primary-blue-publication-title.field--name-field-social-phrase-group-title, .primary-blue-publication-title.field--name-field-image-gallery-title {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2214, ../sass/_styleguide.scss */
  h3.publicationTitle, h3.primary-blue-publication-title, .primary-blue-publication-title.field--name-field-social-phrase-group-title, .primary-blue-publication-title.field--name-field-image-gallery-title, .publicationTitle.field--name-field-social-phrase-group-title, .publicationTitle.field--name-field-image-gallery-title, .publicationTitle, h3.primary-blue-publication-title, .primary-blue-publication-title.field--name-field-social-phrase-group-title, .primary-blue-publication-title.field--name-field-image-gallery-title {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2214, ../sass/_styleguide.scss */
  h3.publicationTitle, h3.primary-blue-publication-title, .primary-blue-publication-title.field--name-field-social-phrase-group-title, .primary-blue-publication-title.field--name-field-image-gallery-title, .publicationTitle.field--name-field-social-phrase-group-title, .publicationTitle.field--name-field-image-gallery-title, .publicationTitle, h3.primary-blue-publication-title, .primary-blue-publication-title.field--name-field-social-phrase-group-title, .primary-blue-publication-title.field--name-field-image-gallery-title {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2214, ../sass/_styleguide.scss */
  h3.publicationTitle, h3.primary-blue-publication-title, .primary-blue-publication-title.field--name-field-social-phrase-group-title, .primary-blue-publication-title.field--name-field-image-gallery-title, .publicationTitle.field--name-field-social-phrase-group-title, .publicationTitle.field--name-field-image-gallery-title, .publicationTitle, h3.primary-blue-publication-title, .primary-blue-publication-title.field--name-field-social-phrase-group-title, .primary-blue-publication-title.field--name-field-image-gallery-title {
    font-size: 1rem;
  }
}
/* line 2219, ../sass/_styleguide.scss */
h3.publicationTitle a, h3.primary-blue-publication-title a, .primary-blue-publication-title.field--name-field-social-phrase-group-title a, .primary-blue-publication-title.field--name-field-image-gallery-title a, .publicationTitle.field--name-field-social-phrase-group-title a, .publicationTitle.field--name-field-image-gallery-title a, h3.publicationTitle a:link, h3.primary-blue-publication-title a:link, .primary-blue-publication-title.field--name-field-social-phrase-group-title a:link, .primary-blue-publication-title.field--name-field-image-gallery-title a:link, .publicationTitle.field--name-field-social-phrase-group-title a:link, .publicationTitle.field--name-field-image-gallery-title a:link, .publicationTitle a, h3.primary-blue-publication-title a, .primary-blue-publication-title.field--name-field-social-phrase-group-title a, .primary-blue-publication-title.field--name-field-image-gallery-title a, .publicationTitle a:link, h3.primary-blue-publication-title a:link, .primary-blue-publication-title.field--name-field-social-phrase-group-title a:link, .primary-blue-publication-title.field--name-field-image-gallery-title a:link {
  color: #222;
}
/* line 2222, ../sass/_styleguide.scss */
h3.publicationTitle a:visited, h3.primary-blue-publication-title a:visited, .primary-blue-publication-title.field--name-field-social-phrase-group-title a:visited, .primary-blue-publication-title.field--name-field-image-gallery-title a:visited, .publicationTitle.field--name-field-social-phrase-group-title a:visited, .publicationTitle.field--name-field-image-gallery-title a:visited, .publicationTitle a:visited, h3.primary-blue-publication-title a:visited, .primary-blue-publication-title.field--name-field-social-phrase-group-title a:visited, .primary-blue-publication-title.field--name-field-image-gallery-title a:visited {
  color: #6f57B5;
}

/* line 2227, ../sass/_styleguide.scss */
a:visited h3.publicationTitle, a:visited h3.primary-blue-publication-title, a:visited .primary-blue-publication-title.field--name-field-social-phrase-group-title, a:visited .primary-blue-publication-title.field--name-field-image-gallery-title, a:visited .publicationTitle.field--name-field-social-phrase-group-title, a:visited .publicationTitle.field--name-field-image-gallery-title, a:visited .publicationTitle, a:visited h3.primary-blue-publication-title, a:visited .primary-blue-publication-title.field--name-field-social-phrase-group-title, a:visited .primary-blue-publication-title.field--name-field-image-gallery-title {
  color: #6f57B5;
}

/* line 2231, ../sass/_styleguide.scss */
h3.primary-blue-publication-title, .primary-blue-publication-title.field--name-field-social-phrase-group-title, .primary-blue-publication-title.field--name-field-image-gallery-title {
  color: #0051a8;
  background-color: transparent;
  margin: 0 !important;
}
/* line 126, ../sass/_mixins.scss */
h3.primary-blue-publication-title a, .primary-blue-publication-title.field--name-field-social-phrase-group-title a, .primary-blue-publication-title.field--name-field-image-gallery-title a, h3.primary-blue-publication-title a:link, .primary-blue-publication-title.field--name-field-social-phrase-group-title a:link, .primary-blue-publication-title.field--name-field-image-gallery-title a:link {
  color: #1a568c;
  text-decoration: underline;
}
/* line 136, ../sass/_mixins.scss */
h3.primary-blue-publication-title a:visited, .primary-blue-publication-title.field--name-field-social-phrase-group-title a:visited, .primary-blue-publication-title.field--name-field-image-gallery-title a:visited {
  color: #6f57B5;
}
/* line 145, ../sass/_mixins.scss */
h3.primary-blue-publication-title a:hover, .primary-blue-publication-title.field--name-field-social-phrase-group-title a:hover, .primary-blue-publication-title.field--name-field-image-gallery-title a:hover {
  font-weight: bold;
}
/* line 154, ../sass/_mixins.scss */
h3.primary-blue-publication-title h1, .primary-blue-publication-title.field--name-field-social-phrase-group-title h1, .primary-blue-publication-title.field--name-field-image-gallery-title h1, h3.primary-blue-publication-title .photocredit, .primary-blue-publication-title.field--name-field-social-phrase-group-title .photocredit, .primary-blue-publication-title.field--name-field-image-gallery-title .photocredit {
  color: #0051a8;
}
/* line 2235, ../sass/_styleguide.scss */
h3.primary-blue-publication-title a, .primary-blue-publication-title.field--name-field-social-phrase-group-title a, .primary-blue-publication-title.field--name-field-image-gallery-title a, h3.primary-blue-publication-title a:link, .primary-blue-publication-title.field--name-field-social-phrase-group-title a:link, .primary-blue-publication-title.field--name-field-image-gallery-title a:link, h3.primary-blue-publication-title a:hover, .primary-blue-publication-title.field--name-field-social-phrase-group-title a:hover, .primary-blue-publication-title.field--name-field-image-gallery-title a:hover {
  color: #0051a8;
}
/* line 2238, ../sass/_styleguide.scss */
h3.primary-blue-publication-title a:visited, .primary-blue-publication-title.field--name-field-social-phrase-group-title a:visited, .primary-blue-publication-title.field--name-field-image-gallery-title a:visited {
  color: #6f57B5;
}

/* line 2244, ../sass/_styleguide.scss */
a:visited h3.primary-blue-publication-title, a:visited .primary-blue-publication-title.field--name-field-social-phrase-group-title, a:visited .primary-blue-publication-title.field--name-field-image-gallery-title {
  color: #6f57B5;
}

/* line 2250, ../sass/_styleguide.scss */
.publicationCard {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  font-size: 1rem;
}
/* line 2256, ../sass/_styleguide.scss */
.publicationCard .flexItemImage, .publicationCard .flexItemImageHalf, .publicationCard .flexItemImageTenth, .publicationCard .flexItemImageFourth, .publicationCard .flexItemImageThird, .publicationCard .flexItemImageThirdHalf, .publicationCard .hero-image {
  -webkit-box-flex: "0 1 auto";
  -moz-box-flex: "0 1 auto";
  -webkit-flex: "0 1 auto";
  -ms-flex: "0 1 auto";
  flex: "0 1 auto";
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-grow: 1;
  -o-flex-grow: 1;
  flex-grow: 1;
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
  padding: 1em;
  max-width: 33%;
  min-width: 33%;
  width: 33%;
}
/* line 2266, ../sass/_styleguide.scss */
.publicationCard .flexItemText, .publicationCard .flexItemText.flexItemTextHalf {
  -webkit-box-flex: "0 1 auto";
  -moz-box-flex: "0 1 auto";
  -webkit-flex: "0 1 auto";
  -ms-flex: "0 1 auto";
  flex: "0 1 auto";
  -webkit-box-ordinal-group: 2;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
  padding: 1em 1em 1em 0;
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2266, ../sass/_styleguide.scss */
  .publicationCard .flexItemText, .publicationCard .flexItemText.flexItemTextHalf {
    padding: 1em 1em 1em 0;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2266, ../sass/_styleguide.scss */
  .publicationCard .flexItemText, .publicationCard .flexItemText.flexItemTextHalf {
    padding: 1em 1em 1em 0;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2266, ../sass/_styleguide.scss */
  .publicationCard .flexItemText, .publicationCard .flexItemText.flexItemTextHalf {
    padding: 1em 1em 1em 0;
  }
}
/* line 2284, ../sass/_styleguide.scss */
.publicationCard .flexItemText.flexTextWithImage {
  max-width: 66%;
  width: 66%;
  flex-basis: 66%;
}

@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2292, ../sass/_styleguide.scss */
  .promoted-content-wrapper .bodytext, .promoted-content-wrapper .darkGrayBodyText, .promoted-content-wrapper .foa-expiration-date {
    display: none;
  }
}

/**
 * Scientific Focus Area Cards
 **/
/* line 2300, ../sass/_styleguide.scss */
.sfaname {
  font-size: 1rem;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-weight: normal;
  color: #222;
  text-transform: uppercase;
}
@media all and (min-width: 1440px) {
  /* line 2300, ../sass/_styleguide.scss */
  .sfaname {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2300, ../sass/_styleguide.scss */
  .sfaname {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2300, ../sass/_styleguide.scss */
  .sfaname {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2300, ../sass/_styleguide.scss */
  .sfaname {
    font-size: 1em;
  }
}

/**
 * Page Elements
 **/
/* line 2311, ../sass/_styleguide.scss */
.filename, .node--type-systematic-evidence-review.node--view-mode-full .file-download-button a:link,
.node--type-systematic-evidence-review.node--view-mode-subscribe .file-download-button a:link,
.node--type-clinical-practice-guideline.node--view-mode-full .file-download-button a:link,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .file-download-button a:link {
  font-size: 0.875rem;
  color: #3885ca;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-weight: normal;
}

/* line 2317, ../sass/_styleguide.scss */
.graydetail {
  font-size: 0.875rem;
  color: #222;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-weight: normal;
}

/* line 2323, ../sass/_styleguide.scss */
.graydate, .publicationCard .flexItemText .datetime, .publicationCard .flexItemText.flexItemTextHalf .datetime {
  font-size: 0.875rem;
  color: #222;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-weight: normal;
}
@media all and (min-width: 1440px) {
  /* line 2323, ../sass/_styleguide.scss */
  .graydate, .publicationCard .flexItemText .datetime, .publicationCard .flexItemText.flexItemTextHalf .datetime {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2323, ../sass/_styleguide.scss */
  .graydate, .publicationCard .flexItemText .datetime, .publicationCard .flexItemText.flexItemTextHalf .datetime {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2323, ../sass/_styleguide.scss */
  .graydate, .publicationCard .flexItemText .datetime, .publicationCard .flexItemText.flexItemTextHalf .datetime {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2323, ../sass/_styleguide.scss */
  .graydate, .publicationCard .flexItemText .datetime, .publicationCard .flexItemText.flexItemTextHalf .datetime {
    font-size: 0.875rem;
  }
}
/* line 2328, ../sass/_styleguide.scss */
.graydate div, .publicationCard .flexItemText .datetime div, .publicationCard .flexItemText.flexItemTextHalf .datetime div {
  display: inline;
}

/* line 2333, ../sass/_styleguide.scss */
.whitedate {
  font-size: 0.875rem;
  color: #fff;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-weight: normal;
  margin-bottom: 1em;
}
@media all and (min-width: 1440px) {
  /* line 2333, ../sass/_styleguide.scss */
  .whitedate {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2333, ../sass/_styleguide.scss */
  .whitedate {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2333, ../sass/_styleguide.scss */
  .whitedate {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2333, ../sass/_styleguide.scss */
  .whitedate {
    font-size: 0.875rem;
  }
}
/* line 2339, ../sass/_styleguide.scss */
.whitedate div {
  display: inline;
}

/* line 2343, ../sass/_styleguide.scss */
.posttitlethumb, .blue-posttitlethumb, .objective-list-container .objective-side-text {
  font-size: 1.25rem;
  line-height: 1.5;
  color: #222;
  background-color: transparent;
  font-family: "Merriweather", serif;
  font-weight: normal;
  padding-bottom: 0.5em;
}
@media all and (min-width: 1440px) {
  /* line 2343, ../sass/_styleguide.scss */
  .posttitlethumb, .blue-posttitlethumb, .objective-list-container .objective-side-text {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2343, ../sass/_styleguide.scss */
  .posttitlethumb, .blue-posttitlethumb, .objective-list-container .objective-side-text {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2343, ../sass/_styleguide.scss */
  .posttitlethumb, .blue-posttitlethumb, .objective-list-container .objective-side-text {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2343, ../sass/_styleguide.scss */
  .posttitlethumb, .blue-posttitlethumb, .objective-list-container .objective-side-text {
    font-size: 1rem;
  }
}
/* line 126, ../sass/_mixins.scss */
.posttitlethumb a, .blue-posttitlethumb a, .objective-list-container .objective-side-text a, .posttitlethumb a:link, .blue-posttitlethumb a:link, .objective-list-container .objective-side-text a:link {
  color: #222;
  text-decoration: underline;
}
/* line 136, ../sass/_mixins.scss */
.posttitlethumb a:visited, .blue-posttitlethumb a:visited, .objective-list-container .objective-side-text a:visited {
  color: #6f57B5;
}
/* line 145, ../sass/_mixins.scss */
.posttitlethumb a:hover, .blue-posttitlethumb a:hover, .objective-list-container .objective-side-text a:hover {
  font-weight: bold;
}
/* line 154, ../sass/_mixins.scss */
.posttitlethumb h1, .blue-posttitlethumb h1, .objective-list-container .objective-side-text h1, .posttitlethumb .photocredit, .blue-posttitlethumb .photocredit, .objective-list-container .objective-side-text .photocredit {
  color: #222;
}

/* line 2352, ../sass/_styleguide.scss */
.posttitlethumb.gray-hr, .posttitlethumb.bannerdate-dark-gray, .bannerdate-dark-gray.blue-posttitlethumb, .objective-list-container .bannerdate-dark-gray.objective-side-text, .gray-hr.blue-posttitlethumb, .blue-posttitlethumb.contact-box, .node--type-division.node--view-mode-full .related-scientific-focus-areas-container h2.blue-posttitlethumb, .node--type-division.node--view-mode-full .related-scientific-focus-areas-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.blue-posttitlethumb, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-division.node--view-mode-full .related-scientific-focus-areas-container h1.blue-posttitlethumb, .node--type-division.node--view-mode-full .related-scientific-focus-areas-container .blue-posttitlethumb.contact-method-label,
.node--type-division.node--view-mode-subscribe .related-scientific-focus-areas-container h2.blue-posttitlethumb,
.node--type-division.node--view-mode-subscribe .related-scientific-focus-areas-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.blue-posttitlethumb,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-division.node--view-mode-subscribe .related-scientific-focus-areas-container h1.blue-posttitlethumb,
.node--type-division.node--view-mode-subscribe .related-scientific-focus-areas-container .blue-posttitlethumb.contact-method-label,
.node--type-branch.node--view-mode-full .related-scientific-focus-areas-container h2.blue-posttitlethumb,
.node--type-branch.node--view-mode-full .related-scientific-focus-areas-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.blue-posttitlethumb,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-branch.node--view-mode-full .related-scientific-focus-areas-container h1.blue-posttitlethumb,
.node--type-branch.node--view-mode-full .related-scientific-focus-areas-container .blue-posttitlethumb.contact-method-label,
.node--type-branch.node--view-mode-subscribe .related-scientific-focus-areas-container h2.blue-posttitlethumb,
.node--type-branch.node--view-mode-subscribe .related-scientific-focus-areas-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.blue-posttitlethumb,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-branch.node--view-mode-subscribe .related-scientific-focus-areas-container h1.blue-posttitlethumb,
.node--type-branch.node--view-mode-subscribe .related-scientific-focus-areas-container .blue-posttitlethumb.contact-method-label, .news-header-container .blue-posttitlethumb.blacksubhead-normal, .posttitlethumb.contact-box, .objective-list-container .contact-box.objective-side-text, .node--type-division.node--view-mode-full .related-scientific-focus-areas-container h2.posttitlethumb, .node--type-division.node--view-mode-full .related-scientific-focus-areas-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.posttitlethumb, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-division.node--view-mode-full .related-scientific-focus-areas-container h1.posttitlethumb, .node--type-division.node--view-mode-full .related-scientific-focus-areas-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .objective-list-container h1.objective-side-text, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .objective-list-container .node--type-division.node--view-mode-full .related-scientific-focus-areas-container h1.objective-side-text, .node--type-division.node--view-mode-full .related-scientific-focus-areas-container .objective-list-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.objective-side-text, .objective-list-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-division.node--view-mode-full .related-scientific-focus-areas-container h1.objective-side-text, .node--type-division.node--view-mode-full .related-scientific-focus-areas-container .posttitlethumb.contact-method-label, .node--type-division.node--view-mode-full .related-scientific-focus-areas-container .objective-list-container .contact-method-label.objective-side-text, .objective-list-container .node--type-division.node--view-mode-full .related-scientific-focus-areas-container .contact-method-label.objective-side-text, .node--type-division.node--view-mode-full .related-scientific-focus-areas-container .objective-list-container h2.objective-side-text, .objective-list-container .node--type-division.node--view-mode-full .related-scientific-focus-areas-container h2.objective-side-text,
.node--type-division.node--view-mode-subscribe .related-scientific-focus-areas-container h2.posttitlethumb,
.node--type-division.node--view-mode-subscribe .related-scientific-focus-areas-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.posttitlethumb,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-division.node--view-mode-subscribe .related-scientific-focus-areas-container h1.posttitlethumb,
.node--type-division.node--view-mode-subscribe .related-scientific-focus-areas-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .objective-list-container h1.objective-side-text,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .objective-list-container .node--type-division.node--view-mode-subscribe .related-scientific-focus-areas-container h1.objective-side-text,
.node--type-division.node--view-mode-subscribe .related-scientific-focus-areas-container .objective-list-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.objective-side-text,
.objective-list-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-division.node--view-mode-subscribe .related-scientific-focus-areas-container h1.objective-side-text,
.node--type-division.node--view-mode-subscribe .related-scientific-focus-areas-container .posttitlethumb.contact-method-label,
.node--type-division.node--view-mode-subscribe .related-scientific-focus-areas-container .objective-list-container .contact-method-label.objective-side-text,
.objective-list-container .node--type-division.node--view-mode-subscribe .related-scientific-focus-areas-container .contact-method-label.objective-side-text,
.node--type-division.node--view-mode-subscribe .related-scientific-focus-areas-container .objective-list-container h2.objective-side-text,
.objective-list-container .node--type-division.node--view-mode-subscribe .related-scientific-focus-areas-container h2.objective-side-text,
.node--type-branch.node--view-mode-full .related-scientific-focus-areas-container h2.posttitlethumb,
.node--type-branch.node--view-mode-full .related-scientific-focus-areas-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.posttitlethumb,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-branch.node--view-mode-full .related-scientific-focus-areas-container h1.posttitlethumb,
.node--type-branch.node--view-mode-full .related-scientific-focus-areas-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .objective-list-container h1.objective-side-text,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .objective-list-container .node--type-branch.node--view-mode-full .related-scientific-focus-areas-container h1.objective-side-text,
.node--type-branch.node--view-mode-full .related-scientific-focus-areas-container .objective-list-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.objective-side-text,
.objective-list-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-branch.node--view-mode-full .related-scientific-focus-areas-container h1.objective-side-text,
.node--type-branch.node--view-mode-full .related-scientific-focus-areas-container .posttitlethumb.contact-method-label,
.node--type-branch.node--view-mode-full .related-scientific-focus-areas-container .objective-list-container .contact-method-label.objective-side-text,
.objective-list-container .node--type-branch.node--view-mode-full .related-scientific-focus-areas-container .contact-method-label.objective-side-text,
.node--type-branch.node--view-mode-full .related-scientific-focus-areas-container .objective-list-container h2.objective-side-text,
.objective-list-container .node--type-branch.node--view-mode-full .related-scientific-focus-areas-container h2.objective-side-text,
.node--type-branch.node--view-mode-subscribe .related-scientific-focus-areas-container h2.posttitlethumb,
.node--type-branch.node--view-mode-subscribe .related-scientific-focus-areas-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.posttitlethumb,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-branch.node--view-mode-subscribe .related-scientific-focus-areas-container h1.posttitlethumb,
.node--type-branch.node--view-mode-subscribe .related-scientific-focus-areas-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .objective-list-container h1.objective-side-text,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .objective-list-container .node--type-branch.node--view-mode-subscribe .related-scientific-focus-areas-container h1.objective-side-text,
.node--type-branch.node--view-mode-subscribe .related-scientific-focus-areas-container .objective-list-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.objective-side-text,
.objective-list-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-branch.node--view-mode-subscribe .related-scientific-focus-areas-container h1.objective-side-text,
.node--type-branch.node--view-mode-subscribe .related-scientific-focus-areas-container .posttitlethumb.contact-method-label,
.node--type-branch.node--view-mode-subscribe .related-scientific-focus-areas-container .objective-list-container .contact-method-label.objective-side-text,
.objective-list-container .node--type-branch.node--view-mode-subscribe .related-scientific-focus-areas-container .contact-method-label.objective-side-text,
.node--type-branch.node--view-mode-subscribe .related-scientific-focus-areas-container .objective-list-container h2.objective-side-text,
.objective-list-container .node--type-branch.node--view-mode-subscribe .related-scientific-focus-areas-container h2.objective-side-text, .objective-list-container .gray-hr.objective-side-text, .objective-list-container .node--type-division.node--view-mode-full .related-scientific-focus-areas-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.objective-side-text, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-division.node--view-mode-full .related-scientific-focus-areas-container .objective-list-container h1.objective-side-text,
.objective-list-container .node--type-division.node--view-mode-subscribe .related-scientific-focus-areas-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.objective-side-text,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-division.node--view-mode-subscribe .related-scientific-focus-areas-container .objective-list-container h1.objective-side-text,
.objective-list-container .node--type-branch.node--view-mode-full .related-scientific-focus-areas-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.objective-side-text,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-branch.node--view-mode-full .related-scientific-focus-areas-container .objective-list-container h1.objective-side-text,
.objective-list-container .node--type-branch.node--view-mode-subscribe .related-scientific-focus-areas-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.objective-side-text,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-branch.node--view-mode-subscribe .related-scientific-focus-areas-container .objective-list-container h1.objective-side-text, .objective-list-container .news-header-container .objective-side-text.blacksubhead-normal, .news-header-container .objective-list-container .objective-side-text.blacksubhead-normal, .news-header-container .posttitlethumb.blacksubhead-normal {
  padding-bottom: 0.5em;
  margin-top: 1em;
  margin-bottom: 0.5em;
}

/* line 2357, ../sass/_styleguide.scss */
.blue-posttitlethumb {
  color: #3885ca;
  background-color: transparent;
}
/* line 126, ../sass/_mixins.scss */
.blue-posttitlethumb a, .blue-posttitlethumb a:link {
  color: #0051a8;
  text-decoration: underline;
}
/* line 136, ../sass/_mixins.scss */
.blue-posttitlethumb a:visited {
  color: #6f57B5;
}
/* line 145, ../sass/_mixins.scss */
.blue-posttitlethumb a:hover {
  font-weight: bold;
}
/* line 154, ../sass/_mixins.scss */
.blue-posttitlethumb h1, .blue-posttitlethumb .photocredit {
  color: #3885ca;
}

/* line 2362, ../sass/_styleguide.scss */
.blue-posttitlethumb.gray-hr, .blue-posttitlethumb.bannerdate-dark-gray, .blue-posttitlethumb.contact-box, .node--type-division.node--view-mode-full .related-scientific-focus-areas-container h2.blue-posttitlethumb, .node--type-division.node--view-mode-full .related-scientific-focus-areas-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.blue-posttitlethumb, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-division.node--view-mode-full .related-scientific-focus-areas-container h1.blue-posttitlethumb, .node--type-division.node--view-mode-full .related-scientific-focus-areas-container .blue-posttitlethumb.contact-method-label,
.node--type-division.node--view-mode-subscribe .related-scientific-focus-areas-container h2.blue-posttitlethumb,
.node--type-division.node--view-mode-subscribe .related-scientific-focus-areas-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.blue-posttitlethumb,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-division.node--view-mode-subscribe .related-scientific-focus-areas-container h1.blue-posttitlethumb,
.node--type-division.node--view-mode-subscribe .related-scientific-focus-areas-container .blue-posttitlethumb.contact-method-label,
.node--type-branch.node--view-mode-full .related-scientific-focus-areas-container h2.blue-posttitlethumb,
.node--type-branch.node--view-mode-full .related-scientific-focus-areas-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.blue-posttitlethumb,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-branch.node--view-mode-full .related-scientific-focus-areas-container h1.blue-posttitlethumb,
.node--type-branch.node--view-mode-full .related-scientific-focus-areas-container .blue-posttitlethumb.contact-method-label,
.node--type-branch.node--view-mode-subscribe .related-scientific-focus-areas-container h2.blue-posttitlethumb,
.node--type-branch.node--view-mode-subscribe .related-scientific-focus-areas-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.blue-posttitlethumb,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-branch.node--view-mode-subscribe .related-scientific-focus-areas-container h1.blue-posttitlethumb,
.node--type-branch.node--view-mode-subscribe .related-scientific-focus-areas-container .blue-posttitlethumb.contact-method-label, .news-header-container .blue-posttitlethumb.blacksubhead-normal,
.blue-posttitlethumb.contact-box,
.blue-posttitlethumb.blacksubhead-normal,
.blue-posttitlethumb.bannerdate-dark-gray,
.posttitlethumb.bannerdate-dark-gray,
.bannerdate-dark-gray.blue-posttitlethumb,
.objective-list-container .bannerdate-dark-gray.objective-side-text,
.posttitlethumb.contact-box,
.contact-box.blue-posttitlethumb,
.objective-list-container .contact-box.objective-side-text,
.objective-side-text.bannerdate-dark-gray,
.objective-side-text.contact-box,
.objective-side-text.gray-hr,
.objective-side-text.bannerdate-dark-gray,
.objective-side-text.contact-box,
.node--type-division.node--view-mode-full .related-scientific-focus-areas-container h2.objective-side-text,
.node--type-division.node--view-mode-full .related-scientific-focus-areas-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.objective-side-text,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-division.node--view-mode-full .related-scientific-focus-areas-container h1.objective-side-text,
.node--type-division.node--view-mode-full .related-scientific-focus-areas-container .objective-side-text.contact-method-label,
.node--type-division.node--view-mode-subscribe .related-scientific-focus-areas-container h2.objective-side-text,
.node--type-division.node--view-mode-subscribe .related-scientific-focus-areas-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.objective-side-text,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-division.node--view-mode-subscribe .related-scientific-focus-areas-container h1.objective-side-text,
.node--type-division.node--view-mode-subscribe .related-scientific-focus-areas-container .objective-side-text.contact-method-label,
.node--type-branch.node--view-mode-full .related-scientific-focus-areas-container h2.objective-side-text,
.node--type-branch.node--view-mode-full .related-scientific-focus-areas-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.objective-side-text,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-branch.node--view-mode-full .related-scientific-focus-areas-container h1.objective-side-text,
.node--type-branch.node--view-mode-full .related-scientific-focus-areas-container .objective-side-text.contact-method-label,
.node--type-branch.node--view-mode-subscribe .related-scientific-focus-areas-container h2.objective-side-text,
.node--type-branch.node--view-mode-subscribe .related-scientific-focus-areas-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.objective-side-text,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-branch.node--view-mode-subscribe .related-scientific-focus-areas-container h1.objective-side-text,
.node--type-branch.node--view-mode-subscribe .related-scientific-focus-areas-container .objective-side-text.contact-method-label,
.news-header-container .objective-side-text.blacksubhead-normal,
.objective-side-text.blacksubhead-normal {
  margin-top: 1em;
  margin-bottom: 0.5em;
}

/* line 2376, ../sass/_styleguide.scss */
.pubname {
  font-size: 1.125rem;
  color: #0051a8;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-weight: normal;
  margin-bottom: 0.5em;
  display: inline-block;
}
@media all and (min-width: 1440px) {
  /* line 2376, ../sass/_styleguide.scss */
  .pubname {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2376, ../sass/_styleguide.scss */
  .pubname {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2376, ../sass/_styleguide.scss */
  .pubname {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2376, ../sass/_styleguide.scss */
  .pubname {
    font-size: 1rem;
  }
}
/* line 2383, ../sass/_styleguide.scss */
.pubname a {
  display: block;
}

/* line 2388, ../sass/_styleguide.scss */
.lastupdatedlabel {
  font-size: 0.75rem;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-weight: normal;
  font-style: italic;
  color: #222;
}
@media all and (min-width: 1440px) {
  /* line 2388, ../sass/_styleguide.scss */
  .lastupdatedlabel {
    font-size: 0.75rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2388, ../sass/_styleguide.scss */
  .lastupdatedlabel {
    font-size: 0.75rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2388, ../sass/_styleguide.scss */
  .lastupdatedlabel {
    font-size: 0.75rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2388, ../sass/_styleguide.scss */
  .lastupdatedlabel {
    font-size: 0.625rem;
  }
}

/* line 2396, ../sass/_styleguide.scss */
.other-links-box {
  background-color: #f1f7fb;
}

/* line 2399, ../sass/_styleguide.scss */
.researchTopicRelatedLinks {
  padding: 2rem 2rem 0.875rem 4rem;
  background-color: #f1f7fb;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2399, ../sass/_styleguide.scss */
  .researchTopicRelatedLinks {
    padding: 1.5rem 2rem 0.875rem 1.5rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2399, ../sass/_styleguide.scss */
  .researchTopicRelatedLinks {
    padding: 0.875rem;
  }
}
/* line 2409, ../sass/_styleguide.scss */
.researchTopicRelatedLinks ul {
  list-style-type: none;
  padding-left: 1.8rem;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2409, ../sass/_styleguide.scss */
  .researchTopicRelatedLinks ul {
    padding-left: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2409, ../sass/_styleguide.scss */
  .researchTopicRelatedLinks ul {
    padding-left: 0.5rem;
  }
}
/* line 2418, ../sass/_styleguide.scss */
.researchTopicRelatedLinks ul li {
  margin-bottom: 0;
}

/* line 2424, ../sass/_styleguide.scss */
hr {
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  border-bottom: 1px solid #666;
  padding-bottom: -1px;
  border-left: none;
  border-right: none;
  border-top: none;
  margin: 1.5em 0;
}

/* line 2434, ../sass/_styleguide.scss */
.thin-gray-hr, .all-events--landing .view-content .views-row,
.all-news--landing .view-content .views-row, .news-events-news-mentions-container .blackstandardsubhead, .news-events-news-mentions-container .view-nhlbi-featured-news .views-row, .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .nhlbi-publication-details-item,
.node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .nhlbi-publication-details-item {
  border-bottom: 1px #d7d7d7 solid;
  border-color: #d7d7d7;
}

/* line 2438, ../sass/_styleguide.scss */
.thin-light-gray-hr, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row, .node--type-division.node--view-mode-full .field--name-field-programs > .field__item,
.node--type-division.node--view-mode-subscribe .field--name-field-programs > .field__item,
.node--type-branch.node--view-mode-full .field--name-field-programs > .field__item,
.node--type-branch.node--view-mode-subscribe .field--name-field-programs > .field__item, .node--type-news-mention.node--view-mode-full .title-banner.flexcontainer, .node--type-news-mention.node--view-mode-full .title-banner.related-ht-ser-container, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-sfa-card, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-speaker,
.node--type-news-mention.node--view-mode-full .title-banner.field--name-field-executives, .node--type-news-mention.node--view-mode-full .title-banner.standard-card-field, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-advisory-committees, .node--type-news-mention.node--view-mode-full .title-banner.contact-nhlbi-titleblock, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-cards, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-employment-opportunity-car, .node--type-news-mention.node--view-mode-full .title-banner.all-grants-foa-container,
.node--type-news-mention.node--view-mode-full .title-banner.field--name-field-program-officers,
.node--type-news-mention.node--view-mode-full .view-id-nhlbi_grants_foa.view-display-id-block_2 > .title-banner.view-content,
.node--type-news-mention.node--view-mode-full .view-id-nhlbi_grants_foa.view-display-id-block_3 > .title-banner.view-content, .node--type-news-mention.node--view-mode-full .node--type-individual-contact .title-banner.field--name-field-contact-methods, .node--type-individual-contact .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods,
.node--type-news-mention.node--view-mode-full .node--type-division.node--view-mode-full .title-banner.field--name-field-contact-methods,
.node--type-division.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods,
.node--type-news-mention.node--view-mode-full .node--type-division.node--view-mode-subscribe .title-banner.field--name-field-contact-methods,
.node--type-division.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods,
.node--type-news-mention.node--view-mode-full .node--type-branch.node--view-mode-full .title-banner.field--name-field-contact-methods,
.node--type-branch.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods,
.node--type-news-mention.node--view-mode-full .node--type-branch.node--view-mode-subscribe .title-banner.field--name-field-contact-methods,
.node--type-branch.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods,
.node--type-news-mention.node--view-mode-full .node--type-general.node--view-mode-full .title-banner.field--name-field-contact-methods,
.node--type-general.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods,
.node--type-news-mention.node--view-mode-full .node--type-general.node--view-mode-subscribe .title-banner.field--name-field-contact-methods,
.node--type-general.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods,
.node--type-news-mention.node--view-mode-full .node--type-health-education-initiative.node--view-mode-full .title-banner.field--name-field-contact-methods,
.node--type-health-education-initiative.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods,
.node--type-news-mention.node--view-mode-full .node--type-health-education-initiative.node--view-mode-subscribe .title-banner.field--name-field-contact-methods,
.node--type-health-education-initiative.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods, .node--type-news-mention.node--view-mode-full .node--type-committee .title-banner.field--name-field-card-text, .node--type-committee .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-card-text, .node--type-news-mention.node--view-mode-full .news-and-events--landing .title-banner.landing-social, .news-and-events--landing .node--type-news-mention.node--view-mode-full .title-banner.landing-social, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-sfa-cards, .node--type-news-mention.node--view-mode-full .title-banner.locationMap.contact-location-map-container, .node--type-news-mention.node--view-mode-full .title-banner.locationMap, .node--type-news-mention.node--view-mode-full .title-banner.grants-and-training-card-wrapper, .node--type-news-mention.node--view-mode-full .title-banner.about-nhlbi-division-card-wrapper, .node--type-news-mention.node--view-mode-full .title-banner.hei-tools-icon-card-wrapper, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-grants-and-training-card, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-division-card, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-tool-icon-card, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-promotional-card, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-sv-promotional-cards, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-about-nhlbi-promotional-ca, .node--type-news-mention.node--view-mode-full .title-banner.strategic-vision-titleblock, .node--type-news-mention.node--view-mode-full .title-banner.ppg-titleblock-wrapper, .node--type-news-mention.node--view-mode-full .title-banner.ppg-guidelines-card-wrapper, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-human-subject-cards, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-section-card, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-highlight-card, .node--type-news-mention.node--view-mode-full .title-banner.health-topic-teaser-container, .node--type-news-mention.node--view-mode-full .title-banner.about-nhlbi-our-mission-wrapper, .node--type-news-mention.node--view-mode-full .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .title-banner.director-bioCard, .about-nhlbi-our-mission-wrapper .node--type-news-mention.node--view-mode-full .field--name-field-leadership > .title-banner.director-bioCard, .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-consumer-nhlbi-publ, .nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-health-consumer-nhlbi-publ,
.node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-professionals-nhlbi,
.nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-health-professionals-nhlbi, .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .title-banner.standard-teaser, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser,
.node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .title-banner.standard-teaser,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser, .node--type-news-mention.node--view-mode-full .publicationsBlock.view-nhlbi-publications > .title-banner.view-content,
.node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-publications, .node--type-news-mention.node--view-mode-full .healthEducationBlock .title-banner.standard-teaser, .healthEducationBlock .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser, .node--type-news-mention.node--view-mode-full .systematicEvidenceReviewsBlock .title-banner.view-content, .systematicEvidenceReviewsBlock .node--type-news-mention.node--view-mode-full .title-banner.view-content,
.node--type-news-mention.node--view-mode-full .clinicalPracticeGuidelinesBlock .title-banner.view-content,
.clinicalPracticeGuidelinesBlock .node--type-news-mention.node--view-mode-full .title-banner.view-content,
.node--type-news-mention.node--view-mode-full .publicationsAndFactSheetsBlock .title-banner.view-content,
.publicationsAndFactSheetsBlock .node--type-news-mention.node--view-mode-full .title-banner.view-content, .node--type-news-mention.node--view-mode-full .title-banner.rtFlexContainer, .node--type-news-mention.node--view-mode-full .node--type-research-topic .title-banner.field--name-field-science-supplemental-page, .node--type-research-topic .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-science-supplemental-page, .node--type-news-mention.node--view-mode-full .node--type-research-topic .title-banner.researchTopicPublications, .node--type-research-topic .node--type-news-mention.node--view-mode-full .title-banner.researchTopicPublications, .node--type-news-mention.node--view-mode-full .node--type-research-topic .field--name-field-content > .field__item article.title-banner.listTeaserCard, .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-full article.title-banner.listTeaserCard, .node--type-news-mention.node--view-mode-full .node--type-research-topic .field--name-field-content > .field__item article.title-banner.standard-teaser, .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-full article.title-banner.standard-teaser,
.node--type-news-mention.node--view-mode-full .node--type-research-topic .field--name-field-content > .field__item article.title-banner.newsEventsCard,
.node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-full article.title-banner.newsEventsCard, .node--type-news-mention.node--view-mode-full .title-banner.esi-feature-card, .node--type-news-mention.node--view-mode-full .title-banner.featured-science-instance-teaser-container, .node--type-news-mention.node--view-mode-full .title-banner.sfa-teaser-container, .node--type-news-mention.node--view-mode-full .training-opportunity-card .title-banner.field--name-field-associated-people, .training-opportunity-card .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-associated-people, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-featured-training-opportun, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-career-stages, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-workforce-development-card, .node--type-news-mention.node--view-mode-full .title-banner.node--type-update.node--view-mode-executive-teaser, .node--type-news-mention.node--view-mode-full .title-banner.news-and-events-titleblock, .node--type-news-mention.node--view-mode-full .contact-box > .title-banner.field--name-field-contact-methods, .node--type-news-mention.node--view-mode-full .title-banner.leadership-container, .node--type-news-mention.node--view-mode-full .leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership, .leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-additional-leadership, .node--type-news-mention.node--view-mode-full .title-banner.branch-leadership-container, .node--type-news-mention.node--view-mode-full .branch-leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership, .branch-leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-additional-leadership, .node--type-news-mention.node--view-mode-full .node--type-general .title-banner.field--name-field-related-publications, .node--type-general .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-publications, .node--type-news-mention.node--view-mode-full .node--type-general .title-banner.field--name-field-general-publications-rlt, .node--type-general .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-general-publications-rlt, .node--type-news-mention.node--view-mode-full .node--type-general .field--name-field-general-publications-rlt > .field__item .title-banner.standard-teaser, .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser, .node--type-news-mention.node--view-mode-full .node--type-general .field--name-field-related-publications > .field__item .title-banner.standard-teaser, .node--type-general .field--name-field-related-publications > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser, .node--type-news-mention.node--view-mode-full .title-banner.objective-text-container, .node--type-news-mention.node--view-mode-full .title-banner.objective-list-container, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-goal-card, .node--type-news-mention.node--view-mode-full .title-banner.strategic-vision-landing-goals-wrapper, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .title-banner.striped-container-wrapper, .node--type-principal-investigator .node--type-news-mention.node--view-mode-full .title-banner.striped-container-wrapper, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .title-banner.striped-container, .node--type-principal-investigator .node--type-news-mention.node--view-mode-full .title-banner.striped-container, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article.title-banner, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-news-mention.node--view-mode-full article.title-banner,
.node--type-news-mention.node--view-mode-full .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article.title-banner,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-news-mention.node--view-mode-full article.title-banner, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .title-banner.standard-teaser.node--view-mode-short-teaser, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser.node--view-mode-short-teaser, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-awards, .node--type-news-mention.node--view-mode-full .title-banner.registerSocialContainer, .node--type-news-mention.node--view-mode-full .title-banner.eventdatesLocationType, .node--type-news-mention.node--view-mode-full .title-banner.news-article-container, .node--type-news-mention.node--view-mode-full .title-banner.node--type-feature-article.node--view-mode-press-release-teaser,
.node--type-news-mention.node--view-mode-full .title-banner.node--type-press-release.node--view-mode-press-release-teaser,
.node--type-news-mention.node--view-mode-full .title-banner.node--type-events.node--view-mode-press-release-teaser,
.node--type-news-mention.node--view-mode-full .title-banner.node--type-feature-article.node--view-mode-hp-press-release-teaser,
.node--type-news-mention.node--view-mode-full .title-banner.node--type-press-release.node--view-mode-hp-press-release-teaser,
.node--type-news-mention.node--view-mode-full .title-banner.node--type-events.node--view-mode-hp-press-release-teaser,
.node--type-news-mention.node--view-mode-full .title-banner.node--type-news-mention.node--view-mode-hp-press-release-teaser, .node--type-news-mention.node--view-mode-full .title-banner.news-header-container, .node--type-news-mention.node--view-mode-full .contacts-container .title-banner.field--name-field-contacts, .contacts-container .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contacts, .node--type-news-mention.node--view-mode-full .publicationsBox .title-banner.field--name-field-related-publications, .publicationsBox .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-publications, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-primary-featured-item, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-additional-featured-items, .node--type-news-mention.node--view-mode-full .title-banner.homepage-health-topics-container, .node--type-news-mention.node--view-mode-full .title-banner.homepage-mission-areas-container, .node--type-news-mention.node--view-mode-full .title-banner.homepage-location-container, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-alumni, .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-full .title-banner.nhlbi-publication-details-container, .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.nhlbi-publication-details-container,
.node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.nhlbi-publication-details-container, .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications, .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications,
.node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications, .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser,
.node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser,
.node--type-news-mention.node--view-mode-subscribe .title-banner.flexcontainer,
.node--type-news-mention.node--view-mode-subscribe .title-banner.related-ht-ser-container,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-sfa-card,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-speaker,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-executives,
.node--type-news-mention.node--view-mode-subscribe .title-banner.standard-card-field,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-advisory-committees,
.node--type-news-mention.node--view-mode-subscribe .title-banner.contact-nhlbi-titleblock,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-cards,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-employment-opportunity-car,
.node--type-news-mention.node--view-mode-subscribe .title-banner.all-grants-foa-container,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-program-officers,
.node--type-news-mention.node--view-mode-subscribe .view-id-nhlbi_grants_foa.view-display-id-block_2 > .title-banner.view-content,
.node--type-news-mention.node--view-mode-subscribe .view-id-nhlbi_grants_foa.view-display-id-block_3 > .title-banner.view-content,
.node--type-news-mention.node--view-mode-subscribe .node--type-individual-contact .title-banner.field--name-field-contact-methods,
.node--type-individual-contact .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods,
.node--type-news-mention.node--view-mode-subscribe .node--type-division.node--view-mode-full .title-banner.field--name-field-contact-methods,
.node--type-division.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods,
.node--type-news-mention.node--view-mode-subscribe .node--type-division.node--view-mode-subscribe .title-banner.field--name-field-contact-methods,
.node--type-division.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods,
.node--type-news-mention.node--view-mode-subscribe .node--type-branch.node--view-mode-full .title-banner.field--name-field-contact-methods,
.node--type-branch.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods,
.node--type-news-mention.node--view-mode-subscribe .node--type-branch.node--view-mode-subscribe .title-banner.field--name-field-contact-methods,
.node--type-branch.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods,
.node--type-news-mention.node--view-mode-subscribe .node--type-general.node--view-mode-full .title-banner.field--name-field-contact-methods,
.node--type-general.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods,
.node--type-news-mention.node--view-mode-subscribe .node--type-general.node--view-mode-subscribe .title-banner.field--name-field-contact-methods,
.node--type-general.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods,
.node--type-news-mention.node--view-mode-subscribe .node--type-health-education-initiative.node--view-mode-full .title-banner.field--name-field-contact-methods,
.node--type-health-education-initiative.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods,
.node--type-news-mention.node--view-mode-subscribe .node--type-health-education-initiative.node--view-mode-subscribe .title-banner.field--name-field-contact-methods,
.node--type-health-education-initiative.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods,
.node--type-news-mention.node--view-mode-subscribe .node--type-committee .title-banner.field--name-field-card-text,
.node--type-committee .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-card-text,
.node--type-news-mention.node--view-mode-subscribe .news-and-events--landing .title-banner.landing-social,
.news-and-events--landing .node--type-news-mention.node--view-mode-subscribe .title-banner.landing-social,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-sfa-cards,
.node--type-news-mention.node--view-mode-subscribe .title-banner.locationMap.contact-location-map-container,
.node--type-news-mention.node--view-mode-subscribe .title-banner.locationMap,
.node--type-news-mention.node--view-mode-subscribe .title-banner.grants-and-training-card-wrapper,
.node--type-news-mention.node--view-mode-subscribe .title-banner.about-nhlbi-division-card-wrapper,
.node--type-news-mention.node--view-mode-subscribe .title-banner.hei-tools-icon-card-wrapper,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-grants-and-training-card,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-division-card,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-tool-icon-card,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-promotional-card,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-sv-promotional-cards,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-about-nhlbi-promotional-ca,
.node--type-news-mention.node--view-mode-subscribe .title-banner.strategic-vision-titleblock,
.node--type-news-mention.node--view-mode-subscribe .title-banner.ppg-titleblock-wrapper,
.node--type-news-mention.node--view-mode-subscribe .title-banner.ppg-guidelines-card-wrapper,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-human-subject-cards,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-section-card,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-highlight-card,
.node--type-news-mention.node--view-mode-subscribe .title-banner.health-topic-teaser-container,
.node--type-news-mention.node--view-mode-subscribe .title-banner.about-nhlbi-our-mission-wrapper,
.node--type-news-mention.node--view-mode-subscribe .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .title-banner.director-bioCard,
.about-nhlbi-our-mission-wrapper .node--type-news-mention.node--view-mode-subscribe .field--name-field-leadership > .title-banner.director-bioCard,
.node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-consumer-nhlbi-publ,
.nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-health-consumer-nhlbi-publ,
.node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-professionals-nhlbi,
.nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-health-professionals-nhlbi,
.node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .title-banner.standard-teaser,
.nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser,
.node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .title-banner.standard-teaser,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser,
.node--type-news-mention.node--view-mode-subscribe .publicationsBlock.view-nhlbi-publications > .title-banner.view-content,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-publications,
.node--type-news-mention.node--view-mode-subscribe .healthEducationBlock .title-banner.standard-teaser,
.healthEducationBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser,
.node--type-news-mention.node--view-mode-subscribe .systematicEvidenceReviewsBlock .title-banner.view-content,
.systematicEvidenceReviewsBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.view-content,
.node--type-news-mention.node--view-mode-subscribe .clinicalPracticeGuidelinesBlock .title-banner.view-content,
.clinicalPracticeGuidelinesBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.view-content,
.node--type-news-mention.node--view-mode-subscribe .publicationsAndFactSheetsBlock .title-banner.view-content,
.publicationsAndFactSheetsBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.view-content,
.node--type-news-mention.node--view-mode-subscribe .title-banner.rtFlexContainer,
.node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .title-banner.field--name-field-science-supplemental-page,
.node--type-research-topic .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-science-supplemental-page,
.node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .title-banner.researchTopicPublications,
.node--type-research-topic .node--type-news-mention.node--view-mode-subscribe .title-banner.researchTopicPublications,
.node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .field--name-field-content > .field__item article.title-banner.listTeaserCard,
.node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner.listTeaserCard,
.node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .field--name-field-content > .field__item article.title-banner.standard-teaser,
.node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner.standard-teaser,
.node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .field--name-field-content > .field__item article.title-banner.newsEventsCard,
.node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner.newsEventsCard,
.node--type-news-mention.node--view-mode-subscribe .title-banner.esi-feature-card,
.node--type-news-mention.node--view-mode-subscribe .title-banner.featured-science-instance-teaser-container,
.node--type-news-mention.node--view-mode-subscribe .title-banner.sfa-teaser-container,
.node--type-news-mention.node--view-mode-subscribe .training-opportunity-card .title-banner.field--name-field-associated-people,
.training-opportunity-card .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-associated-people,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-featured-training-opportun,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-career-stages,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-workforce-development-card,
.node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-update.node--view-mode-executive-teaser,
.node--type-news-mention.node--view-mode-subscribe .title-banner.news-and-events-titleblock,
.node--type-news-mention.node--view-mode-subscribe .contact-box > .title-banner.field--name-field-contact-methods,
.node--type-news-mention.node--view-mode-subscribe .title-banner.leadership-container,
.node--type-news-mention.node--view-mode-subscribe .leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership,
.leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-additional-leadership,
.node--type-news-mention.node--view-mode-subscribe .title-banner.branch-leadership-container,
.node--type-news-mention.node--view-mode-subscribe .branch-leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership,
.branch-leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-additional-leadership,
.node--type-news-mention.node--view-mode-subscribe .node--type-general .title-banner.field--name-field-related-publications,
.node--type-general .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-publications,
.node--type-news-mention.node--view-mode-subscribe .node--type-general .title-banner.field--name-field-general-publications-rlt,
.node--type-general .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-general-publications-rlt,
.node--type-news-mention.node--view-mode-subscribe .node--type-general .field--name-field-general-publications-rlt > .field__item .title-banner.standard-teaser,
.node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser,
.node--type-news-mention.node--view-mode-subscribe .node--type-general .field--name-field-related-publications > .field__item .title-banner.standard-teaser,
.node--type-general .field--name-field-related-publications > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser,
.node--type-news-mention.node--view-mode-subscribe .title-banner.objective-text-container,
.node--type-news-mention.node--view-mode-subscribe .title-banner.objective-list-container,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-goal-card,
.node--type-news-mention.node--view-mode-subscribe .title-banner.strategic-vision-landing-goals-wrapper,
.node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .title-banner.striped-container-wrapper,
.node--type-principal-investigator .node--type-news-mention.node--view-mode-subscribe .title-banner.striped-container-wrapper,
.node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .title-banner.striped-container,
.node--type-principal-investigator .node--type-news-mention.node--view-mode-subscribe .title-banner.striped-container,
.node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article.title-banner,
.node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-news-mention.node--view-mode-subscribe article.title-banner,
.node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article.title-banner,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-news-mention.node--view-mode-subscribe article.title-banner,
.node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .title-banner.standard-teaser.node--view-mode-short-teaser,
.node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser.node--view-mode-short-teaser,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-awards,
.node--type-news-mention.node--view-mode-subscribe .title-banner.registerSocialContainer,
.node--type-news-mention.node--view-mode-subscribe .title-banner.eventdatesLocationType,
.node--type-news-mention.node--view-mode-subscribe .title-banner.news-article-container,
.node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-feature-article.node--view-mode-press-release-teaser,
.node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-press-release.node--view-mode-press-release-teaser,
.node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-events.node--view-mode-press-release-teaser,
.node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-feature-article.node--view-mode-hp-press-release-teaser,
.node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-press-release.node--view-mode-hp-press-release-teaser,
.node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-events.node--view-mode-hp-press-release-teaser,
.node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-news-mention.node--view-mode-hp-press-release-teaser,
.node--type-news-mention.node--view-mode-subscribe .title-banner.news-header-container,
.node--type-news-mention.node--view-mode-subscribe .contacts-container .title-banner.field--name-field-contacts,
.contacts-container .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contacts,
.node--type-news-mention.node--view-mode-subscribe .publicationsBox .title-banner.field--name-field-related-publications,
.publicationsBox .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-publications,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-primary-featured-item,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-additional-featured-items,
.node--type-news-mention.node--view-mode-subscribe .title-banner.homepage-health-topics-container,
.node--type-news-mention.node--view-mode-subscribe .title-banner.homepage-mission-areas-container,
.node--type-news-mention.node--view-mode-subscribe .title-banner.homepage-location-container,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-alumni,
.node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-full .title-banner.nhlbi-publication-details-container,
.node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container,
.node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container,
.node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications,
.node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications,
.node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications,
.node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser,
.node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser,
.node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser, .node--type-news-mention.node--view-mode-full .field--name-field-media-coverage > .field__item,
.node--type-news-mention.node--view-mode-subscribe .field--name-field-media-coverage > .field__item {
  border-bottom: 1px #979797 solid;
  border-color: #979797;
}

/* line 2442, ../sass/_styleguide.scss */
.gray-hr, .bannerdate-dark-gray, div.bannerdate-dark-gray, .contact-box, .node--type-division.node--view-mode-full .related-scientific-focus-areas-container h2, .node--type-division.node--view-mode-full .related-scientific-focus-areas-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-division.node--view-mode-full .related-scientific-focus-areas-container h1, .node--type-division.node--view-mode-full .related-scientific-focus-areas-container .contact-method-label,
.node--type-division.node--view-mode-subscribe .related-scientific-focus-areas-container h2,
.node--type-division.node--view-mode-subscribe .related-scientific-focus-areas-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-division.node--view-mode-subscribe .related-scientific-focus-areas-container h1,
.node--type-division.node--view-mode-subscribe .related-scientific-focus-areas-container .contact-method-label,
.node--type-branch.node--view-mode-full .related-scientific-focus-areas-container h2,
.node--type-branch.node--view-mode-full .related-scientific-focus-areas-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-branch.node--view-mode-full .related-scientific-focus-areas-container h1,
.node--type-branch.node--view-mode-full .related-scientific-focus-areas-container .contact-method-label,
.node--type-branch.node--view-mode-subscribe .related-scientific-focus-areas-container h2,
.node--type-branch.node--view-mode-subscribe .related-scientific-focus-areas-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-branch.node--view-mode-subscribe .related-scientific-focus-areas-container h1,
.node--type-branch.node--view-mode-subscribe .related-scientific-focus-areas-container .contact-method-label, .news-header-container .blacksubhead-normal {
  border-bottom: 3px #d7d7d7 solid;
  border-color: #d7d7d7;
}

/* line 2446, ../sass/_styleguide.scss */
.darker-gray-hr, .related-ht-press-container .card .posttitlethumb, .related-ht-press-container .card .blue-posttitlethumb, .related-ht-press-container .card .objective-list-container .objective-side-text, .objective-list-container .related-ht-press-container .card .objective-side-text {
  border-bottom: 2px #aeafb0 solid;
  border-color: #aeafb0;
}

/* line 2451, ../sass/_styleguide.scss */
.blue-hr, .contact-method-label, .contacts-container h2, .contacts-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .contacts-container h1, .contacts-container .contact-method-label {
  border-bottom: 3px #d7e7f4 solid;
  border-color: #d7e7f4;
}

/* line 2457, ../sass/_styleguide.scss */
.audiotitle {
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-weight: normal;
  font-size: 0.875rem;
  color: #102d66;
}

/* line 2464, ../sass/_styleguide.scss */
.tracktitle, .media-nhlbi-audio.flexcontainer audio, .media-nhlbi-audio.related-ht-ser-container audio, .media-nhlbi-audio.field--name-field-sfa-card audio, .media-nhlbi-audio.field--name-field-speaker audio,
.media-nhlbi-audio.field--name-field-executives audio, .media-nhlbi-audio.standard-card-field audio, .media-nhlbi-audio.field--name-field-advisory-committees audio, .media-nhlbi-audio.contact-nhlbi-titleblock audio, .media-nhlbi-audio.field--name-field-contact-cards audio, .media-nhlbi-audio.field--name-field-employment-opportunity-car audio, .media-nhlbi-audio.all-grants-foa-container audio,
.media-nhlbi-audio.field--name-field-program-officers audio,
.view-id-nhlbi_grants_foa.view-display-id-block_2 > .media-nhlbi-audio.view-content audio,
.view-id-nhlbi_grants_foa.view-display-id-block_3 > .media-nhlbi-audio.view-content audio, .node--type-individual-contact .media-nhlbi-audio.field--name-field-contact-methods audio,
.node--type-division.node--view-mode-full .media-nhlbi-audio.field--name-field-contact-methods audio,
.node--type-division.node--view-mode-subscribe .media-nhlbi-audio.field--name-field-contact-methods audio,
.node--type-branch.node--view-mode-full .media-nhlbi-audio.field--name-field-contact-methods audio,
.node--type-branch.node--view-mode-subscribe .media-nhlbi-audio.field--name-field-contact-methods audio,
.node--type-general.node--view-mode-full .media-nhlbi-audio.field--name-field-contact-methods audio,
.node--type-general.node--view-mode-subscribe .media-nhlbi-audio.field--name-field-contact-methods audio,
.node--type-health-education-initiative.node--view-mode-full .media-nhlbi-audio.field--name-field-contact-methods audio,
.node--type-health-education-initiative.node--view-mode-subscribe .media-nhlbi-audio.field--name-field-contact-methods audio, .node--type-committee .media-nhlbi-audio.field--name-field-card-text audio, .news-and-events--landing .media-nhlbi-audio.landing-social audio, .media-nhlbi-audio.field--name-field-sfa-cards audio, .media-nhlbi-audio.locationMap.contact-location-map-container audio, .media-nhlbi-audio.locationMap audio, .media-nhlbi-audio.grants-and-training-card-wrapper audio, .media-nhlbi-audio.about-nhlbi-division-card-wrapper audio, .media-nhlbi-audio.hei-tools-icon-card-wrapper audio, .media-nhlbi-audio.field--name-field-grants-and-training-card audio, .media-nhlbi-audio.field--name-field-division-card audio, .media-nhlbi-audio.field--name-field-tool-icon-card audio, .media-nhlbi-audio.field--name-field-promotional-card audio, .media-nhlbi-audio.field--name-field-sv-promotional-cards audio, .media-nhlbi-audio.field--name-field-about-nhlbi-promotional-ca audio, .media-nhlbi-audio.strategic-vision-titleblock audio, .media-nhlbi-audio.ppg-titleblock-wrapper audio, .media-nhlbi-audio.ppg-guidelines-card-wrapper audio, .media-nhlbi-audio.field--name-field-human-subject-cards audio, .media-nhlbi-audio.field--name-field-section-card audio, .media-nhlbi-audio.field--name-field-highlight-card audio, .media-nhlbi-audio.health-topic-teaser-container audio, .media-nhlbi-audio.about-nhlbi-our-mission-wrapper audio, .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .media-nhlbi-audio.director-bioCard audio, .nhlbi-publications-and-resources--landing .media-nhlbi-audio.field--name-field-health-consumer-nhlbi-publ audio,
.nhlbi-publications-and-resources--landing .media-nhlbi-audio.field--name-field-health-professionals-nhlbi audio, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .media-nhlbi-audio.standard-teaser audio,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .media-nhlbi-audio.standard-teaser audio, .publicationsBlock.view-nhlbi-publications > .media-nhlbi-audio.view-content audio,
.media-nhlbi-audio.field--name-field-related-publications audio, .healthEducationBlock .media-nhlbi-audio.standard-teaser audio, .systematicEvidenceReviewsBlock .media-nhlbi-audio.view-content audio,
.clinicalPracticeGuidelinesBlock .media-nhlbi-audio.view-content audio,
.publicationsAndFactSheetsBlock .media-nhlbi-audio.view-content audio, .media-nhlbi-audio.rtFlexContainer audio, .node--type-research-topic .media-nhlbi-audio.field--name-field-science-supplemental-page audio, .node--type-research-topic .media-nhlbi-audio.researchTopicPublications audio, .node--type-research-topic .field--name-field-content > .field__item article.media-nhlbi-audio.listTeaserCard audio, .node--type-research-topic .field--name-field-content > .field__item article.media-nhlbi-audio.standard-teaser audio,
.node--type-research-topic .field--name-field-content > .field__item article.media-nhlbi-audio.newsEventsCard audio, .media-nhlbi-audio.esi-feature-card audio, .media-nhlbi-audio.featured-science-instance-teaser-container audio, .media-nhlbi-audio.sfa-teaser-container audio, .training-opportunity-card .media-nhlbi-audio.field--name-field-associated-people audio, .media-nhlbi-audio.field--name-field-featured-training-opportun audio, .media-nhlbi-audio.field--name-field-career-stages audio, .media-nhlbi-audio.field--name-field-workforce-development-card audio, .media-nhlbi-audio.node--type-update.node--view-mode-executive-teaser audio, .media-nhlbi-audio.news-and-events-titleblock audio, .contact-box > .media-nhlbi-audio.field--name-field-contact-methods audio, .media-nhlbi-audio.leadership-container audio, .leadership-container .leadership-deputy-director-container .media-nhlbi-audio.field--name-field-additional-leadership audio, .media-nhlbi-audio.branch-leadership-container audio, .branch-leadership-container .leadership-deputy-director-container .media-nhlbi-audio.field--name-field-additional-leadership audio, .node--type-general .media-nhlbi-audio.field--name-field-related-publications audio, .node--type-general .media-nhlbi-audio.field--name-field-general-publications-rlt audio, .node--type-general .field--name-field-general-publications-rlt > .field__item .media-nhlbi-audio.standard-teaser audio, .node--type-general .field--name-field-related-publications > .field__item .media-nhlbi-audio.standard-teaser audio, .media-nhlbi-audio.objective-text-container audio, .media-nhlbi-audio.objective-list-container audio, .media-nhlbi-audio.field--name-field-goal-card audio, .media-nhlbi-audio.strategic-vision-landing-goals-wrapper audio, .node--type-principal-investigator .media-nhlbi-audio.striped-container-wrapper audio, .node--type-principal-investigator .media-nhlbi-audio.striped-container audio, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article.media-nhlbi-audio audio,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article.media-nhlbi-audio audio, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .media-nhlbi-audio.standard-teaser.node--view-mode-short-teaser audio, .media-nhlbi-audio.field--name-field-awards audio, .media-nhlbi-audio.registerSocialContainer audio, .media-nhlbi-audio.eventdatesLocationType audio, .media-nhlbi-audio.news-article-container audio, .media-nhlbi-audio.node--type-feature-article.node--view-mode-press-release-teaser audio,
.media-nhlbi-audio.node--type-press-release.node--view-mode-press-release-teaser audio,
.media-nhlbi-audio.node--type-events.node--view-mode-press-release-teaser audio,
.media-nhlbi-audio.node--type-feature-article.node--view-mode-hp-press-release-teaser audio,
.media-nhlbi-audio.node--type-press-release.node--view-mode-hp-press-release-teaser audio,
.media-nhlbi-audio.node--type-events.node--view-mode-hp-press-release-teaser audio,
.media-nhlbi-audio.node--type-news-mention.node--view-mode-hp-press-release-teaser audio, .media-nhlbi-audio.news-header-container audio, .contacts-container .media-nhlbi-audio.field--name-field-contacts audio, .publicationsBox .media-nhlbi-audio.field--name-field-related-publications audio, .media-nhlbi-audio.field--name-field-primary-featured-item audio, .media-nhlbi-audio.field--name-field-additional-featured-items audio, .media-nhlbi-audio.homepage-health-topics-container audio, .media-nhlbi-audio.homepage-mission-areas-container audio, .media-nhlbi-audio.homepage-location-container audio, .media-nhlbi-audio.field--name-field-alumni audio, .node--type-nhlbi-publication.node--view-mode-full .media-nhlbi-audio.nhlbi-publication-details-container audio,
.node--type-nhlbi-publication.node--view-mode-subscribe .media-nhlbi-audio.nhlbi-publication-details-container audio, .node--type-nhlbi-publication.node--view-mode-full .media-nhlbi-audio.field--name-field-related-nhlbi-publications audio,
.node--type-nhlbi-publication.node--view-mode-subscribe .media-nhlbi-audio.field--name-field-related-nhlbi-publications audio, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .media-nhlbi-audio.standard-teaser audio,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .media-nhlbi-audio.standard-teaser audio {
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-weight: normal;
  font-size: 0.625rem;
  color: #222;
}

/* line 2471, ../sass/_styleguide.scss */
.media-nhlbi-audio.flexcontainer, .media-nhlbi-audio.related-ht-ser-container, .media-nhlbi-audio.field--name-field-sfa-card, .media-nhlbi-audio.field--name-field-speaker,
.media-nhlbi-audio.field--name-field-executives, .media-nhlbi-audio.standard-card-field, .media-nhlbi-audio.field--name-field-advisory-committees, .media-nhlbi-audio.contact-nhlbi-titleblock, .media-nhlbi-audio.field--name-field-contact-cards, .media-nhlbi-audio.field--name-field-employment-opportunity-car, .media-nhlbi-audio.all-grants-foa-container,
.media-nhlbi-audio.field--name-field-program-officers,
.view-id-nhlbi_grants_foa.view-display-id-block_2 > .media-nhlbi-audio.view-content,
.view-id-nhlbi_grants_foa.view-display-id-block_3 > .media-nhlbi-audio.view-content, .node--type-individual-contact .media-nhlbi-audio.field--name-field-contact-methods,
.node--type-division.node--view-mode-full .media-nhlbi-audio.field--name-field-contact-methods,
.node--type-division.node--view-mode-subscribe .media-nhlbi-audio.field--name-field-contact-methods,
.node--type-branch.node--view-mode-full .media-nhlbi-audio.field--name-field-contact-methods,
.node--type-branch.node--view-mode-subscribe .media-nhlbi-audio.field--name-field-contact-methods,
.node--type-general.node--view-mode-full .media-nhlbi-audio.field--name-field-contact-methods,
.node--type-general.node--view-mode-subscribe .media-nhlbi-audio.field--name-field-contact-methods,
.node--type-health-education-initiative.node--view-mode-full .media-nhlbi-audio.field--name-field-contact-methods,
.node--type-health-education-initiative.node--view-mode-subscribe .media-nhlbi-audio.field--name-field-contact-methods, .node--type-committee .media-nhlbi-audio.field--name-field-card-text, .news-and-events--landing .media-nhlbi-audio.landing-social, .media-nhlbi-audio.field--name-field-sfa-cards, .media-nhlbi-audio.locationMap.contact-location-map-container, .media-nhlbi-audio.locationMap, .media-nhlbi-audio.grants-and-training-card-wrapper, .media-nhlbi-audio.about-nhlbi-division-card-wrapper, .media-nhlbi-audio.hei-tools-icon-card-wrapper, .media-nhlbi-audio.field--name-field-grants-and-training-card, .media-nhlbi-audio.field--name-field-division-card, .media-nhlbi-audio.field--name-field-tool-icon-card, .media-nhlbi-audio.field--name-field-promotional-card, .media-nhlbi-audio.field--name-field-sv-promotional-cards, .media-nhlbi-audio.field--name-field-about-nhlbi-promotional-ca, .media-nhlbi-audio.strategic-vision-titleblock, .media-nhlbi-audio.ppg-titleblock-wrapper, .media-nhlbi-audio.ppg-guidelines-card-wrapper, .media-nhlbi-audio.field--name-field-human-subject-cards, .media-nhlbi-audio.field--name-field-section-card, .media-nhlbi-audio.field--name-field-highlight-card, .media-nhlbi-audio.health-topic-teaser-container, .media-nhlbi-audio.about-nhlbi-our-mission-wrapper, .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .media-nhlbi-audio.director-bioCard, .nhlbi-publications-and-resources--landing .media-nhlbi-audio.field--name-field-health-consumer-nhlbi-publ,
.nhlbi-publications-and-resources--landing .media-nhlbi-audio.field--name-field-health-professionals-nhlbi, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .media-nhlbi-audio.standard-teaser,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .media-nhlbi-audio.standard-teaser, .publicationsBlock.view-nhlbi-publications > .media-nhlbi-audio.view-content,
.media-nhlbi-audio.field--name-field-related-publications, .healthEducationBlock .media-nhlbi-audio.standard-teaser, .systematicEvidenceReviewsBlock .media-nhlbi-audio.view-content,
.clinicalPracticeGuidelinesBlock .media-nhlbi-audio.view-content,
.publicationsAndFactSheetsBlock .media-nhlbi-audio.view-content, .media-nhlbi-audio.rtFlexContainer, .node--type-research-topic .media-nhlbi-audio.field--name-field-science-supplemental-page, .node--type-research-topic .media-nhlbi-audio.researchTopicPublications, .node--type-research-topic .field--name-field-content > .field__item article.media-nhlbi-audio.listTeaserCard, .node--type-research-topic .field--name-field-content > .field__item article.media-nhlbi-audio.standard-teaser,
.node--type-research-topic .field--name-field-content > .field__item article.media-nhlbi-audio.newsEventsCard, .media-nhlbi-audio.esi-feature-card, .media-nhlbi-audio.featured-science-instance-teaser-container, .media-nhlbi-audio.sfa-teaser-container, .training-opportunity-card .media-nhlbi-audio.field--name-field-associated-people, .media-nhlbi-audio.field--name-field-featured-training-opportun, .media-nhlbi-audio.field--name-field-career-stages, .media-nhlbi-audio.field--name-field-workforce-development-card, .media-nhlbi-audio.node--type-update.node--view-mode-executive-teaser, .media-nhlbi-audio.news-and-events-titleblock, .contact-box > .media-nhlbi-audio.field--name-field-contact-methods, .media-nhlbi-audio.leadership-container, .leadership-container .leadership-deputy-director-container .media-nhlbi-audio.field--name-field-additional-leadership, .media-nhlbi-audio.branch-leadership-container, .branch-leadership-container .leadership-deputy-director-container .media-nhlbi-audio.field--name-field-additional-leadership, .node--type-general .media-nhlbi-audio.field--name-field-related-publications, .node--type-general .media-nhlbi-audio.field--name-field-general-publications-rlt, .node--type-general .field--name-field-general-publications-rlt > .field__item .media-nhlbi-audio.standard-teaser, .node--type-general .field--name-field-related-publications > .field__item .media-nhlbi-audio.standard-teaser, .media-nhlbi-audio.objective-text-container, .media-nhlbi-audio.objective-list-container, .media-nhlbi-audio.field--name-field-goal-card, .media-nhlbi-audio.strategic-vision-landing-goals-wrapper, .node--type-principal-investigator .media-nhlbi-audio.striped-container-wrapper, .node--type-principal-investigator .media-nhlbi-audio.striped-container, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article.media-nhlbi-audio,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article.media-nhlbi-audio, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .media-nhlbi-audio.standard-teaser.node--view-mode-short-teaser, .media-nhlbi-audio.field--name-field-awards, .media-nhlbi-audio.registerSocialContainer, .media-nhlbi-audio.eventdatesLocationType, .media-nhlbi-audio.news-article-container, .media-nhlbi-audio.node--type-feature-article.node--view-mode-press-release-teaser,
.media-nhlbi-audio.node--type-press-release.node--view-mode-press-release-teaser,
.media-nhlbi-audio.node--type-events.node--view-mode-press-release-teaser,
.media-nhlbi-audio.node--type-feature-article.node--view-mode-hp-press-release-teaser,
.media-nhlbi-audio.node--type-press-release.node--view-mode-hp-press-release-teaser,
.media-nhlbi-audio.node--type-events.node--view-mode-hp-press-release-teaser,
.media-nhlbi-audio.node--type-news-mention.node--view-mode-hp-press-release-teaser, .media-nhlbi-audio.news-header-container, .contacts-container .media-nhlbi-audio.field--name-field-contacts, .publicationsBox .media-nhlbi-audio.field--name-field-related-publications, .media-nhlbi-audio.field--name-field-primary-featured-item, .media-nhlbi-audio.field--name-field-additional-featured-items, .media-nhlbi-audio.homepage-health-topics-container, .media-nhlbi-audio.homepage-mission-areas-container, .media-nhlbi-audio.homepage-location-container, .media-nhlbi-audio.field--name-field-alumni, .node--type-nhlbi-publication.node--view-mode-full .media-nhlbi-audio.nhlbi-publication-details-container,
.node--type-nhlbi-publication.node--view-mode-subscribe .media-nhlbi-audio.nhlbi-publication-details-container, .node--type-nhlbi-publication.node--view-mode-full .media-nhlbi-audio.field--name-field-related-nhlbi-publications,
.node--type-nhlbi-publication.node--view-mode-subscribe .media-nhlbi-audio.field--name-field-related-nhlbi-publications, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .media-nhlbi-audio.standard-teaser,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .media-nhlbi-audio.standard-teaser {
  background-color: #f4f4f4;
  padding: 0.5em 1em;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2471, ../sass/_styleguide.scss */
  .media-nhlbi-audio.flexcontainer, .media-nhlbi-audio.related-ht-ser-container, .media-nhlbi-audio.field--name-field-sfa-card, .media-nhlbi-audio.field--name-field-speaker,
  .media-nhlbi-audio.field--name-field-executives, .media-nhlbi-audio.standard-card-field, .media-nhlbi-audio.field--name-field-advisory-committees, .media-nhlbi-audio.contact-nhlbi-titleblock, .media-nhlbi-audio.field--name-field-contact-cards, .media-nhlbi-audio.field--name-field-employment-opportunity-car, .media-nhlbi-audio.all-grants-foa-container,
  .media-nhlbi-audio.field--name-field-program-officers,
  .view-id-nhlbi_grants_foa.view-display-id-block_2 > .media-nhlbi-audio.view-content,
  .view-id-nhlbi_grants_foa.view-display-id-block_3 > .media-nhlbi-audio.view-content, .node--type-individual-contact .media-nhlbi-audio.field--name-field-contact-methods,
  .node--type-division.node--view-mode-full .media-nhlbi-audio.field--name-field-contact-methods,
  .node--type-division.node--view-mode-subscribe .media-nhlbi-audio.field--name-field-contact-methods,
  .node--type-branch.node--view-mode-full .media-nhlbi-audio.field--name-field-contact-methods,
  .node--type-branch.node--view-mode-subscribe .media-nhlbi-audio.field--name-field-contact-methods,
  .node--type-general.node--view-mode-full .media-nhlbi-audio.field--name-field-contact-methods,
  .node--type-general.node--view-mode-subscribe .media-nhlbi-audio.field--name-field-contact-methods,
  .node--type-health-education-initiative.node--view-mode-full .media-nhlbi-audio.field--name-field-contact-methods,
  .node--type-health-education-initiative.node--view-mode-subscribe .media-nhlbi-audio.field--name-field-contact-methods, .node--type-committee .media-nhlbi-audio.field--name-field-card-text, .news-and-events--landing .media-nhlbi-audio.landing-social, .media-nhlbi-audio.field--name-field-sfa-cards, .media-nhlbi-audio.locationMap.contact-location-map-container, .media-nhlbi-audio.locationMap, .media-nhlbi-audio.grants-and-training-card-wrapper, .media-nhlbi-audio.about-nhlbi-division-card-wrapper, .media-nhlbi-audio.hei-tools-icon-card-wrapper, .media-nhlbi-audio.field--name-field-grants-and-training-card, .media-nhlbi-audio.field--name-field-division-card, .media-nhlbi-audio.field--name-field-tool-icon-card, .media-nhlbi-audio.field--name-field-promotional-card, .media-nhlbi-audio.field--name-field-sv-promotional-cards, .media-nhlbi-audio.field--name-field-about-nhlbi-promotional-ca, .media-nhlbi-audio.strategic-vision-titleblock, .media-nhlbi-audio.ppg-titleblock-wrapper, .media-nhlbi-audio.ppg-guidelines-card-wrapper, .media-nhlbi-audio.field--name-field-human-subject-cards, .media-nhlbi-audio.field--name-field-section-card, .media-nhlbi-audio.field--name-field-highlight-card, .media-nhlbi-audio.health-topic-teaser-container, .media-nhlbi-audio.about-nhlbi-our-mission-wrapper, .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .media-nhlbi-audio.director-bioCard, .nhlbi-publications-and-resources--landing .media-nhlbi-audio.field--name-field-health-consumer-nhlbi-publ,
  .nhlbi-publications-and-resources--landing .media-nhlbi-audio.field--name-field-health-professionals-nhlbi, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .media-nhlbi-audio.standard-teaser,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .media-nhlbi-audio.standard-teaser, .publicationsBlock.view-nhlbi-publications > .media-nhlbi-audio.view-content,
  .media-nhlbi-audio.field--name-field-related-publications, .healthEducationBlock .media-nhlbi-audio.standard-teaser, .systematicEvidenceReviewsBlock .media-nhlbi-audio.view-content,
  .clinicalPracticeGuidelinesBlock .media-nhlbi-audio.view-content,
  .publicationsAndFactSheetsBlock .media-nhlbi-audio.view-content, .media-nhlbi-audio.rtFlexContainer, .node--type-research-topic .media-nhlbi-audio.field--name-field-science-supplemental-page, .node--type-research-topic .media-nhlbi-audio.researchTopicPublications, .node--type-research-topic .field--name-field-content > .field__item article.media-nhlbi-audio.listTeaserCard, .node--type-research-topic .field--name-field-content > .field__item article.media-nhlbi-audio.standard-teaser,
  .node--type-research-topic .field--name-field-content > .field__item article.media-nhlbi-audio.newsEventsCard, .media-nhlbi-audio.esi-feature-card, .media-nhlbi-audio.featured-science-instance-teaser-container, .media-nhlbi-audio.sfa-teaser-container, .training-opportunity-card .media-nhlbi-audio.field--name-field-associated-people, .media-nhlbi-audio.field--name-field-featured-training-opportun, .media-nhlbi-audio.field--name-field-career-stages, .media-nhlbi-audio.field--name-field-workforce-development-card, .media-nhlbi-audio.node--type-update.node--view-mode-executive-teaser, .media-nhlbi-audio.news-and-events-titleblock, .contact-box > .media-nhlbi-audio.field--name-field-contact-methods, .media-nhlbi-audio.leadership-container, .leadership-container .leadership-deputy-director-container .media-nhlbi-audio.field--name-field-additional-leadership, .media-nhlbi-audio.branch-leadership-container, .branch-leadership-container .leadership-deputy-director-container .media-nhlbi-audio.field--name-field-additional-leadership, .node--type-general .media-nhlbi-audio.field--name-field-related-publications, .node--type-general .media-nhlbi-audio.field--name-field-general-publications-rlt, .node--type-general .field--name-field-general-publications-rlt > .field__item .media-nhlbi-audio.standard-teaser, .node--type-general .field--name-field-related-publications > .field__item .media-nhlbi-audio.standard-teaser, .media-nhlbi-audio.objective-text-container, .media-nhlbi-audio.objective-list-container, .media-nhlbi-audio.field--name-field-goal-card, .media-nhlbi-audio.strategic-vision-landing-goals-wrapper, .node--type-principal-investigator .media-nhlbi-audio.striped-container-wrapper, .node--type-principal-investigator .media-nhlbi-audio.striped-container, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article.media-nhlbi-audio,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article.media-nhlbi-audio, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .media-nhlbi-audio.standard-teaser.node--view-mode-short-teaser, .media-nhlbi-audio.field--name-field-awards, .media-nhlbi-audio.registerSocialContainer, .media-nhlbi-audio.eventdatesLocationType, .media-nhlbi-audio.news-article-container, .media-nhlbi-audio.node--type-feature-article.node--view-mode-press-release-teaser,
  .media-nhlbi-audio.node--type-press-release.node--view-mode-press-release-teaser,
  .media-nhlbi-audio.node--type-events.node--view-mode-press-release-teaser,
  .media-nhlbi-audio.node--type-feature-article.node--view-mode-hp-press-release-teaser,
  .media-nhlbi-audio.node--type-press-release.node--view-mode-hp-press-release-teaser,
  .media-nhlbi-audio.node--type-events.node--view-mode-hp-press-release-teaser,
  .media-nhlbi-audio.node--type-news-mention.node--view-mode-hp-press-release-teaser, .media-nhlbi-audio.news-header-container, .contacts-container .media-nhlbi-audio.field--name-field-contacts, .publicationsBox .media-nhlbi-audio.field--name-field-related-publications, .media-nhlbi-audio.field--name-field-primary-featured-item, .media-nhlbi-audio.field--name-field-additional-featured-items, .media-nhlbi-audio.homepage-health-topics-container, .media-nhlbi-audio.homepage-mission-areas-container, .media-nhlbi-audio.homepage-location-container, .media-nhlbi-audio.field--name-field-alumni, .node--type-nhlbi-publication.node--view-mode-full .media-nhlbi-audio.nhlbi-publication-details-container,
  .node--type-nhlbi-publication.node--view-mode-subscribe .media-nhlbi-audio.nhlbi-publication-details-container, .node--type-nhlbi-publication.node--view-mode-full .media-nhlbi-audio.field--name-field-related-nhlbi-publications,
  .node--type-nhlbi-publication.node--view-mode-subscribe .media-nhlbi-audio.field--name-field-related-nhlbi-publications, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .media-nhlbi-audio.standard-teaser,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .media-nhlbi-audio.standard-teaser {
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
  }
}
/* line 2478, ../sass/_styleguide.scss */
.media-nhlbi-audio.flexcontainer audio, .media-nhlbi-audio.related-ht-ser-container audio, .media-nhlbi-audio.field--name-field-sfa-card audio, .media-nhlbi-audio.field--name-field-speaker audio,
.media-nhlbi-audio.field--name-field-executives audio, .media-nhlbi-audio.standard-card-field audio, .media-nhlbi-audio.field--name-field-advisory-committees audio, .media-nhlbi-audio.contact-nhlbi-titleblock audio, .media-nhlbi-audio.field--name-field-contact-cards audio, .media-nhlbi-audio.field--name-field-employment-opportunity-car audio, .media-nhlbi-audio.all-grants-foa-container audio,
.media-nhlbi-audio.field--name-field-program-officers audio,
.view-id-nhlbi_grants_foa.view-display-id-block_2 > .media-nhlbi-audio.view-content audio,
.view-id-nhlbi_grants_foa.view-display-id-block_3 > .media-nhlbi-audio.view-content audio, .node--type-individual-contact .media-nhlbi-audio.field--name-field-contact-methods audio,
.node--type-division.node--view-mode-full .media-nhlbi-audio.field--name-field-contact-methods audio,
.node--type-division.node--view-mode-subscribe .media-nhlbi-audio.field--name-field-contact-methods audio,
.node--type-branch.node--view-mode-full .media-nhlbi-audio.field--name-field-contact-methods audio,
.node--type-branch.node--view-mode-subscribe .media-nhlbi-audio.field--name-field-contact-methods audio,
.node--type-general.node--view-mode-full .media-nhlbi-audio.field--name-field-contact-methods audio,
.node--type-general.node--view-mode-subscribe .media-nhlbi-audio.field--name-field-contact-methods audio,
.node--type-health-education-initiative.node--view-mode-full .media-nhlbi-audio.field--name-field-contact-methods audio,
.node--type-health-education-initiative.node--view-mode-subscribe .media-nhlbi-audio.field--name-field-contact-methods audio, .node--type-committee .media-nhlbi-audio.field--name-field-card-text audio, .news-and-events--landing .media-nhlbi-audio.landing-social audio, .media-nhlbi-audio.field--name-field-sfa-cards audio, .media-nhlbi-audio.locationMap.contact-location-map-container audio, .media-nhlbi-audio.locationMap audio, .media-nhlbi-audio.grants-and-training-card-wrapper audio, .media-nhlbi-audio.about-nhlbi-division-card-wrapper audio, .media-nhlbi-audio.hei-tools-icon-card-wrapper audio, .media-nhlbi-audio.field--name-field-grants-and-training-card audio, .media-nhlbi-audio.field--name-field-division-card audio, .media-nhlbi-audio.field--name-field-tool-icon-card audio, .media-nhlbi-audio.field--name-field-promotional-card audio, .media-nhlbi-audio.field--name-field-sv-promotional-cards audio, .media-nhlbi-audio.field--name-field-about-nhlbi-promotional-ca audio, .media-nhlbi-audio.strategic-vision-titleblock audio, .media-nhlbi-audio.ppg-titleblock-wrapper audio, .media-nhlbi-audio.ppg-guidelines-card-wrapper audio, .media-nhlbi-audio.field--name-field-human-subject-cards audio, .media-nhlbi-audio.field--name-field-section-card audio, .media-nhlbi-audio.field--name-field-highlight-card audio, .media-nhlbi-audio.health-topic-teaser-container audio, .media-nhlbi-audio.about-nhlbi-our-mission-wrapper audio, .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .media-nhlbi-audio.director-bioCard audio, .nhlbi-publications-and-resources--landing .media-nhlbi-audio.field--name-field-health-consumer-nhlbi-publ audio,
.nhlbi-publications-and-resources--landing .media-nhlbi-audio.field--name-field-health-professionals-nhlbi audio, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .media-nhlbi-audio.standard-teaser audio,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .media-nhlbi-audio.standard-teaser audio, .publicationsBlock.view-nhlbi-publications > .media-nhlbi-audio.view-content audio,
.media-nhlbi-audio.field--name-field-related-publications audio, .healthEducationBlock .media-nhlbi-audio.standard-teaser audio, .systematicEvidenceReviewsBlock .media-nhlbi-audio.view-content audio,
.clinicalPracticeGuidelinesBlock .media-nhlbi-audio.view-content audio,
.publicationsAndFactSheetsBlock .media-nhlbi-audio.view-content audio, .media-nhlbi-audio.rtFlexContainer audio, .node--type-research-topic .media-nhlbi-audio.field--name-field-science-supplemental-page audio, .node--type-research-topic .media-nhlbi-audio.researchTopicPublications audio, .node--type-research-topic .field--name-field-content > .field__item article.media-nhlbi-audio.listTeaserCard audio, .node--type-research-topic .field--name-field-content > .field__item article.media-nhlbi-audio.standard-teaser audio,
.node--type-research-topic .field--name-field-content > .field__item article.media-nhlbi-audio.newsEventsCard audio, .media-nhlbi-audio.esi-feature-card audio, .media-nhlbi-audio.featured-science-instance-teaser-container audio, .media-nhlbi-audio.sfa-teaser-container audio, .training-opportunity-card .media-nhlbi-audio.field--name-field-associated-people audio, .media-nhlbi-audio.field--name-field-featured-training-opportun audio, .media-nhlbi-audio.field--name-field-career-stages audio, .media-nhlbi-audio.field--name-field-workforce-development-card audio, .media-nhlbi-audio.node--type-update.node--view-mode-executive-teaser audio, .media-nhlbi-audio.news-and-events-titleblock audio, .contact-box > .media-nhlbi-audio.field--name-field-contact-methods audio, .media-nhlbi-audio.leadership-container audio, .leadership-container .leadership-deputy-director-container .media-nhlbi-audio.field--name-field-additional-leadership audio, .media-nhlbi-audio.branch-leadership-container audio, .branch-leadership-container .leadership-deputy-director-container .media-nhlbi-audio.field--name-field-additional-leadership audio, .node--type-general .media-nhlbi-audio.field--name-field-related-publications audio, .node--type-general .media-nhlbi-audio.field--name-field-general-publications-rlt audio, .node--type-general .field--name-field-general-publications-rlt > .field__item .media-nhlbi-audio.standard-teaser audio, .node--type-general .field--name-field-related-publications > .field__item .media-nhlbi-audio.standard-teaser audio, .media-nhlbi-audio.objective-text-container audio, .media-nhlbi-audio.objective-list-container audio, .media-nhlbi-audio.field--name-field-goal-card audio, .media-nhlbi-audio.strategic-vision-landing-goals-wrapper audio, .node--type-principal-investigator .media-nhlbi-audio.striped-container-wrapper audio, .node--type-principal-investigator .media-nhlbi-audio.striped-container audio, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article.media-nhlbi-audio audio,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article.media-nhlbi-audio audio, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .media-nhlbi-audio.standard-teaser.node--view-mode-short-teaser audio, .media-nhlbi-audio.field--name-field-awards audio, .media-nhlbi-audio.registerSocialContainer audio, .media-nhlbi-audio.eventdatesLocationType audio, .media-nhlbi-audio.news-article-container audio, .media-nhlbi-audio.node--type-feature-article.node--view-mode-press-release-teaser audio,
.media-nhlbi-audio.node--type-press-release.node--view-mode-press-release-teaser audio,
.media-nhlbi-audio.node--type-events.node--view-mode-press-release-teaser audio,
.media-nhlbi-audio.node--type-feature-article.node--view-mode-hp-press-release-teaser audio,
.media-nhlbi-audio.node--type-press-release.node--view-mode-hp-press-release-teaser audio,
.media-nhlbi-audio.node--type-events.node--view-mode-hp-press-release-teaser audio,
.media-nhlbi-audio.node--type-news-mention.node--view-mode-hp-press-release-teaser audio, .media-nhlbi-audio.news-header-container audio, .contacts-container .media-nhlbi-audio.field--name-field-contacts audio, .publicationsBox .media-nhlbi-audio.field--name-field-related-publications audio, .media-nhlbi-audio.field--name-field-primary-featured-item audio, .media-nhlbi-audio.field--name-field-additional-featured-items audio, .media-nhlbi-audio.homepage-health-topics-container audio, .media-nhlbi-audio.homepage-mission-areas-container audio, .media-nhlbi-audio.homepage-location-container audio, .media-nhlbi-audio.field--name-field-alumni audio, .node--type-nhlbi-publication.node--view-mode-full .media-nhlbi-audio.nhlbi-publication-details-container audio,
.node--type-nhlbi-publication.node--view-mode-subscribe .media-nhlbi-audio.nhlbi-publication-details-container audio, .node--type-nhlbi-publication.node--view-mode-full .media-nhlbi-audio.field--name-field-related-nhlbi-publications audio,
.node--type-nhlbi-publication.node--view-mode-subscribe .media-nhlbi-audio.field--name-field-related-nhlbi-publications audio, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .media-nhlbi-audio.standard-teaser audio,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .media-nhlbi-audio.standard-teaser audio {
  padding-top: 1.5em;
  width: 100%;
}
/* line 2483, ../sass/_styleguide.scss */
.media-nhlbi-audio.flexcontainer .other-info, .media-nhlbi-audio.related-ht-ser-container .other-info, .media-nhlbi-audio.field--name-field-sfa-card .other-info, .media-nhlbi-audio.field--name-field-speaker .other-info,
.media-nhlbi-audio.field--name-field-executives .other-info, .media-nhlbi-audio.standard-card-field .other-info, .media-nhlbi-audio.field--name-field-advisory-committees .other-info, .media-nhlbi-audio.contact-nhlbi-titleblock .other-info, .media-nhlbi-audio.field--name-field-contact-cards .other-info, .media-nhlbi-audio.field--name-field-employment-opportunity-car .other-info, .media-nhlbi-audio.all-grants-foa-container .other-info,
.media-nhlbi-audio.field--name-field-program-officers .other-info,
.view-id-nhlbi_grants_foa.view-display-id-block_2 > .media-nhlbi-audio.view-content .other-info,
.view-id-nhlbi_grants_foa.view-display-id-block_3 > .media-nhlbi-audio.view-content .other-info, .node--type-individual-contact .media-nhlbi-audio.field--name-field-contact-methods .other-info,
.node--type-division.node--view-mode-full .media-nhlbi-audio.field--name-field-contact-methods .other-info,
.node--type-division.node--view-mode-subscribe .media-nhlbi-audio.field--name-field-contact-methods .other-info,
.node--type-branch.node--view-mode-full .media-nhlbi-audio.field--name-field-contact-methods .other-info,
.node--type-branch.node--view-mode-subscribe .media-nhlbi-audio.field--name-field-contact-methods .other-info,
.node--type-general.node--view-mode-full .media-nhlbi-audio.field--name-field-contact-methods .other-info,
.node--type-general.node--view-mode-subscribe .media-nhlbi-audio.field--name-field-contact-methods .other-info,
.node--type-health-education-initiative.node--view-mode-full .media-nhlbi-audio.field--name-field-contact-methods .other-info,
.node--type-health-education-initiative.node--view-mode-subscribe .media-nhlbi-audio.field--name-field-contact-methods .other-info, .node--type-committee .media-nhlbi-audio.field--name-field-card-text .other-info, .news-and-events--landing .media-nhlbi-audio.landing-social .other-info, .media-nhlbi-audio.field--name-field-sfa-cards .other-info, .media-nhlbi-audio.locationMap.contact-location-map-container .other-info, .media-nhlbi-audio.locationMap .other-info, .media-nhlbi-audio.grants-and-training-card-wrapper .other-info, .media-nhlbi-audio.about-nhlbi-division-card-wrapper .other-info, .media-nhlbi-audio.hei-tools-icon-card-wrapper .other-info, .media-nhlbi-audio.field--name-field-grants-and-training-card .other-info, .media-nhlbi-audio.field--name-field-division-card .other-info, .media-nhlbi-audio.field--name-field-tool-icon-card .other-info, .media-nhlbi-audio.field--name-field-promotional-card .other-info, .media-nhlbi-audio.field--name-field-sv-promotional-cards .other-info, .media-nhlbi-audio.field--name-field-about-nhlbi-promotional-ca .other-info, .media-nhlbi-audio.strategic-vision-titleblock .other-info, .media-nhlbi-audio.ppg-titleblock-wrapper .other-info, .media-nhlbi-audio.ppg-guidelines-card-wrapper .other-info, .media-nhlbi-audio.field--name-field-human-subject-cards .other-info, .media-nhlbi-audio.field--name-field-section-card .other-info, .media-nhlbi-audio.field--name-field-highlight-card .other-info, .media-nhlbi-audio.health-topic-teaser-container .other-info, .media-nhlbi-audio.about-nhlbi-our-mission-wrapper .other-info, .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .media-nhlbi-audio.director-bioCard .other-info, .nhlbi-publications-and-resources--landing .media-nhlbi-audio.field--name-field-health-consumer-nhlbi-publ .other-info,
.nhlbi-publications-and-resources--landing .media-nhlbi-audio.field--name-field-health-professionals-nhlbi .other-info, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .media-nhlbi-audio.standard-teaser .other-info,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .media-nhlbi-audio.standard-teaser .other-info, .publicationsBlock.view-nhlbi-publications > .media-nhlbi-audio.view-content .other-info,
.media-nhlbi-audio.field--name-field-related-publications .other-info, .healthEducationBlock .media-nhlbi-audio.standard-teaser .other-info, .systematicEvidenceReviewsBlock .media-nhlbi-audio.view-content .other-info,
.clinicalPracticeGuidelinesBlock .media-nhlbi-audio.view-content .other-info,
.publicationsAndFactSheetsBlock .media-nhlbi-audio.view-content .other-info, .media-nhlbi-audio.rtFlexContainer .other-info, .node--type-research-topic .media-nhlbi-audio.field--name-field-science-supplemental-page .other-info, .node--type-research-topic .media-nhlbi-audio.researchTopicPublications .other-info, .node--type-research-topic .field--name-field-content > .field__item article.media-nhlbi-audio.listTeaserCard .other-info, .node--type-research-topic .field--name-field-content > .field__item article.media-nhlbi-audio.standard-teaser .other-info,
.node--type-research-topic .field--name-field-content > .field__item article.media-nhlbi-audio.newsEventsCard .other-info, .media-nhlbi-audio.esi-feature-card .other-info, .media-nhlbi-audio.featured-science-instance-teaser-container .other-info, .media-nhlbi-audio.sfa-teaser-container .other-info, .training-opportunity-card .media-nhlbi-audio.field--name-field-associated-people .other-info, .media-nhlbi-audio.field--name-field-featured-training-opportun .other-info, .media-nhlbi-audio.field--name-field-career-stages .other-info, .media-nhlbi-audio.field--name-field-workforce-development-card .other-info, .media-nhlbi-audio.node--type-update.node--view-mode-executive-teaser .other-info, .media-nhlbi-audio.news-and-events-titleblock .other-info, .contact-box > .media-nhlbi-audio.field--name-field-contact-methods .other-info, .media-nhlbi-audio.leadership-container .other-info, .leadership-container .leadership-deputy-director-container .media-nhlbi-audio.field--name-field-additional-leadership .other-info, .media-nhlbi-audio.branch-leadership-container .other-info, .branch-leadership-container .leadership-deputy-director-container .media-nhlbi-audio.field--name-field-additional-leadership .other-info, .node--type-general .media-nhlbi-audio.field--name-field-related-publications .other-info, .node--type-general .media-nhlbi-audio.field--name-field-general-publications-rlt .other-info, .node--type-general .field--name-field-general-publications-rlt > .field__item .media-nhlbi-audio.standard-teaser .other-info, .node--type-general .field--name-field-related-publications > .field__item .media-nhlbi-audio.standard-teaser .other-info, .media-nhlbi-audio.objective-text-container .other-info, .media-nhlbi-audio.objective-list-container .other-info, .media-nhlbi-audio.field--name-field-goal-card .other-info, .media-nhlbi-audio.strategic-vision-landing-goals-wrapper .other-info, .node--type-principal-investigator .media-nhlbi-audio.striped-container-wrapper .other-info, .node--type-principal-investigator .media-nhlbi-audio.striped-container .other-info, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article.media-nhlbi-audio .other-info,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article.media-nhlbi-audio .other-info, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .media-nhlbi-audio.standard-teaser.node--view-mode-short-teaser .other-info, .media-nhlbi-audio.field--name-field-awards .other-info, .media-nhlbi-audio.registerSocialContainer .other-info, .media-nhlbi-audio.eventdatesLocationType .other-info, .media-nhlbi-audio.news-article-container .other-info, .media-nhlbi-audio.node--type-feature-article.node--view-mode-press-release-teaser .other-info,
.media-nhlbi-audio.node--type-press-release.node--view-mode-press-release-teaser .other-info,
.media-nhlbi-audio.node--type-events.node--view-mode-press-release-teaser .other-info,
.media-nhlbi-audio.node--type-feature-article.node--view-mode-hp-press-release-teaser .other-info,
.media-nhlbi-audio.node--type-press-release.node--view-mode-hp-press-release-teaser .other-info,
.media-nhlbi-audio.node--type-events.node--view-mode-hp-press-release-teaser .other-info,
.media-nhlbi-audio.node--type-news-mention.node--view-mode-hp-press-release-teaser .other-info, .media-nhlbi-audio.news-header-container .other-info, .contacts-container .media-nhlbi-audio.field--name-field-contacts .other-info, .publicationsBox .media-nhlbi-audio.field--name-field-related-publications .other-info, .media-nhlbi-audio.field--name-field-primary-featured-item .other-info, .media-nhlbi-audio.field--name-field-additional-featured-items .other-info, .media-nhlbi-audio.homepage-health-topics-container .other-info, .media-nhlbi-audio.homepage-mission-areas-container .other-info, .media-nhlbi-audio.homepage-location-container .other-info, .media-nhlbi-audio.field--name-field-alumni .other-info, .node--type-nhlbi-publication.node--view-mode-full .media-nhlbi-audio.nhlbi-publication-details-container .other-info,
.node--type-nhlbi-publication.node--view-mode-subscribe .media-nhlbi-audio.nhlbi-publication-details-container .other-info, .node--type-nhlbi-publication.node--view-mode-full .media-nhlbi-audio.field--name-field-related-nhlbi-publications .other-info,
.node--type-nhlbi-publication.node--view-mode-subscribe .media-nhlbi-audio.field--name-field-related-nhlbi-publications .other-info, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .media-nhlbi-audio.standard-teaser .other-info,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .media-nhlbi-audio.standard-teaser .other-info {
  padding-top: 0.5em;
}
/* line 2486, ../sass/_styleguide.scss */
.media-nhlbi-audio.flexcontainer .flexItemImage, .media-nhlbi-audio.related-ht-ser-container .flexItemImage, .media-nhlbi-audio.field--name-field-sfa-card .flexItemImage, .media-nhlbi-audio.field--name-field-speaker .flexItemImage,
.media-nhlbi-audio.field--name-field-executives .flexItemImage, .media-nhlbi-audio.standard-card-field .flexItemImage, .media-nhlbi-audio.field--name-field-advisory-committees .flexItemImage, .media-nhlbi-audio.contact-nhlbi-titleblock .flexItemImage, .media-nhlbi-audio.field--name-field-contact-cards .flexItemImage, .media-nhlbi-audio.field--name-field-employment-opportunity-car .flexItemImage, .media-nhlbi-audio.all-grants-foa-container .flexItemImage,
.media-nhlbi-audio.field--name-field-program-officers .flexItemImage,
.view-id-nhlbi_grants_foa.view-display-id-block_2 > .media-nhlbi-audio.view-content .flexItemImage,
.view-id-nhlbi_grants_foa.view-display-id-block_3 > .media-nhlbi-audio.view-content .flexItemImage, .node--type-individual-contact .media-nhlbi-audio.field--name-field-contact-methods .flexItemImage,
.node--type-division.node--view-mode-full .media-nhlbi-audio.field--name-field-contact-methods .flexItemImage,
.node--type-division.node--view-mode-subscribe .media-nhlbi-audio.field--name-field-contact-methods .flexItemImage,
.node--type-branch.node--view-mode-full .media-nhlbi-audio.field--name-field-contact-methods .flexItemImage,
.node--type-branch.node--view-mode-subscribe .media-nhlbi-audio.field--name-field-contact-methods .flexItemImage,
.node--type-general.node--view-mode-full .media-nhlbi-audio.field--name-field-contact-methods .flexItemImage,
.node--type-general.node--view-mode-subscribe .media-nhlbi-audio.field--name-field-contact-methods .flexItemImage,
.node--type-health-education-initiative.node--view-mode-full .media-nhlbi-audio.field--name-field-contact-methods .flexItemImage,
.node--type-health-education-initiative.node--view-mode-subscribe .media-nhlbi-audio.field--name-field-contact-methods .flexItemImage, .node--type-committee .media-nhlbi-audio.field--name-field-card-text .flexItemImage, .news-and-events--landing .media-nhlbi-audio.landing-social .flexItemImage, .media-nhlbi-audio.field--name-field-sfa-cards .flexItemImage, .media-nhlbi-audio.locationMap.contact-location-map-container .flexItemImage, .media-nhlbi-audio.locationMap .flexItemImage, .media-nhlbi-audio.grants-and-training-card-wrapper .flexItemImage, .media-nhlbi-audio.about-nhlbi-division-card-wrapper .flexItemImage, .media-nhlbi-audio.hei-tools-icon-card-wrapper .flexItemImage, .media-nhlbi-audio.field--name-field-grants-and-training-card .flexItemImage, .media-nhlbi-audio.field--name-field-division-card .flexItemImage, .media-nhlbi-audio.field--name-field-tool-icon-card .flexItemImage, .media-nhlbi-audio.field--name-field-promotional-card .flexItemImage, .media-nhlbi-audio.field--name-field-sv-promotional-cards .flexItemImage, .media-nhlbi-audio.field--name-field-about-nhlbi-promotional-ca .flexItemImage, .media-nhlbi-audio.strategic-vision-titleblock .flexItemImage, .media-nhlbi-audio.ppg-titleblock-wrapper .flexItemImage, .media-nhlbi-audio.ppg-guidelines-card-wrapper .flexItemImage, .media-nhlbi-audio.field--name-field-human-subject-cards .flexItemImage, .media-nhlbi-audio.field--name-field-section-card .flexItemImage, .media-nhlbi-audio.field--name-field-highlight-card .flexItemImage, .media-nhlbi-audio.health-topic-teaser-container .flexItemImage, .media-nhlbi-audio.about-nhlbi-our-mission-wrapper .flexItemImage, .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .media-nhlbi-audio.director-bioCard .flexItemImage, .nhlbi-publications-and-resources--landing .media-nhlbi-audio.field--name-field-health-consumer-nhlbi-publ .flexItemImage,
.nhlbi-publications-and-resources--landing .media-nhlbi-audio.field--name-field-health-professionals-nhlbi .flexItemImage, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .media-nhlbi-audio.standard-teaser .flexItemImage,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .media-nhlbi-audio.standard-teaser .flexItemImage, .publicationsBlock.view-nhlbi-publications > .media-nhlbi-audio.view-content .flexItemImage,
.media-nhlbi-audio.field--name-field-related-publications .flexItemImage, .healthEducationBlock .media-nhlbi-audio.standard-teaser .flexItemImage, .systematicEvidenceReviewsBlock .media-nhlbi-audio.view-content .flexItemImage,
.clinicalPracticeGuidelinesBlock .media-nhlbi-audio.view-content .flexItemImage,
.publicationsAndFactSheetsBlock .media-nhlbi-audio.view-content .flexItemImage, .media-nhlbi-audio.rtFlexContainer .flexItemImage, .node--type-research-topic .media-nhlbi-audio.field--name-field-science-supplemental-page .flexItemImage, .node--type-research-topic .media-nhlbi-audio.researchTopicPublications .flexItemImage, .node--type-research-topic .field--name-field-content > .field__item article.media-nhlbi-audio.listTeaserCard .flexItemImage, .node--type-research-topic .field--name-field-content > .field__item article.media-nhlbi-audio.standard-teaser .flexItemImage,
.node--type-research-topic .field--name-field-content > .field__item article.media-nhlbi-audio.newsEventsCard .flexItemImage, .media-nhlbi-audio.esi-feature-card .flexItemImage, .media-nhlbi-audio.featured-science-instance-teaser-container .flexItemImage, .media-nhlbi-audio.sfa-teaser-container .flexItemImage, .training-opportunity-card .media-nhlbi-audio.field--name-field-associated-people .flexItemImage, .media-nhlbi-audio.field--name-field-featured-training-opportun .flexItemImage, .media-nhlbi-audio.field--name-field-career-stages .flexItemImage, .media-nhlbi-audio.field--name-field-workforce-development-card .flexItemImage, .media-nhlbi-audio.node--type-update.node--view-mode-executive-teaser .flexItemImage, .media-nhlbi-audio.news-and-events-titleblock .flexItemImage, .contact-box > .media-nhlbi-audio.field--name-field-contact-methods .flexItemImage, .media-nhlbi-audio.leadership-container .flexItemImage, .leadership-container .leadership-deputy-director-container .media-nhlbi-audio.field--name-field-additional-leadership .flexItemImage, .media-nhlbi-audio.branch-leadership-container .flexItemImage, .branch-leadership-container .leadership-deputy-director-container .media-nhlbi-audio.field--name-field-additional-leadership .flexItemImage, .node--type-general .media-nhlbi-audio.field--name-field-related-publications .flexItemImage, .node--type-general .media-nhlbi-audio.field--name-field-general-publications-rlt .flexItemImage, .node--type-general .field--name-field-general-publications-rlt > .field__item .media-nhlbi-audio.standard-teaser .flexItemImage, .node--type-general .field--name-field-related-publications > .field__item .media-nhlbi-audio.standard-teaser .flexItemImage, .media-nhlbi-audio.objective-text-container .flexItemImage, .media-nhlbi-audio.objective-list-container .flexItemImage, .media-nhlbi-audio.field--name-field-goal-card .flexItemImage, .media-nhlbi-audio.strategic-vision-landing-goals-wrapper .flexItemImage, .node--type-principal-investigator .media-nhlbi-audio.striped-container-wrapper .flexItemImage, .node--type-principal-investigator .media-nhlbi-audio.striped-container .flexItemImage, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article.media-nhlbi-audio .flexItemImage,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article.media-nhlbi-audio .flexItemImage, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .media-nhlbi-audio.standard-teaser.node--view-mode-short-teaser .flexItemImage, .media-nhlbi-audio.field--name-field-awards .flexItemImage, .media-nhlbi-audio.registerSocialContainer .flexItemImage, .media-nhlbi-audio.eventdatesLocationType .flexItemImage, .media-nhlbi-audio.news-article-container .flexItemImage, .media-nhlbi-audio.node--type-feature-article.node--view-mode-press-release-teaser .flexItemImage,
.media-nhlbi-audio.node--type-press-release.node--view-mode-press-release-teaser .flexItemImage,
.media-nhlbi-audio.node--type-events.node--view-mode-press-release-teaser .flexItemImage,
.media-nhlbi-audio.node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImage,
.media-nhlbi-audio.node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImage,
.media-nhlbi-audio.node--type-events.node--view-mode-hp-press-release-teaser .flexItemImage,
.media-nhlbi-audio.node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImage, .media-nhlbi-audio.news-header-container .flexItemImage, .contacts-container .media-nhlbi-audio.field--name-field-contacts .flexItemImage, .publicationsBox .media-nhlbi-audio.field--name-field-related-publications .flexItemImage, .media-nhlbi-audio.field--name-field-primary-featured-item .flexItemImage, .media-nhlbi-audio.field--name-field-additional-featured-items .flexItemImage, .media-nhlbi-audio.homepage-health-topics-container .flexItemImage, .media-nhlbi-audio.homepage-mission-areas-container .flexItemImage, .media-nhlbi-audio.homepage-location-container .flexItemImage, .media-nhlbi-audio.field--name-field-alumni .flexItemImage, .node--type-nhlbi-publication.node--view-mode-full .media-nhlbi-audio.nhlbi-publication-details-container .flexItemImage,
.node--type-nhlbi-publication.node--view-mode-subscribe .media-nhlbi-audio.nhlbi-publication-details-container .flexItemImage, .node--type-nhlbi-publication.node--view-mode-full .media-nhlbi-audio.field--name-field-related-nhlbi-publications .flexItemImage,
.node--type-nhlbi-publication.node--view-mode-subscribe .media-nhlbi-audio.field--name-field-related-nhlbi-publications .flexItemImage, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .media-nhlbi-audio.standard-teaser .flexItemImage,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .media-nhlbi-audio.standard-teaser .flexItemImage, .media-nhlbi-audio.flexcontainer .flexItemImageHalf, .media-nhlbi-audio.related-ht-ser-container .flexItemImageHalf, .media-nhlbi-audio.field--name-field-sfa-card .flexItemImageHalf, .media-nhlbi-audio.field--name-field-speaker .flexItemImageHalf,
.media-nhlbi-audio.field--name-field-executives .flexItemImageHalf, .media-nhlbi-audio.standard-card-field .flexItemImageHalf, .media-nhlbi-audio.field--name-field-advisory-committees .flexItemImageHalf, .media-nhlbi-audio.contact-nhlbi-titleblock .flexItemImageHalf, .media-nhlbi-audio.field--name-field-contact-cards .flexItemImageHalf, .media-nhlbi-audio.field--name-field-employment-opportunity-car .flexItemImageHalf, .media-nhlbi-audio.all-grants-foa-container .flexItemImageHalf,
.media-nhlbi-audio.field--name-field-program-officers .flexItemImageHalf,
.view-id-nhlbi_grants_foa.view-display-id-block_2 > .media-nhlbi-audio.view-content .flexItemImageHalf,
.view-id-nhlbi_grants_foa.view-display-id-block_3 > .media-nhlbi-audio.view-content .flexItemImageHalf, .node--type-individual-contact .media-nhlbi-audio.field--name-field-contact-methods .flexItemImageHalf,
.node--type-division.node--view-mode-full .media-nhlbi-audio.field--name-field-contact-methods .flexItemImageHalf,
.node--type-division.node--view-mode-subscribe .media-nhlbi-audio.field--name-field-contact-methods .flexItemImageHalf,
.node--type-branch.node--view-mode-full .media-nhlbi-audio.field--name-field-contact-methods .flexItemImageHalf,
.node--type-branch.node--view-mode-subscribe .media-nhlbi-audio.field--name-field-contact-methods .flexItemImageHalf,
.node--type-general.node--view-mode-full .media-nhlbi-audio.field--name-field-contact-methods .flexItemImageHalf,
.node--type-general.node--view-mode-subscribe .media-nhlbi-audio.field--name-field-contact-methods .flexItemImageHalf,
.node--type-health-education-initiative.node--view-mode-full .media-nhlbi-audio.field--name-field-contact-methods .flexItemImageHalf,
.node--type-health-education-initiative.node--view-mode-subscribe .media-nhlbi-audio.field--name-field-contact-methods .flexItemImageHalf, .node--type-committee .media-nhlbi-audio.field--name-field-card-text .flexItemImageHalf, .news-and-events--landing .media-nhlbi-audio.landing-social .flexItemImageHalf, .media-nhlbi-audio.field--name-field-sfa-cards .flexItemImageHalf, .media-nhlbi-audio.locationMap.contact-location-map-container .flexItemImageHalf, .media-nhlbi-audio.locationMap .flexItemImageHalf, .media-nhlbi-audio.grants-and-training-card-wrapper .flexItemImageHalf, .media-nhlbi-audio.about-nhlbi-division-card-wrapper .flexItemImageHalf, .media-nhlbi-audio.hei-tools-icon-card-wrapper .flexItemImageHalf, .media-nhlbi-audio.field--name-field-grants-and-training-card .flexItemImageHalf, .media-nhlbi-audio.field--name-field-division-card .flexItemImageHalf, .media-nhlbi-audio.field--name-field-tool-icon-card .flexItemImageHalf, .media-nhlbi-audio.field--name-field-promotional-card .flexItemImageHalf, .media-nhlbi-audio.field--name-field-sv-promotional-cards .flexItemImageHalf, .media-nhlbi-audio.field--name-field-about-nhlbi-promotional-ca .flexItemImageHalf, .media-nhlbi-audio.strategic-vision-titleblock .flexItemImageHalf, .media-nhlbi-audio.ppg-titleblock-wrapper .flexItemImageHalf, .media-nhlbi-audio.ppg-guidelines-card-wrapper .flexItemImageHalf, .media-nhlbi-audio.field--name-field-human-subject-cards .flexItemImageHalf, .media-nhlbi-audio.field--name-field-section-card .flexItemImageHalf, .media-nhlbi-audio.field--name-field-highlight-card .flexItemImageHalf, .media-nhlbi-audio.health-topic-teaser-container .flexItemImageHalf, .media-nhlbi-audio.about-nhlbi-our-mission-wrapper .flexItemImageHalf, .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .media-nhlbi-audio.director-bioCard .flexItemImageHalf, .nhlbi-publications-and-resources--landing .media-nhlbi-audio.field--name-field-health-consumer-nhlbi-publ .flexItemImageHalf,
.nhlbi-publications-and-resources--landing .media-nhlbi-audio.field--name-field-health-professionals-nhlbi .flexItemImageHalf, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .media-nhlbi-audio.standard-teaser .flexItemImageHalf,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .media-nhlbi-audio.standard-teaser .flexItemImageHalf, .publicationsBlock.view-nhlbi-publications > .media-nhlbi-audio.view-content .flexItemImageHalf,
.media-nhlbi-audio.field--name-field-related-publications .flexItemImageHalf, .healthEducationBlock .media-nhlbi-audio.standard-teaser .flexItemImageHalf, .systematicEvidenceReviewsBlock .media-nhlbi-audio.view-content .flexItemImageHalf,
.clinicalPracticeGuidelinesBlock .media-nhlbi-audio.view-content .flexItemImageHalf,
.publicationsAndFactSheetsBlock .media-nhlbi-audio.view-content .flexItemImageHalf, .media-nhlbi-audio.rtFlexContainer .flexItemImageHalf, .node--type-research-topic .media-nhlbi-audio.field--name-field-science-supplemental-page .flexItemImageHalf, .node--type-research-topic .media-nhlbi-audio.researchTopicPublications .flexItemImageHalf, .node--type-research-topic .field--name-field-content > .field__item article.media-nhlbi-audio.listTeaserCard .flexItemImageHalf, .node--type-research-topic .field--name-field-content > .field__item article.media-nhlbi-audio.standard-teaser .flexItemImageHalf,
.node--type-research-topic .field--name-field-content > .field__item article.media-nhlbi-audio.newsEventsCard .flexItemImageHalf, .media-nhlbi-audio.esi-feature-card .flexItemImageHalf, .media-nhlbi-audio.featured-science-instance-teaser-container .flexItemImageHalf, .media-nhlbi-audio.sfa-teaser-container .flexItemImageHalf, .training-opportunity-card .media-nhlbi-audio.field--name-field-associated-people .flexItemImageHalf, .media-nhlbi-audio.field--name-field-featured-training-opportun .flexItemImageHalf, .media-nhlbi-audio.field--name-field-career-stages .flexItemImageHalf, .media-nhlbi-audio.field--name-field-workforce-development-card .flexItemImageHalf, .media-nhlbi-audio.node--type-update.node--view-mode-executive-teaser .flexItemImageHalf, .media-nhlbi-audio.news-and-events-titleblock .flexItemImageHalf, .contact-box > .media-nhlbi-audio.field--name-field-contact-methods .flexItemImageHalf, .media-nhlbi-audio.leadership-container .flexItemImageHalf, .leadership-container .leadership-deputy-director-container .media-nhlbi-audio.field--name-field-additional-leadership .flexItemImageHalf, .media-nhlbi-audio.branch-leadership-container .flexItemImageHalf, .branch-leadership-container .leadership-deputy-director-container .media-nhlbi-audio.field--name-field-additional-leadership .flexItemImageHalf, .node--type-general .media-nhlbi-audio.field--name-field-related-publications .flexItemImageHalf, .node--type-general .media-nhlbi-audio.field--name-field-general-publications-rlt .flexItemImageHalf, .node--type-general .field--name-field-general-publications-rlt > .field__item .media-nhlbi-audio.standard-teaser .flexItemImageHalf, .node--type-general .field--name-field-related-publications > .field__item .media-nhlbi-audio.standard-teaser .flexItemImageHalf, .media-nhlbi-audio.objective-text-container .flexItemImageHalf, .media-nhlbi-audio.objective-list-container .flexItemImageHalf, .media-nhlbi-audio.field--name-field-goal-card .flexItemImageHalf, .media-nhlbi-audio.strategic-vision-landing-goals-wrapper .flexItemImageHalf, .node--type-principal-investigator .media-nhlbi-audio.striped-container-wrapper .flexItemImageHalf, .node--type-principal-investigator .media-nhlbi-audio.striped-container .flexItemImageHalf, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article.media-nhlbi-audio .flexItemImageHalf,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article.media-nhlbi-audio .flexItemImageHalf, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .media-nhlbi-audio.standard-teaser.node--view-mode-short-teaser .flexItemImageHalf, .media-nhlbi-audio.field--name-field-awards .flexItemImageHalf, .media-nhlbi-audio.registerSocialContainer .flexItemImageHalf, .media-nhlbi-audio.eventdatesLocationType .flexItemImageHalf, .media-nhlbi-audio.news-article-container .flexItemImageHalf, .media-nhlbi-audio.node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageHalf,
.media-nhlbi-audio.node--type-press-release.node--view-mode-press-release-teaser .flexItemImageHalf,
.media-nhlbi-audio.node--type-events.node--view-mode-press-release-teaser .flexItemImageHalf,
.media-nhlbi-audio.node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageHalf,
.media-nhlbi-audio.node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageHalf,
.media-nhlbi-audio.node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageHalf,
.media-nhlbi-audio.node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageHalf, .media-nhlbi-audio.news-header-container .flexItemImageHalf, .contacts-container .media-nhlbi-audio.field--name-field-contacts .flexItemImageHalf, .publicationsBox .media-nhlbi-audio.field--name-field-related-publications .flexItemImageHalf, .media-nhlbi-audio.field--name-field-primary-featured-item .flexItemImageHalf, .media-nhlbi-audio.field--name-field-additional-featured-items .flexItemImageHalf, .media-nhlbi-audio.homepage-health-topics-container .flexItemImageHalf, .media-nhlbi-audio.homepage-mission-areas-container .flexItemImageHalf, .media-nhlbi-audio.homepage-location-container .flexItemImageHalf, .media-nhlbi-audio.field--name-field-alumni .flexItemImageHalf, .node--type-nhlbi-publication.node--view-mode-full .media-nhlbi-audio.nhlbi-publication-details-container .flexItemImageHalf,
.node--type-nhlbi-publication.node--view-mode-subscribe .media-nhlbi-audio.nhlbi-publication-details-container .flexItemImageHalf, .node--type-nhlbi-publication.node--view-mode-full .media-nhlbi-audio.field--name-field-related-nhlbi-publications .flexItemImageHalf,
.node--type-nhlbi-publication.node--view-mode-subscribe .media-nhlbi-audio.field--name-field-related-nhlbi-publications .flexItemImageHalf, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .media-nhlbi-audio.standard-teaser .flexItemImageHalf,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .media-nhlbi-audio.standard-teaser .flexItemImageHalf, .media-nhlbi-audio.flexcontainer .flexItemImageTenth, .media-nhlbi-audio.related-ht-ser-container .flexItemImageTenth, .media-nhlbi-audio.field--name-field-sfa-card .flexItemImageTenth, .media-nhlbi-audio.field--name-field-speaker .flexItemImageTenth,
.media-nhlbi-audio.field--name-field-executives .flexItemImageTenth, .media-nhlbi-audio.standard-card-field .flexItemImageTenth, .media-nhlbi-audio.field--name-field-advisory-committees .flexItemImageTenth, .media-nhlbi-audio.contact-nhlbi-titleblock .flexItemImageTenth, .media-nhlbi-audio.field--name-field-contact-cards .flexItemImageTenth, .media-nhlbi-audio.field--name-field-employment-opportunity-car .flexItemImageTenth, .media-nhlbi-audio.all-grants-foa-container .flexItemImageTenth,
.media-nhlbi-audio.field--name-field-program-officers .flexItemImageTenth,
.view-id-nhlbi_grants_foa.view-display-id-block_2 > .media-nhlbi-audio.view-content .flexItemImageTenth,
.view-id-nhlbi_grants_foa.view-display-id-block_3 > .media-nhlbi-audio.view-content .flexItemImageTenth, .node--type-individual-contact .media-nhlbi-audio.field--name-field-contact-methods .flexItemImageTenth,
.node--type-division.node--view-mode-full .media-nhlbi-audio.field--name-field-contact-methods .flexItemImageTenth,
.node--type-division.node--view-mode-subscribe .media-nhlbi-audio.field--name-field-contact-methods .flexItemImageTenth,
.node--type-branch.node--view-mode-full .media-nhlbi-audio.field--name-field-contact-methods .flexItemImageTenth,
.node--type-branch.node--view-mode-subscribe .media-nhlbi-audio.field--name-field-contact-methods .flexItemImageTenth,
.node--type-general.node--view-mode-full .media-nhlbi-audio.field--name-field-contact-methods .flexItemImageTenth,
.node--type-general.node--view-mode-subscribe .media-nhlbi-audio.field--name-field-contact-methods .flexItemImageTenth,
.node--type-health-education-initiative.node--view-mode-full .media-nhlbi-audio.field--name-field-contact-methods .flexItemImageTenth,
.node--type-health-education-initiative.node--view-mode-subscribe .media-nhlbi-audio.field--name-field-contact-methods .flexItemImageTenth, .node--type-committee .media-nhlbi-audio.field--name-field-card-text .flexItemImageTenth, .news-and-events--landing .media-nhlbi-audio.landing-social .flexItemImageTenth, .media-nhlbi-audio.field--name-field-sfa-cards .flexItemImageTenth, .media-nhlbi-audio.locationMap.contact-location-map-container .flexItemImageTenth, .media-nhlbi-audio.locationMap .flexItemImageTenth, .media-nhlbi-audio.grants-and-training-card-wrapper .flexItemImageTenth, .media-nhlbi-audio.about-nhlbi-division-card-wrapper .flexItemImageTenth, .media-nhlbi-audio.hei-tools-icon-card-wrapper .flexItemImageTenth, .media-nhlbi-audio.field--name-field-grants-and-training-card .flexItemImageTenth, .media-nhlbi-audio.field--name-field-division-card .flexItemImageTenth, .media-nhlbi-audio.field--name-field-tool-icon-card .flexItemImageTenth, .media-nhlbi-audio.field--name-field-promotional-card .flexItemImageTenth, .media-nhlbi-audio.field--name-field-sv-promotional-cards .flexItemImageTenth, .media-nhlbi-audio.field--name-field-about-nhlbi-promotional-ca .flexItemImageTenth, .media-nhlbi-audio.strategic-vision-titleblock .flexItemImageTenth, .media-nhlbi-audio.ppg-titleblock-wrapper .flexItemImageTenth, .media-nhlbi-audio.ppg-guidelines-card-wrapper .flexItemImageTenth, .media-nhlbi-audio.field--name-field-human-subject-cards .flexItemImageTenth, .media-nhlbi-audio.field--name-field-section-card .flexItemImageTenth, .media-nhlbi-audio.field--name-field-highlight-card .flexItemImageTenth, .media-nhlbi-audio.health-topic-teaser-container .flexItemImageTenth, .media-nhlbi-audio.about-nhlbi-our-mission-wrapper .flexItemImageTenth, .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .media-nhlbi-audio.director-bioCard .flexItemImageTenth, .nhlbi-publications-and-resources--landing .media-nhlbi-audio.field--name-field-health-consumer-nhlbi-publ .flexItemImageTenth,
.nhlbi-publications-and-resources--landing .media-nhlbi-audio.field--name-field-health-professionals-nhlbi .flexItemImageTenth, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .media-nhlbi-audio.standard-teaser .flexItemImageTenth,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .media-nhlbi-audio.standard-teaser .flexItemImageTenth, .publicationsBlock.view-nhlbi-publications > .media-nhlbi-audio.view-content .flexItemImageTenth,
.media-nhlbi-audio.field--name-field-related-publications .flexItemImageTenth, .healthEducationBlock .media-nhlbi-audio.standard-teaser .flexItemImageTenth, .systematicEvidenceReviewsBlock .media-nhlbi-audio.view-content .flexItemImageTenth,
.clinicalPracticeGuidelinesBlock .media-nhlbi-audio.view-content .flexItemImageTenth,
.publicationsAndFactSheetsBlock .media-nhlbi-audio.view-content .flexItemImageTenth, .media-nhlbi-audio.rtFlexContainer .flexItemImageTenth, .node--type-research-topic .media-nhlbi-audio.field--name-field-science-supplemental-page .flexItemImageTenth, .node--type-research-topic .media-nhlbi-audio.researchTopicPublications .flexItemImageTenth, .node--type-research-topic .field--name-field-content > .field__item article.media-nhlbi-audio.listTeaserCard .flexItemImageTenth, .node--type-research-topic .field--name-field-content > .field__item article.media-nhlbi-audio.standard-teaser .flexItemImageTenth,
.node--type-research-topic .field--name-field-content > .field__item article.media-nhlbi-audio.newsEventsCard .flexItemImageTenth, .media-nhlbi-audio.esi-feature-card .flexItemImageTenth, .media-nhlbi-audio.featured-science-instance-teaser-container .flexItemImageTenth, .media-nhlbi-audio.sfa-teaser-container .flexItemImageTenth, .training-opportunity-card .media-nhlbi-audio.field--name-field-associated-people .flexItemImageTenth, .media-nhlbi-audio.field--name-field-featured-training-opportun .flexItemImageTenth, .media-nhlbi-audio.field--name-field-career-stages .flexItemImageTenth, .media-nhlbi-audio.field--name-field-workforce-development-card .flexItemImageTenth, .media-nhlbi-audio.node--type-update.node--view-mode-executive-teaser .flexItemImageTenth, .media-nhlbi-audio.news-and-events-titleblock .flexItemImageTenth, .contact-box > .media-nhlbi-audio.field--name-field-contact-methods .flexItemImageTenth, .media-nhlbi-audio.leadership-container .flexItemImageTenth, .leadership-container .leadership-deputy-director-container .media-nhlbi-audio.field--name-field-additional-leadership .flexItemImageTenth, .media-nhlbi-audio.branch-leadership-container .flexItemImageTenth, .branch-leadership-container .leadership-deputy-director-container .media-nhlbi-audio.field--name-field-additional-leadership .flexItemImageTenth, .node--type-general .media-nhlbi-audio.field--name-field-related-publications .flexItemImageTenth, .node--type-general .media-nhlbi-audio.field--name-field-general-publications-rlt .flexItemImageTenth, .node--type-general .field--name-field-general-publications-rlt > .field__item .media-nhlbi-audio.standard-teaser .flexItemImageTenth, .node--type-general .field--name-field-related-publications > .field__item .media-nhlbi-audio.standard-teaser .flexItemImageTenth, .media-nhlbi-audio.objective-text-container .flexItemImageTenth, .media-nhlbi-audio.objective-list-container .flexItemImageTenth, .media-nhlbi-audio.field--name-field-goal-card .flexItemImageTenth, .media-nhlbi-audio.strategic-vision-landing-goals-wrapper .flexItemImageTenth, .node--type-principal-investigator .media-nhlbi-audio.striped-container-wrapper .flexItemImageTenth, .node--type-principal-investigator .media-nhlbi-audio.striped-container .flexItemImageTenth, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article.media-nhlbi-audio .flexItemImageTenth,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article.media-nhlbi-audio .flexItemImageTenth, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .media-nhlbi-audio.standard-teaser.node--view-mode-short-teaser .flexItemImageTenth, .media-nhlbi-audio.field--name-field-awards .flexItemImageTenth, .media-nhlbi-audio.registerSocialContainer .flexItemImageTenth, .media-nhlbi-audio.eventdatesLocationType .flexItemImageTenth, .media-nhlbi-audio.news-article-container .flexItemImageTenth, .media-nhlbi-audio.node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageTenth,
.media-nhlbi-audio.node--type-press-release.node--view-mode-press-release-teaser .flexItemImageTenth,
.media-nhlbi-audio.node--type-events.node--view-mode-press-release-teaser .flexItemImageTenth,
.media-nhlbi-audio.node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageTenth,
.media-nhlbi-audio.node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageTenth,
.media-nhlbi-audio.node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageTenth,
.media-nhlbi-audio.node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageTenth, .media-nhlbi-audio.news-header-container .flexItemImageTenth, .contacts-container .media-nhlbi-audio.field--name-field-contacts .flexItemImageTenth, .publicationsBox .media-nhlbi-audio.field--name-field-related-publications .flexItemImageTenth, .media-nhlbi-audio.field--name-field-primary-featured-item .flexItemImageTenth, .media-nhlbi-audio.field--name-field-additional-featured-items .flexItemImageTenth, .media-nhlbi-audio.homepage-health-topics-container .flexItemImageTenth, .media-nhlbi-audio.homepage-mission-areas-container .flexItemImageTenth, .media-nhlbi-audio.homepage-location-container .flexItemImageTenth, .media-nhlbi-audio.field--name-field-alumni .flexItemImageTenth, .node--type-nhlbi-publication.node--view-mode-full .media-nhlbi-audio.nhlbi-publication-details-container .flexItemImageTenth,
.node--type-nhlbi-publication.node--view-mode-subscribe .media-nhlbi-audio.nhlbi-publication-details-container .flexItemImageTenth, .node--type-nhlbi-publication.node--view-mode-full .media-nhlbi-audio.field--name-field-related-nhlbi-publications .flexItemImageTenth,
.node--type-nhlbi-publication.node--view-mode-subscribe .media-nhlbi-audio.field--name-field-related-nhlbi-publications .flexItemImageTenth, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .media-nhlbi-audio.standard-teaser .flexItemImageTenth,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .media-nhlbi-audio.standard-teaser .flexItemImageTenth, .media-nhlbi-audio.flexcontainer .flexItemImageFourth, .media-nhlbi-audio.related-ht-ser-container .flexItemImageFourth, .media-nhlbi-audio.field--name-field-sfa-card .flexItemImageFourth, .media-nhlbi-audio.field--name-field-speaker .flexItemImageFourth,
.media-nhlbi-audio.field--name-field-executives .flexItemImageFourth, .media-nhlbi-audio.standard-card-field .flexItemImageFourth, .media-nhlbi-audio.field--name-field-advisory-committees .flexItemImageFourth, .media-nhlbi-audio.contact-nhlbi-titleblock .flexItemImageFourth, .media-nhlbi-audio.field--name-field-contact-cards .flexItemImageFourth, .media-nhlbi-audio.field--name-field-employment-opportunity-car .flexItemImageFourth, .media-nhlbi-audio.all-grants-foa-container .flexItemImageFourth,
.media-nhlbi-audio.field--name-field-program-officers .flexItemImageFourth,
.view-id-nhlbi_grants_foa.view-display-id-block_2 > .media-nhlbi-audio.view-content .flexItemImageFourth,
.view-id-nhlbi_grants_foa.view-display-id-block_3 > .media-nhlbi-audio.view-content .flexItemImageFourth, .node--type-individual-contact .media-nhlbi-audio.field--name-field-contact-methods .flexItemImageFourth,
.node--type-division.node--view-mode-full .media-nhlbi-audio.field--name-field-contact-methods .flexItemImageFourth,
.node--type-division.node--view-mode-subscribe .media-nhlbi-audio.field--name-field-contact-methods .flexItemImageFourth,
.node--type-branch.node--view-mode-full .media-nhlbi-audio.field--name-field-contact-methods .flexItemImageFourth,
.node--type-branch.node--view-mode-subscribe .media-nhlbi-audio.field--name-field-contact-methods .flexItemImageFourth,
.node--type-general.node--view-mode-full .media-nhlbi-audio.field--name-field-contact-methods .flexItemImageFourth,
.node--type-general.node--view-mode-subscribe .media-nhlbi-audio.field--name-field-contact-methods .flexItemImageFourth,
.node--type-health-education-initiative.node--view-mode-full .media-nhlbi-audio.field--name-field-contact-methods .flexItemImageFourth,
.node--type-health-education-initiative.node--view-mode-subscribe .media-nhlbi-audio.field--name-field-contact-methods .flexItemImageFourth, .node--type-committee .media-nhlbi-audio.field--name-field-card-text .flexItemImageFourth, .news-and-events--landing .media-nhlbi-audio.landing-social .flexItemImageFourth, .media-nhlbi-audio.field--name-field-sfa-cards .flexItemImageFourth, .media-nhlbi-audio.locationMap.contact-location-map-container .flexItemImageFourth, .media-nhlbi-audio.locationMap .flexItemImageFourth, .media-nhlbi-audio.grants-and-training-card-wrapper .flexItemImageFourth, .media-nhlbi-audio.about-nhlbi-division-card-wrapper .flexItemImageFourth, .media-nhlbi-audio.hei-tools-icon-card-wrapper .flexItemImageFourth, .media-nhlbi-audio.field--name-field-grants-and-training-card .flexItemImageFourth, .media-nhlbi-audio.field--name-field-division-card .flexItemImageFourth, .media-nhlbi-audio.field--name-field-tool-icon-card .flexItemImageFourth, .media-nhlbi-audio.field--name-field-promotional-card .flexItemImageFourth, .media-nhlbi-audio.field--name-field-sv-promotional-cards .flexItemImageFourth, .media-nhlbi-audio.field--name-field-about-nhlbi-promotional-ca .flexItemImageFourth, .media-nhlbi-audio.strategic-vision-titleblock .flexItemImageFourth, .media-nhlbi-audio.ppg-titleblock-wrapper .flexItemImageFourth, .media-nhlbi-audio.ppg-guidelines-card-wrapper .flexItemImageFourth, .media-nhlbi-audio.field--name-field-human-subject-cards .flexItemImageFourth, .media-nhlbi-audio.field--name-field-section-card .flexItemImageFourth, .media-nhlbi-audio.field--name-field-highlight-card .flexItemImageFourth, .media-nhlbi-audio.health-topic-teaser-container .flexItemImageFourth, .media-nhlbi-audio.about-nhlbi-our-mission-wrapper .flexItemImageFourth, .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .media-nhlbi-audio.director-bioCard .flexItemImageFourth, .nhlbi-publications-and-resources--landing .media-nhlbi-audio.field--name-field-health-consumer-nhlbi-publ .flexItemImageFourth,
.nhlbi-publications-and-resources--landing .media-nhlbi-audio.field--name-field-health-professionals-nhlbi .flexItemImageFourth, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .media-nhlbi-audio.standard-teaser .flexItemImageFourth,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .media-nhlbi-audio.standard-teaser .flexItemImageFourth, .publicationsBlock.view-nhlbi-publications > .media-nhlbi-audio.view-content .flexItemImageFourth,
.media-nhlbi-audio.field--name-field-related-publications .flexItemImageFourth, .healthEducationBlock .media-nhlbi-audio.standard-teaser .flexItemImageFourth, .systematicEvidenceReviewsBlock .media-nhlbi-audio.view-content .flexItemImageFourth,
.clinicalPracticeGuidelinesBlock .media-nhlbi-audio.view-content .flexItemImageFourth,
.publicationsAndFactSheetsBlock .media-nhlbi-audio.view-content .flexItemImageFourth, .media-nhlbi-audio.rtFlexContainer .flexItemImageFourth, .node--type-research-topic .media-nhlbi-audio.field--name-field-science-supplemental-page .flexItemImageFourth, .node--type-research-topic .media-nhlbi-audio.researchTopicPublications .flexItemImageFourth, .node--type-research-topic .field--name-field-content > .field__item article.media-nhlbi-audio.listTeaserCard .flexItemImageFourth, .node--type-research-topic .field--name-field-content > .field__item article.media-nhlbi-audio.standard-teaser .flexItemImageFourth,
.node--type-research-topic .field--name-field-content > .field__item article.media-nhlbi-audio.newsEventsCard .flexItemImageFourth, .media-nhlbi-audio.esi-feature-card .flexItemImageFourth, .media-nhlbi-audio.featured-science-instance-teaser-container .flexItemImageFourth, .media-nhlbi-audio.sfa-teaser-container .flexItemImageFourth, .training-opportunity-card .media-nhlbi-audio.field--name-field-associated-people .flexItemImageFourth, .media-nhlbi-audio.field--name-field-featured-training-opportun .flexItemImageFourth, .media-nhlbi-audio.field--name-field-career-stages .flexItemImageFourth, .media-nhlbi-audio.field--name-field-workforce-development-card .flexItemImageFourth, .media-nhlbi-audio.node--type-update.node--view-mode-executive-teaser .flexItemImageFourth, .media-nhlbi-audio.news-and-events-titleblock .flexItemImageFourth, .contact-box > .media-nhlbi-audio.field--name-field-contact-methods .flexItemImageFourth, .media-nhlbi-audio.leadership-container .flexItemImageFourth, .leadership-container .leadership-deputy-director-container .media-nhlbi-audio.field--name-field-additional-leadership .flexItemImageFourth, .media-nhlbi-audio.branch-leadership-container .flexItemImageFourth, .branch-leadership-container .leadership-deputy-director-container .media-nhlbi-audio.field--name-field-additional-leadership .flexItemImageFourth, .node--type-general .media-nhlbi-audio.field--name-field-related-publications .flexItemImageFourth, .node--type-general .media-nhlbi-audio.field--name-field-general-publications-rlt .flexItemImageFourth, .node--type-general .field--name-field-general-publications-rlt > .field__item .media-nhlbi-audio.standard-teaser .flexItemImageFourth, .node--type-general .field--name-field-related-publications > .field__item .media-nhlbi-audio.standard-teaser .flexItemImageFourth, .media-nhlbi-audio.objective-text-container .flexItemImageFourth, .media-nhlbi-audio.objective-list-container .flexItemImageFourth, .media-nhlbi-audio.field--name-field-goal-card .flexItemImageFourth, .media-nhlbi-audio.strategic-vision-landing-goals-wrapper .flexItemImageFourth, .node--type-principal-investigator .media-nhlbi-audio.striped-container-wrapper .flexItemImageFourth, .node--type-principal-investigator .media-nhlbi-audio.striped-container .flexItemImageFourth, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article.media-nhlbi-audio .flexItemImageFourth,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article.media-nhlbi-audio .flexItemImageFourth, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .media-nhlbi-audio.standard-teaser.node--view-mode-short-teaser .flexItemImageFourth, .media-nhlbi-audio.field--name-field-awards .flexItemImageFourth, .media-nhlbi-audio.registerSocialContainer .flexItemImageFourth, .media-nhlbi-audio.eventdatesLocationType .flexItemImageFourth, .media-nhlbi-audio.news-article-container .flexItemImageFourth, .media-nhlbi-audio.node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageFourth,
.media-nhlbi-audio.node--type-press-release.node--view-mode-press-release-teaser .flexItemImageFourth,
.media-nhlbi-audio.node--type-events.node--view-mode-press-release-teaser .flexItemImageFourth,
.media-nhlbi-audio.node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageFourth,
.media-nhlbi-audio.node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageFourth,
.media-nhlbi-audio.node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageFourth,
.media-nhlbi-audio.node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageFourth, .media-nhlbi-audio.news-header-container .flexItemImageFourth, .contacts-container .media-nhlbi-audio.field--name-field-contacts .flexItemImageFourth, .publicationsBox .media-nhlbi-audio.field--name-field-related-publications .flexItemImageFourth, .media-nhlbi-audio.field--name-field-primary-featured-item .flexItemImageFourth, .media-nhlbi-audio.field--name-field-additional-featured-items .flexItemImageFourth, .media-nhlbi-audio.homepage-health-topics-container .flexItemImageFourth, .media-nhlbi-audio.homepage-mission-areas-container .flexItemImageFourth, .media-nhlbi-audio.homepage-location-container .flexItemImageFourth, .media-nhlbi-audio.field--name-field-alumni .flexItemImageFourth, .node--type-nhlbi-publication.node--view-mode-full .media-nhlbi-audio.nhlbi-publication-details-container .flexItemImageFourth,
.node--type-nhlbi-publication.node--view-mode-subscribe .media-nhlbi-audio.nhlbi-publication-details-container .flexItemImageFourth, .node--type-nhlbi-publication.node--view-mode-full .media-nhlbi-audio.field--name-field-related-nhlbi-publications .flexItemImageFourth,
.node--type-nhlbi-publication.node--view-mode-subscribe .media-nhlbi-audio.field--name-field-related-nhlbi-publications .flexItemImageFourth, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .media-nhlbi-audio.standard-teaser .flexItemImageFourth,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .media-nhlbi-audio.standard-teaser .flexItemImageFourth, .media-nhlbi-audio.flexcontainer .flexItemImageThird, .media-nhlbi-audio.related-ht-ser-container .flexItemImageThird, .media-nhlbi-audio.field--name-field-sfa-card .flexItemImageThird, .media-nhlbi-audio.field--name-field-speaker .flexItemImageThird,
.media-nhlbi-audio.field--name-field-executives .flexItemImageThird, .media-nhlbi-audio.standard-card-field .flexItemImageThird, .media-nhlbi-audio.field--name-field-advisory-committees .flexItemImageThird, .media-nhlbi-audio.contact-nhlbi-titleblock .flexItemImageThird, .media-nhlbi-audio.field--name-field-contact-cards .flexItemImageThird, .media-nhlbi-audio.field--name-field-employment-opportunity-car .flexItemImageThird, .media-nhlbi-audio.all-grants-foa-container .flexItemImageThird,
.media-nhlbi-audio.field--name-field-program-officers .flexItemImageThird,
.view-id-nhlbi_grants_foa.view-display-id-block_2 > .media-nhlbi-audio.view-content .flexItemImageThird,
.view-id-nhlbi_grants_foa.view-display-id-block_3 > .media-nhlbi-audio.view-content .flexItemImageThird, .node--type-individual-contact .media-nhlbi-audio.field--name-field-contact-methods .flexItemImageThird,
.node--type-division.node--view-mode-full .media-nhlbi-audio.field--name-field-contact-methods .flexItemImageThird,
.node--type-division.node--view-mode-subscribe .media-nhlbi-audio.field--name-field-contact-methods .flexItemImageThird,
.node--type-branch.node--view-mode-full .media-nhlbi-audio.field--name-field-contact-methods .flexItemImageThird,
.node--type-branch.node--view-mode-subscribe .media-nhlbi-audio.field--name-field-contact-methods .flexItemImageThird,
.node--type-general.node--view-mode-full .media-nhlbi-audio.field--name-field-contact-methods .flexItemImageThird,
.node--type-general.node--view-mode-subscribe .media-nhlbi-audio.field--name-field-contact-methods .flexItemImageThird,
.node--type-health-education-initiative.node--view-mode-full .media-nhlbi-audio.field--name-field-contact-methods .flexItemImageThird,
.node--type-health-education-initiative.node--view-mode-subscribe .media-nhlbi-audio.field--name-field-contact-methods .flexItemImageThird, .node--type-committee .media-nhlbi-audio.field--name-field-card-text .flexItemImageThird, .news-and-events--landing .media-nhlbi-audio.landing-social .flexItemImageThird, .media-nhlbi-audio.field--name-field-sfa-cards .flexItemImageThird, .media-nhlbi-audio.locationMap.contact-location-map-container .flexItemImageThird, .media-nhlbi-audio.locationMap .flexItemImageThird, .media-nhlbi-audio.grants-and-training-card-wrapper .flexItemImageThird, .media-nhlbi-audio.about-nhlbi-division-card-wrapper .flexItemImageThird, .media-nhlbi-audio.hei-tools-icon-card-wrapper .flexItemImageThird, .media-nhlbi-audio.field--name-field-grants-and-training-card .flexItemImageThird, .media-nhlbi-audio.field--name-field-division-card .flexItemImageThird, .media-nhlbi-audio.field--name-field-tool-icon-card .flexItemImageThird, .media-nhlbi-audio.field--name-field-promotional-card .flexItemImageThird, .media-nhlbi-audio.field--name-field-sv-promotional-cards .flexItemImageThird, .media-nhlbi-audio.field--name-field-about-nhlbi-promotional-ca .flexItemImageThird, .media-nhlbi-audio.strategic-vision-titleblock .flexItemImageThird, .media-nhlbi-audio.ppg-titleblock-wrapper .flexItemImageThird, .media-nhlbi-audio.ppg-guidelines-card-wrapper .flexItemImageThird, .media-nhlbi-audio.field--name-field-human-subject-cards .flexItemImageThird, .media-nhlbi-audio.field--name-field-section-card .flexItemImageThird, .media-nhlbi-audio.field--name-field-highlight-card .flexItemImageThird, .media-nhlbi-audio.health-topic-teaser-container .flexItemImageThird, .media-nhlbi-audio.about-nhlbi-our-mission-wrapper .flexItemImageThird, .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .media-nhlbi-audio.director-bioCard .flexItemImageThird, .nhlbi-publications-and-resources--landing .media-nhlbi-audio.field--name-field-health-consumer-nhlbi-publ .flexItemImageThird,
.nhlbi-publications-and-resources--landing .media-nhlbi-audio.field--name-field-health-professionals-nhlbi .flexItemImageThird, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .media-nhlbi-audio.standard-teaser .flexItemImageThird,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .media-nhlbi-audio.standard-teaser .flexItemImageThird, .publicationsBlock.view-nhlbi-publications > .media-nhlbi-audio.view-content .flexItemImageThird,
.media-nhlbi-audio.field--name-field-related-publications .flexItemImageThird, .healthEducationBlock .media-nhlbi-audio.standard-teaser .flexItemImageThird, .systematicEvidenceReviewsBlock .media-nhlbi-audio.view-content .flexItemImageThird,
.clinicalPracticeGuidelinesBlock .media-nhlbi-audio.view-content .flexItemImageThird,
.publicationsAndFactSheetsBlock .media-nhlbi-audio.view-content .flexItemImageThird, .media-nhlbi-audio.rtFlexContainer .flexItemImageThird, .node--type-research-topic .media-nhlbi-audio.field--name-field-science-supplemental-page .flexItemImageThird, .node--type-research-topic .media-nhlbi-audio.researchTopicPublications .flexItemImageThird, .node--type-research-topic .field--name-field-content > .field__item article.media-nhlbi-audio.listTeaserCard .flexItemImageThird, .node--type-research-topic .field--name-field-content > .field__item article.media-nhlbi-audio.standard-teaser .flexItemImageThird,
.node--type-research-topic .field--name-field-content > .field__item article.media-nhlbi-audio.newsEventsCard .flexItemImageThird, .media-nhlbi-audio.esi-feature-card .flexItemImageThird, .media-nhlbi-audio.featured-science-instance-teaser-container .flexItemImageThird, .media-nhlbi-audio.sfa-teaser-container .flexItemImageThird, .training-opportunity-card .media-nhlbi-audio.field--name-field-associated-people .flexItemImageThird, .media-nhlbi-audio.field--name-field-featured-training-opportun .flexItemImageThird, .media-nhlbi-audio.field--name-field-career-stages .flexItemImageThird, .media-nhlbi-audio.field--name-field-workforce-development-card .flexItemImageThird, .media-nhlbi-audio.node--type-update.node--view-mode-executive-teaser .flexItemImageThird, .media-nhlbi-audio.news-and-events-titleblock .flexItemImageThird, .contact-box > .media-nhlbi-audio.field--name-field-contact-methods .flexItemImageThird, .media-nhlbi-audio.leadership-container .flexItemImageThird, .leadership-container .leadership-deputy-director-container .media-nhlbi-audio.field--name-field-additional-leadership .flexItemImageThird, .media-nhlbi-audio.branch-leadership-container .flexItemImageThird, .branch-leadership-container .leadership-deputy-director-container .media-nhlbi-audio.field--name-field-additional-leadership .flexItemImageThird, .node--type-general .media-nhlbi-audio.field--name-field-related-publications .flexItemImageThird, .node--type-general .media-nhlbi-audio.field--name-field-general-publications-rlt .flexItemImageThird, .node--type-general .field--name-field-general-publications-rlt > .field__item .media-nhlbi-audio.standard-teaser .flexItemImageThird, .node--type-general .field--name-field-related-publications > .field__item .media-nhlbi-audio.standard-teaser .flexItemImageThird, .media-nhlbi-audio.objective-text-container .flexItemImageThird, .media-nhlbi-audio.objective-list-container .flexItemImageThird, .media-nhlbi-audio.field--name-field-goal-card .flexItemImageThird, .media-nhlbi-audio.strategic-vision-landing-goals-wrapper .flexItemImageThird, .node--type-principal-investigator .media-nhlbi-audio.striped-container-wrapper .flexItemImageThird, .node--type-principal-investigator .media-nhlbi-audio.striped-container .flexItemImageThird, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article.media-nhlbi-audio .flexItemImageThird,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article.media-nhlbi-audio .flexItemImageThird, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .media-nhlbi-audio.standard-teaser.node--view-mode-short-teaser .flexItemImageThird, .media-nhlbi-audio.field--name-field-awards .flexItemImageThird, .media-nhlbi-audio.registerSocialContainer .flexItemImageThird, .media-nhlbi-audio.eventdatesLocationType .flexItemImageThird, .media-nhlbi-audio.news-article-container .flexItemImageThird, .media-nhlbi-audio.node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageThird,
.media-nhlbi-audio.node--type-press-release.node--view-mode-press-release-teaser .flexItemImageThird,
.media-nhlbi-audio.node--type-events.node--view-mode-press-release-teaser .flexItemImageThird,
.media-nhlbi-audio.node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageThird,
.media-nhlbi-audio.node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageThird,
.media-nhlbi-audio.node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageThird,
.media-nhlbi-audio.node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageThird, .media-nhlbi-audio.news-header-container .flexItemImageThird, .contacts-container .media-nhlbi-audio.field--name-field-contacts .flexItemImageThird, .publicationsBox .media-nhlbi-audio.field--name-field-related-publications .flexItemImageThird, .media-nhlbi-audio.field--name-field-primary-featured-item .flexItemImageThird, .media-nhlbi-audio.field--name-field-additional-featured-items .flexItemImageThird, .media-nhlbi-audio.homepage-health-topics-container .flexItemImageThird, .media-nhlbi-audio.homepage-mission-areas-container .flexItemImageThird, .media-nhlbi-audio.homepage-location-container .flexItemImageThird, .media-nhlbi-audio.field--name-field-alumni .flexItemImageThird, .node--type-nhlbi-publication.node--view-mode-full .media-nhlbi-audio.nhlbi-publication-details-container .flexItemImageThird,
.node--type-nhlbi-publication.node--view-mode-subscribe .media-nhlbi-audio.nhlbi-publication-details-container .flexItemImageThird, .node--type-nhlbi-publication.node--view-mode-full .media-nhlbi-audio.field--name-field-related-nhlbi-publications .flexItemImageThird,
.node--type-nhlbi-publication.node--view-mode-subscribe .media-nhlbi-audio.field--name-field-related-nhlbi-publications .flexItemImageThird, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .media-nhlbi-audio.standard-teaser .flexItemImageThird,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .media-nhlbi-audio.standard-teaser .flexItemImageThird, .media-nhlbi-audio.flexcontainer .flexItemImageThirdHalf, .media-nhlbi-audio.related-ht-ser-container .flexItemImageThirdHalf, .media-nhlbi-audio.field--name-field-sfa-card .flexItemImageThirdHalf, .media-nhlbi-audio.field--name-field-speaker .flexItemImageThirdHalf,
.media-nhlbi-audio.field--name-field-executives .flexItemImageThirdHalf, .media-nhlbi-audio.standard-card-field .flexItemImageThirdHalf, .media-nhlbi-audio.field--name-field-advisory-committees .flexItemImageThirdHalf, .media-nhlbi-audio.contact-nhlbi-titleblock .flexItemImageThirdHalf, .media-nhlbi-audio.field--name-field-contact-cards .flexItemImageThirdHalf, .media-nhlbi-audio.field--name-field-employment-opportunity-car .flexItemImageThirdHalf, .media-nhlbi-audio.all-grants-foa-container .flexItemImageThirdHalf,
.media-nhlbi-audio.field--name-field-program-officers .flexItemImageThirdHalf,
.view-id-nhlbi_grants_foa.view-display-id-block_2 > .media-nhlbi-audio.view-content .flexItemImageThirdHalf,
.view-id-nhlbi_grants_foa.view-display-id-block_3 > .media-nhlbi-audio.view-content .flexItemImageThirdHalf, .node--type-individual-contact .media-nhlbi-audio.field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-division.node--view-mode-full .media-nhlbi-audio.field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-division.node--view-mode-subscribe .media-nhlbi-audio.field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-branch.node--view-mode-full .media-nhlbi-audio.field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-branch.node--view-mode-subscribe .media-nhlbi-audio.field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-general.node--view-mode-full .media-nhlbi-audio.field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-general.node--view-mode-subscribe .media-nhlbi-audio.field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-health-education-initiative.node--view-mode-full .media-nhlbi-audio.field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-health-education-initiative.node--view-mode-subscribe .media-nhlbi-audio.field--name-field-contact-methods .flexItemImageThirdHalf, .node--type-committee .media-nhlbi-audio.field--name-field-card-text .flexItemImageThirdHalf, .news-and-events--landing .media-nhlbi-audio.landing-social .flexItemImageThirdHalf, .media-nhlbi-audio.field--name-field-sfa-cards .flexItemImageThirdHalf, .media-nhlbi-audio.locationMap.contact-location-map-container .flexItemImageThirdHalf, .media-nhlbi-audio.locationMap .flexItemImageThirdHalf, .media-nhlbi-audio.grants-and-training-card-wrapper .flexItemImageThirdHalf, .media-nhlbi-audio.about-nhlbi-division-card-wrapper .flexItemImageThirdHalf, .media-nhlbi-audio.hei-tools-icon-card-wrapper .flexItemImageThirdHalf, .media-nhlbi-audio.field--name-field-grants-and-training-card .flexItemImageThirdHalf, .media-nhlbi-audio.field--name-field-division-card .flexItemImageThirdHalf, .media-nhlbi-audio.field--name-field-tool-icon-card .flexItemImageThirdHalf, .media-nhlbi-audio.field--name-field-promotional-card .flexItemImageThirdHalf, .media-nhlbi-audio.field--name-field-sv-promotional-cards .flexItemImageThirdHalf, .media-nhlbi-audio.field--name-field-about-nhlbi-promotional-ca .flexItemImageThirdHalf, .media-nhlbi-audio.strategic-vision-titleblock .flexItemImageThirdHalf, .media-nhlbi-audio.ppg-titleblock-wrapper .flexItemImageThirdHalf, .media-nhlbi-audio.ppg-guidelines-card-wrapper .flexItemImageThirdHalf, .media-nhlbi-audio.field--name-field-human-subject-cards .flexItemImageThirdHalf, .media-nhlbi-audio.field--name-field-section-card .flexItemImageThirdHalf, .media-nhlbi-audio.field--name-field-highlight-card .flexItemImageThirdHalf, .media-nhlbi-audio.health-topic-teaser-container .flexItemImageThirdHalf, .media-nhlbi-audio.about-nhlbi-our-mission-wrapper .flexItemImageThirdHalf, .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .media-nhlbi-audio.director-bioCard .flexItemImageThirdHalf, .nhlbi-publications-and-resources--landing .media-nhlbi-audio.field--name-field-health-consumer-nhlbi-publ .flexItemImageThirdHalf,
.nhlbi-publications-and-resources--landing .media-nhlbi-audio.field--name-field-health-professionals-nhlbi .flexItemImageThirdHalf, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .media-nhlbi-audio.standard-teaser .flexItemImageThirdHalf,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .media-nhlbi-audio.standard-teaser .flexItemImageThirdHalf, .publicationsBlock.view-nhlbi-publications > .media-nhlbi-audio.view-content .flexItemImageThirdHalf,
.media-nhlbi-audio.field--name-field-related-publications .flexItemImageThirdHalf, .healthEducationBlock .media-nhlbi-audio.standard-teaser .flexItemImageThirdHalf, .systematicEvidenceReviewsBlock .media-nhlbi-audio.view-content .flexItemImageThirdHalf,
.clinicalPracticeGuidelinesBlock .media-nhlbi-audio.view-content .flexItemImageThirdHalf,
.publicationsAndFactSheetsBlock .media-nhlbi-audio.view-content .flexItemImageThirdHalf, .media-nhlbi-audio.rtFlexContainer .flexItemImageThirdHalf, .node--type-research-topic .media-nhlbi-audio.field--name-field-science-supplemental-page .flexItemImageThirdHalf, .node--type-research-topic .media-nhlbi-audio.researchTopicPublications .flexItemImageThirdHalf, .node--type-research-topic .field--name-field-content > .field__item article.media-nhlbi-audio.listTeaserCard .flexItemImageThirdHalf, .node--type-research-topic .field--name-field-content > .field__item article.media-nhlbi-audio.standard-teaser .flexItemImageThirdHalf,
.node--type-research-topic .field--name-field-content > .field__item article.media-nhlbi-audio.newsEventsCard .flexItemImageThirdHalf, .media-nhlbi-audio.esi-feature-card .flexItemImageThirdHalf, .media-nhlbi-audio.featured-science-instance-teaser-container .flexItemImageThirdHalf, .media-nhlbi-audio.sfa-teaser-container .flexItemImageThirdHalf, .training-opportunity-card .media-nhlbi-audio.field--name-field-associated-people .flexItemImageThirdHalf, .media-nhlbi-audio.field--name-field-featured-training-opportun .flexItemImageThirdHalf, .media-nhlbi-audio.field--name-field-career-stages .flexItemImageThirdHalf, .media-nhlbi-audio.field--name-field-workforce-development-card .flexItemImageThirdHalf, .media-nhlbi-audio.node--type-update.node--view-mode-executive-teaser .flexItemImageThirdHalf, .media-nhlbi-audio.news-and-events-titleblock .flexItemImageThirdHalf, .contact-box > .media-nhlbi-audio.field--name-field-contact-methods .flexItemImageThirdHalf, .media-nhlbi-audio.leadership-container .flexItemImageThirdHalf, .leadership-container .leadership-deputy-director-container .media-nhlbi-audio.field--name-field-additional-leadership .flexItemImageThirdHalf, .media-nhlbi-audio.branch-leadership-container .flexItemImageThirdHalf, .branch-leadership-container .leadership-deputy-director-container .media-nhlbi-audio.field--name-field-additional-leadership .flexItemImageThirdHalf, .node--type-general .media-nhlbi-audio.field--name-field-related-publications .flexItemImageThirdHalf, .node--type-general .media-nhlbi-audio.field--name-field-general-publications-rlt .flexItemImageThirdHalf, .node--type-general .field--name-field-general-publications-rlt > .field__item .media-nhlbi-audio.standard-teaser .flexItemImageThirdHalf, .node--type-general .field--name-field-related-publications > .field__item .media-nhlbi-audio.standard-teaser .flexItemImageThirdHalf, .media-nhlbi-audio.objective-text-container .flexItemImageThirdHalf, .media-nhlbi-audio.objective-list-container .flexItemImageThirdHalf, .media-nhlbi-audio.field--name-field-goal-card .flexItemImageThirdHalf, .media-nhlbi-audio.strategic-vision-landing-goals-wrapper .flexItemImageThirdHalf, .node--type-principal-investigator .media-nhlbi-audio.striped-container-wrapper .flexItemImageThirdHalf, .node--type-principal-investigator .media-nhlbi-audio.striped-container .flexItemImageThirdHalf, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article.media-nhlbi-audio .flexItemImageThirdHalf,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article.media-nhlbi-audio .flexItemImageThirdHalf, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .media-nhlbi-audio.standard-teaser.node--view-mode-short-teaser .flexItemImageThirdHalf, .media-nhlbi-audio.field--name-field-awards .flexItemImageThirdHalf, .media-nhlbi-audio.registerSocialContainer .flexItemImageThirdHalf, .media-nhlbi-audio.eventdatesLocationType .flexItemImageThirdHalf, .media-nhlbi-audio.news-article-container .flexItemImageThirdHalf, .media-nhlbi-audio.node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageThirdHalf,
.media-nhlbi-audio.node--type-press-release.node--view-mode-press-release-teaser .flexItemImageThirdHalf,
.media-nhlbi-audio.node--type-events.node--view-mode-press-release-teaser .flexItemImageThirdHalf,
.media-nhlbi-audio.node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf,
.media-nhlbi-audio.node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf,
.media-nhlbi-audio.node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf,
.media-nhlbi-audio.node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf, .media-nhlbi-audio.news-header-container .flexItemImageThirdHalf, .contacts-container .media-nhlbi-audio.field--name-field-contacts .flexItemImageThirdHalf, .publicationsBox .media-nhlbi-audio.field--name-field-related-publications .flexItemImageThirdHalf, .media-nhlbi-audio.field--name-field-primary-featured-item .flexItemImageThirdHalf, .media-nhlbi-audio.field--name-field-additional-featured-items .flexItemImageThirdHalf, .media-nhlbi-audio.homepage-health-topics-container .flexItemImageThirdHalf, .media-nhlbi-audio.homepage-mission-areas-container .flexItemImageThirdHalf, .media-nhlbi-audio.homepage-location-container .flexItemImageThirdHalf, .media-nhlbi-audio.field--name-field-alumni .flexItemImageThirdHalf, .node--type-nhlbi-publication.node--view-mode-full .media-nhlbi-audio.nhlbi-publication-details-container .flexItemImageThirdHalf,
.node--type-nhlbi-publication.node--view-mode-subscribe .media-nhlbi-audio.nhlbi-publication-details-container .flexItemImageThirdHalf, .node--type-nhlbi-publication.node--view-mode-full .media-nhlbi-audio.field--name-field-related-nhlbi-publications .flexItemImageThirdHalf,
.node--type-nhlbi-publication.node--view-mode-subscribe .media-nhlbi-audio.field--name-field-related-nhlbi-publications .flexItemImageThirdHalf, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .media-nhlbi-audio.standard-teaser .flexItemImageThirdHalf,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .media-nhlbi-audio.standard-teaser .flexItemImageThirdHalf, .media-nhlbi-audio.flexcontainer .hero-image, .media-nhlbi-audio.related-ht-ser-container .hero-image, .media-nhlbi-audio.field--name-field-sfa-card .hero-image, .media-nhlbi-audio.field--name-field-speaker .hero-image,
.media-nhlbi-audio.field--name-field-executives .hero-image, .media-nhlbi-audio.standard-card-field .hero-image, .media-nhlbi-audio.field--name-field-advisory-committees .hero-image, .media-nhlbi-audio.contact-nhlbi-titleblock .hero-image, .media-nhlbi-audio.field--name-field-contact-cards .hero-image, .media-nhlbi-audio.field--name-field-employment-opportunity-car .hero-image, .media-nhlbi-audio.all-grants-foa-container .hero-image,
.media-nhlbi-audio.field--name-field-program-officers .hero-image,
.view-id-nhlbi_grants_foa.view-display-id-block_2 > .media-nhlbi-audio.view-content .hero-image,
.view-id-nhlbi_grants_foa.view-display-id-block_3 > .media-nhlbi-audio.view-content .hero-image, .node--type-individual-contact .media-nhlbi-audio.field--name-field-contact-methods .hero-image,
.node--type-division.node--view-mode-full .media-nhlbi-audio.field--name-field-contact-methods .hero-image,
.node--type-division.node--view-mode-subscribe .media-nhlbi-audio.field--name-field-contact-methods .hero-image,
.node--type-branch.node--view-mode-full .media-nhlbi-audio.field--name-field-contact-methods .hero-image,
.node--type-branch.node--view-mode-subscribe .media-nhlbi-audio.field--name-field-contact-methods .hero-image,
.node--type-general.node--view-mode-full .media-nhlbi-audio.field--name-field-contact-methods .hero-image,
.node--type-general.node--view-mode-subscribe .media-nhlbi-audio.field--name-field-contact-methods .hero-image,
.node--type-health-education-initiative.node--view-mode-full .media-nhlbi-audio.field--name-field-contact-methods .hero-image,
.node--type-health-education-initiative.node--view-mode-subscribe .media-nhlbi-audio.field--name-field-contact-methods .hero-image, .node--type-committee .media-nhlbi-audio.field--name-field-card-text .hero-image, .news-and-events--landing .media-nhlbi-audio.landing-social .hero-image, .media-nhlbi-audio.field--name-field-sfa-cards .hero-image, .media-nhlbi-audio.locationMap.contact-location-map-container .hero-image, .media-nhlbi-audio.locationMap .hero-image, .media-nhlbi-audio.grants-and-training-card-wrapper .hero-image, .media-nhlbi-audio.about-nhlbi-division-card-wrapper .hero-image, .media-nhlbi-audio.hei-tools-icon-card-wrapper .hero-image, .media-nhlbi-audio.field--name-field-grants-and-training-card .hero-image, .media-nhlbi-audio.field--name-field-division-card .hero-image, .media-nhlbi-audio.field--name-field-tool-icon-card .hero-image, .media-nhlbi-audio.field--name-field-promotional-card .hero-image, .media-nhlbi-audio.field--name-field-sv-promotional-cards .hero-image, .media-nhlbi-audio.field--name-field-about-nhlbi-promotional-ca .hero-image, .media-nhlbi-audio.strategic-vision-titleblock .hero-image, .media-nhlbi-audio.ppg-titleblock-wrapper .hero-image, .media-nhlbi-audio.ppg-guidelines-card-wrapper .hero-image, .media-nhlbi-audio.field--name-field-human-subject-cards .hero-image, .media-nhlbi-audio.field--name-field-section-card .hero-image, .media-nhlbi-audio.field--name-field-highlight-card .hero-image, .media-nhlbi-audio.health-topic-teaser-container .hero-image, .media-nhlbi-audio.about-nhlbi-our-mission-wrapper .hero-image, .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .media-nhlbi-audio.director-bioCard .hero-image, .nhlbi-publications-and-resources--landing .media-nhlbi-audio.field--name-field-health-consumer-nhlbi-publ .hero-image,
.nhlbi-publications-and-resources--landing .media-nhlbi-audio.field--name-field-health-professionals-nhlbi .hero-image, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .media-nhlbi-audio.standard-teaser .hero-image,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .media-nhlbi-audio.standard-teaser .hero-image, .publicationsBlock.view-nhlbi-publications > .media-nhlbi-audio.view-content .hero-image,
.media-nhlbi-audio.field--name-field-related-publications .hero-image, .healthEducationBlock .media-nhlbi-audio.standard-teaser .hero-image, .systematicEvidenceReviewsBlock .media-nhlbi-audio.view-content .hero-image,
.clinicalPracticeGuidelinesBlock .media-nhlbi-audio.view-content .hero-image,
.publicationsAndFactSheetsBlock .media-nhlbi-audio.view-content .hero-image, .media-nhlbi-audio.rtFlexContainer .hero-image, .node--type-research-topic .media-nhlbi-audio.field--name-field-science-supplemental-page .hero-image, .node--type-research-topic .media-nhlbi-audio.researchTopicPublications .hero-image, .node--type-research-topic .field--name-field-content > .field__item article.media-nhlbi-audio.listTeaserCard .hero-image, .node--type-research-topic .field--name-field-content > .field__item article.media-nhlbi-audio.standard-teaser .hero-image,
.node--type-research-topic .field--name-field-content > .field__item article.media-nhlbi-audio.newsEventsCard .hero-image, .media-nhlbi-audio.esi-feature-card .hero-image, .media-nhlbi-audio.featured-science-instance-teaser-container .hero-image, .media-nhlbi-audio.sfa-teaser-container .hero-image, .training-opportunity-card .media-nhlbi-audio.field--name-field-associated-people .hero-image, .media-nhlbi-audio.field--name-field-featured-training-opportun .hero-image, .media-nhlbi-audio.field--name-field-career-stages .hero-image, .media-nhlbi-audio.field--name-field-workforce-development-card .hero-image, .media-nhlbi-audio.node--type-update.node--view-mode-executive-teaser .hero-image, .media-nhlbi-audio.news-and-events-titleblock .hero-image, .contact-box > .media-nhlbi-audio.field--name-field-contact-methods .hero-image, .media-nhlbi-audio.leadership-container .hero-image, .leadership-container .leadership-deputy-director-container .media-nhlbi-audio.field--name-field-additional-leadership .hero-image, .media-nhlbi-audio.branch-leadership-container .hero-image, .branch-leadership-container .leadership-deputy-director-container .media-nhlbi-audio.field--name-field-additional-leadership .hero-image, .node--type-general .media-nhlbi-audio.field--name-field-related-publications .hero-image, .node--type-general .media-nhlbi-audio.field--name-field-general-publications-rlt .hero-image, .node--type-general .field--name-field-general-publications-rlt > .field__item .media-nhlbi-audio.standard-teaser .hero-image, .node--type-general .field--name-field-related-publications > .field__item .media-nhlbi-audio.standard-teaser .hero-image, .media-nhlbi-audio.objective-text-container .hero-image, .media-nhlbi-audio.objective-list-container .hero-image, .media-nhlbi-audio.field--name-field-goal-card .hero-image, .media-nhlbi-audio.strategic-vision-landing-goals-wrapper .hero-image, .node--type-principal-investigator .media-nhlbi-audio.striped-container-wrapper .hero-image, .node--type-principal-investigator .media-nhlbi-audio.striped-container .hero-image, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article.media-nhlbi-audio .hero-image,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article.media-nhlbi-audio .hero-image, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .media-nhlbi-audio.standard-teaser.node--view-mode-short-teaser .hero-image, .media-nhlbi-audio.field--name-field-awards .hero-image, .media-nhlbi-audio.registerSocialContainer .hero-image, .media-nhlbi-audio.eventdatesLocationType .hero-image, .media-nhlbi-audio.news-article-container .hero-image, .media-nhlbi-audio.node--type-feature-article.node--view-mode-press-release-teaser .hero-image,
.media-nhlbi-audio.node--type-press-release.node--view-mode-press-release-teaser .hero-image,
.media-nhlbi-audio.node--type-events.node--view-mode-press-release-teaser .hero-image,
.media-nhlbi-audio.node--type-feature-article.node--view-mode-hp-press-release-teaser .hero-image,
.media-nhlbi-audio.node--type-press-release.node--view-mode-hp-press-release-teaser .hero-image,
.media-nhlbi-audio.node--type-events.node--view-mode-hp-press-release-teaser .hero-image,
.media-nhlbi-audio.node--type-news-mention.node--view-mode-hp-press-release-teaser .hero-image, .media-nhlbi-audio.news-header-container .hero-image, .contacts-container .media-nhlbi-audio.field--name-field-contacts .hero-image, .publicationsBox .media-nhlbi-audio.field--name-field-related-publications .hero-image, .media-nhlbi-audio.field--name-field-primary-featured-item .hero-image, .media-nhlbi-audio.field--name-field-additional-featured-items .hero-image, .media-nhlbi-audio.homepage-health-topics-container .hero-image, .media-nhlbi-audio.homepage-mission-areas-container .hero-image, .media-nhlbi-audio.homepage-location-container .hero-image, .media-nhlbi-audio.field--name-field-alumni .hero-image, .node--type-nhlbi-publication.node--view-mode-full .media-nhlbi-audio.nhlbi-publication-details-container .hero-image,
.node--type-nhlbi-publication.node--view-mode-subscribe .media-nhlbi-audio.nhlbi-publication-details-container .hero-image, .node--type-nhlbi-publication.node--view-mode-full .media-nhlbi-audio.field--name-field-related-nhlbi-publications .hero-image,
.node--type-nhlbi-publication.node--view-mode-subscribe .media-nhlbi-audio.field--name-field-related-nhlbi-publications .hero-image, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .media-nhlbi-audio.standard-teaser .hero-image,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .media-nhlbi-audio.standard-teaser .hero-image {
  width: 100px;
  min-width: 100px;
  max-width: 100px;
  border: #fff solid 4px;
  margin-right: 1em;
}
/* line 2493, ../sass/_styleguide.scss */
.media-nhlbi-audio.flexcontainer .flexItemText, .media-nhlbi-audio.related-ht-ser-container .flexItemText, .media-nhlbi-audio.field--name-field-sfa-card .flexItemText, .media-nhlbi-audio.field--name-field-speaker .flexItemText,
.media-nhlbi-audio.field--name-field-executives .flexItemText, .media-nhlbi-audio.standard-card-field .flexItemText, .media-nhlbi-audio.field--name-field-advisory-committees .flexItemText, .media-nhlbi-audio.contact-nhlbi-titleblock .flexItemText, .media-nhlbi-audio.field--name-field-contact-cards .flexItemText, .media-nhlbi-audio.field--name-field-employment-opportunity-car .flexItemText, .media-nhlbi-audio.all-grants-foa-container .flexItemText,
.media-nhlbi-audio.field--name-field-program-officers .flexItemText,
.view-id-nhlbi_grants_foa.view-display-id-block_2 > .media-nhlbi-audio.view-content .flexItemText,
.view-id-nhlbi_grants_foa.view-display-id-block_3 > .media-nhlbi-audio.view-content .flexItemText, .node--type-individual-contact .media-nhlbi-audio.field--name-field-contact-methods .flexItemText,
.node--type-division.node--view-mode-full .media-nhlbi-audio.field--name-field-contact-methods .flexItemText,
.node--type-division.node--view-mode-subscribe .media-nhlbi-audio.field--name-field-contact-methods .flexItemText,
.node--type-branch.node--view-mode-full .media-nhlbi-audio.field--name-field-contact-methods .flexItemText,
.node--type-branch.node--view-mode-subscribe .media-nhlbi-audio.field--name-field-contact-methods .flexItemText,
.node--type-general.node--view-mode-full .media-nhlbi-audio.field--name-field-contact-methods .flexItemText,
.node--type-general.node--view-mode-subscribe .media-nhlbi-audio.field--name-field-contact-methods .flexItemText,
.node--type-health-education-initiative.node--view-mode-full .media-nhlbi-audio.field--name-field-contact-methods .flexItemText,
.node--type-health-education-initiative.node--view-mode-subscribe .media-nhlbi-audio.field--name-field-contact-methods .flexItemText, .node--type-committee .media-nhlbi-audio.field--name-field-card-text .flexItemText, .news-and-events--landing .media-nhlbi-audio.landing-social .flexItemText, .media-nhlbi-audio.field--name-field-sfa-cards .flexItemText, .media-nhlbi-audio.locationMap.contact-location-map-container .flexItemText, .media-nhlbi-audio.locationMap .flexItemText, .media-nhlbi-audio.grants-and-training-card-wrapper .flexItemText, .media-nhlbi-audio.about-nhlbi-division-card-wrapper .flexItemText, .media-nhlbi-audio.hei-tools-icon-card-wrapper .flexItemText, .media-nhlbi-audio.field--name-field-grants-and-training-card .flexItemText, .media-nhlbi-audio.field--name-field-division-card .flexItemText, .media-nhlbi-audio.field--name-field-tool-icon-card .flexItemText, .media-nhlbi-audio.field--name-field-promotional-card .flexItemText, .media-nhlbi-audio.field--name-field-sv-promotional-cards .flexItemText, .media-nhlbi-audio.field--name-field-about-nhlbi-promotional-ca .flexItemText, .media-nhlbi-audio.strategic-vision-titleblock .flexItemText, .media-nhlbi-audio.ppg-titleblock-wrapper .flexItemText, .media-nhlbi-audio.ppg-guidelines-card-wrapper .flexItemText, .media-nhlbi-audio.field--name-field-human-subject-cards .flexItemText, .media-nhlbi-audio.field--name-field-section-card .flexItemText, .media-nhlbi-audio.field--name-field-highlight-card .flexItemText, .media-nhlbi-audio.health-topic-teaser-container .flexItemText, .media-nhlbi-audio.about-nhlbi-our-mission-wrapper .flexItemText, .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .media-nhlbi-audio.director-bioCard .flexItemText, .nhlbi-publications-and-resources--landing .media-nhlbi-audio.field--name-field-health-consumer-nhlbi-publ .flexItemText,
.nhlbi-publications-and-resources--landing .media-nhlbi-audio.field--name-field-health-professionals-nhlbi .flexItemText, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .media-nhlbi-audio.standard-teaser .flexItemText,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .media-nhlbi-audio.standard-teaser .flexItemText, .publicationsBlock.view-nhlbi-publications > .media-nhlbi-audio.view-content .flexItemText,
.media-nhlbi-audio.field--name-field-related-publications .flexItemText, .healthEducationBlock .media-nhlbi-audio.standard-teaser .flexItemText, .systematicEvidenceReviewsBlock .media-nhlbi-audio.view-content .flexItemText,
.clinicalPracticeGuidelinesBlock .media-nhlbi-audio.view-content .flexItemText,
.publicationsAndFactSheetsBlock .media-nhlbi-audio.view-content .flexItemText, .media-nhlbi-audio.rtFlexContainer .flexItemText, .node--type-research-topic .media-nhlbi-audio.field--name-field-science-supplemental-page .flexItemText, .node--type-research-topic .media-nhlbi-audio.researchTopicPublications .flexItemText, .node--type-research-topic .field--name-field-content > .field__item article.media-nhlbi-audio.listTeaserCard .flexItemText, .node--type-research-topic .field--name-field-content > .field__item article.media-nhlbi-audio.standard-teaser .flexItemText,
.node--type-research-topic .field--name-field-content > .field__item article.media-nhlbi-audio.newsEventsCard .flexItemText, .media-nhlbi-audio.esi-feature-card .flexItemText, .media-nhlbi-audio.featured-science-instance-teaser-container .flexItemText, .media-nhlbi-audio.sfa-teaser-container .flexItemText, .training-opportunity-card .media-nhlbi-audio.field--name-field-associated-people .flexItemText, .media-nhlbi-audio.field--name-field-featured-training-opportun .flexItemText, .media-nhlbi-audio.field--name-field-career-stages .flexItemText, .media-nhlbi-audio.field--name-field-workforce-development-card .flexItemText, .media-nhlbi-audio.node--type-update.node--view-mode-executive-teaser .flexItemText, .media-nhlbi-audio.news-and-events-titleblock .flexItemText, .contact-box > .media-nhlbi-audio.field--name-field-contact-methods .flexItemText, .media-nhlbi-audio.leadership-container .flexItemText, .leadership-container .leadership-deputy-director-container .media-nhlbi-audio.field--name-field-additional-leadership .flexItemText, .media-nhlbi-audio.branch-leadership-container .flexItemText, .branch-leadership-container .leadership-deputy-director-container .media-nhlbi-audio.field--name-field-additional-leadership .flexItemText, .node--type-general .media-nhlbi-audio.field--name-field-related-publications .flexItemText, .node--type-general .media-nhlbi-audio.field--name-field-general-publications-rlt .flexItemText, .node--type-general .field--name-field-general-publications-rlt > .field__item .media-nhlbi-audio.standard-teaser .flexItemText, .node--type-general .field--name-field-related-publications > .field__item .media-nhlbi-audio.standard-teaser .flexItemText, .media-nhlbi-audio.objective-text-container .flexItemText, .media-nhlbi-audio.objective-list-container .flexItemText, .media-nhlbi-audio.field--name-field-goal-card .flexItemText, .media-nhlbi-audio.strategic-vision-landing-goals-wrapper .flexItemText, .node--type-principal-investigator .media-nhlbi-audio.striped-container-wrapper .flexItemText, .node--type-principal-investigator .media-nhlbi-audio.striped-container .flexItemText, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article.media-nhlbi-audio .flexItemText,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article.media-nhlbi-audio .flexItemText, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .media-nhlbi-audio.standard-teaser.node--view-mode-short-teaser .flexItemText, .media-nhlbi-audio.field--name-field-awards .flexItemText, .media-nhlbi-audio.registerSocialContainer .flexItemText, .media-nhlbi-audio.eventdatesLocationType .flexItemText, .media-nhlbi-audio.news-article-container .flexItemText, .media-nhlbi-audio.node--type-feature-article.node--view-mode-press-release-teaser .flexItemText,
.media-nhlbi-audio.node--type-press-release.node--view-mode-press-release-teaser .flexItemText,
.media-nhlbi-audio.node--type-events.node--view-mode-press-release-teaser .flexItemText,
.media-nhlbi-audio.node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText,
.media-nhlbi-audio.node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText,
.media-nhlbi-audio.node--type-events.node--view-mode-hp-press-release-teaser .flexItemText,
.media-nhlbi-audio.node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText, .media-nhlbi-audio.news-header-container .flexItemText, .contacts-container .media-nhlbi-audio.field--name-field-contacts .flexItemText, .publicationsBox .media-nhlbi-audio.field--name-field-related-publications .flexItemText, .media-nhlbi-audio.field--name-field-primary-featured-item .flexItemText, .media-nhlbi-audio.field--name-field-additional-featured-items .flexItemText, .media-nhlbi-audio.homepage-health-topics-container .flexItemText, .media-nhlbi-audio.homepage-mission-areas-container .flexItemText, .media-nhlbi-audio.homepage-location-container .flexItemText, .media-nhlbi-audio.field--name-field-alumni .flexItemText, .node--type-nhlbi-publication.node--view-mode-full .media-nhlbi-audio.nhlbi-publication-details-container .flexItemText,
.node--type-nhlbi-publication.node--view-mode-subscribe .media-nhlbi-audio.nhlbi-publication-details-container .flexItemText, .node--type-nhlbi-publication.node--view-mode-full .media-nhlbi-audio.field--name-field-related-nhlbi-publications .flexItemText,
.node--type-nhlbi-publication.node--view-mode-subscribe .media-nhlbi-audio.field--name-field-related-nhlbi-publications .flexItemText, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .media-nhlbi-audio.standard-teaser .flexItemText,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .media-nhlbi-audio.standard-teaser .flexItemText {
  padding: 1em 1em 1em 0;
}

/* line 2499, ../sass/_styleguide.scss */
#modal-overlay {
  background-color: #000;
}

/* line 2504, ../sass/_styleguide.scss */
#image-container {
  display: table;
}
/* line 2507, ../sass/_styleguide.scss */
#image-container .imageModal {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: -ms-fit-content;
  height: -o-fit-content;
  height: fit-content;
  border: #fff 8px solid;
  display: table;
  box-sizing: border-box;
}
/* line 2514, ../sass/_styleguide.scss */
#image-container img {
  display: block;
}
/* line 2517, ../sass/_styleguide.scss */
#image-container a.modal-close {
  width: 25px;
  position: absolute;
  right: 15px;
  top: 15px;
}
/* line 2523, ../sass/_styleguide.scss */
#image-container a.modal-close:hover {
  background-color: transparent;
}

/* line 2530, ../sass/_styleguide.scss */
.silabel, .nhlbi-publication-details-item-label {
  font-size: 1rem;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-weight: bold;
  color: #222;
  margin: 1em 0 0;
}
@media all and (min-width: 1440px) {
  /* line 2530, ../sass/_styleguide.scss */
  .silabel, .nhlbi-publication-details-item-label {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2530, ../sass/_styleguide.scss */
  .silabel, .nhlbi-publication-details-item-label {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2530, ../sass/_styleguide.scss */
  .silabel, .nhlbi-publication-details-item-label {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2530, ../sass/_styleguide.scss */
  .silabel, .nhlbi-publication-details-item-label {
    font-size: 0.875rem;
  }
}

/* line 2541, ../sass/_styleguide.scss */
.pullquote {
  font-size: 1.5rem;
  font-family: "Merriweather", serif;
  font-weight: lighter;
  font-style: normal;
  color: #0051a8;
}
@media all and (min-width: 1440px) {
  /* line 2541, ../sass/_styleguide.scss */
  .pullquote {
    font-size: 1.5rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2541, ../sass/_styleguide.scss */
  .pullquote {
    font-size: 1.5rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2541, ../sass/_styleguide.scss */
  .pullquote {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2541, ../sass/_styleguide.scss */
  .pullquote {
    font-size: 1.25rem;
  }
}

/* line 2550, ../sass/_styleguide.scss */
.calloutdata {
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-weight: normal;
  font-style: italic;
  color: #fff;
}

/* line 2557, ../sass/_styleguide.scss */
.storycallouttitle {
  font-size: 2.25rem;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-weight: lighter;
  font-style: normal;
  color: #fff;
}
@media all and (min-width: 1440px) {
  /* line 2557, ../sass/_styleguide.scss */
  .storycallouttitle {
    font-size: 2.25rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2557, ../sass/_styleguide.scss */
  .storycallouttitle {
    font-size: 2.25rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2557, ../sass/_styleguide.scss */
  .storycallouttitle {
    font-size: 1.75rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2557, ../sass/_styleguide.scss */
  .storycallouttitle {
    font-size: 1.625rem;
  }
}

/**
 * Accordions
 **/
/* line 2576, ../sass/_styleguide.scss */
.supplemental-accordion .ui-accordion-header .ui-accordion-header-icon.view-filter-ui-icon-up,
.general-accordion.ui-accordion .ui-accordion-header-icon.view-filter-ui-icon-up,
.primary-accordion.ui-accordion .ui-accordion-header-icon.view-filter-ui-icon-up,
.secondary-accordion.ui-accordion .ui-accordion-header-icon.view-filter-ui-icon-up {
  position: relative;
  background-repeat: no-repeat;
  display: inline-block;
  float: right;
  margin-right: 1.2em;
  background-size: 20px 20px;
  width: 20px;
  height: 20px;
  margin-top: 6px;
  top: 0;
  background-image: url("../images/minus-sign-black.png");
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2576, ../sass/_styleguide.scss */
  .supplemental-accordion .ui-accordion-header .ui-accordion-header-icon.view-filter-ui-icon-up,
  .general-accordion.ui-accordion .ui-accordion-header-icon.view-filter-ui-icon-up,
  .primary-accordion.ui-accordion .ui-accordion-header-icon.view-filter-ui-icon-up,
  .secondary-accordion.ui-accordion .ui-accordion-header-icon.view-filter-ui-icon-up {
    background-size: 17px 17px;
    width: 17px;
    height: 17px;
    margin-top: 3px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2576, ../sass/_styleguide.scss */
  .supplemental-accordion .ui-accordion-header .ui-accordion-header-icon.view-filter-ui-icon-up,
  .general-accordion.ui-accordion .ui-accordion-header-icon.view-filter-ui-icon-up,
  .primary-accordion.ui-accordion .ui-accordion-header-icon.view-filter-ui-icon-up,
  .secondary-accordion.ui-accordion .ui-accordion-header-icon.view-filter-ui-icon-up {
    background-size: 13px 13px;
    width: 13px;
    height: 13px;
    margin-top: 3px;
  }
}
/* line 2579, ../sass/_styleguide.scss */
.supplemental-accordion .ui-accordion-header .ui-accordion-header-icon.view-filter-ui-icon-up-first,
.general-accordion.ui-accordion .ui-accordion-header-icon.view-filter-ui-icon-up-first,
.primary-accordion.ui-accordion .ui-accordion-header-icon.view-filter-ui-icon-up-first,
.secondary-accordion.ui-accordion .ui-accordion-header-icon.view-filter-ui-icon-up-first {
  position: relative;
  background-repeat: no-repeat;
  display: inline-block;
  float: right;
  margin-right: 1.2em;
  background-size: 20px 20px;
  width: 20px;
  height: 20px;
  margin-top: 6px;
  top: 0;
  background-image: url("../images/minus-sign-white.png");
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2579, ../sass/_styleguide.scss */
  .supplemental-accordion .ui-accordion-header .ui-accordion-header-icon.view-filter-ui-icon-up-first,
  .general-accordion.ui-accordion .ui-accordion-header-icon.view-filter-ui-icon-up-first,
  .primary-accordion.ui-accordion .ui-accordion-header-icon.view-filter-ui-icon-up-first,
  .secondary-accordion.ui-accordion .ui-accordion-header-icon.view-filter-ui-icon-up-first {
    background-size: 17px 17px;
    width: 17px;
    height: 17px;
    margin-top: 3px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2579, ../sass/_styleguide.scss */
  .supplemental-accordion .ui-accordion-header .ui-accordion-header-icon.view-filter-ui-icon-up-first,
  .general-accordion.ui-accordion .ui-accordion-header-icon.view-filter-ui-icon-up-first,
  .primary-accordion.ui-accordion .ui-accordion-header-icon.view-filter-ui-icon-up-first,
  .secondary-accordion.ui-accordion .ui-accordion-header-icon.view-filter-ui-icon-up-first {
    background-size: 13px 13px;
    width: 13px;
    height: 13px;
    margin-top: 3px;
  }
}
/* line 2582, ../sass/_styleguide.scss */
.supplemental-accordion .ui-accordion-header .ui-accordion-header-icon.view-filter-ui-icon-up-second,
.general-accordion.ui-accordion .ui-accordion-header-icon.view-filter-ui-icon-up-second,
.primary-accordion.ui-accordion .ui-accordion-header-icon.view-filter-ui-icon-up-second,
.secondary-accordion.ui-accordion .ui-accordion-header-icon.view-filter-ui-icon-up-second {
  position: relative;
  background-repeat: no-repeat;
  display: inline-block;
  float: right;
  margin-right: 1.2em;
  background-size: 1em 1em;
  width: 1em;
  height: 1em;
  margin-top: 0.5em;
  background-image: url("../images/minus-sign-white.png");
}
/* line 2585, ../sass/_styleguide.scss */
.supplemental-accordion .ui-accordion-header .ui-accordion-header-icon.view-filter-ui-icon-up-third,
.general-accordion.ui-accordion .ui-accordion-header-icon.view-filter-ui-icon-up-third,
.primary-accordion.ui-accordion .ui-accordion-header-icon.view-filter-ui-icon-up-third,
.secondary-accordion.ui-accordion .ui-accordion-header-icon.view-filter-ui-icon-up-third {
  position: relative;
  background-repeat: no-repeat;
  display: inline-block;
  float: right;
  margin-right: 1.2em;
  background-size: 1em 1em;
  width: 1em;
  height: 1em;
  margin-top: 0.5em;
  background-image: url("../images/minus-sign-black.png");
  top: 25%;
}
/* line 2588, ../sass/_styleguide.scss */
.supplemental-accordion .ui-accordion-header .ui-accordion-header-icon.view-filter-ui-icon-down,
.general-accordion.ui-accordion .ui-accordion-header-icon.view-filter-ui-icon-down,
.primary-accordion.ui-accordion .ui-accordion-header-icon.view-filter-ui-icon-down,
.secondary-accordion.ui-accordion .ui-accordion-header-icon.view-filter-ui-icon-down {
  position: relative;
  background-repeat: no-repeat;
  display: inline-block;
  float: right;
  margin-right: 1.2em;
  background-size: 20px 20px;
  width: 20px;
  height: 20px;
  margin-top: 6px;
  top: 0;
  background-image: url("../images/plus-sign.png");
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2588, ../sass/_styleguide.scss */
  .supplemental-accordion .ui-accordion-header .ui-accordion-header-icon.view-filter-ui-icon-down,
  .general-accordion.ui-accordion .ui-accordion-header-icon.view-filter-ui-icon-down,
  .primary-accordion.ui-accordion .ui-accordion-header-icon.view-filter-ui-icon-down,
  .secondary-accordion.ui-accordion .ui-accordion-header-icon.view-filter-ui-icon-down {
    background-size: 17px 17px;
    width: 17px;
    height: 17px;
    margin-top: 3px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2588, ../sass/_styleguide.scss */
  .supplemental-accordion .ui-accordion-header .ui-accordion-header-icon.view-filter-ui-icon-down,
  .general-accordion.ui-accordion .ui-accordion-header-icon.view-filter-ui-icon-down,
  .primary-accordion.ui-accordion .ui-accordion-header-icon.view-filter-ui-icon-down,
  .secondary-accordion.ui-accordion .ui-accordion-header-icon.view-filter-ui-icon-down {
    background-size: 13px 13px;
    width: 13px;
    height: 13px;
    margin-top: 3px;
  }
}
/* line 2591, ../sass/_styleguide.scss */
.supplemental-accordion .ui-accordion-header .ui-accordion-header-icon.view-filter-ui-icon-down-first,
.general-accordion.ui-accordion .ui-accordion-header-icon.view-filter-ui-icon-down-first,
.primary-accordion.ui-accordion .ui-accordion-header-icon.view-filter-ui-icon-down-first,
.secondary-accordion.ui-accordion .ui-accordion-header-icon.view-filter-ui-icon-down-first {
  position: relative;
  background-repeat: no-repeat;
  display: inline-block;
  float: right;
  margin-right: 1.2em;
  background-size: 20px 20px;
  width: 20px;
  height: 20px;
  margin-top: 6px;
  top: 0;
  background-image: url("../images/plus-sign.png");
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2591, ../sass/_styleguide.scss */
  .supplemental-accordion .ui-accordion-header .ui-accordion-header-icon.view-filter-ui-icon-down-first,
  .general-accordion.ui-accordion .ui-accordion-header-icon.view-filter-ui-icon-down-first,
  .primary-accordion.ui-accordion .ui-accordion-header-icon.view-filter-ui-icon-down-first,
  .secondary-accordion.ui-accordion .ui-accordion-header-icon.view-filter-ui-icon-down-first {
    background-size: 17px 17px;
    width: 17px;
    height: 17px;
    margin-top: 3px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2591, ../sass/_styleguide.scss */
  .supplemental-accordion .ui-accordion-header .ui-accordion-header-icon.view-filter-ui-icon-down-first,
  .general-accordion.ui-accordion .ui-accordion-header-icon.view-filter-ui-icon-down-first,
  .primary-accordion.ui-accordion .ui-accordion-header-icon.view-filter-ui-icon-down-first,
  .secondary-accordion.ui-accordion .ui-accordion-header-icon.view-filter-ui-icon-down-first {
    background-size: 13px 13px;
    width: 13px;
    height: 13px;
    margin-top: 3px;
  }
}
/* line 2594, ../sass/_styleguide.scss */
.supplemental-accordion .ui-accordion-header .ui-accordion-header-icon.view-filter-ui-icon-down-second,
.general-accordion.ui-accordion .ui-accordion-header-icon.view-filter-ui-icon-down-second,
.primary-accordion.ui-accordion .ui-accordion-header-icon.view-filter-ui-icon-down-second,
.secondary-accordion.ui-accordion .ui-accordion-header-icon.view-filter-ui-icon-down-second {
  position: relative;
  background-repeat: no-repeat;
  display: inline-block;
  float: right;
  margin-right: 1.2em;
  background-size: 1em 1em;
  width: 1em;
  height: 1em;
  margin-top: 0.5em;
  background-image: url("../images/plus-sign.png");
}
/* line 2597, ../sass/_styleguide.scss */
.supplemental-accordion .ui-accordion-header .ui-accordion-header-icon.view-filter-ui-icon-down-third,
.general-accordion.ui-accordion .ui-accordion-header-icon.view-filter-ui-icon-down-third,
.primary-accordion.ui-accordion .ui-accordion-header-icon.view-filter-ui-icon-down-third,
.secondary-accordion.ui-accordion .ui-accordion-header-icon.view-filter-ui-icon-down-third {
  position: relative;
  background-repeat: no-repeat;
  display: inline-block;
  float: right;
  margin-right: 1.2em;
  background-size: 1em 1em;
  width: 1em;
  height: 1em;
  margin-top: 0.5em;
  background-image: url("../images/plus-sign.png");
  top: 25%;
}

/* line 2604, ../sass/_styleguide.scss */
.general-accordion.ui-accordion > .accordionPadding .ui-accordion-header-icon.view-filter-ui-icon-up-second,
.primary-accordion.ui-accordion > .accordionPadding .ui-accordion-header-icon.view-filter-ui-icon-up-second,
.secondary-accordion.ui-accordion > .accordionPadding .ui-accordion-header-icon.view-filter-ui-icon-up-second {
  font-size: 1.5rem;
  position: relative;
  background-repeat: no-repeat;
  display: inline-block;
  float: right;
  margin-right: 1.2em;
  background-size: 1em 1em;
  width: 1em;
  height: 1em;
  margin-top: 0.5em;
  background-image: url("../images/minus-sign-white.png");
  margin-top: 0.2em;
}
@media all and (min-width: 1440px) {
  /* line 2604, ../sass/_styleguide.scss */
  .general-accordion.ui-accordion > .accordionPadding .ui-accordion-header-icon.view-filter-ui-icon-up-second,
  .primary-accordion.ui-accordion > .accordionPadding .ui-accordion-header-icon.view-filter-ui-icon-up-second,
  .secondary-accordion.ui-accordion > .accordionPadding .ui-accordion-header-icon.view-filter-ui-icon-up-second {
    font-size: 1.5rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2604, ../sass/_styleguide.scss */
  .general-accordion.ui-accordion > .accordionPadding .ui-accordion-header-icon.view-filter-ui-icon-up-second,
  .primary-accordion.ui-accordion > .accordionPadding .ui-accordion-header-icon.view-filter-ui-icon-up-second,
  .secondary-accordion.ui-accordion > .accordionPadding .ui-accordion-header-icon.view-filter-ui-icon-up-second {
    font-size: 1.5rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2604, ../sass/_styleguide.scss */
  .general-accordion.ui-accordion > .accordionPadding .ui-accordion-header-icon.view-filter-ui-icon-up-second,
  .primary-accordion.ui-accordion > .accordionPadding .ui-accordion-header-icon.view-filter-ui-icon-up-second,
  .secondary-accordion.ui-accordion > .accordionPadding .ui-accordion-header-icon.view-filter-ui-icon-up-second {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2604, ../sass/_styleguide.scss */
  .general-accordion.ui-accordion > .accordionPadding .ui-accordion-header-icon.view-filter-ui-icon-up-second,
  .primary-accordion.ui-accordion > .accordionPadding .ui-accordion-header-icon.view-filter-ui-icon-up-second,
  .secondary-accordion.ui-accordion > .accordionPadding .ui-accordion-header-icon.view-filter-ui-icon-up-second {
    font-size: 1.125rem;
  }
}
/* line 2609, ../sass/_styleguide.scss */
.general-accordion.ui-accordion > .accordionPadding .ui-accordion-header-icon.view-filter-ui-icon-down-second,
.primary-accordion.ui-accordion > .accordionPadding .ui-accordion-header-icon.view-filter-ui-icon-down-second,
.secondary-accordion.ui-accordion > .accordionPadding .ui-accordion-header-icon.view-filter-ui-icon-down-second {
  font-size: 1.5rem;
  position: relative;
  background-repeat: no-repeat;
  display: inline-block;
  float: right;
  margin-right: 1.2em;
  background-size: 1em 1em;
  width: 1em;
  height: 1em;
  margin-top: 0.5em;
  background-image: url("../images/plus-sign.png");
  margin-top: 0.2em;
}
@media all and (min-width: 1440px) {
  /* line 2609, ../sass/_styleguide.scss */
  .general-accordion.ui-accordion > .accordionPadding .ui-accordion-header-icon.view-filter-ui-icon-down-second,
  .primary-accordion.ui-accordion > .accordionPadding .ui-accordion-header-icon.view-filter-ui-icon-down-second,
  .secondary-accordion.ui-accordion > .accordionPadding .ui-accordion-header-icon.view-filter-ui-icon-down-second {
    font-size: 1.5rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2609, ../sass/_styleguide.scss */
  .general-accordion.ui-accordion > .accordionPadding .ui-accordion-header-icon.view-filter-ui-icon-down-second,
  .primary-accordion.ui-accordion > .accordionPadding .ui-accordion-header-icon.view-filter-ui-icon-down-second,
  .secondary-accordion.ui-accordion > .accordionPadding .ui-accordion-header-icon.view-filter-ui-icon-down-second {
    font-size: 1.5rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2609, ../sass/_styleguide.scss */
  .general-accordion.ui-accordion > .accordionPadding .ui-accordion-header-icon.view-filter-ui-icon-down-second,
  .primary-accordion.ui-accordion > .accordionPadding .ui-accordion-header-icon.view-filter-ui-icon-down-second,
  .secondary-accordion.ui-accordion > .accordionPadding .ui-accordion-header-icon.view-filter-ui-icon-down-second {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2609, ../sass/_styleguide.scss */
  .general-accordion.ui-accordion > .accordionPadding .ui-accordion-header-icon.view-filter-ui-icon-down-second,
  .primary-accordion.ui-accordion > .accordionPadding .ui-accordion-header-icon.view-filter-ui-icon-down-second,
  .secondary-accordion.ui-accordion > .accordionPadding .ui-accordion-header-icon.view-filter-ui-icon-down-second {
    font-size: 1.125rem;
  }
}

/* line 2617, ../sass/_styleguide.scss */
.ui-accordion .accordion-header.ui-accordion-header,
.ui-accordion .subaccordion-header.ui-accordion-header,
.ui-accordion .grayaccordionheading.ui-accordion-header,
.ui-accordion h3.flataccordionheading h3.ui-accordion-header.graysubaccordionheading,
h3.flataccordionheading .ui-accordion h3.ui-accordion-header.graysubaccordionheading,
.ui-accordion .flataccordionheading.field--name-field-social-phrase-group-title h3.ui-accordion-header.graysubaccordionheading,
.flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion h3.ui-accordion-header.graysubaccordionheading,
.ui-accordion .flataccordionheading.field--name-field-image-gallery-title h3.ui-accordion-header.graysubaccordionheading,
.flataccordionheading.field--name-field-image-gallery-title .ui-accordion h3.ui-accordion-header.graysubaccordionheading,
.ui-accordion h3.flataccordionheading .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title,
h3.flataccordionheading .ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title,
.ui-accordion .flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title,
.flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title,
.ui-accordion .flataccordionheading.field--name-field-image-gallery-title .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title,
.flataccordionheading.field--name-field-image-gallery-title .ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title,
.ui-accordion h3.flataccordionheading .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title,
h3.flataccordionheading .ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title,
.ui-accordion .flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title,
.flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title,
.ui-accordion .flataccordionheading.field--name-field-image-gallery-title .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title,
.flataccordionheading.field--name-field-image-gallery-title .ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title,
.ui-accordion h3.ui-accordion-header.graysubSecondHeader,
.ui-accordion .ui-accordion-header.graysubSecondHeader.field--name-field-social-phrase-group-title,
.ui-accordion .ui-accordion-header.graysubSecondHeader.field--name-field-image-gallery-title,
.ui-accordion h3.ui-accordion-header.graysubThirdHeader,
.ui-accordion .ui-accordion-header.graysubThirdHeader.field--name-field-social-phrase-group-title,
.ui-accordion .ui-accordion-header.graysubThirdHeader.field--name-field-image-gallery-title,
.ui-accordion h3.ui-accordion-header.flatHeader,
.ui-accordion h3.ui-accordion-header.accordion-header-secondary,
.ui-accordion .ui-accordion-header.accordion-header-secondary.field--name-field-social-phrase-group-title,
.ui-accordion .ui-accordion-header.accordion-header-secondary.field--name-field-image-gallery-title,
.ui-accordion .ui-accordion-header.flatHeader.field--name-field-social-phrase-group-title,
.ui-accordion div.ui-accordion-header.field--name-field-social-phrase-group-title.flatPlainUnderlinedHeader,
.ui-accordion div.ui-accordion-header.field--name-field-social-phrase-group-title.flatPlainHeader,
.ui-accordion div.ui-accordion-header.field--name-field-social-phrase-group-title.flatPlainHeaderWhite,
.ui-accordion .ui-accordion-header.flatHeader.field--name-field-image-gallery-title,
.ui-accordion div.ui-accordion-header.field--name-field-image-gallery-title.flatPlainUnderlinedHeader,
.ui-accordion div.ui-accordion-header.field--name-field-image-gallery-title.flatPlainHeader,
.ui-accordion div.ui-accordion-header.field--name-field-image-gallery-title.flatPlainHeaderWhite,
.ui-accordion .ui-accordion-header.accordion-header,
.ui-accordion .ui-accordion-header.field--name-field-session-subtitle {
  font-size: 1.25rem;
  color: #222;
  font-weight: normal;
  font-style: normal;
  padding: 0.375em;
  display: block;
  cursor: pointer;
  position: relative;
  margin: 2px 0 0 0;
  min-height: 0;
  border-radius: 0;
  border-bottom: 1px solid #a5a5a5;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  background: none;
  margin-right: 0.875rem;
}
@media all and (min-width: 1440px) {
  /* line 2617, ../sass/_styleguide.scss */
  .ui-accordion .accordion-header.ui-accordion-header,
  .ui-accordion .subaccordion-header.ui-accordion-header,
  .ui-accordion .grayaccordionheading.ui-accordion-header,
  .ui-accordion h3.flataccordionheading h3.ui-accordion-header.graysubaccordionheading,
  h3.flataccordionheading .ui-accordion h3.ui-accordion-header.graysubaccordionheading,
  .ui-accordion .flataccordionheading.field--name-field-social-phrase-group-title h3.ui-accordion-header.graysubaccordionheading,
  .flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion h3.ui-accordion-header.graysubaccordionheading,
  .ui-accordion .flataccordionheading.field--name-field-image-gallery-title h3.ui-accordion-header.graysubaccordionheading,
  .flataccordionheading.field--name-field-image-gallery-title .ui-accordion h3.ui-accordion-header.graysubaccordionheading,
  .ui-accordion h3.flataccordionheading .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title,
  h3.flataccordionheading .ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title,
  .ui-accordion .flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title,
  .flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title,
  .ui-accordion .flataccordionheading.field--name-field-image-gallery-title .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title,
  .flataccordionheading.field--name-field-image-gallery-title .ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title,
  .ui-accordion h3.flataccordionheading .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title,
  h3.flataccordionheading .ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title,
  .ui-accordion .flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title,
  .flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title,
  .ui-accordion .flataccordionheading.field--name-field-image-gallery-title .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title,
  .flataccordionheading.field--name-field-image-gallery-title .ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title,
  .ui-accordion h3.ui-accordion-header.graysubSecondHeader,
  .ui-accordion .ui-accordion-header.graysubSecondHeader.field--name-field-social-phrase-group-title,
  .ui-accordion .ui-accordion-header.graysubSecondHeader.field--name-field-image-gallery-title,
  .ui-accordion h3.ui-accordion-header.graysubThirdHeader,
  .ui-accordion .ui-accordion-header.graysubThirdHeader.field--name-field-social-phrase-group-title,
  .ui-accordion .ui-accordion-header.graysubThirdHeader.field--name-field-image-gallery-title,
  .ui-accordion h3.ui-accordion-header.flatHeader,
  .ui-accordion h3.ui-accordion-header.accordion-header-secondary,
  .ui-accordion .ui-accordion-header.accordion-header-secondary.field--name-field-social-phrase-group-title,
  .ui-accordion .ui-accordion-header.accordion-header-secondary.field--name-field-image-gallery-title,
  .ui-accordion .ui-accordion-header.flatHeader.field--name-field-social-phrase-group-title,
  .ui-accordion div.ui-accordion-header.field--name-field-social-phrase-group-title.flatPlainUnderlinedHeader,
  .ui-accordion div.ui-accordion-header.field--name-field-social-phrase-group-title.flatPlainHeader,
  .ui-accordion div.ui-accordion-header.field--name-field-social-phrase-group-title.flatPlainHeaderWhite,
  .ui-accordion .ui-accordion-header.flatHeader.field--name-field-image-gallery-title,
  .ui-accordion div.ui-accordion-header.field--name-field-image-gallery-title.flatPlainUnderlinedHeader,
  .ui-accordion div.ui-accordion-header.field--name-field-image-gallery-title.flatPlainHeader,
  .ui-accordion div.ui-accordion-header.field--name-field-image-gallery-title.flatPlainHeaderWhite,
  .ui-accordion .ui-accordion-header.accordion-header,
  .ui-accordion .ui-accordion-header.field--name-field-session-subtitle {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2617, ../sass/_styleguide.scss */
  .ui-accordion .accordion-header.ui-accordion-header,
  .ui-accordion .subaccordion-header.ui-accordion-header,
  .ui-accordion .grayaccordionheading.ui-accordion-header,
  .ui-accordion h3.flataccordionheading h3.ui-accordion-header.graysubaccordionheading,
  h3.flataccordionheading .ui-accordion h3.ui-accordion-header.graysubaccordionheading,
  .ui-accordion .flataccordionheading.field--name-field-social-phrase-group-title h3.ui-accordion-header.graysubaccordionheading,
  .flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion h3.ui-accordion-header.graysubaccordionheading,
  .ui-accordion .flataccordionheading.field--name-field-image-gallery-title h3.ui-accordion-header.graysubaccordionheading,
  .flataccordionheading.field--name-field-image-gallery-title .ui-accordion h3.ui-accordion-header.graysubaccordionheading,
  .ui-accordion h3.flataccordionheading .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title,
  h3.flataccordionheading .ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title,
  .ui-accordion .flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title,
  .flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title,
  .ui-accordion .flataccordionheading.field--name-field-image-gallery-title .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title,
  .flataccordionheading.field--name-field-image-gallery-title .ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title,
  .ui-accordion h3.flataccordionheading .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title,
  h3.flataccordionheading .ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title,
  .ui-accordion .flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title,
  .flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title,
  .ui-accordion .flataccordionheading.field--name-field-image-gallery-title .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title,
  .flataccordionheading.field--name-field-image-gallery-title .ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title,
  .ui-accordion h3.ui-accordion-header.graysubSecondHeader,
  .ui-accordion .ui-accordion-header.graysubSecondHeader.field--name-field-social-phrase-group-title,
  .ui-accordion .ui-accordion-header.graysubSecondHeader.field--name-field-image-gallery-title,
  .ui-accordion h3.ui-accordion-header.graysubThirdHeader,
  .ui-accordion .ui-accordion-header.graysubThirdHeader.field--name-field-social-phrase-group-title,
  .ui-accordion .ui-accordion-header.graysubThirdHeader.field--name-field-image-gallery-title,
  .ui-accordion h3.ui-accordion-header.flatHeader,
  .ui-accordion h3.ui-accordion-header.accordion-header-secondary,
  .ui-accordion .ui-accordion-header.accordion-header-secondary.field--name-field-social-phrase-group-title,
  .ui-accordion .ui-accordion-header.accordion-header-secondary.field--name-field-image-gallery-title,
  .ui-accordion .ui-accordion-header.flatHeader.field--name-field-social-phrase-group-title,
  .ui-accordion div.ui-accordion-header.field--name-field-social-phrase-group-title.flatPlainUnderlinedHeader,
  .ui-accordion div.ui-accordion-header.field--name-field-social-phrase-group-title.flatPlainHeader,
  .ui-accordion div.ui-accordion-header.field--name-field-social-phrase-group-title.flatPlainHeaderWhite,
  .ui-accordion .ui-accordion-header.flatHeader.field--name-field-image-gallery-title,
  .ui-accordion div.ui-accordion-header.field--name-field-image-gallery-title.flatPlainUnderlinedHeader,
  .ui-accordion div.ui-accordion-header.field--name-field-image-gallery-title.flatPlainHeader,
  .ui-accordion div.ui-accordion-header.field--name-field-image-gallery-title.flatPlainHeaderWhite,
  .ui-accordion .ui-accordion-header.accordion-header,
  .ui-accordion .ui-accordion-header.field--name-field-session-subtitle {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2617, ../sass/_styleguide.scss */
  .ui-accordion .accordion-header.ui-accordion-header,
  .ui-accordion .subaccordion-header.ui-accordion-header,
  .ui-accordion .grayaccordionheading.ui-accordion-header,
  .ui-accordion h3.flataccordionheading h3.ui-accordion-header.graysubaccordionheading,
  h3.flataccordionheading .ui-accordion h3.ui-accordion-header.graysubaccordionheading,
  .ui-accordion .flataccordionheading.field--name-field-social-phrase-group-title h3.ui-accordion-header.graysubaccordionheading,
  .flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion h3.ui-accordion-header.graysubaccordionheading,
  .ui-accordion .flataccordionheading.field--name-field-image-gallery-title h3.ui-accordion-header.graysubaccordionheading,
  .flataccordionheading.field--name-field-image-gallery-title .ui-accordion h3.ui-accordion-header.graysubaccordionheading,
  .ui-accordion h3.flataccordionheading .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title,
  h3.flataccordionheading .ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title,
  .ui-accordion .flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title,
  .flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title,
  .ui-accordion .flataccordionheading.field--name-field-image-gallery-title .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title,
  .flataccordionheading.field--name-field-image-gallery-title .ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title,
  .ui-accordion h3.flataccordionheading .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title,
  h3.flataccordionheading .ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title,
  .ui-accordion .flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title,
  .flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title,
  .ui-accordion .flataccordionheading.field--name-field-image-gallery-title .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title,
  .flataccordionheading.field--name-field-image-gallery-title .ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title,
  .ui-accordion h3.ui-accordion-header.graysubSecondHeader,
  .ui-accordion .ui-accordion-header.graysubSecondHeader.field--name-field-social-phrase-group-title,
  .ui-accordion .ui-accordion-header.graysubSecondHeader.field--name-field-image-gallery-title,
  .ui-accordion h3.ui-accordion-header.graysubThirdHeader,
  .ui-accordion .ui-accordion-header.graysubThirdHeader.field--name-field-social-phrase-group-title,
  .ui-accordion .ui-accordion-header.graysubThirdHeader.field--name-field-image-gallery-title,
  .ui-accordion h3.ui-accordion-header.flatHeader,
  .ui-accordion h3.ui-accordion-header.accordion-header-secondary,
  .ui-accordion .ui-accordion-header.accordion-header-secondary.field--name-field-social-phrase-group-title,
  .ui-accordion .ui-accordion-header.accordion-header-secondary.field--name-field-image-gallery-title,
  .ui-accordion .ui-accordion-header.flatHeader.field--name-field-social-phrase-group-title,
  .ui-accordion div.ui-accordion-header.field--name-field-social-phrase-group-title.flatPlainUnderlinedHeader,
  .ui-accordion div.ui-accordion-header.field--name-field-social-phrase-group-title.flatPlainHeader,
  .ui-accordion div.ui-accordion-header.field--name-field-social-phrase-group-title.flatPlainHeaderWhite,
  .ui-accordion .ui-accordion-header.flatHeader.field--name-field-image-gallery-title,
  .ui-accordion div.ui-accordion-header.field--name-field-image-gallery-title.flatPlainUnderlinedHeader,
  .ui-accordion div.ui-accordion-header.field--name-field-image-gallery-title.flatPlainHeader,
  .ui-accordion div.ui-accordion-header.field--name-field-image-gallery-title.flatPlainHeaderWhite,
  .ui-accordion .ui-accordion-header.accordion-header,
  .ui-accordion .ui-accordion-header.field--name-field-session-subtitle {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2617, ../sass/_styleguide.scss */
  .ui-accordion .accordion-header.ui-accordion-header,
  .ui-accordion .subaccordion-header.ui-accordion-header,
  .ui-accordion .grayaccordionheading.ui-accordion-header,
  .ui-accordion h3.flataccordionheading h3.ui-accordion-header.graysubaccordionheading,
  h3.flataccordionheading .ui-accordion h3.ui-accordion-header.graysubaccordionheading,
  .ui-accordion .flataccordionheading.field--name-field-social-phrase-group-title h3.ui-accordion-header.graysubaccordionheading,
  .flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion h3.ui-accordion-header.graysubaccordionheading,
  .ui-accordion .flataccordionheading.field--name-field-image-gallery-title h3.ui-accordion-header.graysubaccordionheading,
  .flataccordionheading.field--name-field-image-gallery-title .ui-accordion h3.ui-accordion-header.graysubaccordionheading,
  .ui-accordion h3.flataccordionheading .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title,
  h3.flataccordionheading .ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title,
  .ui-accordion .flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title,
  .flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title,
  .ui-accordion .flataccordionheading.field--name-field-image-gallery-title .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title,
  .flataccordionheading.field--name-field-image-gallery-title .ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title,
  .ui-accordion h3.flataccordionheading .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title,
  h3.flataccordionheading .ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title,
  .ui-accordion .flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title,
  .flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title,
  .ui-accordion .flataccordionheading.field--name-field-image-gallery-title .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title,
  .flataccordionheading.field--name-field-image-gallery-title .ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title,
  .ui-accordion h3.ui-accordion-header.graysubSecondHeader,
  .ui-accordion .ui-accordion-header.graysubSecondHeader.field--name-field-social-phrase-group-title,
  .ui-accordion .ui-accordion-header.graysubSecondHeader.field--name-field-image-gallery-title,
  .ui-accordion h3.ui-accordion-header.graysubThirdHeader,
  .ui-accordion .ui-accordion-header.graysubThirdHeader.field--name-field-social-phrase-group-title,
  .ui-accordion .ui-accordion-header.graysubThirdHeader.field--name-field-image-gallery-title,
  .ui-accordion h3.ui-accordion-header.flatHeader,
  .ui-accordion h3.ui-accordion-header.accordion-header-secondary,
  .ui-accordion .ui-accordion-header.accordion-header-secondary.field--name-field-social-phrase-group-title,
  .ui-accordion .ui-accordion-header.accordion-header-secondary.field--name-field-image-gallery-title,
  .ui-accordion .ui-accordion-header.flatHeader.field--name-field-social-phrase-group-title,
  .ui-accordion div.ui-accordion-header.field--name-field-social-phrase-group-title.flatPlainUnderlinedHeader,
  .ui-accordion div.ui-accordion-header.field--name-field-social-phrase-group-title.flatPlainHeader,
  .ui-accordion div.ui-accordion-header.field--name-field-social-phrase-group-title.flatPlainHeaderWhite,
  .ui-accordion .ui-accordion-header.flatHeader.field--name-field-image-gallery-title,
  .ui-accordion div.ui-accordion-header.field--name-field-image-gallery-title.flatPlainUnderlinedHeader,
  .ui-accordion div.ui-accordion-header.field--name-field-image-gallery-title.flatPlainHeader,
  .ui-accordion div.ui-accordion-header.field--name-field-image-gallery-title.flatPlainHeaderWhite,
  .ui-accordion .ui-accordion-header.accordion-header,
  .ui-accordion .ui-accordion-header.field--name-field-session-subtitle {
    font-size: 1rem;
  }
}
/* line 1146, ../sass/_mixins.scss */
.ui-accordion .accordion-header.ui-accordion-header:hover,
.ui-accordion .subaccordion-header.ui-accordion-header:hover,
.ui-accordion .grayaccordionheading.ui-accordion-header:hover,
.ui-accordion h3.flataccordionheading h3.ui-accordion-header.graysubaccordionheading:hover,
h3.flataccordionheading .ui-accordion h3.ui-accordion-header.graysubaccordionheading:hover,
.ui-accordion .flataccordionheading.field--name-field-social-phrase-group-title h3.ui-accordion-header.graysubaccordionheading:hover,
.flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion h3.ui-accordion-header.graysubaccordionheading:hover,
.ui-accordion .flataccordionheading.field--name-field-image-gallery-title h3.ui-accordion-header.graysubaccordionheading:hover,
.flataccordionheading.field--name-field-image-gallery-title .ui-accordion h3.ui-accordion-header.graysubaccordionheading:hover,
.ui-accordion h3.flataccordionheading .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title:hover,
h3.flataccordionheading .ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title:hover,
.ui-accordion .flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title:hover,
.flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title:hover,
.ui-accordion .flataccordionheading.field--name-field-image-gallery-title .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title:hover,
.flataccordionheading.field--name-field-image-gallery-title .ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title:hover,
.ui-accordion h3.flataccordionheading .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title:hover,
h3.flataccordionheading .ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title:hover,
.ui-accordion .flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title:hover,
.flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title:hover,
.ui-accordion .flataccordionheading.field--name-field-image-gallery-title .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title:hover,
.flataccordionheading.field--name-field-image-gallery-title .ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title:hover,
.ui-accordion h3.ui-accordion-header.graysubSecondHeader:hover,
.ui-accordion .ui-accordion-header.graysubSecondHeader.field--name-field-social-phrase-group-title:hover,
.ui-accordion .ui-accordion-header.graysubSecondHeader.field--name-field-image-gallery-title:hover,
.ui-accordion h3.ui-accordion-header.graysubThirdHeader:hover,
.ui-accordion .ui-accordion-header.graysubThirdHeader.field--name-field-social-phrase-group-title:hover,
.ui-accordion .ui-accordion-header.graysubThirdHeader.field--name-field-image-gallery-title:hover,
.ui-accordion h3.ui-accordion-header.flatHeader:hover,
.ui-accordion h3.ui-accordion-header.accordion-header-secondary:hover,
.ui-accordion .ui-accordion-header.accordion-header-secondary.field--name-field-social-phrase-group-title:hover,
.ui-accordion .ui-accordion-header.accordion-header-secondary.field--name-field-image-gallery-title:hover,
.ui-accordion .ui-accordion-header.flatHeader.field--name-field-social-phrase-group-title:hover,
.ui-accordion div.ui-accordion-header.field--name-field-social-phrase-group-title.flatPlainUnderlinedHeader:hover,
.ui-accordion div.ui-accordion-header.field--name-field-social-phrase-group-title.flatPlainHeader:hover,
.ui-accordion div.ui-accordion-header.field--name-field-social-phrase-group-title.flatPlainHeaderWhite:hover,
.ui-accordion .ui-accordion-header.flatHeader.field--name-field-image-gallery-title:hover,
.ui-accordion div.ui-accordion-header.field--name-field-image-gallery-title.flatPlainUnderlinedHeader:hover,
.ui-accordion div.ui-accordion-header.field--name-field-image-gallery-title.flatPlainHeader:hover,
.ui-accordion div.ui-accordion-header.field--name-field-image-gallery-title.flatPlainHeaderWhite:hover,
.ui-accordion .ui-accordion-header.accordion-header:hover,
.ui-accordion .ui-accordion-header.field--name-field-session-subtitle:hover {
  font-weight: 700;
}

/* line 2625, ../sass/_styleguide.scss */
div.flatHeader, div.accordion-header-secondary, div.flatPlainUnderlinedHeader, div.flatPlainHeader, div.flatPlainHeaderWhite,
.ui-accordion .accordion-header-secondary.ui-accordion-header,
.secondary-accordion.ui-accordion .accordion-header-secondary.ui-accordion-header {
  font-size: 1.5rem;
  color: #222;
  font-weight: normal;
  font-style: normal;
  padding: 0.375em;
  display: block;
  cursor: pointer;
  position: relative;
  margin: 2px 0 0 0;
  min-height: 0;
  border-radius: 0;
  border-bottom: 1px solid #a5a5a5;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  background: none;
  font-size: 1.5rem;
  padding-left: 0;
  margin-right: 0;
}
@media all and (min-width: 1440px) {
  /* line 2625, ../sass/_styleguide.scss */
  div.flatHeader, div.accordion-header-secondary, div.flatPlainUnderlinedHeader, div.flatPlainHeader, div.flatPlainHeaderWhite,
  .ui-accordion .accordion-header-secondary.ui-accordion-header,
  .secondary-accordion.ui-accordion .accordion-header-secondary.ui-accordion-header {
    font-size: 1.5rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2625, ../sass/_styleguide.scss */
  div.flatHeader, div.accordion-header-secondary, div.flatPlainUnderlinedHeader, div.flatPlainHeader, div.flatPlainHeaderWhite,
  .ui-accordion .accordion-header-secondary.ui-accordion-header,
  .secondary-accordion.ui-accordion .accordion-header-secondary.ui-accordion-header {
    font-size: 1.5rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2625, ../sass/_styleguide.scss */
  div.flatHeader, div.accordion-header-secondary, div.flatPlainUnderlinedHeader, div.flatPlainHeader, div.flatPlainHeaderWhite,
  .ui-accordion .accordion-header-secondary.ui-accordion-header,
  .secondary-accordion.ui-accordion .accordion-header-secondary.ui-accordion-header {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2625, ../sass/_styleguide.scss */
  div.flatHeader, div.accordion-header-secondary, div.flatPlainUnderlinedHeader, div.flatPlainHeader, div.flatPlainHeaderWhite,
  .ui-accordion .accordion-header-secondary.ui-accordion-header,
  .secondary-accordion.ui-accordion .accordion-header-secondary.ui-accordion-header {
    font-size: 1.125rem;
  }
}
/* line 1146, ../sass/_mixins.scss */
div.flatHeader:hover, div.accordion-header-secondary:hover, div.flatPlainUnderlinedHeader:hover, div.flatPlainHeader:hover, div.flatPlainHeaderWhite:hover,
.ui-accordion .accordion-header-secondary.ui-accordion-header:hover,
.secondary-accordion.ui-accordion .accordion-header-secondary.ui-accordion-header:hover {
  font-weight: 700;
}
@media all and (min-width: 1440px) {
  /* line 2625, ../sass/_styleguide.scss */
  div.flatHeader, div.accordion-header-secondary, div.flatPlainUnderlinedHeader, div.flatPlainHeader, div.flatPlainHeaderWhite,
  .ui-accordion .accordion-header-secondary.ui-accordion-header,
  .secondary-accordion.ui-accordion .accordion-header-secondary.ui-accordion-header {
    font-size: 1.5rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2625, ../sass/_styleguide.scss */
  div.flatHeader, div.accordion-header-secondary, div.flatPlainUnderlinedHeader, div.flatPlainHeader, div.flatPlainHeaderWhite,
  .ui-accordion .accordion-header-secondary.ui-accordion-header,
  .secondary-accordion.ui-accordion .accordion-header-secondary.ui-accordion-header {
    font-size: 1.5rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2625, ../sass/_styleguide.scss */
  div.flatHeader, div.accordion-header-secondary, div.flatPlainUnderlinedHeader, div.flatPlainHeader, div.flatPlainHeaderWhite,
  .ui-accordion .accordion-header-secondary.ui-accordion-header,
  .secondary-accordion.ui-accordion .accordion-header-secondary.ui-accordion-header {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2625, ../sass/_styleguide.scss */
  div.flatHeader, div.accordion-header-secondary, div.flatPlainUnderlinedHeader, div.flatPlainHeader, div.flatPlainHeaderWhite,
  .ui-accordion .accordion-header-secondary.ui-accordion-header,
  .secondary-accordion.ui-accordion .accordion-header-secondary.ui-accordion-header {
    font-size: 1rem;
  }
}

/* line 2635, ../sass/_styleguide.scss */
.supplemental-accordion .accordion-header,
.supplemental-accordion .grayaccordionheading,
.supplemental-accordion h3.flataccordionheading h3.graysubaccordionheading,
h3.flataccordionheading .supplemental-accordion h3.graysubaccordionheading,
.supplemental-accordion .flataccordionheading.field--name-field-social-phrase-group-title h3.graysubaccordionheading,
.flataccordionheading.field--name-field-social-phrase-group-title .supplemental-accordion h3.graysubaccordionheading,
.supplemental-accordion .flataccordionheading.field--name-field-image-gallery-title h3.graysubaccordionheading,
.flataccordionheading.field--name-field-image-gallery-title .supplemental-accordion h3.graysubaccordionheading,
.supplemental-accordion h3.flataccordionheading .graysubaccordionheading.field--name-field-social-phrase-group-title,
h3.flataccordionheading .supplemental-accordion .graysubaccordionheading.field--name-field-social-phrase-group-title,
.supplemental-accordion .flataccordionheading.field--name-field-social-phrase-group-title .graysubaccordionheading.field--name-field-social-phrase-group-title,
.flataccordionheading.field--name-field-social-phrase-group-title .supplemental-accordion .graysubaccordionheading.field--name-field-social-phrase-group-title,
.supplemental-accordion .flataccordionheading.field--name-field-image-gallery-title .graysubaccordionheading.field--name-field-social-phrase-group-title,
.flataccordionheading.field--name-field-image-gallery-title .supplemental-accordion .graysubaccordionheading.field--name-field-social-phrase-group-title,
.supplemental-accordion h3.flataccordionheading .graysubaccordionheading.field--name-field-image-gallery-title,
h3.flataccordionheading .supplemental-accordion .graysubaccordionheading.field--name-field-image-gallery-title,
.supplemental-accordion .flataccordionheading.field--name-field-social-phrase-group-title .graysubaccordionheading.field--name-field-image-gallery-title,
.flataccordionheading.field--name-field-social-phrase-group-title .supplemental-accordion .graysubaccordionheading.field--name-field-image-gallery-title,
.supplemental-accordion .flataccordionheading.field--name-field-image-gallery-title .graysubaccordionheading.field--name-field-image-gallery-title,
.flataccordionheading.field--name-field-image-gallery-title .supplemental-accordion .graysubaccordionheading.field--name-field-image-gallery-title,
.supplemental-accordion h3.graysubSecondHeader,
.supplemental-accordion .graysubSecondHeader.field--name-field-social-phrase-group-title,
.supplemental-accordion .graysubSecondHeader.field--name-field-image-gallery-title,
.supplemental-accordion h3.graysubThirdHeader,
.supplemental-accordion .graysubThirdHeader.field--name-field-social-phrase-group-title,
.supplemental-accordion .graysubThirdHeader.field--name-field-image-gallery-title,
.supplemental-accordion h3.flatHeader,
.supplemental-accordion h3.accordion-header-secondary,
.supplemental-accordion .accordion-header-secondary.field--name-field-social-phrase-group-title,
.supplemental-accordion .accordion-header-secondary.field--name-field-image-gallery-title,
.supplemental-accordion .flatHeader.field--name-field-social-phrase-group-title,
.supplemental-accordion div.field--name-field-social-phrase-group-title.flatPlainUnderlinedHeader,
.supplemental-accordion div.field--name-field-social-phrase-group-title.flatPlainHeader,
.supplemental-accordion div.field--name-field-social-phrase-group-title.flatPlainHeaderWhite,
.supplemental-accordion .flatHeader.field--name-field-image-gallery-title,
.supplemental-accordion div.field--name-field-image-gallery-title.flatPlainUnderlinedHeader,
.supplemental-accordion div.field--name-field-image-gallery-title.flatPlainHeader,
.supplemental-accordion div.field--name-field-image-gallery-title.flatPlainHeaderWhite,
.supplemental-accordion .accordion-header,
.supplemental-accordion .field--name-field-session-subtitle,
.supplemental-accordion .accordion-header-secondary {
  margin-top: 1em;
  margin-right: 1em;
}

/* line 2642, ../sass/_styleguide.scss */
.ui-accordion h3.graysubaccordionheading.ui-accordion-header, .ui-accordion .graysubaccordionheading.ui-accordion-header.field--name-field-social-phrase-group-title, .ui-accordion .graysubaccordionheading.ui-accordion-header.field--name-field-image-gallery-title,
h3.flatHeader,
h3.accordion-header-secondary,
.accordion-header-secondary.field--name-field-social-phrase-group-title,
.accordion-header-secondary.field--name-field-image-gallery-title,
.flatHeader.field--name-field-social-phrase-group-title,
div.field--name-field-social-phrase-group-title.flatPlainUnderlinedHeader,
div.field--name-field-social-phrase-group-title.flatPlainHeader,
div.field--name-field-social-phrase-group-title.flatPlainHeaderWhite,
.flatHeader.field--name-field-image-gallery-title,
div.field--name-field-image-gallery-title.flatPlainUnderlinedHeader,
div.field--name-field-image-gallery-title.flatPlainHeader,
div.field--name-field-image-gallery-title.flatPlainHeaderWhite,
.ui-accordion h3.graysubSecondHeader .ui-accordion-header,
.ui-accordion .graysubSecondHeader.field--name-field-social-phrase-group-title .ui-accordion-header,
.ui-accordion .graysubSecondHeader.field--name-field-image-gallery-title .ui-accordion-header,
.ui-accordion h3.graysubSecondHeader,
.ui-accordion .graysubSecondHeader.field--name-field-social-phrase-group-title,
.ui-accordion .graysubSecondHeader.field--name-field-image-gallery-title,
.ui-accordion h3.graysubThirdHeader.ui-accordion-header,
.ui-accordion .graysubThirdHeader.ui-accordion-header.field--name-field-social-phrase-group-title,
.ui-accordion .graysubThirdHeader.ui-accordion-header.field--name-field-image-gallery-title,
h3.graysubThirdHeader,
.graysubThirdHeader.field--name-field-social-phrase-group-title,
.graysubThirdHeader.field--name-field-image-gallery-title {
  font-size: 1.25rem;
  color: #222;
  font-weight: bold;
  font-style: normal;
  padding: 0.375em;
  display: block;
  cursor: pointer;
  position: relative;
  margin: 2px 0 0 0;
  min-height: 0;
  font-size: 1.25rem;
  border-radius: 0;
  border-bottom: 1px solid #a5a5a5;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  background: none;
  margin-right: 0.875rem;
}
@media all and (min-width: 1440px) {
  /* line 2642, ../sass/_styleguide.scss */
  .ui-accordion h3.graysubaccordionheading.ui-accordion-header, .ui-accordion .graysubaccordionheading.ui-accordion-header.field--name-field-social-phrase-group-title, .ui-accordion .graysubaccordionheading.ui-accordion-header.field--name-field-image-gallery-title,
  h3.flatHeader,
  h3.accordion-header-secondary,
  .accordion-header-secondary.field--name-field-social-phrase-group-title,
  .accordion-header-secondary.field--name-field-image-gallery-title,
  .flatHeader.field--name-field-social-phrase-group-title,
  div.field--name-field-social-phrase-group-title.flatPlainUnderlinedHeader,
  div.field--name-field-social-phrase-group-title.flatPlainHeader,
  div.field--name-field-social-phrase-group-title.flatPlainHeaderWhite,
  .flatHeader.field--name-field-image-gallery-title,
  div.field--name-field-image-gallery-title.flatPlainUnderlinedHeader,
  div.field--name-field-image-gallery-title.flatPlainHeader,
  div.field--name-field-image-gallery-title.flatPlainHeaderWhite,
  .ui-accordion h3.graysubSecondHeader .ui-accordion-header,
  .ui-accordion .graysubSecondHeader.field--name-field-social-phrase-group-title .ui-accordion-header,
  .ui-accordion .graysubSecondHeader.field--name-field-image-gallery-title .ui-accordion-header,
  .ui-accordion h3.graysubSecondHeader,
  .ui-accordion .graysubSecondHeader.field--name-field-social-phrase-group-title,
  .ui-accordion .graysubSecondHeader.field--name-field-image-gallery-title,
  .ui-accordion h3.graysubThirdHeader.ui-accordion-header,
  .ui-accordion .graysubThirdHeader.ui-accordion-header.field--name-field-social-phrase-group-title,
  .ui-accordion .graysubThirdHeader.ui-accordion-header.field--name-field-image-gallery-title,
  h3.graysubThirdHeader,
  .graysubThirdHeader.field--name-field-social-phrase-group-title,
  .graysubThirdHeader.field--name-field-image-gallery-title {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2642, ../sass/_styleguide.scss */
  .ui-accordion h3.graysubaccordionheading.ui-accordion-header, .ui-accordion .graysubaccordionheading.ui-accordion-header.field--name-field-social-phrase-group-title, .ui-accordion .graysubaccordionheading.ui-accordion-header.field--name-field-image-gallery-title,
  h3.flatHeader,
  h3.accordion-header-secondary,
  .accordion-header-secondary.field--name-field-social-phrase-group-title,
  .accordion-header-secondary.field--name-field-image-gallery-title,
  .flatHeader.field--name-field-social-phrase-group-title,
  div.field--name-field-social-phrase-group-title.flatPlainUnderlinedHeader,
  div.field--name-field-social-phrase-group-title.flatPlainHeader,
  div.field--name-field-social-phrase-group-title.flatPlainHeaderWhite,
  .flatHeader.field--name-field-image-gallery-title,
  div.field--name-field-image-gallery-title.flatPlainUnderlinedHeader,
  div.field--name-field-image-gallery-title.flatPlainHeader,
  div.field--name-field-image-gallery-title.flatPlainHeaderWhite,
  .ui-accordion h3.graysubSecondHeader .ui-accordion-header,
  .ui-accordion .graysubSecondHeader.field--name-field-social-phrase-group-title .ui-accordion-header,
  .ui-accordion .graysubSecondHeader.field--name-field-image-gallery-title .ui-accordion-header,
  .ui-accordion h3.graysubSecondHeader,
  .ui-accordion .graysubSecondHeader.field--name-field-social-phrase-group-title,
  .ui-accordion .graysubSecondHeader.field--name-field-image-gallery-title,
  .ui-accordion h3.graysubThirdHeader.ui-accordion-header,
  .ui-accordion .graysubThirdHeader.ui-accordion-header.field--name-field-social-phrase-group-title,
  .ui-accordion .graysubThirdHeader.ui-accordion-header.field--name-field-image-gallery-title,
  h3.graysubThirdHeader,
  .graysubThirdHeader.field--name-field-social-phrase-group-title,
  .graysubThirdHeader.field--name-field-image-gallery-title {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2642, ../sass/_styleguide.scss */
  .ui-accordion h3.graysubaccordionheading.ui-accordion-header, .ui-accordion .graysubaccordionheading.ui-accordion-header.field--name-field-social-phrase-group-title, .ui-accordion .graysubaccordionheading.ui-accordion-header.field--name-field-image-gallery-title,
  h3.flatHeader,
  h3.accordion-header-secondary,
  .accordion-header-secondary.field--name-field-social-phrase-group-title,
  .accordion-header-secondary.field--name-field-image-gallery-title,
  .flatHeader.field--name-field-social-phrase-group-title,
  div.field--name-field-social-phrase-group-title.flatPlainUnderlinedHeader,
  div.field--name-field-social-phrase-group-title.flatPlainHeader,
  div.field--name-field-social-phrase-group-title.flatPlainHeaderWhite,
  .flatHeader.field--name-field-image-gallery-title,
  div.field--name-field-image-gallery-title.flatPlainUnderlinedHeader,
  div.field--name-field-image-gallery-title.flatPlainHeader,
  div.field--name-field-image-gallery-title.flatPlainHeaderWhite,
  .ui-accordion h3.graysubSecondHeader .ui-accordion-header,
  .ui-accordion .graysubSecondHeader.field--name-field-social-phrase-group-title .ui-accordion-header,
  .ui-accordion .graysubSecondHeader.field--name-field-image-gallery-title .ui-accordion-header,
  .ui-accordion h3.graysubSecondHeader,
  .ui-accordion .graysubSecondHeader.field--name-field-social-phrase-group-title,
  .ui-accordion .graysubSecondHeader.field--name-field-image-gallery-title,
  .ui-accordion h3.graysubThirdHeader.ui-accordion-header,
  .ui-accordion .graysubThirdHeader.ui-accordion-header.field--name-field-social-phrase-group-title,
  .ui-accordion .graysubThirdHeader.ui-accordion-header.field--name-field-image-gallery-title,
  h3.graysubThirdHeader,
  .graysubThirdHeader.field--name-field-social-phrase-group-title,
  .graysubThirdHeader.field--name-field-image-gallery-title {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2642, ../sass/_styleguide.scss */
  .ui-accordion h3.graysubaccordionheading.ui-accordion-header, .ui-accordion .graysubaccordionheading.ui-accordion-header.field--name-field-social-phrase-group-title, .ui-accordion .graysubaccordionheading.ui-accordion-header.field--name-field-image-gallery-title,
  h3.flatHeader,
  h3.accordion-header-secondary,
  .accordion-header-secondary.field--name-field-social-phrase-group-title,
  .accordion-header-secondary.field--name-field-image-gallery-title,
  .flatHeader.field--name-field-social-phrase-group-title,
  div.field--name-field-social-phrase-group-title.flatPlainUnderlinedHeader,
  div.field--name-field-social-phrase-group-title.flatPlainHeader,
  div.field--name-field-social-phrase-group-title.flatPlainHeaderWhite,
  .flatHeader.field--name-field-image-gallery-title,
  div.field--name-field-image-gallery-title.flatPlainUnderlinedHeader,
  div.field--name-field-image-gallery-title.flatPlainHeader,
  div.field--name-field-image-gallery-title.flatPlainHeaderWhite,
  .ui-accordion h3.graysubSecondHeader .ui-accordion-header,
  .ui-accordion .graysubSecondHeader.field--name-field-social-phrase-group-title .ui-accordion-header,
  .ui-accordion .graysubSecondHeader.field--name-field-image-gallery-title .ui-accordion-header,
  .ui-accordion h3.graysubSecondHeader,
  .ui-accordion .graysubSecondHeader.field--name-field-social-phrase-group-title,
  .ui-accordion .graysubSecondHeader.field--name-field-image-gallery-title,
  .ui-accordion h3.graysubThirdHeader.ui-accordion-header,
  .ui-accordion .graysubThirdHeader.ui-accordion-header.field--name-field-social-phrase-group-title,
  .ui-accordion .graysubThirdHeader.ui-accordion-header.field--name-field-image-gallery-title,
  h3.graysubThirdHeader,
  .graysubThirdHeader.field--name-field-social-phrase-group-title,
  .graysubThirdHeader.field--name-field-image-gallery-title {
    font-size: 1rem;
  }
}
/* line 1146, ../sass/_mixins.scss */
.ui-accordion h3.graysubaccordionheading.ui-accordion-header:hover, .ui-accordion .graysubaccordionheading.ui-accordion-header.field--name-field-social-phrase-group-title:hover, .ui-accordion .graysubaccordionheading.ui-accordion-header.field--name-field-image-gallery-title:hover,
h3.flatHeader:hover,
h3.accordion-header-secondary:hover,
.accordion-header-secondary.field--name-field-social-phrase-group-title:hover,
.accordion-header-secondary.field--name-field-image-gallery-title:hover,
.flatHeader.field--name-field-social-phrase-group-title:hover,
div.field--name-field-social-phrase-group-title.flatPlainUnderlinedHeader:hover,
div.field--name-field-social-phrase-group-title.flatPlainHeader:hover,
div.field--name-field-social-phrase-group-title.flatPlainHeaderWhite:hover,
.flatHeader.field--name-field-image-gallery-title:hover,
div.field--name-field-image-gallery-title.flatPlainUnderlinedHeader:hover,
div.field--name-field-image-gallery-title.flatPlainHeader:hover,
div.field--name-field-image-gallery-title.flatPlainHeaderWhite:hover,
.ui-accordion h3.graysubSecondHeader .ui-accordion-header:hover,
.ui-accordion .graysubSecondHeader.field--name-field-social-phrase-group-title .ui-accordion-header:hover,
.ui-accordion .graysubSecondHeader.field--name-field-image-gallery-title .ui-accordion-header:hover,
.ui-accordion h3.graysubSecondHeader:hover,
.ui-accordion .graysubSecondHeader.field--name-field-social-phrase-group-title:hover,
.ui-accordion .graysubSecondHeader.field--name-field-image-gallery-title:hover,
.ui-accordion h3.graysubThirdHeader.ui-accordion-header:hover,
.ui-accordion .graysubThirdHeader.ui-accordion-header.field--name-field-social-phrase-group-title:hover,
.ui-accordion .graysubThirdHeader.ui-accordion-header.field--name-field-image-gallery-title:hover,
h3.graysubThirdHeader:hover,
.graysubThirdHeader.field--name-field-social-phrase-group-title:hover,
.graysubThirdHeader.field--name-field-image-gallery-title:hover {
  font-weight: 700;
}
@media all and (min-width: 1440px) {
  /* line 2642, ../sass/_styleguide.scss */
  .ui-accordion h3.graysubaccordionheading.ui-accordion-header, .ui-accordion .graysubaccordionheading.ui-accordion-header.field--name-field-social-phrase-group-title, .ui-accordion .graysubaccordionheading.ui-accordion-header.field--name-field-image-gallery-title,
  h3.flatHeader,
  h3.accordion-header-secondary,
  .accordion-header-secondary.field--name-field-social-phrase-group-title,
  .accordion-header-secondary.field--name-field-image-gallery-title,
  .flatHeader.field--name-field-social-phrase-group-title,
  div.field--name-field-social-phrase-group-title.flatPlainUnderlinedHeader,
  div.field--name-field-social-phrase-group-title.flatPlainHeader,
  div.field--name-field-social-phrase-group-title.flatPlainHeaderWhite,
  .flatHeader.field--name-field-image-gallery-title,
  div.field--name-field-image-gallery-title.flatPlainUnderlinedHeader,
  div.field--name-field-image-gallery-title.flatPlainHeader,
  div.field--name-field-image-gallery-title.flatPlainHeaderWhite,
  .ui-accordion h3.graysubSecondHeader .ui-accordion-header,
  .ui-accordion .graysubSecondHeader.field--name-field-social-phrase-group-title .ui-accordion-header,
  .ui-accordion .graysubSecondHeader.field--name-field-image-gallery-title .ui-accordion-header,
  .ui-accordion h3.graysubSecondHeader,
  .ui-accordion .graysubSecondHeader.field--name-field-social-phrase-group-title,
  .ui-accordion .graysubSecondHeader.field--name-field-image-gallery-title,
  .ui-accordion h3.graysubThirdHeader.ui-accordion-header,
  .ui-accordion .graysubThirdHeader.ui-accordion-header.field--name-field-social-phrase-group-title,
  .ui-accordion .graysubThirdHeader.ui-accordion-header.field--name-field-image-gallery-title,
  h3.graysubThirdHeader,
  .graysubThirdHeader.field--name-field-social-phrase-group-title,
  .graysubThirdHeader.field--name-field-image-gallery-title {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2642, ../sass/_styleguide.scss */
  .ui-accordion h3.graysubaccordionheading.ui-accordion-header, .ui-accordion .graysubaccordionheading.ui-accordion-header.field--name-field-social-phrase-group-title, .ui-accordion .graysubaccordionheading.ui-accordion-header.field--name-field-image-gallery-title,
  h3.flatHeader,
  h3.accordion-header-secondary,
  .accordion-header-secondary.field--name-field-social-phrase-group-title,
  .accordion-header-secondary.field--name-field-image-gallery-title,
  .flatHeader.field--name-field-social-phrase-group-title,
  div.field--name-field-social-phrase-group-title.flatPlainUnderlinedHeader,
  div.field--name-field-social-phrase-group-title.flatPlainHeader,
  div.field--name-field-social-phrase-group-title.flatPlainHeaderWhite,
  .flatHeader.field--name-field-image-gallery-title,
  div.field--name-field-image-gallery-title.flatPlainUnderlinedHeader,
  div.field--name-field-image-gallery-title.flatPlainHeader,
  div.field--name-field-image-gallery-title.flatPlainHeaderWhite,
  .ui-accordion h3.graysubSecondHeader .ui-accordion-header,
  .ui-accordion .graysubSecondHeader.field--name-field-social-phrase-group-title .ui-accordion-header,
  .ui-accordion .graysubSecondHeader.field--name-field-image-gallery-title .ui-accordion-header,
  .ui-accordion h3.graysubSecondHeader,
  .ui-accordion .graysubSecondHeader.field--name-field-social-phrase-group-title,
  .ui-accordion .graysubSecondHeader.field--name-field-image-gallery-title,
  .ui-accordion h3.graysubThirdHeader.ui-accordion-header,
  .ui-accordion .graysubThirdHeader.ui-accordion-header.field--name-field-social-phrase-group-title,
  .ui-accordion .graysubThirdHeader.ui-accordion-header.field--name-field-image-gallery-title,
  h3.graysubThirdHeader,
  .graysubThirdHeader.field--name-field-social-phrase-group-title,
  .graysubThirdHeader.field--name-field-image-gallery-title {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2642, ../sass/_styleguide.scss */
  .ui-accordion h3.graysubaccordionheading.ui-accordion-header, .ui-accordion .graysubaccordionheading.ui-accordion-header.field--name-field-social-phrase-group-title, .ui-accordion .graysubaccordionheading.ui-accordion-header.field--name-field-image-gallery-title,
  h3.flatHeader,
  h3.accordion-header-secondary,
  .accordion-header-secondary.field--name-field-social-phrase-group-title,
  .accordion-header-secondary.field--name-field-image-gallery-title,
  .flatHeader.field--name-field-social-phrase-group-title,
  div.field--name-field-social-phrase-group-title.flatPlainUnderlinedHeader,
  div.field--name-field-social-phrase-group-title.flatPlainHeader,
  div.field--name-field-social-phrase-group-title.flatPlainHeaderWhite,
  .flatHeader.field--name-field-image-gallery-title,
  div.field--name-field-image-gallery-title.flatPlainUnderlinedHeader,
  div.field--name-field-image-gallery-title.flatPlainHeader,
  div.field--name-field-image-gallery-title.flatPlainHeaderWhite,
  .ui-accordion h3.graysubSecondHeader .ui-accordion-header,
  .ui-accordion .graysubSecondHeader.field--name-field-social-phrase-group-title .ui-accordion-header,
  .ui-accordion .graysubSecondHeader.field--name-field-image-gallery-title .ui-accordion-header,
  .ui-accordion h3.graysubSecondHeader,
  .ui-accordion .graysubSecondHeader.field--name-field-social-phrase-group-title,
  .ui-accordion .graysubSecondHeader.field--name-field-image-gallery-title,
  .ui-accordion h3.graysubThirdHeader.ui-accordion-header,
  .ui-accordion .graysubThirdHeader.ui-accordion-header.field--name-field-social-phrase-group-title,
  .ui-accordion .graysubThirdHeader.ui-accordion-header.field--name-field-image-gallery-title,
  h3.graysubThirdHeader,
  .graysubThirdHeader.field--name-field-social-phrase-group-title,
  .graysubThirdHeader.field--name-field-image-gallery-title {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2642, ../sass/_styleguide.scss */
  .ui-accordion h3.graysubaccordionheading.ui-accordion-header, .ui-accordion .graysubaccordionheading.ui-accordion-header.field--name-field-social-phrase-group-title, .ui-accordion .graysubaccordionheading.ui-accordion-header.field--name-field-image-gallery-title,
  h3.flatHeader,
  h3.accordion-header-secondary,
  .accordion-header-secondary.field--name-field-social-phrase-group-title,
  .accordion-header-secondary.field--name-field-image-gallery-title,
  .flatHeader.field--name-field-social-phrase-group-title,
  div.field--name-field-social-phrase-group-title.flatPlainUnderlinedHeader,
  div.field--name-field-social-phrase-group-title.flatPlainHeader,
  div.field--name-field-social-phrase-group-title.flatPlainHeaderWhite,
  .flatHeader.field--name-field-image-gallery-title,
  div.field--name-field-image-gallery-title.flatPlainUnderlinedHeader,
  div.field--name-field-image-gallery-title.flatPlainHeader,
  div.field--name-field-image-gallery-title.flatPlainHeaderWhite,
  .ui-accordion h3.graysubSecondHeader .ui-accordion-header,
  .ui-accordion .graysubSecondHeader.field--name-field-social-phrase-group-title .ui-accordion-header,
  .ui-accordion .graysubSecondHeader.field--name-field-image-gallery-title .ui-accordion-header,
  .ui-accordion h3.graysubSecondHeader,
  .ui-accordion .graysubSecondHeader.field--name-field-social-phrase-group-title,
  .ui-accordion .graysubSecondHeader.field--name-field-image-gallery-title,
  .ui-accordion h3.graysubThirdHeader.ui-accordion-header,
  .ui-accordion .graysubThirdHeader.ui-accordion-header.field--name-field-social-phrase-group-title,
  .ui-accordion .graysubThirdHeader.ui-accordion-header.field--name-field-image-gallery-title,
  h3.graysubThirdHeader,
  .graysubThirdHeader.field--name-field-social-phrase-group-title,
  .graysubThirdHeader.field--name-field-image-gallery-title {
    font-size: 1rem;
  }
}

/* line 2657, ../sass/_styleguide.scss */
.accordionPadding {
  font-size: 1.5rem;
}
@media all and (min-width: 1440px) {
  /* line 2657, ../sass/_styleguide.scss */
  .accordionPadding {
    font-size: 1.5rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2657, ../sass/_styleguide.scss */
  .accordionPadding {
    font-size: 1.5rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2657, ../sass/_styleguide.scss */
  .accordionPadding {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2657, ../sass/_styleguide.scss */
  .accordionPadding {
    font-size: 1.125rem;
  }
}

@media all and (min-width: 1100px) {
  /* line 2660, ../sass/_styleguide.scss */
  .ui-accordion .accordion-header.ui-accordion-header,
  .ui-accordion .subaccordion-header.ui-accordion-header,
  .ui-accordion .grayaccordionheading.ui-accordion-header,
  .ui-accordion h3.flataccordionheading h3.ui-accordion-header.graysubaccordionheading,
  h3.flataccordionheading .ui-accordion h3.ui-accordion-header.graysubaccordionheading,
  .ui-accordion .flataccordionheading.field--name-field-social-phrase-group-title h3.ui-accordion-header.graysubaccordionheading,
  .flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion h3.ui-accordion-header.graysubaccordionheading,
  .ui-accordion .flataccordionheading.field--name-field-image-gallery-title h3.ui-accordion-header.graysubaccordionheading,
  .flataccordionheading.field--name-field-image-gallery-title .ui-accordion h3.ui-accordion-header.graysubaccordionheading,
  .ui-accordion h3.flataccordionheading .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title,
  h3.flataccordionheading .ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title,
  .ui-accordion .flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title,
  .flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title,
  .ui-accordion .flataccordionheading.field--name-field-image-gallery-title .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title,
  .flataccordionheading.field--name-field-image-gallery-title .ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title,
  .ui-accordion h3.flataccordionheading .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title,
  h3.flataccordionheading .ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title,
  .ui-accordion .flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title,
  .flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title,
  .ui-accordion .flataccordionheading.field--name-field-image-gallery-title .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title,
  .flataccordionheading.field--name-field-image-gallery-title .ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title,
  .ui-accordion h3.ui-accordion-header.graysubSecondHeader,
  .ui-accordion .ui-accordion-header.graysubSecondHeader.field--name-field-social-phrase-group-title,
  .ui-accordion .ui-accordion-header.graysubSecondHeader.field--name-field-image-gallery-title,
  .ui-accordion h3.ui-accordion-header.graysubThirdHeader,
  .ui-accordion .ui-accordion-header.graysubThirdHeader.field--name-field-social-phrase-group-title,
  .ui-accordion .ui-accordion-header.graysubThirdHeader.field--name-field-image-gallery-title,
  .ui-accordion h3.ui-accordion-header.flatHeader,
  .ui-accordion h3.ui-accordion-header.accordion-header-secondary,
  .ui-accordion .ui-accordion-header.accordion-header-secondary.field--name-field-social-phrase-group-title,
  .ui-accordion .ui-accordion-header.accordion-header-secondary.field--name-field-image-gallery-title,
  .ui-accordion .ui-accordion-header.flatHeader.field--name-field-social-phrase-group-title,
  .ui-accordion div.ui-accordion-header.field--name-field-social-phrase-group-title.flatPlainUnderlinedHeader,
  .ui-accordion div.ui-accordion-header.field--name-field-social-phrase-group-title.flatPlainHeader,
  .ui-accordion div.ui-accordion-header.field--name-field-social-phrase-group-title.flatPlainHeaderWhite,
  .ui-accordion .ui-accordion-header.flatHeader.field--name-field-image-gallery-title,
  .ui-accordion div.ui-accordion-header.field--name-field-image-gallery-title.flatPlainUnderlinedHeader,
  .ui-accordion div.ui-accordion-header.field--name-field-image-gallery-title.flatPlainHeader,
  .ui-accordion div.ui-accordion-header.field--name-field-image-gallery-title.flatPlainHeaderWhite,
  .ui-accordion .ui-accordion-header.accordion-header,
  .ui-accordion .ui-accordion-header.field--name-field-session-subtitle,
  h3.flatHeader,
  h3.accordion-header-secondary,
  .accordion-header-secondary.field--name-field-social-phrase-group-title,
  .accordion-header-secondary.field--name-field-image-gallery-title,
  .flatHeader.field--name-field-social-phrase-group-title,
  div.field--name-field-social-phrase-group-title.flatPlainUnderlinedHeader,
  div.field--name-field-social-phrase-group-title.flatPlainHeader,
  div.field--name-field-social-phrase-group-title.flatPlainHeaderWhite,
  .flatHeader.field--name-field-image-gallery-title,
  div.field--name-field-image-gallery-title.flatPlainUnderlinedHeader,
  div.field--name-field-image-gallery-title.flatPlainHeader,
  div.field--name-field-image-gallery-title.flatPlainHeaderWhite,
  div.flatHeader,
  div.accordion-header-secondary,
  div.flatPlainUnderlinedHeader,
  div.flatPlainHeader,
  div.flatPlainHeaderWhite,
  .accordionPadding {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2660, ../sass/_styleguide.scss */
  .ui-accordion .accordion-header.ui-accordion-header,
  .ui-accordion .subaccordion-header.ui-accordion-header,
  .ui-accordion .grayaccordionheading.ui-accordion-header,
  .ui-accordion h3.flataccordionheading h3.ui-accordion-header.graysubaccordionheading,
  h3.flataccordionheading .ui-accordion h3.ui-accordion-header.graysubaccordionheading,
  .ui-accordion .flataccordionheading.field--name-field-social-phrase-group-title h3.ui-accordion-header.graysubaccordionheading,
  .flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion h3.ui-accordion-header.graysubaccordionheading,
  .ui-accordion .flataccordionheading.field--name-field-image-gallery-title h3.ui-accordion-header.graysubaccordionheading,
  .flataccordionheading.field--name-field-image-gallery-title .ui-accordion h3.ui-accordion-header.graysubaccordionheading,
  .ui-accordion h3.flataccordionheading .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title,
  h3.flataccordionheading .ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title,
  .ui-accordion .flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title,
  .flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title,
  .ui-accordion .flataccordionheading.field--name-field-image-gallery-title .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title,
  .flataccordionheading.field--name-field-image-gallery-title .ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title,
  .ui-accordion h3.flataccordionheading .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title,
  h3.flataccordionheading .ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title,
  .ui-accordion .flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title,
  .flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title,
  .ui-accordion .flataccordionheading.field--name-field-image-gallery-title .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title,
  .flataccordionheading.field--name-field-image-gallery-title .ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title,
  .ui-accordion h3.ui-accordion-header.graysubSecondHeader,
  .ui-accordion .ui-accordion-header.graysubSecondHeader.field--name-field-social-phrase-group-title,
  .ui-accordion .ui-accordion-header.graysubSecondHeader.field--name-field-image-gallery-title,
  .ui-accordion h3.ui-accordion-header.graysubThirdHeader,
  .ui-accordion .ui-accordion-header.graysubThirdHeader.field--name-field-social-phrase-group-title,
  .ui-accordion .ui-accordion-header.graysubThirdHeader.field--name-field-image-gallery-title,
  .ui-accordion h3.ui-accordion-header.flatHeader,
  .ui-accordion h3.ui-accordion-header.accordion-header-secondary,
  .ui-accordion .ui-accordion-header.accordion-header-secondary.field--name-field-social-phrase-group-title,
  .ui-accordion .ui-accordion-header.accordion-header-secondary.field--name-field-image-gallery-title,
  .ui-accordion .ui-accordion-header.flatHeader.field--name-field-social-phrase-group-title,
  .ui-accordion div.ui-accordion-header.field--name-field-social-phrase-group-title.flatPlainUnderlinedHeader,
  .ui-accordion div.ui-accordion-header.field--name-field-social-phrase-group-title.flatPlainHeader,
  .ui-accordion div.ui-accordion-header.field--name-field-social-phrase-group-title.flatPlainHeaderWhite,
  .ui-accordion .ui-accordion-header.flatHeader.field--name-field-image-gallery-title,
  .ui-accordion div.ui-accordion-header.field--name-field-image-gallery-title.flatPlainUnderlinedHeader,
  .ui-accordion div.ui-accordion-header.field--name-field-image-gallery-title.flatPlainHeader,
  .ui-accordion div.ui-accordion-header.field--name-field-image-gallery-title.flatPlainHeaderWhite,
  .ui-accordion .ui-accordion-header.accordion-header,
  .ui-accordion .ui-accordion-header.field--name-field-session-subtitle,
  h3.flatHeader,
  h3.accordion-header-secondary,
  .accordion-header-secondary.field--name-field-social-phrase-group-title,
  .accordion-header-secondary.field--name-field-image-gallery-title,
  .flatHeader.field--name-field-social-phrase-group-title,
  div.field--name-field-social-phrase-group-title.flatPlainUnderlinedHeader,
  div.field--name-field-social-phrase-group-title.flatPlainHeader,
  div.field--name-field-social-phrase-group-title.flatPlainHeaderWhite,
  .flatHeader.field--name-field-image-gallery-title,
  div.field--name-field-image-gallery-title.flatPlainUnderlinedHeader,
  div.field--name-field-image-gallery-title.flatPlainHeader,
  div.field--name-field-image-gallery-title.flatPlainHeaderWhite,
  div.flatHeader,
  div.accordion-header-secondary,
  div.flatPlainUnderlinedHeader,
  div.flatPlainHeader,
  div.flatPlainHeaderWhite,
  .accordionPadding {
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2660, ../sass/_styleguide.scss */
  .ui-accordion .accordion-header.ui-accordion-header,
  .ui-accordion .subaccordion-header.ui-accordion-header,
  .ui-accordion .grayaccordionheading.ui-accordion-header,
  .ui-accordion h3.flataccordionheading h3.ui-accordion-header.graysubaccordionheading,
  h3.flataccordionheading .ui-accordion h3.ui-accordion-header.graysubaccordionheading,
  .ui-accordion .flataccordionheading.field--name-field-social-phrase-group-title h3.ui-accordion-header.graysubaccordionheading,
  .flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion h3.ui-accordion-header.graysubaccordionheading,
  .ui-accordion .flataccordionheading.field--name-field-image-gallery-title h3.ui-accordion-header.graysubaccordionheading,
  .flataccordionheading.field--name-field-image-gallery-title .ui-accordion h3.ui-accordion-header.graysubaccordionheading,
  .ui-accordion h3.flataccordionheading .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title,
  h3.flataccordionheading .ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title,
  .ui-accordion .flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title,
  .flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title,
  .ui-accordion .flataccordionheading.field--name-field-image-gallery-title .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title,
  .flataccordionheading.field--name-field-image-gallery-title .ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title,
  .ui-accordion h3.flataccordionheading .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title,
  h3.flataccordionheading .ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title,
  .ui-accordion .flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title,
  .flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title,
  .ui-accordion .flataccordionheading.field--name-field-image-gallery-title .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title,
  .flataccordionheading.field--name-field-image-gallery-title .ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title,
  .ui-accordion h3.ui-accordion-header.graysubSecondHeader,
  .ui-accordion .ui-accordion-header.graysubSecondHeader.field--name-field-social-phrase-group-title,
  .ui-accordion .ui-accordion-header.graysubSecondHeader.field--name-field-image-gallery-title,
  .ui-accordion h3.ui-accordion-header.graysubThirdHeader,
  .ui-accordion .ui-accordion-header.graysubThirdHeader.field--name-field-social-phrase-group-title,
  .ui-accordion .ui-accordion-header.graysubThirdHeader.field--name-field-image-gallery-title,
  .ui-accordion h3.ui-accordion-header.flatHeader,
  .ui-accordion h3.ui-accordion-header.accordion-header-secondary,
  .ui-accordion .ui-accordion-header.accordion-header-secondary.field--name-field-social-phrase-group-title,
  .ui-accordion .ui-accordion-header.accordion-header-secondary.field--name-field-image-gallery-title,
  .ui-accordion .ui-accordion-header.flatHeader.field--name-field-social-phrase-group-title,
  .ui-accordion div.ui-accordion-header.field--name-field-social-phrase-group-title.flatPlainUnderlinedHeader,
  .ui-accordion div.ui-accordion-header.field--name-field-social-phrase-group-title.flatPlainHeader,
  .ui-accordion div.ui-accordion-header.field--name-field-social-phrase-group-title.flatPlainHeaderWhite,
  .ui-accordion .ui-accordion-header.flatHeader.field--name-field-image-gallery-title,
  .ui-accordion div.ui-accordion-header.field--name-field-image-gallery-title.flatPlainUnderlinedHeader,
  .ui-accordion div.ui-accordion-header.field--name-field-image-gallery-title.flatPlainHeader,
  .ui-accordion div.ui-accordion-header.field--name-field-image-gallery-title.flatPlainHeaderWhite,
  .ui-accordion .ui-accordion-header.accordion-header,
  .ui-accordion .ui-accordion-header.field--name-field-session-subtitle,
  h3.flatHeader,
  h3.accordion-header-secondary,
  .accordion-header-secondary.field--name-field-social-phrase-group-title,
  .accordion-header-secondary.field--name-field-image-gallery-title,
  .flatHeader.field--name-field-social-phrase-group-title,
  div.field--name-field-social-phrase-group-title.flatPlainUnderlinedHeader,
  div.field--name-field-social-phrase-group-title.flatPlainHeader,
  div.field--name-field-social-phrase-group-title.flatPlainHeaderWhite,
  .flatHeader.field--name-field-image-gallery-title,
  div.field--name-field-image-gallery-title.flatPlainUnderlinedHeader,
  div.field--name-field-image-gallery-title.flatPlainHeader,
  div.field--name-field-image-gallery-title.flatPlainHeaderWhite,
  div.flatHeader,
  div.accordion-header-secondary,
  div.flatPlainUnderlinedHeader,
  div.flatPlainHeader,
  div.flatPlainHeaderWhite,
  .accordionPadding {
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }
}

/* line 2670, ../sass/_styleguide.scss */
.ui-accordion .subaccordion-header.ui-accordion-header.ui-state-hover,
.ui-accordion .grayaccordionheading.ui-accordion-header.ui-state-hover,
.ui-accordion h3.flataccordionheading h3.ui-accordion-header.ui-state-hover.graysubaccordionheading,
h3.flataccordionheading .ui-accordion h3.ui-accordion-header.ui-state-hover.graysubaccordionheading,
.ui-accordion .flataccordionheading.field--name-field-social-phrase-group-title h3.ui-accordion-header.ui-state-hover.graysubaccordionheading,
.flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion h3.ui-accordion-header.ui-state-hover.graysubaccordionheading,
.ui-accordion .flataccordionheading.field--name-field-image-gallery-title h3.ui-accordion-header.ui-state-hover.graysubaccordionheading,
.flataccordionheading.field--name-field-image-gallery-title .ui-accordion h3.ui-accordion-header.ui-state-hover.graysubaccordionheading,
.ui-accordion h3.flataccordionheading .ui-accordion-header.ui-state-hover.graysubaccordionheading.field--name-field-social-phrase-group-title,
h3.flataccordionheading .ui-accordion .ui-accordion-header.ui-state-hover.graysubaccordionheading.field--name-field-social-phrase-group-title,
.ui-accordion .flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion-header.ui-state-hover.graysubaccordionheading.field--name-field-social-phrase-group-title,
.flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion .ui-accordion-header.ui-state-hover.graysubaccordionheading.field--name-field-social-phrase-group-title,
.ui-accordion .flataccordionheading.field--name-field-image-gallery-title .ui-accordion-header.ui-state-hover.graysubaccordionheading.field--name-field-social-phrase-group-title,
.flataccordionheading.field--name-field-image-gallery-title .ui-accordion .ui-accordion-header.ui-state-hover.graysubaccordionheading.field--name-field-social-phrase-group-title,
.ui-accordion h3.flataccordionheading .ui-accordion-header.ui-state-hover.graysubaccordionheading.field--name-field-image-gallery-title,
h3.flataccordionheading .ui-accordion .ui-accordion-header.ui-state-hover.graysubaccordionheading.field--name-field-image-gallery-title,
.ui-accordion .flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion-header.ui-state-hover.graysubaccordionheading.field--name-field-image-gallery-title,
.flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion .ui-accordion-header.ui-state-hover.graysubaccordionheading.field--name-field-image-gallery-title,
.ui-accordion .flataccordionheading.field--name-field-image-gallery-title .ui-accordion-header.ui-state-hover.graysubaccordionheading.field--name-field-image-gallery-title,
.flataccordionheading.field--name-field-image-gallery-title .ui-accordion .ui-accordion-header.ui-state-hover.graysubaccordionheading.field--name-field-image-gallery-title,
.ui-accordion h3.ui-accordion-header.ui-state-hover.graysubSecondHeader,
.ui-accordion .ui-accordion-header.ui-state-hover.graysubSecondHeader.field--name-field-social-phrase-group-title,
.ui-accordion .ui-accordion-header.ui-state-hover.graysubSecondHeader.field--name-field-image-gallery-title,
.ui-accordion h3.ui-accordion-header.ui-state-hover.graysubThirdHeader,
.ui-accordion .ui-accordion-header.ui-state-hover.graysubThirdHeader.field--name-field-social-phrase-group-title,
.ui-accordion .ui-accordion-header.ui-state-hover.graysubThirdHeader.field--name-field-image-gallery-title,
.ui-accordion h3.ui-accordion-header.ui-state-hover.flatHeader,
.ui-accordion h3.ui-accordion-header.ui-state-hover.accordion-header-secondary,
.ui-accordion .ui-accordion-header.ui-state-hover.accordion-header-secondary.field--name-field-social-phrase-group-title,
.ui-accordion .ui-accordion-header.ui-state-hover.accordion-header-secondary.field--name-field-image-gallery-title,
.ui-accordion .ui-accordion-header.ui-state-hover.flatHeader.field--name-field-social-phrase-group-title,
.ui-accordion div.ui-accordion-header.ui-state-hover.field--name-field-social-phrase-group-title.flatPlainUnderlinedHeader,
.ui-accordion div.ui-accordion-header.ui-state-hover.field--name-field-social-phrase-group-title.flatPlainHeader,
.ui-accordion div.ui-accordion-header.ui-state-hover.field--name-field-social-phrase-group-title.flatPlainHeaderWhite,
.ui-accordion .ui-accordion-header.ui-state-hover.flatHeader.field--name-field-image-gallery-title,
.ui-accordion div.ui-accordion-header.ui-state-hover.field--name-field-image-gallery-title.flatPlainUnderlinedHeader,
.ui-accordion div.ui-accordion-header.ui-state-hover.field--name-field-image-gallery-title.flatPlainHeader,
.ui-accordion div.ui-accordion-header.ui-state-hover.field--name-field-image-gallery-title.flatPlainHeaderWhite,
.ui-accordion .ui-accordion-header.ui-state-hover.accordion-header,
.ui-accordion .ui-accordion-header.ui-state-hover.field--name-field-session-subtitle {
  color: #0051a8;
}

/* line 2675, ../sass/_styleguide.scss */
.ui-accordion h2.ui-accordion-header.ui-state-hover.accordion-header, .ui-accordion .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.ui-accordion-header.ui-state-hover.accordion-header, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .ui-accordion h1.ui-accordion-header.ui-state-hover.accordion-header, .ui-accordion .ui-accordion-header.ui-state-hover.accordion-header.contact-method-label {
  color: #222;
}

/* line 2678, ../sass/_styleguide.scss */
div.flatHeader, div.accordion-header-secondary, div.flatPlainUnderlinedHeader, div.flatPlainHeader, div.flatPlainHeaderWhite,
h3.flatHeader,
h3.accordion-header-secondary,
.accordion-header-secondary.field--name-field-social-phrase-group-title,
.accordion-header-secondary.field--name-field-image-gallery-title,
.flatHeader.field--name-field-social-phrase-group-title,
div.field--name-field-social-phrase-group-title.flatPlainUnderlinedHeader,
div.field--name-field-social-phrase-group-title.flatPlainHeader,
div.field--name-field-social-phrase-group-title.flatPlainHeaderWhite,
.flatHeader.field--name-field-image-gallery-title,
div.field--name-field-image-gallery-title.flatPlainUnderlinedHeader,
div.field--name-field-image-gallery-title.flatPlainHeader,
div.field--name-field-image-gallery-title.flatPlainHeaderWhite {
  background: #d7e7f4;
  color: #222;
  border-color: #d7e7f4;
  text-decoration: none;
  font-size: 1.5rem;
  margin-top: 1em;
  cursor: auto;
}
/* line 1222, ../sass/_mixins.scss */
div.flatHeader:hover, div.accordion-header-secondary:hover, div.flatPlainUnderlinedHeader:hover, div.flatPlainHeader:hover, div.flatPlainHeaderWhite:hover,
h3.flatHeader:hover,
h3.accordion-header-secondary:hover,
.accordion-header-secondary.field--name-field-social-phrase-group-title:hover,
.accordion-header-secondary.field--name-field-image-gallery-title:hover,
.flatHeader.field--name-field-social-phrase-group-title:hover,
div.field--name-field-social-phrase-group-title.flatPlainUnderlinedHeader:hover,
div.field--name-field-social-phrase-group-title.flatPlainHeader:hover,
div.field--name-field-social-phrase-group-title.flatPlainHeaderWhite:hover,
.flatHeader.field--name-field-image-gallery-title:hover,
div.field--name-field-image-gallery-title.flatPlainUnderlinedHeader:hover,
div.field--name-field-image-gallery-title.flatPlainHeader:hover,
div.field--name-field-image-gallery-title.flatPlainHeaderWhite:hover {
  color: #222;
}
@media all and (min-width: 1440px) {
  /* line 2678, ../sass/_styleguide.scss */
  div.flatHeader, div.accordion-header-secondary, div.flatPlainUnderlinedHeader, div.flatPlainHeader, div.flatPlainHeaderWhite,
  h3.flatHeader,
  h3.accordion-header-secondary,
  .accordion-header-secondary.field--name-field-social-phrase-group-title,
  .accordion-header-secondary.field--name-field-image-gallery-title,
  .flatHeader.field--name-field-social-phrase-group-title,
  div.field--name-field-social-phrase-group-title.flatPlainUnderlinedHeader,
  div.field--name-field-social-phrase-group-title.flatPlainHeader,
  div.field--name-field-social-phrase-group-title.flatPlainHeaderWhite,
  .flatHeader.field--name-field-image-gallery-title,
  div.field--name-field-image-gallery-title.flatPlainUnderlinedHeader,
  div.field--name-field-image-gallery-title.flatPlainHeader,
  div.field--name-field-image-gallery-title.flatPlainHeaderWhite {
    font-size: 1.5rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2678, ../sass/_styleguide.scss */
  div.flatHeader, div.accordion-header-secondary, div.flatPlainUnderlinedHeader, div.flatPlainHeader, div.flatPlainHeaderWhite,
  h3.flatHeader,
  h3.accordion-header-secondary,
  .accordion-header-secondary.field--name-field-social-phrase-group-title,
  .accordion-header-secondary.field--name-field-image-gallery-title,
  .flatHeader.field--name-field-social-phrase-group-title,
  div.field--name-field-social-phrase-group-title.flatPlainUnderlinedHeader,
  div.field--name-field-social-phrase-group-title.flatPlainHeader,
  div.field--name-field-social-phrase-group-title.flatPlainHeaderWhite,
  .flatHeader.field--name-field-image-gallery-title,
  div.field--name-field-image-gallery-title.flatPlainUnderlinedHeader,
  div.field--name-field-image-gallery-title.flatPlainHeader,
  div.field--name-field-image-gallery-title.flatPlainHeaderWhite {
    font-size: 1.5rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2678, ../sass/_styleguide.scss */
  div.flatHeader, div.accordion-header-secondary, div.flatPlainUnderlinedHeader, div.flatPlainHeader, div.flatPlainHeaderWhite,
  h3.flatHeader,
  h3.accordion-header-secondary,
  .accordion-header-secondary.field--name-field-social-phrase-group-title,
  .accordion-header-secondary.field--name-field-image-gallery-title,
  .flatHeader.field--name-field-social-phrase-group-title,
  div.field--name-field-social-phrase-group-title.flatPlainUnderlinedHeader,
  div.field--name-field-social-phrase-group-title.flatPlainHeader,
  div.field--name-field-social-phrase-group-title.flatPlainHeaderWhite,
  .flatHeader.field--name-field-image-gallery-title,
  div.field--name-field-image-gallery-title.flatPlainUnderlinedHeader,
  div.field--name-field-image-gallery-title.flatPlainHeader,
  div.field--name-field-image-gallery-title.flatPlainHeaderWhite {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2678, ../sass/_styleguide.scss */
  div.flatHeader, div.accordion-header-secondary, div.flatPlainUnderlinedHeader, div.flatPlainHeader, div.flatPlainHeaderWhite,
  h3.flatHeader,
  h3.accordion-header-secondary,
  .accordion-header-secondary.field--name-field-social-phrase-group-title,
  .accordion-header-secondary.field--name-field-image-gallery-title,
  .flatHeader.field--name-field-social-phrase-group-title,
  div.field--name-field-social-phrase-group-title.flatPlainUnderlinedHeader,
  div.field--name-field-social-phrase-group-title.flatPlainHeader,
  div.field--name-field-social-phrase-group-title.flatPlainHeaderWhite,
  .flatHeader.field--name-field-image-gallery-title,
  div.field--name-field-image-gallery-title.flatPlainUnderlinedHeader,
  div.field--name-field-image-gallery-title.flatPlainHeader,
  div.field--name-field-image-gallery-title.flatPlainHeaderWhite {
    font-size: 1rem;
  }
}

/* line 2687, ../sass/_styleguide.scss */
.ui-accordion .accordion-header-secondary.ui-accordion-header {
  margin-top: 1em;
  margin-right: 0.875rem;
}

/* line 2693, ../sass/_styleguide.scss */
.flatPlainHeader.darkBlue, .darkBlue.flatPlainHeaderWhite,
h3.flatHeader.darkBlue,
h3.darkBlue.accordion-header-secondary,
.darkBlue.accordion-header-secondary.field--name-field-social-phrase-group-title,
.darkBlue.accordion-header-secondary.field--name-field-image-gallery-title,
.flatHeader.darkBlue.field--name-field-social-phrase-group-title,
div.darkBlue.field--name-field-social-phrase-group-title.flatPlainUnderlinedHeader,
div.darkBlue.field--name-field-social-phrase-group-title.flatPlainHeader,
div.darkBlue.field--name-field-social-phrase-group-title.flatPlainHeaderWhite,
.flatHeader.darkBlue.field--name-field-image-gallery-title,
div.darkBlue.field--name-field-image-gallery-title.flatPlainUnderlinedHeader,
div.darkBlue.field--name-field-image-gallery-title.flatPlainHeader,
div.darkBlue.field--name-field-image-gallery-title.flatPlainHeaderWhite {
  background: #102d66;
  color: #fff;
  border-color: #102d66;
  text-decoration: none;
}
/* line 1222, ../sass/_mixins.scss */
.flatPlainHeader.darkBlue:hover, .darkBlue.flatPlainHeaderWhite:hover,
h3.flatHeader.darkBlue:hover,
h3.darkBlue.accordion-header-secondary:hover,
.darkBlue.accordion-header-secondary.field--name-field-social-phrase-group-title:hover,
.darkBlue.accordion-header-secondary.field--name-field-image-gallery-title:hover,
.flatHeader.darkBlue.field--name-field-social-phrase-group-title:hover,
div.darkBlue.field--name-field-social-phrase-group-title.flatPlainUnderlinedHeader:hover,
div.darkBlue.field--name-field-social-phrase-group-title.flatPlainHeader:hover,
div.darkBlue.field--name-field-social-phrase-group-title.flatPlainHeaderWhite:hover,
.flatHeader.darkBlue.field--name-field-image-gallery-title:hover,
div.darkBlue.field--name-field-image-gallery-title.flatPlainUnderlinedHeader:hover,
div.darkBlue.field--name-field-image-gallery-title.flatPlainHeader:hover,
div.darkBlue.field--name-field-image-gallery-title.flatPlainHeaderWhite:hover {
  color: #fff;
}

@media all and (min-width: 1100px) {
  /* line 2698, ../sass/_styleguide.scss */
  .ui-accordion h3.graysubaccordionheading.ui-accordion-header, .ui-accordion .graysubaccordionheading.ui-accordion-header.field--name-field-social-phrase-group-title, .ui-accordion .graysubaccordionheading.ui-accordion-header.field--name-field-image-gallery-title,
  .ui-accordion h3.graysubSecondHeader .ui-accordion-header,
  .ui-accordion .graysubSecondHeader.field--name-field-social-phrase-group-title .ui-accordion-header,
  .ui-accordion .graysubSecondHeader.field--name-field-image-gallery-title .ui-accordion-header,
  h3.graysubSecondHeader,
  .graysubSecondHeader.field--name-field-social-phrase-group-title,
  .graysubSecondHeader.field--name-field-image-gallery-title,
  .ui-accordion h3.graysubThirdHeader.ui-accordion-header,
  .ui-accordion .graysubThirdHeader.ui-accordion-header.field--name-field-social-phrase-group-title,
  .ui-accordion .graysubThirdHeader.ui-accordion-header.field--name-field-image-gallery-title,
  h3.graysubThirdHeader,
  .graysubThirdHeader.field--name-field-social-phrase-group-title,
  .graysubThirdHeader.field--name-field-image-gallery-title {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2698, ../sass/_styleguide.scss */
  .ui-accordion h3.graysubaccordionheading.ui-accordion-header, .ui-accordion .graysubaccordionheading.ui-accordion-header.field--name-field-social-phrase-group-title, .ui-accordion .graysubaccordionheading.ui-accordion-header.field--name-field-image-gallery-title,
  .ui-accordion h3.graysubSecondHeader .ui-accordion-header,
  .ui-accordion .graysubSecondHeader.field--name-field-social-phrase-group-title .ui-accordion-header,
  .ui-accordion .graysubSecondHeader.field--name-field-image-gallery-title .ui-accordion-header,
  h3.graysubSecondHeader,
  .graysubSecondHeader.field--name-field-social-phrase-group-title,
  .graysubSecondHeader.field--name-field-image-gallery-title,
  .ui-accordion h3.graysubThirdHeader.ui-accordion-header,
  .ui-accordion .graysubThirdHeader.ui-accordion-header.field--name-field-social-phrase-group-title,
  .ui-accordion .graysubThirdHeader.ui-accordion-header.field--name-field-image-gallery-title,
  h3.graysubThirdHeader,
  .graysubThirdHeader.field--name-field-social-phrase-group-title,
  .graysubThirdHeader.field--name-field-image-gallery-title {
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2698, ../sass/_styleguide.scss */
  .ui-accordion h3.graysubaccordionheading.ui-accordion-header, .ui-accordion .graysubaccordionheading.ui-accordion-header.field--name-field-social-phrase-group-title, .ui-accordion .graysubaccordionheading.ui-accordion-header.field--name-field-image-gallery-title,
  .ui-accordion h3.graysubSecondHeader .ui-accordion-header,
  .ui-accordion .graysubSecondHeader.field--name-field-social-phrase-group-title .ui-accordion-header,
  .ui-accordion .graysubSecondHeader.field--name-field-image-gallery-title .ui-accordion-header,
  h3.graysubSecondHeader,
  .graysubSecondHeader.field--name-field-social-phrase-group-title,
  .graysubSecondHeader.field--name-field-image-gallery-title,
  .ui-accordion h3.graysubThirdHeader.ui-accordion-header,
  .ui-accordion .graysubThirdHeader.ui-accordion-header.field--name-field-social-phrase-group-title,
  .ui-accordion .graysubThirdHeader.ui-accordion-header.field--name-field-image-gallery-title,
  h3.graysubThirdHeader,
  .graysubThirdHeader.field--name-field-social-phrase-group-title,
  .graysubThirdHeader.field--name-field-image-gallery-title {
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }
}

/* line 2709, ../sass/_styleguide.scss */
.ui-accordion .accordion-header.ui-accordion-header.ui-accordion-header-active,
.ui-accordion .subaccordion-header.ui-accordion-header.ui-accordion-header-active,
.ui-accordion .grayaccordionheading.ui-accordion-header.ui-accordion-header-active,
.ui-accordion h3.flataccordionheading h3.ui-accordion-header.ui-accordion-header-active.graysubaccordionheading,
h3.flataccordionheading .ui-accordion h3.ui-accordion-header.ui-accordion-header-active.graysubaccordionheading,
.ui-accordion .flataccordionheading.field--name-field-social-phrase-group-title h3.ui-accordion-header.ui-accordion-header-active.graysubaccordionheading,
.flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion h3.ui-accordion-header.ui-accordion-header-active.graysubaccordionheading,
.ui-accordion .flataccordionheading.field--name-field-image-gallery-title h3.ui-accordion-header.ui-accordion-header-active.graysubaccordionheading,
.flataccordionheading.field--name-field-image-gallery-title .ui-accordion h3.ui-accordion-header.ui-accordion-header-active.graysubaccordionheading,
.ui-accordion h3.flataccordionheading .ui-accordion-header.ui-accordion-header-active.graysubaccordionheading.field--name-field-social-phrase-group-title,
h3.flataccordionheading .ui-accordion .ui-accordion-header.ui-accordion-header-active.graysubaccordionheading.field--name-field-social-phrase-group-title,
.ui-accordion .flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion-header.ui-accordion-header-active.graysubaccordionheading.field--name-field-social-phrase-group-title,
.flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion .ui-accordion-header.ui-accordion-header-active.graysubaccordionheading.field--name-field-social-phrase-group-title,
.ui-accordion .flataccordionheading.field--name-field-image-gallery-title .ui-accordion-header.ui-accordion-header-active.graysubaccordionheading.field--name-field-social-phrase-group-title,
.flataccordionheading.field--name-field-image-gallery-title .ui-accordion .ui-accordion-header.ui-accordion-header-active.graysubaccordionheading.field--name-field-social-phrase-group-title,
.ui-accordion h3.flataccordionheading .ui-accordion-header.ui-accordion-header-active.graysubaccordionheading.field--name-field-image-gallery-title,
h3.flataccordionheading .ui-accordion .ui-accordion-header.ui-accordion-header-active.graysubaccordionheading.field--name-field-image-gallery-title,
.ui-accordion .flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion-header.ui-accordion-header-active.graysubaccordionheading.field--name-field-image-gallery-title,
.flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion .ui-accordion-header.ui-accordion-header-active.graysubaccordionheading.field--name-field-image-gallery-title,
.ui-accordion .flataccordionheading.field--name-field-image-gallery-title .ui-accordion-header.ui-accordion-header-active.graysubaccordionheading.field--name-field-image-gallery-title,
.flataccordionheading.field--name-field-image-gallery-title .ui-accordion .ui-accordion-header.ui-accordion-header-active.graysubaccordionheading.field--name-field-image-gallery-title,
.ui-accordion h3.ui-accordion-header.ui-accordion-header-active.graysubSecondHeader,
.ui-accordion .ui-accordion-header.ui-accordion-header-active.graysubSecondHeader.field--name-field-social-phrase-group-title,
.ui-accordion .ui-accordion-header.ui-accordion-header-active.graysubSecondHeader.field--name-field-image-gallery-title,
.ui-accordion h3.ui-accordion-header.ui-accordion-header-active.graysubThirdHeader,
.ui-accordion .ui-accordion-header.ui-accordion-header-active.graysubThirdHeader.field--name-field-social-phrase-group-title,
.ui-accordion .ui-accordion-header.ui-accordion-header-active.graysubThirdHeader.field--name-field-image-gallery-title,
.ui-accordion h3.ui-accordion-header.ui-accordion-header-active.flatHeader,
.ui-accordion h3.ui-accordion-header.ui-accordion-header-active.accordion-header-secondary,
.ui-accordion .ui-accordion-header.ui-accordion-header-active.accordion-header-secondary.field--name-field-social-phrase-group-title,
.ui-accordion .ui-accordion-header.ui-accordion-header-active.accordion-header-secondary.field--name-field-image-gallery-title,
.ui-accordion .ui-accordion-header.ui-accordion-header-active.flatHeader.field--name-field-social-phrase-group-title,
.ui-accordion div.ui-accordion-header.ui-accordion-header-active.field--name-field-social-phrase-group-title.flatPlainUnderlinedHeader,
.ui-accordion div.ui-accordion-header.ui-accordion-header-active.field--name-field-social-phrase-group-title.flatPlainHeader,
.ui-accordion div.ui-accordion-header.ui-accordion-header-active.field--name-field-social-phrase-group-title.flatPlainHeaderWhite,
.ui-accordion .ui-accordion-header.ui-accordion-header-active.flatHeader.field--name-field-image-gallery-title,
.ui-accordion div.ui-accordion-header.ui-accordion-header-active.field--name-field-image-gallery-title.flatPlainUnderlinedHeader,
.ui-accordion div.ui-accordion-header.ui-accordion-header-active.field--name-field-image-gallery-title.flatPlainHeader,
.ui-accordion div.ui-accordion-header.ui-accordion-header-active.field--name-field-image-gallery-title.flatPlainHeaderWhite,
.ui-accordion .ui-accordion-header.ui-accordion-header-active.accordion-header,
.ui-accordion .ui-accordion-header.ui-accordion-header-active.field--name-field-session-subtitle {
  background: #d7e7f4;
  color: #222;
  border-color: #d7e7f4;
  text-decoration: none;
}
/* line 1222, ../sass/_mixins.scss */
.ui-accordion .accordion-header.ui-accordion-header.ui-accordion-header-active:hover,
.ui-accordion .subaccordion-header.ui-accordion-header.ui-accordion-header-active:hover,
.ui-accordion .grayaccordionheading.ui-accordion-header.ui-accordion-header-active:hover,
.ui-accordion h3.flataccordionheading h3.ui-accordion-header.ui-accordion-header-active.graysubaccordionheading:hover,
h3.flataccordionheading .ui-accordion h3.ui-accordion-header.ui-accordion-header-active.graysubaccordionheading:hover,
.ui-accordion .flataccordionheading.field--name-field-social-phrase-group-title h3.ui-accordion-header.ui-accordion-header-active.graysubaccordionheading:hover,
.flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion h3.ui-accordion-header.ui-accordion-header-active.graysubaccordionheading:hover,
.ui-accordion .flataccordionheading.field--name-field-image-gallery-title h3.ui-accordion-header.ui-accordion-header-active.graysubaccordionheading:hover,
.flataccordionheading.field--name-field-image-gallery-title .ui-accordion h3.ui-accordion-header.ui-accordion-header-active.graysubaccordionheading:hover,
.ui-accordion h3.flataccordionheading .ui-accordion-header.ui-accordion-header-active.graysubaccordionheading.field--name-field-social-phrase-group-title:hover,
h3.flataccordionheading .ui-accordion .ui-accordion-header.ui-accordion-header-active.graysubaccordionheading.field--name-field-social-phrase-group-title:hover,
.ui-accordion .flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion-header.ui-accordion-header-active.graysubaccordionheading.field--name-field-social-phrase-group-title:hover,
.flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion .ui-accordion-header.ui-accordion-header-active.graysubaccordionheading.field--name-field-social-phrase-group-title:hover,
.ui-accordion .flataccordionheading.field--name-field-image-gallery-title .ui-accordion-header.ui-accordion-header-active.graysubaccordionheading.field--name-field-social-phrase-group-title:hover,
.flataccordionheading.field--name-field-image-gallery-title .ui-accordion .ui-accordion-header.ui-accordion-header-active.graysubaccordionheading.field--name-field-social-phrase-group-title:hover,
.ui-accordion h3.flataccordionheading .ui-accordion-header.ui-accordion-header-active.graysubaccordionheading.field--name-field-image-gallery-title:hover,
h3.flataccordionheading .ui-accordion .ui-accordion-header.ui-accordion-header-active.graysubaccordionheading.field--name-field-image-gallery-title:hover,
.ui-accordion .flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion-header.ui-accordion-header-active.graysubaccordionheading.field--name-field-image-gallery-title:hover,
.flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion .ui-accordion-header.ui-accordion-header-active.graysubaccordionheading.field--name-field-image-gallery-title:hover,
.ui-accordion .flataccordionheading.field--name-field-image-gallery-title .ui-accordion-header.ui-accordion-header-active.graysubaccordionheading.field--name-field-image-gallery-title:hover,
.flataccordionheading.field--name-field-image-gallery-title .ui-accordion .ui-accordion-header.ui-accordion-header-active.graysubaccordionheading.field--name-field-image-gallery-title:hover,
.ui-accordion h3.ui-accordion-header.ui-accordion-header-active.graysubSecondHeader:hover,
.ui-accordion .ui-accordion-header.ui-accordion-header-active.graysubSecondHeader.field--name-field-social-phrase-group-title:hover,
.ui-accordion .ui-accordion-header.ui-accordion-header-active.graysubSecondHeader.field--name-field-image-gallery-title:hover,
.ui-accordion h3.ui-accordion-header.ui-accordion-header-active.graysubThirdHeader:hover,
.ui-accordion .ui-accordion-header.ui-accordion-header-active.graysubThirdHeader.field--name-field-social-phrase-group-title:hover,
.ui-accordion .ui-accordion-header.ui-accordion-header-active.graysubThirdHeader.field--name-field-image-gallery-title:hover,
.ui-accordion h3.ui-accordion-header.ui-accordion-header-active.flatHeader:hover,
.ui-accordion h3.ui-accordion-header.ui-accordion-header-active.accordion-header-secondary:hover,
.ui-accordion .ui-accordion-header.ui-accordion-header-active.accordion-header-secondary.field--name-field-social-phrase-group-title:hover,
.ui-accordion .ui-accordion-header.ui-accordion-header-active.accordion-header-secondary.field--name-field-image-gallery-title:hover,
.ui-accordion .ui-accordion-header.ui-accordion-header-active.flatHeader.field--name-field-social-phrase-group-title:hover,
.ui-accordion div.ui-accordion-header.ui-accordion-header-active.field--name-field-social-phrase-group-title.flatPlainUnderlinedHeader:hover,
.ui-accordion div.ui-accordion-header.ui-accordion-header-active.field--name-field-social-phrase-group-title.flatPlainHeader:hover,
.ui-accordion div.ui-accordion-header.ui-accordion-header-active.field--name-field-social-phrase-group-title.flatPlainHeaderWhite:hover,
.ui-accordion .ui-accordion-header.ui-accordion-header-active.flatHeader.field--name-field-image-gallery-title:hover,
.ui-accordion div.ui-accordion-header.ui-accordion-header-active.field--name-field-image-gallery-title.flatPlainUnderlinedHeader:hover,
.ui-accordion div.ui-accordion-header.ui-accordion-header-active.field--name-field-image-gallery-title.flatPlainHeader:hover,
.ui-accordion div.ui-accordion-header.ui-accordion-header-active.field--name-field-image-gallery-title.flatPlainHeaderWhite:hover,
.ui-accordion .ui-accordion-header.ui-accordion-header-active.accordion-header:hover,
.ui-accordion .ui-accordion-header.ui-accordion-header-active.field--name-field-session-subtitle:hover {
  color: #222;
}

/* line 2715, ../sass/_styleguide.scss */
.supplemental-accordion .ui-accordion h3.ui-accordion-header-active.ui-state-active, .supplemental-accordion .ui-accordion .ui-accordion-header-active.ui-state-active.field--name-field-social-phrase-group-title, .supplemental-accordion .ui-accordion .ui-accordion-header-active.ui-state-active.field--name-field-image-gallery-title {
  background: #d7e7f4;
  color: #222;
  border-color: #d7e7f4;
  text-decoration: none;
}
/* line 1222, ../sass/_mixins.scss */
.supplemental-accordion .ui-accordion h3.ui-accordion-header-active.ui-state-active:hover, .supplemental-accordion .ui-accordion .ui-accordion-header-active.ui-state-active.field--name-field-social-phrase-group-title:hover, .supplemental-accordion .ui-accordion .ui-accordion-header-active.ui-state-active.field--name-field-image-gallery-title:hover {
  color: #0051a8;
}

/* line 2719, ../sass/_styleguide.scss */
.secondary-accordion.ui-accordion > .accordion-header-secondary.ui-accordion-header.ui-accordion-header-active {
  background-color: transparent;
}

/* line 2723, ../sass/_styleguide.scss */
.ui-accordion h3.graysubaccordionheading.ui-accordion-header.ui-state-hover, .ui-accordion .graysubaccordionheading.ui-accordion-header.ui-state-hover.field--name-field-social-phrase-group-title, .ui-accordion .graysubaccordionheading.ui-accordion-header.ui-state-hover.field--name-field-image-gallery-title {
  color: #fff;
}

/* line 2728, ../sass/_styleguide.scss */
.ui-accordion h3.graysubaccordionheading.ui-accordion-header.ui-accordion-header-active, .ui-accordion .graysubaccordionheading.ui-accordion-header.ui-accordion-header-active.field--name-field-social-phrase-group-title, .ui-accordion .graysubaccordionheading.ui-accordion-header.ui-accordion-header-active.field--name-field-image-gallery-title {
  background: #222;
  color: #fff;
  border-color: #222;
  text-decoration: none;
}
/* line 1222, ../sass/_mixins.scss */
.ui-accordion h3.graysubaccordionheading.ui-accordion-header.ui-accordion-header-active:hover, .ui-accordion .graysubaccordionheading.ui-accordion-header.ui-accordion-header-active.field--name-field-social-phrase-group-title:hover, .ui-accordion .graysubaccordionheading.ui-accordion-header.ui-accordion-header-active.field--name-field-image-gallery-title:hover {
  color: #0051a8;
}
/* line 2731, ../sass/_styleguide.scss */
.ui-accordion h3.graysubaccordionheading.ui-accordion-header.ui-accordion-header-active .field--name-field-session-subtitle, .ui-accordion .graysubaccordionheading.ui-accordion-header.ui-accordion-header-active.field--name-field-social-phrase-group-title .field--name-field-session-subtitle, .ui-accordion .graysubaccordionheading.ui-accordion-header.ui-accordion-header-active.field--name-field-image-gallery-title .field--name-field-session-subtitle {
  color: #fff;
}
/* line 2734, ../sass/_styleguide.scss */
.ui-accordion h3.graysubaccordionheading.ui-accordion-header.ui-accordion-header-active:hover, .ui-accordion .graysubaccordionheading.ui-accordion-header.ui-accordion-header-active.field--name-field-social-phrase-group-title:hover, .ui-accordion .graysubaccordionheading.ui-accordion-header.ui-accordion-header-active.field--name-field-image-gallery-title:hover {
  color: #fff;
}

/* line 2740, ../sass/_styleguide.scss */
.ui-accordion h3.graysubaccordionheading.ui-accordion-header:hover, .ui-accordion .graysubaccordionheading.ui-accordion-header.field--name-field-social-phrase-group-title:hover, .ui-accordion .graysubaccordionheading.ui-accordion-header.field--name-field-image-gallery-title:hover {
  color: #0051a8;
}

/* line 2746, ../sass/_styleguide.scss */
.ui-accordion h3.graysubSecondHeader.ui-accordion-header.ui-accordion-header-active, .ui-accordion .graysubSecondHeader.ui-accordion-header.ui-accordion-header-active.field--name-field-social-phrase-group-title, .ui-accordion .graysubSecondHeader.ui-accordion-header.ui-accordion-header-active.field--name-field-image-gallery-title {
  background: #f2f2f2;
  color: #222;
  border-color: #f2f2f2;
  text-decoration: none;
}
/* line 1222, ../sass/_mixins.scss */
.ui-accordion h3.graysubSecondHeader.ui-accordion-header.ui-accordion-header-active:hover, .ui-accordion .graysubSecondHeader.ui-accordion-header.ui-accordion-header-active.field--name-field-social-phrase-group-title:hover, .ui-accordion .graysubSecondHeader.ui-accordion-header.ui-accordion-header-active.field--name-field-image-gallery-title:hover {
  color: #0051a8;
}

/* line 2749, ../sass/_styleguide.scss */
.ui-accordion h3.graysubSecondHeader .ui-accordion-header.ui-state-hover, .ui-accordion .graysubSecondHeader.field--name-field-social-phrase-group-title .ui-accordion-header.ui-state-hover, .ui-accordion .graysubSecondHeader.field--name-field-image-gallery-title .ui-accordion-header.ui-state-hover,
.ui-accordion h3.graysubThirdHeader.ui-accordion-header.ui-state-hover,
.ui-accordion .graysubThirdHeader.ui-accordion-header.ui-state-hover.field--name-field-social-phrase-group-title,
.ui-accordion .graysubThirdHeader.ui-accordion-header.ui-state-hover.field--name-field-image-gallery-title {
  color: #0051a8;
}

/* line 2755, ../sass/_styleguide.scss */
.ui-accordion h3.graysubSecondHeader .ui-accordion-header, .ui-accordion .graysubSecondHeader.field--name-field-social-phrase-group-title .ui-accordion-header, .ui-accordion .graysubSecondHeader.field--name-field-image-gallery-title .ui-accordion-header,
h3.graysubSecondHeader,
.graysubSecondHeader.field--name-field-social-phrase-group-title,
.graysubSecondHeader.field--name-field-image-gallery-title {
  font-size: 0.9375rem;
  min-height: 2.4em;
}
@media all and (min-width: 1440px) {
  /* line 2755, ../sass/_styleguide.scss */
  .ui-accordion h3.graysubSecondHeader .ui-accordion-header, .ui-accordion .graysubSecondHeader.field--name-field-social-phrase-group-title .ui-accordion-header, .ui-accordion .graysubSecondHeader.field--name-field-image-gallery-title .ui-accordion-header,
  h3.graysubSecondHeader,
  .graysubSecondHeader.field--name-field-social-phrase-group-title,
  .graysubSecondHeader.field--name-field-image-gallery-title {
    font-size: 0.9375rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2755, ../sass/_styleguide.scss */
  .ui-accordion h3.graysubSecondHeader .ui-accordion-header, .ui-accordion .graysubSecondHeader.field--name-field-social-phrase-group-title .ui-accordion-header, .ui-accordion .graysubSecondHeader.field--name-field-image-gallery-title .ui-accordion-header,
  h3.graysubSecondHeader,
  .graysubSecondHeader.field--name-field-social-phrase-group-title,
  .graysubSecondHeader.field--name-field-image-gallery-title {
    font-size: 0.9375rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2755, ../sass/_styleguide.scss */
  .ui-accordion h3.graysubSecondHeader .ui-accordion-header, .ui-accordion .graysubSecondHeader.field--name-field-social-phrase-group-title .ui-accordion-header, .ui-accordion .graysubSecondHeader.field--name-field-image-gallery-title .ui-accordion-header,
  h3.graysubSecondHeader,
  .graysubSecondHeader.field--name-field-social-phrase-group-title,
  .graysubSecondHeader.field--name-field-image-gallery-title {
    font-size: 0.9375rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2755, ../sass/_styleguide.scss */
  .ui-accordion h3.graysubSecondHeader .ui-accordion-header, .ui-accordion .graysubSecondHeader.field--name-field-social-phrase-group-title .ui-accordion-header, .ui-accordion .graysubSecondHeader.field--name-field-image-gallery-title .ui-accordion-header,
  h3.graysubSecondHeader,
  .graysubSecondHeader.field--name-field-social-phrase-group-title,
  .graysubSecondHeader.field--name-field-image-gallery-title {
    font-size: 0.8125rem;
  }
}
/* line 2760, ../sass/_styleguide.scss */
.ui-accordion h3.graysubSecondHeader .ui-accordion-header:hover, .ui-accordion .graysubSecondHeader.field--name-field-social-phrase-group-title .ui-accordion-header:hover, .ui-accordion .graysubSecondHeader.field--name-field-image-gallery-title .ui-accordion-header:hover,
h3.graysubSecondHeader:hover,
.graysubSecondHeader.field--name-field-social-phrase-group-title:hover,
.graysubSecondHeader.field--name-field-image-gallery-title:hover {
  color: #222;
}

/* line 2764, ../sass/_styleguide.scss */
h3.graysubSecondHeader .accordionOff, .graysubSecondHeader.field--name-field-social-phrase-group-title .accordionOff, .graysubSecondHeader.field--name-field-image-gallery-title .accordionOff {
  cursor: default;
}
/* line 2766, ../sass/_styleguide.scss */
h3.graysubSecondHeader .accordionOff:hover, .graysubSecondHeader.field--name-field-social-phrase-group-title .accordionOff:hover, .graysubSecondHeader.field--name-field-image-gallery-title .accordionOff:hover {
  color: #999;
}

/* line 2771, ../sass/_styleguide.scss */
.ui-accordion h3.graysubThirdHeader.ui-accordion-header.ui-accordion-header-active, .ui-accordion .graysubThirdHeader.ui-accordion-header.ui-accordion-header-active.field--name-field-social-phrase-group-title, .ui-accordion .graysubThirdHeader.ui-accordion-header.ui-accordion-header-active.field--name-field-image-gallery-title {
  background: #fff;
  color: #222;
  border-color: #fff;
  text-decoration: none;
}
/* line 1222, ../sass/_mixins.scss */
.ui-accordion h3.graysubThirdHeader.ui-accordion-header.ui-accordion-header-active:hover, .ui-accordion .graysubThirdHeader.ui-accordion-header.ui-accordion-header-active.field--name-field-social-phrase-group-title:hover, .ui-accordion .graysubThirdHeader.ui-accordion-header.ui-accordion-header-active.field--name-field-image-gallery-title:hover {
  color: #0051a8;
}

/* line 2775, ../sass/_styleguide.scss */
.ui-accordion h3.graysubThirdHeader.ui-accordion-header:hover, .ui-accordion .graysubThirdHeader.ui-accordion-header.field--name-field-social-phrase-group-title:hover, .ui-accordion .graysubThirdHeader.ui-accordion-header.field--name-field-image-gallery-title:hover {
  color: #0051a8;
}

/* line 2784, ../sass/_styleguide.scss */
.general-accordion .ui-accordion-content.ui-widget-content,
.primary-accordion .ui-accordion-content.ui-widget-content,
.secondary-accordion .ui-accordion-content.ui-widget-content {
  font-size: 1rem;
  background-image: none;
  padding-left: 1.1em;
}
@media all and (min-width: 1440px) {
  /* line 2784, ../sass/_styleguide.scss */
  .general-accordion .ui-accordion-content.ui-widget-content,
  .primary-accordion .ui-accordion-content.ui-widget-content,
  .secondary-accordion .ui-accordion-content.ui-widget-content {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2784, ../sass/_styleguide.scss */
  .general-accordion .ui-accordion-content.ui-widget-content,
  .primary-accordion .ui-accordion-content.ui-widget-content,
  .secondary-accordion .ui-accordion-content.ui-widget-content {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2784, ../sass/_styleguide.scss */
  .general-accordion .ui-accordion-content.ui-widget-content,
  .primary-accordion .ui-accordion-content.ui-widget-content,
  .secondary-accordion .ui-accordion-content.ui-widget-content {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2784, ../sass/_styleguide.scss */
  .general-accordion .ui-accordion-content.ui-widget-content,
  .primary-accordion .ui-accordion-content.ui-widget-content,
  .secondary-accordion .ui-accordion-content.ui-widget-content {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) {
  /* line 2784, ../sass/_styleguide.scss */
  .general-accordion .ui-accordion-content.ui-widget-content,
  .primary-accordion .ui-accordion-content.ui-widget-content,
  .secondary-accordion .ui-accordion-content.ui-widget-content {
    padding-left: 1.9em;
  }
}
/* line 2791, ../sass/_styleguide.scss */
.general-accordion .ui-accordion-content.ui-widget-content .views-row,
.primary-accordion .ui-accordion-content.ui-widget-content .views-row,
.secondary-accordion .ui-accordion-content.ui-widget-content .views-row {
  border: 1px solid #aaa;
  border-top: none;
  border-right: none;
  border-left: none;
  text-align: left;
  display: block;
  position: relative;
  padding: .5em .5em .5em .5em;
  min-height: 0;
  font-size: 1rem;
  font-weight: normal;
  text-decoration: none;
  text-align: left;
}
/* line 2793, ../sass/_styleguide.scss */
.general-accordion .ui-accordion-content.ui-widget-content .views-row .field-content > a,
.primary-accordion .ui-accordion-content.ui-widget-content .views-row .field-content > a,
.secondary-accordion .ui-accordion-content.ui-widget-content .views-row .field-content > a {
  color: #0051a8;
}
/* line 2797, ../sass/_styleguide.scss */
.general-accordion .ui-accordion-content.ui-widget-content .views-row > a,
.primary-accordion .ui-accordion-content.ui-widget-content .views-row > a,
.secondary-accordion .ui-accordion-content.ui-widget-content .views-row > a {
  color: #0051a8;
}
/* line 2801, ../sass/_styleguide.scss */
.general-accordion .ui-accordion-content.ui-widget-content .views-row > a:visited,
.primary-accordion .ui-accordion-content.ui-widget-content .views-row > a:visited,
.secondary-accordion .ui-accordion-content.ui-widget-content .views-row > a:visited {
  color: #6f57B5;
}
/* line 2804, ../sass/_styleguide.scss */
.general-accordion .ui-accordion-content.ui-widget-content .views-row:hover,
.primary-accordion .ui-accordion-content.ui-widget-content .views-row:hover,
.secondary-accordion .ui-accordion-content.ui-widget-content .views-row:hover {
  background-color: #f4f4f4;
}
/* line 2807, ../sass/_styleguide.scss */
.general-accordion .ui-accordion-content.ui-widget-content .views-row:last-child,
.primary-accordion .ui-accordion-content.ui-widget-content .views-row:last-child,
.secondary-accordion .ui-accordion-content.ui-widget-content .views-row:last-child {
  border-bottom: none;
}
/* line 2812, ../sass/_styleguide.scss */
.general-accordion .ui-accordion-content.ui-widget-content h3.publicationTitle a, .general-accordion .ui-accordion-content.ui-widget-content h3.primary-blue-publication-title a, .general-accordion .ui-accordion-content.ui-widget-content .primary-blue-publication-title.field--name-field-social-phrase-group-title a, .general-accordion .ui-accordion-content.ui-widget-content .primary-blue-publication-title.field--name-field-image-gallery-title a, .general-accordion .ui-accordion-content.ui-widget-content .publicationTitle.field--name-field-social-phrase-group-title a, .general-accordion .ui-accordion-content.ui-widget-content .publicationTitle.field--name-field-image-gallery-title a, .general-accordion .ui-accordion-content.ui-widget-content h3.publicationTitle a:link, .general-accordion .ui-accordion-content.ui-widget-content h3.primary-blue-publication-title a:link, .general-accordion .ui-accordion-content.ui-widget-content .primary-blue-publication-title.field--name-field-social-phrase-group-title a:link, .general-accordion .ui-accordion-content.ui-widget-content .primary-blue-publication-title.field--name-field-image-gallery-title a:link, .general-accordion .ui-accordion-content.ui-widget-content .publicationTitle.field--name-field-social-phrase-group-title a:link, .general-accordion .ui-accordion-content.ui-widget-content .publicationTitle.field--name-field-image-gallery-title a:link, .general-accordion .ui-accordion-content.ui-widget-content .publicationTitle a, .general-accordion .ui-accordion-content.ui-widget-content h3.primary-blue-publication-title a, .general-accordion .ui-accordion-content.ui-widget-content .primary-blue-publication-title.field--name-field-social-phrase-group-title a, .general-accordion .ui-accordion-content.ui-widget-content .primary-blue-publication-title.field--name-field-image-gallery-title a, .general-accordion .ui-accordion-content.ui-widget-content .publicationTitle a:link, .general-accordion .ui-accordion-content.ui-widget-content h3.primary-blue-publication-title a:link, .general-accordion .ui-accordion-content.ui-widget-content .primary-blue-publication-title.field--name-field-social-phrase-group-title a:link, .general-accordion .ui-accordion-content.ui-widget-content .primary-blue-publication-title.field--name-field-image-gallery-title a:link,
.primary-accordion .ui-accordion-content.ui-widget-content h3.publicationTitle a,
.primary-accordion .ui-accordion-content.ui-widget-content h3.primary-blue-publication-title a,
.primary-accordion .ui-accordion-content.ui-widget-content .primary-blue-publication-title.field--name-field-social-phrase-group-title a,
.primary-accordion .ui-accordion-content.ui-widget-content .primary-blue-publication-title.field--name-field-image-gallery-title a,
.primary-accordion .ui-accordion-content.ui-widget-content .publicationTitle.field--name-field-social-phrase-group-title a,
.primary-accordion .ui-accordion-content.ui-widget-content .publicationTitle.field--name-field-image-gallery-title a,
.primary-accordion .ui-accordion-content.ui-widget-content h3.publicationTitle a:link,
.primary-accordion .ui-accordion-content.ui-widget-content h3.primary-blue-publication-title a:link,
.primary-accordion .ui-accordion-content.ui-widget-content .primary-blue-publication-title.field--name-field-social-phrase-group-title a:link,
.primary-accordion .ui-accordion-content.ui-widget-content .primary-blue-publication-title.field--name-field-image-gallery-title a:link,
.primary-accordion .ui-accordion-content.ui-widget-content .publicationTitle.field--name-field-social-phrase-group-title a:link,
.primary-accordion .ui-accordion-content.ui-widget-content .publicationTitle.field--name-field-image-gallery-title a:link,
.primary-accordion .ui-accordion-content.ui-widget-content .publicationTitle a,
.primary-accordion .ui-accordion-content.ui-widget-content h3.primary-blue-publication-title a,
.primary-accordion .ui-accordion-content.ui-widget-content .primary-blue-publication-title.field--name-field-social-phrase-group-title a,
.primary-accordion .ui-accordion-content.ui-widget-content .primary-blue-publication-title.field--name-field-image-gallery-title a,
.primary-accordion .ui-accordion-content.ui-widget-content .publicationTitle a:link,
.primary-accordion .ui-accordion-content.ui-widget-content h3.primary-blue-publication-title a:link,
.primary-accordion .ui-accordion-content.ui-widget-content .primary-blue-publication-title.field--name-field-social-phrase-group-title a:link,
.primary-accordion .ui-accordion-content.ui-widget-content .primary-blue-publication-title.field--name-field-image-gallery-title a:link,
.secondary-accordion .ui-accordion-content.ui-widget-content h3.publicationTitle a,
.secondary-accordion .ui-accordion-content.ui-widget-content h3.primary-blue-publication-title a,
.secondary-accordion .ui-accordion-content.ui-widget-content .primary-blue-publication-title.field--name-field-social-phrase-group-title a,
.secondary-accordion .ui-accordion-content.ui-widget-content .primary-blue-publication-title.field--name-field-image-gallery-title a,
.secondary-accordion .ui-accordion-content.ui-widget-content .publicationTitle.field--name-field-social-phrase-group-title a,
.secondary-accordion .ui-accordion-content.ui-widget-content .publicationTitle.field--name-field-image-gallery-title a,
.secondary-accordion .ui-accordion-content.ui-widget-content h3.publicationTitle a:link,
.secondary-accordion .ui-accordion-content.ui-widget-content h3.primary-blue-publication-title a:link,
.secondary-accordion .ui-accordion-content.ui-widget-content .primary-blue-publication-title.field--name-field-social-phrase-group-title a:link,
.secondary-accordion .ui-accordion-content.ui-widget-content .primary-blue-publication-title.field--name-field-image-gallery-title a:link,
.secondary-accordion .ui-accordion-content.ui-widget-content .publicationTitle.field--name-field-social-phrase-group-title a:link,
.secondary-accordion .ui-accordion-content.ui-widget-content .publicationTitle.field--name-field-image-gallery-title a:link,
.secondary-accordion .ui-accordion-content.ui-widget-content .publicationTitle a,
.secondary-accordion .ui-accordion-content.ui-widget-content h3.primary-blue-publication-title a,
.secondary-accordion .ui-accordion-content.ui-widget-content .primary-blue-publication-title.field--name-field-social-phrase-group-title a,
.secondary-accordion .ui-accordion-content.ui-widget-content .primary-blue-publication-title.field--name-field-image-gallery-title a,
.secondary-accordion .ui-accordion-content.ui-widget-content .publicationTitle a:link,
.secondary-accordion .ui-accordion-content.ui-widget-content h3.primary-blue-publication-title a:link,
.secondary-accordion .ui-accordion-content.ui-widget-content .primary-blue-publication-title.field--name-field-social-phrase-group-title a:link,
.secondary-accordion .ui-accordion-content.ui-widget-content .primary-blue-publication-title.field--name-field-image-gallery-title a:link {
  color: #222;
}
/* line 2815, ../sass/_styleguide.scss */
.general-accordion .ui-accordion-content.ui-widget-content h3.publicationTitle a:visited, .general-accordion .ui-accordion-content.ui-widget-content h3.primary-blue-publication-title a:visited, .general-accordion .ui-accordion-content.ui-widget-content .primary-blue-publication-title.field--name-field-social-phrase-group-title a:visited, .general-accordion .ui-accordion-content.ui-widget-content .primary-blue-publication-title.field--name-field-image-gallery-title a:visited, .general-accordion .ui-accordion-content.ui-widget-content .publicationTitle.field--name-field-social-phrase-group-title a:visited, .general-accordion .ui-accordion-content.ui-widget-content .publicationTitle.field--name-field-image-gallery-title a:visited, .general-accordion .ui-accordion-content.ui-widget-content .publicationTitle a:visited, .general-accordion .ui-accordion-content.ui-widget-content h3.primary-blue-publication-title a:visited, .general-accordion .ui-accordion-content.ui-widget-content .primary-blue-publication-title.field--name-field-social-phrase-group-title a:visited, .general-accordion .ui-accordion-content.ui-widget-content .primary-blue-publication-title.field--name-field-image-gallery-title a:visited,
.primary-accordion .ui-accordion-content.ui-widget-content h3.publicationTitle a:visited,
.primary-accordion .ui-accordion-content.ui-widget-content h3.primary-blue-publication-title a:visited,
.primary-accordion .ui-accordion-content.ui-widget-content .primary-blue-publication-title.field--name-field-social-phrase-group-title a:visited,
.primary-accordion .ui-accordion-content.ui-widget-content .primary-blue-publication-title.field--name-field-image-gallery-title a:visited,
.primary-accordion .ui-accordion-content.ui-widget-content .publicationTitle.field--name-field-social-phrase-group-title a:visited,
.primary-accordion .ui-accordion-content.ui-widget-content .publicationTitle.field--name-field-image-gallery-title a:visited,
.primary-accordion .ui-accordion-content.ui-widget-content .publicationTitle a:visited,
.primary-accordion .ui-accordion-content.ui-widget-content h3.primary-blue-publication-title a:visited,
.primary-accordion .ui-accordion-content.ui-widget-content .primary-blue-publication-title.field--name-field-social-phrase-group-title a:visited,
.primary-accordion .ui-accordion-content.ui-widget-content .primary-blue-publication-title.field--name-field-image-gallery-title a:visited,
.secondary-accordion .ui-accordion-content.ui-widget-content h3.publicationTitle a:visited,
.secondary-accordion .ui-accordion-content.ui-widget-content h3.primary-blue-publication-title a:visited,
.secondary-accordion .ui-accordion-content.ui-widget-content .primary-blue-publication-title.field--name-field-social-phrase-group-title a:visited,
.secondary-accordion .ui-accordion-content.ui-widget-content .primary-blue-publication-title.field--name-field-image-gallery-title a:visited,
.secondary-accordion .ui-accordion-content.ui-widget-content .publicationTitle.field--name-field-social-phrase-group-title a:visited,
.secondary-accordion .ui-accordion-content.ui-widget-content .publicationTitle.field--name-field-image-gallery-title a:visited,
.secondary-accordion .ui-accordion-content.ui-widget-content .publicationTitle a:visited,
.secondary-accordion .ui-accordion-content.ui-widget-content h3.primary-blue-publication-title a:visited,
.secondary-accordion .ui-accordion-content.ui-widget-content .primary-blue-publication-title.field--name-field-social-phrase-group-title a:visited,
.secondary-accordion .ui-accordion-content.ui-widget-content .primary-blue-publication-title.field--name-field-image-gallery-title a:visited {
  color: #6f57B5;
}
/* line 2819, ../sass/_styleguide.scss */
.general-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readMoreLink,
.general-accordion .ui-accordion-content.ui-widget-content a.readMoreLink,
.general-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readLessLink,
.general-accordion .ui-accordion-content.ui-widget-content a.readLessLink,
.general-accordion .ui-accordion-content.ui-widget-content a.bluebutton,
.general-accordion .ui-accordion-content.ui-widget-content a.bluebutton:link,
.general-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.bluebutton:link,
.primary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readMoreLink,
.primary-accordion .ui-accordion-content.ui-widget-content a.readMoreLink,
.primary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readLessLink,
.primary-accordion .ui-accordion-content.ui-widget-content a.readLessLink,
.primary-accordion .ui-accordion-content.ui-widget-content a.bluebutton,
.primary-accordion .ui-accordion-content.ui-widget-content a.bluebutton:link,
.primary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.bluebutton:link,
.secondary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readMoreLink,
.secondary-accordion .ui-accordion-content.ui-widget-content a.readMoreLink,
.secondary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readLessLink,
.secondary-accordion .ui-accordion-content.ui-widget-content a.readLessLink,
.secondary-accordion .ui-accordion-content.ui-widget-content a.bluebutton,
.secondary-accordion .ui-accordion-content.ui-widget-content a.bluebutton:link,
.secondary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.bluebutton:link {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  background-color: #1a568c;
  border: 1px solid #1a568c;
  clear: both;
  margin: 1em auto;
  padding: 0.8em 3em;
}
@media all and (min-width: 1440px) {
  /* line 2819, ../sass/_styleguide.scss */
  .general-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readMoreLink,
  .general-accordion .ui-accordion-content.ui-widget-content a.readMoreLink,
  .general-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readLessLink,
  .general-accordion .ui-accordion-content.ui-widget-content a.readLessLink,
  .general-accordion .ui-accordion-content.ui-widget-content a.bluebutton,
  .general-accordion .ui-accordion-content.ui-widget-content a.bluebutton:link,
  .general-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.bluebutton:link,
  .primary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readMoreLink,
  .primary-accordion .ui-accordion-content.ui-widget-content a.readMoreLink,
  .primary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readLessLink,
  .primary-accordion .ui-accordion-content.ui-widget-content a.readLessLink,
  .primary-accordion .ui-accordion-content.ui-widget-content a.bluebutton,
  .primary-accordion .ui-accordion-content.ui-widget-content a.bluebutton:link,
  .primary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.bluebutton:link,
  .secondary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readMoreLink,
  .secondary-accordion .ui-accordion-content.ui-widget-content a.readMoreLink,
  .secondary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readLessLink,
  .secondary-accordion .ui-accordion-content.ui-widget-content a.readLessLink,
  .secondary-accordion .ui-accordion-content.ui-widget-content a.bluebutton,
  .secondary-accordion .ui-accordion-content.ui-widget-content a.bluebutton:link,
  .secondary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.bluebutton:link {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2819, ../sass/_styleguide.scss */
  .general-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readMoreLink,
  .general-accordion .ui-accordion-content.ui-widget-content a.readMoreLink,
  .general-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readLessLink,
  .general-accordion .ui-accordion-content.ui-widget-content a.readLessLink,
  .general-accordion .ui-accordion-content.ui-widget-content a.bluebutton,
  .general-accordion .ui-accordion-content.ui-widget-content a.bluebutton:link,
  .general-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.bluebutton:link,
  .primary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readMoreLink,
  .primary-accordion .ui-accordion-content.ui-widget-content a.readMoreLink,
  .primary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readLessLink,
  .primary-accordion .ui-accordion-content.ui-widget-content a.readLessLink,
  .primary-accordion .ui-accordion-content.ui-widget-content a.bluebutton,
  .primary-accordion .ui-accordion-content.ui-widget-content a.bluebutton:link,
  .primary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.bluebutton:link,
  .secondary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readMoreLink,
  .secondary-accordion .ui-accordion-content.ui-widget-content a.readMoreLink,
  .secondary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readLessLink,
  .secondary-accordion .ui-accordion-content.ui-widget-content a.readLessLink,
  .secondary-accordion .ui-accordion-content.ui-widget-content a.bluebutton,
  .secondary-accordion .ui-accordion-content.ui-widget-content a.bluebutton:link,
  .secondary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.bluebutton:link {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2819, ../sass/_styleguide.scss */
  .general-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readMoreLink,
  .general-accordion .ui-accordion-content.ui-widget-content a.readMoreLink,
  .general-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readLessLink,
  .general-accordion .ui-accordion-content.ui-widget-content a.readLessLink,
  .general-accordion .ui-accordion-content.ui-widget-content a.bluebutton,
  .general-accordion .ui-accordion-content.ui-widget-content a.bluebutton:link,
  .general-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.bluebutton:link,
  .primary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readMoreLink,
  .primary-accordion .ui-accordion-content.ui-widget-content a.readMoreLink,
  .primary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readLessLink,
  .primary-accordion .ui-accordion-content.ui-widget-content a.readLessLink,
  .primary-accordion .ui-accordion-content.ui-widget-content a.bluebutton,
  .primary-accordion .ui-accordion-content.ui-widget-content a.bluebutton:link,
  .primary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.bluebutton:link,
  .secondary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readMoreLink,
  .secondary-accordion .ui-accordion-content.ui-widget-content a.readMoreLink,
  .secondary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readLessLink,
  .secondary-accordion .ui-accordion-content.ui-widget-content a.readLessLink,
  .secondary-accordion .ui-accordion-content.ui-widget-content a.bluebutton,
  .secondary-accordion .ui-accordion-content.ui-widget-content a.bluebutton:link,
  .secondary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.bluebutton:link {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2819, ../sass/_styleguide.scss */
  .general-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readMoreLink,
  .general-accordion .ui-accordion-content.ui-widget-content a.readMoreLink,
  .general-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readLessLink,
  .general-accordion .ui-accordion-content.ui-widget-content a.readLessLink,
  .general-accordion .ui-accordion-content.ui-widget-content a.bluebutton,
  .general-accordion .ui-accordion-content.ui-widget-content a.bluebutton:link,
  .general-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.bluebutton:link,
  .primary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readMoreLink,
  .primary-accordion .ui-accordion-content.ui-widget-content a.readMoreLink,
  .primary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readLessLink,
  .primary-accordion .ui-accordion-content.ui-widget-content a.readLessLink,
  .primary-accordion .ui-accordion-content.ui-widget-content a.bluebutton,
  .primary-accordion .ui-accordion-content.ui-widget-content a.bluebutton:link,
  .primary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.bluebutton:link,
  .secondary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readMoreLink,
  .secondary-accordion .ui-accordion-content.ui-widget-content a.readMoreLink,
  .secondary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readLessLink,
  .secondary-accordion .ui-accordion-content.ui-widget-content a.readLessLink,
  .secondary-accordion .ui-accordion-content.ui-widget-content a.bluebutton,
  .secondary-accordion .ui-accordion-content.ui-widget-content a.bluebutton:link,
  .secondary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.bluebutton:link {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.general-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readMoreLink :hover,
.general-accordion .ui-accordion-content.ui-widget-content a.readMoreLink :hover,
.general-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readLessLink :hover,
.general-accordion .ui-accordion-content.ui-widget-content a.readLessLink :hover,
.general-accordion .ui-accordion-content.ui-widget-content a.bluebutton :hover,
.general-accordion .ui-accordion-content.ui-widget-content a.bluebutton:link :hover,
.general-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.bluebutton:link :hover,
.primary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readMoreLink :hover,
.primary-accordion .ui-accordion-content.ui-widget-content a.readMoreLink :hover,
.primary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readLessLink :hover,
.primary-accordion .ui-accordion-content.ui-widget-content a.readLessLink :hover,
.primary-accordion .ui-accordion-content.ui-widget-content a.bluebutton :hover,
.primary-accordion .ui-accordion-content.ui-widget-content a.bluebutton:link :hover,
.primary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.bluebutton:link :hover,
.secondary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readMoreLink :hover,
.secondary-accordion .ui-accordion-content.ui-widget-content a.readMoreLink :hover,
.secondary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readLessLink :hover,
.secondary-accordion .ui-accordion-content.ui-widget-content a.readLessLink :hover,
.secondary-accordion .ui-accordion-content.ui-widget-content a.bluebutton :hover,
.secondary-accordion .ui-accordion-content.ui-widget-content a.bluebutton:link :hover,
.secondary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.bluebutton:link :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 2819, ../sass/_styleguide.scss */
  .general-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readMoreLink,
  .general-accordion .ui-accordion-content.ui-widget-content a.readMoreLink,
  .general-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readLessLink,
  .general-accordion .ui-accordion-content.ui-widget-content a.readLessLink,
  .general-accordion .ui-accordion-content.ui-widget-content a.bluebutton,
  .general-accordion .ui-accordion-content.ui-widget-content a.bluebutton:link,
  .general-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.bluebutton:link,
  .primary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readMoreLink,
  .primary-accordion .ui-accordion-content.ui-widget-content a.readMoreLink,
  .primary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readLessLink,
  .primary-accordion .ui-accordion-content.ui-widget-content a.readLessLink,
  .primary-accordion .ui-accordion-content.ui-widget-content a.bluebutton,
  .primary-accordion .ui-accordion-content.ui-widget-content a.bluebutton:link,
  .primary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.bluebutton:link,
  .secondary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readMoreLink,
  .secondary-accordion .ui-accordion-content.ui-widget-content a.readMoreLink,
  .secondary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readLessLink,
  .secondary-accordion .ui-accordion-content.ui-widget-content a.readLessLink,
  .secondary-accordion .ui-accordion-content.ui-widget-content a.bluebutton,
  .secondary-accordion .ui-accordion-content.ui-widget-content a.bluebutton:link,
  .secondary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.bluebutton:link {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2819, ../sass/_styleguide.scss */
  .general-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readMoreLink,
  .general-accordion .ui-accordion-content.ui-widget-content a.readMoreLink,
  .general-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readLessLink,
  .general-accordion .ui-accordion-content.ui-widget-content a.readLessLink,
  .general-accordion .ui-accordion-content.ui-widget-content a.bluebutton,
  .general-accordion .ui-accordion-content.ui-widget-content a.bluebutton:link,
  .general-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.bluebutton:link,
  .primary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readMoreLink,
  .primary-accordion .ui-accordion-content.ui-widget-content a.readMoreLink,
  .primary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readLessLink,
  .primary-accordion .ui-accordion-content.ui-widget-content a.readLessLink,
  .primary-accordion .ui-accordion-content.ui-widget-content a.bluebutton,
  .primary-accordion .ui-accordion-content.ui-widget-content a.bluebutton:link,
  .primary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.bluebutton:link,
  .secondary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readMoreLink,
  .secondary-accordion .ui-accordion-content.ui-widget-content a.readMoreLink,
  .secondary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readLessLink,
  .secondary-accordion .ui-accordion-content.ui-widget-content a.readLessLink,
  .secondary-accordion .ui-accordion-content.ui-widget-content a.bluebutton,
  .secondary-accordion .ui-accordion-content.ui-widget-content a.bluebutton:link,
  .secondary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.bluebutton:link {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2819, ../sass/_styleguide.scss */
  .general-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readMoreLink,
  .general-accordion .ui-accordion-content.ui-widget-content a.readMoreLink,
  .general-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readLessLink,
  .general-accordion .ui-accordion-content.ui-widget-content a.readLessLink,
  .general-accordion .ui-accordion-content.ui-widget-content a.bluebutton,
  .general-accordion .ui-accordion-content.ui-widget-content a.bluebutton:link,
  .general-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.bluebutton:link,
  .primary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readMoreLink,
  .primary-accordion .ui-accordion-content.ui-widget-content a.readMoreLink,
  .primary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readLessLink,
  .primary-accordion .ui-accordion-content.ui-widget-content a.readLessLink,
  .primary-accordion .ui-accordion-content.ui-widget-content a.bluebutton,
  .primary-accordion .ui-accordion-content.ui-widget-content a.bluebutton:link,
  .primary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.bluebutton:link,
  .secondary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readMoreLink,
  .secondary-accordion .ui-accordion-content.ui-widget-content a.readMoreLink,
  .secondary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readLessLink,
  .secondary-accordion .ui-accordion-content.ui-widget-content a.readLessLink,
  .secondary-accordion .ui-accordion-content.ui-widget-content a.bluebutton,
  .secondary-accordion .ui-accordion-content.ui-widget-content a.bluebutton:link,
  .secondary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.bluebutton:link {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2819, ../sass/_styleguide.scss */
  .general-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readMoreLink,
  .general-accordion .ui-accordion-content.ui-widget-content a.readMoreLink,
  .general-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readLessLink,
  .general-accordion .ui-accordion-content.ui-widget-content a.readLessLink,
  .general-accordion .ui-accordion-content.ui-widget-content a.bluebutton,
  .general-accordion .ui-accordion-content.ui-widget-content a.bluebutton:link,
  .general-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.bluebutton:link,
  .primary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readMoreLink,
  .primary-accordion .ui-accordion-content.ui-widget-content a.readMoreLink,
  .primary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readLessLink,
  .primary-accordion .ui-accordion-content.ui-widget-content a.readLessLink,
  .primary-accordion .ui-accordion-content.ui-widget-content a.bluebutton,
  .primary-accordion .ui-accordion-content.ui-widget-content a.bluebutton:link,
  .primary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.bluebutton:link,
  .secondary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readMoreLink,
  .secondary-accordion .ui-accordion-content.ui-widget-content a.readMoreLink,
  .secondary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readLessLink,
  .secondary-accordion .ui-accordion-content.ui-widget-content a.readLessLink,
  .secondary-accordion .ui-accordion-content.ui-widget-content a.bluebutton,
  .secondary-accordion .ui-accordion-content.ui-widget-content a.bluebutton:link,
  .secondary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.bluebutton:link {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2819, ../sass/_styleguide.scss */
  .general-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readMoreLink,
  .general-accordion .ui-accordion-content.ui-widget-content a.readMoreLink,
  .general-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readLessLink,
  .general-accordion .ui-accordion-content.ui-widget-content a.readLessLink,
  .general-accordion .ui-accordion-content.ui-widget-content a.bluebutton,
  .general-accordion .ui-accordion-content.ui-widget-content a.bluebutton:link,
  .general-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.bluebutton:link,
  .primary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readMoreLink,
  .primary-accordion .ui-accordion-content.ui-widget-content a.readMoreLink,
  .primary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readLessLink,
  .primary-accordion .ui-accordion-content.ui-widget-content a.readLessLink,
  .primary-accordion .ui-accordion-content.ui-widget-content a.bluebutton,
  .primary-accordion .ui-accordion-content.ui-widget-content a.bluebutton:link,
  .primary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.bluebutton:link,
  .secondary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readMoreLink,
  .secondary-accordion .ui-accordion-content.ui-widget-content a.readMoreLink,
  .secondary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readLessLink,
  .secondary-accordion .ui-accordion-content.ui-widget-content a.readLessLink,
  .secondary-accordion .ui-accordion-content.ui-widget-content a.bluebutton,
  .secondary-accordion .ui-accordion-content.ui-widget-content a.bluebutton:link,
  .secondary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.bluebutton:link {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.general-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readMoreLink:hover,
.general-accordion .ui-accordion-content.ui-widget-content a.readMoreLink:hover,
.general-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readLessLink:hover,
.general-accordion .ui-accordion-content.ui-widget-content a.readLessLink:hover,
.general-accordion .ui-accordion-content.ui-widget-content a.bluebutton:hover,
.general-accordion .ui-accordion-content.ui-widget-content a.bluebutton:link:hover,
.general-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.bluebutton:link:hover,
.primary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readMoreLink:hover,
.primary-accordion .ui-accordion-content.ui-widget-content a.readMoreLink:hover,
.primary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readLessLink:hover,
.primary-accordion .ui-accordion-content.ui-widget-content a.readLessLink:hover,
.primary-accordion .ui-accordion-content.ui-widget-content a.bluebutton:hover,
.primary-accordion .ui-accordion-content.ui-widget-content a.bluebutton:link:hover,
.primary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.bluebutton:link:hover,
.secondary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readMoreLink:hover,
.secondary-accordion .ui-accordion-content.ui-widget-content a.readMoreLink:hover,
.secondary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readLessLink:hover,
.secondary-accordion .ui-accordion-content.ui-widget-content a.readLessLink:hover,
.secondary-accordion .ui-accordion-content.ui-widget-content a.bluebutton:hover,
.secondary-accordion .ui-accordion-content.ui-widget-content a.bluebutton:link:hover,
.secondary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.bluebutton:link:hover {
  background-color: #102d66;
  border-color: #102d66;
  color: #fff;
  text-decoration: none;
}
/* line 2828, ../sass/_styleguide.scss */
.general-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readMoreLink.hidden,
.general-accordion .ui-accordion-content.ui-widget-content a.readMoreLink.hidden,
.general-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readLessLink.hidden,
.general-accordion .ui-accordion-content.ui-widget-content a.readLessLink.hidden,
.primary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readMoreLink.hidden,
.primary-accordion .ui-accordion-content.ui-widget-content a.readMoreLink.hidden,
.primary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readLessLink.hidden,
.primary-accordion .ui-accordion-content.ui-widget-content a.readLessLink.hidden,
.secondary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readMoreLink.hidden,
.secondary-accordion .ui-accordion-content.ui-widget-content a.readMoreLink.hidden,
.secondary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readLessLink.hidden,
.secondary-accordion .ui-accordion-content.ui-widget-content a.readLessLink.hidden {
  display: none;
}

/* line 2838, ../sass/_styleguide.scss */
.general-accordion .ui-accordion-content.ui-widget-content,
.primary-accordion .ui-accordion-content.ui-widget-content {
  padding-top: 1em;
  padding-bottom: 1em;
  border-top: 1px solid #d7e7f4;
  color: #222;
  background-image: none;
}
@media all and (min-width: 1100px) {
  /* line 2838, ../sass/_styleguide.scss */
  .general-accordion .ui-accordion-content.ui-widget-content,
  .primary-accordion .ui-accordion-content.ui-widget-content {
    padding-right: 2em;
    padding-left: 2em;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2838, ../sass/_styleguide.scss */
  .general-accordion .ui-accordion-content.ui-widget-content,
  .primary-accordion .ui-accordion-content.ui-widget-content {
    padding-right: 1em;
    padding-left: 1em;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2838, ../sass/_styleguide.scss */
  .general-accordion .ui-accordion-content.ui-widget-content,
  .primary-accordion .ui-accordion-content.ui-widget-content {
    padding-right: 0.4em;
    padding-left: 0.8em;
  }
}
@media all and (min-width: 1100px) {
  /* line 2838, ../sass/_styleguide.scss */
  .general-accordion .ui-accordion-content.ui-widget-content,
  .primary-accordion .ui-accordion-content.ui-widget-content {
    border-left: 20px solid #d7e7f4;
    border-right: 20px solid #d7e7f4;
    border-bottom: 20px solid #d7e7f4;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2838, ../sass/_styleguide.scss */
  .general-accordion .ui-accordion-content.ui-widget-content,
  .primary-accordion .ui-accordion-content.ui-widget-content {
    border-left: 9px solid #d7e7f4;
    border-right: 9px solid #d7e7f4;
    border-bottom: 9px solid #d7e7f4;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2838, ../sass/_styleguide.scss */
  .general-accordion .ui-accordion-content.ui-widget-content,
  .primary-accordion .ui-accordion-content.ui-widget-content {
    border-left: 6px solid #d7e7f4;
    border-right: 6px solid #d7e7f4;
    border-bottom: 6px solid #d7e7f4;
  }
}

/* line 2843, ../sass/_styleguide.scss */
.secondary-accordion .ui-accordion-content.ui-widget-content {
  padding: 0.6em 0;
  border-top: 1px solid transparent;
  color: #222;
  background-image: none;
  overflow: visible;
}
@media all and (min-width: 1100px) {
  /* line 2843, ../sass/_styleguide.scss */
  .secondary-accordion .ui-accordion-content.ui-widget-content {
    border-left: 0 solid transparent;
    border-right: 0 solid transparent;
    border-bottom: 0 solid transparent;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2843, ../sass/_styleguide.scss */
  .secondary-accordion .ui-accordion-content.ui-widget-content {
    border-left: 0 solid transparent;
    border-right: 0 solid transparent;
    border-bottom: 0 solid transparent;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2843, ../sass/_styleguide.scss */
  .secondary-accordion .ui-accordion-content.ui-widget-content {
    border-left: 0 solid transparent;
    border-right: 0 solid transparent;
    border-bottom: 0 solid transparent;
  }
}
/* line 2847, ../sass/_styleguide.scss */
.secondary-accordion > h2, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .secondary-accordion > h1, .secondary-accordion > .contact-method-label {
  line-height: 1.5;
}

/* line 2852, ../sass/_styleguide.scss */
.node--type-publication .node__content {
  padding-top: 5px;
}

/* line 2862, ../sass/_styleguide.scss */
.node--type-supplemental-page .ui-accordion-content.ui-widget-content,
.general-accordion.ui-accordion .ui-accordion-content.ui-widget-content,
.primary-accordion.ui-accordion .ui-accordion-content.ui-widget-content,
.supplemental-accordion.ui-accordion .ui-accordion-content.ui-widget-content {
  margin-top: 0;
  margin-right: 0.875rem;
  font-size: 1rem;
}
@media all and (min-width: 1440px) {
  /* line 2862, ../sass/_styleguide.scss */
  .node--type-supplemental-page .ui-accordion-content.ui-widget-content,
  .general-accordion.ui-accordion .ui-accordion-content.ui-widget-content,
  .primary-accordion.ui-accordion .ui-accordion-content.ui-widget-content,
  .supplemental-accordion.ui-accordion .ui-accordion-content.ui-widget-content {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2862, ../sass/_styleguide.scss */
  .node--type-supplemental-page .ui-accordion-content.ui-widget-content,
  .general-accordion.ui-accordion .ui-accordion-content.ui-widget-content,
  .primary-accordion.ui-accordion .ui-accordion-content.ui-widget-content,
  .supplemental-accordion.ui-accordion .ui-accordion-content.ui-widget-content {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2862, ../sass/_styleguide.scss */
  .node--type-supplemental-page .ui-accordion-content.ui-widget-content,
  .general-accordion.ui-accordion .ui-accordion-content.ui-widget-content,
  .primary-accordion.ui-accordion .ui-accordion-content.ui-widget-content,
  .supplemental-accordion.ui-accordion .ui-accordion-content.ui-widget-content {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2862, ../sass/_styleguide.scss */
  .node--type-supplemental-page .ui-accordion-content.ui-widget-content,
  .general-accordion.ui-accordion .ui-accordion-content.ui-widget-content,
  .primary-accordion.ui-accordion .ui-accordion-content.ui-widget-content,
  .supplemental-accordion.ui-accordion .ui-accordion-content.ui-widget-content {
    font-size: 1rem;
  }
}

/* line 2885, ../sass/_styleguide.scss */
.node--type-supplemental-page .ui-accordion-content.ui-widget-content,
.general-accordion.ui-accordion .ui-accordion-content.ui-widget-content,
.primary-accordion.ui-accordion .ui-accordion-content.ui-widget-content {
  padding-top: 1em;
  padding-bottom: 1em;
  border-top: 1px solid #d7e7f4;
  color: #222;
  background-image: none;
}
@media all and (min-width: 1100px) {
  /* line 2885, ../sass/_styleguide.scss */
  .node--type-supplemental-page .ui-accordion-content.ui-widget-content,
  .general-accordion.ui-accordion .ui-accordion-content.ui-widget-content,
  .primary-accordion.ui-accordion .ui-accordion-content.ui-widget-content {
    padding-right: 2em;
    padding-left: 2em;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2885, ../sass/_styleguide.scss */
  .node--type-supplemental-page .ui-accordion-content.ui-widget-content,
  .general-accordion.ui-accordion .ui-accordion-content.ui-widget-content,
  .primary-accordion.ui-accordion .ui-accordion-content.ui-widget-content {
    padding-right: 1em;
    padding-left: 1em;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2885, ../sass/_styleguide.scss */
  .node--type-supplemental-page .ui-accordion-content.ui-widget-content,
  .general-accordion.ui-accordion .ui-accordion-content.ui-widget-content,
  .primary-accordion.ui-accordion .ui-accordion-content.ui-widget-content {
    padding-right: 0.4em;
    padding-left: 0.8em;
  }
}
@media all and (min-width: 1100px) {
  /* line 2885, ../sass/_styleguide.scss */
  .node--type-supplemental-page .ui-accordion-content.ui-widget-content,
  .general-accordion.ui-accordion .ui-accordion-content.ui-widget-content,
  .primary-accordion.ui-accordion .ui-accordion-content.ui-widget-content {
    border-left: 20px solid #d7e7f4;
    border-right: 20px solid #d7e7f4;
    border-bottom: 20px solid #d7e7f4;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2885, ../sass/_styleguide.scss */
  .node--type-supplemental-page .ui-accordion-content.ui-widget-content,
  .general-accordion.ui-accordion .ui-accordion-content.ui-widget-content,
  .primary-accordion.ui-accordion .ui-accordion-content.ui-widget-content {
    border-left: 9px solid #d7e7f4;
    border-right: 9px solid #d7e7f4;
    border-bottom: 9px solid #d7e7f4;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2885, ../sass/_styleguide.scss */
  .node--type-supplemental-page .ui-accordion-content.ui-widget-content,
  .general-accordion.ui-accordion .ui-accordion-content.ui-widget-content,
  .primary-accordion.ui-accordion .ui-accordion-content.ui-widget-content {
    border-left: 6px solid #d7e7f4;
    border-right: 6px solid #d7e7f4;
    border-bottom: 6px solid #d7e7f4;
  }
}
/* line 2887, ../sass/_styleguide.scss */
.node--type-supplemental-page .ui-accordion-content.ui-widget-content ul.list-style-type-none,
.general-accordion.ui-accordion .ui-accordion-content.ui-widget-content ul.list-style-type-none,
.primary-accordion.ui-accordion .ui-accordion-content.ui-widget-content ul.list-style-type-none {
  margin-bottom: 1em;
}

/* line 2893, ../sass/_styleguide.scss */
.supplemental-accordion.ui-accordion .ui-accordion-content.ui-widget-content {
  padding-top: 1em;
  padding-bottom: 1em;
  border-top: 1px solid #222;
  color: #222;
  background-image: none;
}
@media all and (min-width: 1100px) {
  /* line 2893, ../sass/_styleguide.scss */
  .supplemental-accordion.ui-accordion .ui-accordion-content.ui-widget-content {
    padding-right: 2em;
    padding-left: 2em;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2893, ../sass/_styleguide.scss */
  .supplemental-accordion.ui-accordion .ui-accordion-content.ui-widget-content {
    padding-right: 1em;
    padding-left: 1em;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2893, ../sass/_styleguide.scss */
  .supplemental-accordion.ui-accordion .ui-accordion-content.ui-widget-content {
    padding-right: 0.4em;
    padding-left: 0.8em;
  }
}
@media all and (min-width: 1100px) {
  /* line 2893, ../sass/_styleguide.scss */
  .supplemental-accordion.ui-accordion .ui-accordion-content.ui-widget-content {
    border-left: 20px solid #222;
    border-right: 20px solid #222;
    border-bottom: 20px solid #222;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2893, ../sass/_styleguide.scss */
  .supplemental-accordion.ui-accordion .ui-accordion-content.ui-widget-content {
    border-left: 9px solid #222;
    border-right: 9px solid #222;
    border-bottom: 9px solid #222;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2893, ../sass/_styleguide.scss */
  .supplemental-accordion.ui-accordion .ui-accordion-content.ui-widget-content {
    border-left: 6px solid #222;
    border-right: 6px solid #222;
    border-bottom: 6px solid #222;
  }
}

/* line 2902, ../sass/_styleguide.scss */
.node--type-supplemental-page .subAccordion .ui-accordion-content,
.general-accordion.ui-accordion .subAccordion .ui-accordion-content,
.primary-accordion.ui-accordion .subAccordion .ui-accordion-content,
.secondary-accordion.ui-accordion .subAccordion .ui-accordion-content {
  border-top: 1px solid #222;
  background-image: none;
  background-color: #fff;
  font-size: 1rem;
  padding-bottom: 1em;
}
@media all and (min-width: 1100px) {
  /* line 2902, ../sass/_styleguide.scss */
  .node--type-supplemental-page .subAccordion .ui-accordion-content,
  .general-accordion.ui-accordion .subAccordion .ui-accordion-content,
  .primary-accordion.ui-accordion .subAccordion .ui-accordion-content,
  .secondary-accordion.ui-accordion .subAccordion .ui-accordion-content {
    border-left: 20px solid #222;
    border-right: 20px solid #222;
    border-bottom: 20px solid #222;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2902, ../sass/_styleguide.scss */
  .node--type-supplemental-page .subAccordion .ui-accordion-content,
  .general-accordion.ui-accordion .subAccordion .ui-accordion-content,
  .primary-accordion.ui-accordion .subAccordion .ui-accordion-content,
  .secondary-accordion.ui-accordion .subAccordion .ui-accordion-content {
    border-left: 9px solid #222;
    border-right: 9px solid #222;
    border-bottom: 9px solid #222;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2902, ../sass/_styleguide.scss */
  .node--type-supplemental-page .subAccordion .ui-accordion-content,
  .general-accordion.ui-accordion .subAccordion .ui-accordion-content,
  .primary-accordion.ui-accordion .subAccordion .ui-accordion-content,
  .secondary-accordion.ui-accordion .subAccordion .ui-accordion-content {
    border-left: 6px solid #222;
    border-right: 6px solid #222;
    border-bottom: 6px solid #222;
  }
}
@media all and (min-width: 1440px) {
  /* line 2902, ../sass/_styleguide.scss */
  .node--type-supplemental-page .subAccordion .ui-accordion-content,
  .general-accordion.ui-accordion .subAccordion .ui-accordion-content,
  .primary-accordion.ui-accordion .subAccordion .ui-accordion-content,
  .secondary-accordion.ui-accordion .subAccordion .ui-accordion-content {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2902, ../sass/_styleguide.scss */
  .node--type-supplemental-page .subAccordion .ui-accordion-content,
  .general-accordion.ui-accordion .subAccordion .ui-accordion-content,
  .primary-accordion.ui-accordion .subAccordion .ui-accordion-content,
  .secondary-accordion.ui-accordion .subAccordion .ui-accordion-content {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2902, ../sass/_styleguide.scss */
  .node--type-supplemental-page .subAccordion .ui-accordion-content,
  .general-accordion.ui-accordion .subAccordion .ui-accordion-content,
  .primary-accordion.ui-accordion .subAccordion .ui-accordion-content,
  .secondary-accordion.ui-accordion .subAccordion .ui-accordion-content {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2902, ../sass/_styleguide.scss */
  .node--type-supplemental-page .subAccordion .ui-accordion-content,
  .general-accordion.ui-accordion .subAccordion .ui-accordion-content,
  .primary-accordion.ui-accordion .subAccordion .ui-accordion-content,
  .secondary-accordion.ui-accordion .subAccordion .ui-accordion-content {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) {
  /* line 2902, ../sass/_styleguide.scss */
  .node--type-supplemental-page .subAccordion .ui-accordion-content,
  .general-accordion.ui-accordion .subAccordion .ui-accordion-content,
  .primary-accordion.ui-accordion .subAccordion .ui-accordion-content,
  .secondary-accordion.ui-accordion .subAccordion .ui-accordion-content {
    padding-left: .9em;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2902, ../sass/_styleguide.scss */
  .node--type-supplemental-page .subAccordion .ui-accordion-content,
  .general-accordion.ui-accordion .subAccordion .ui-accordion-content,
  .primary-accordion.ui-accordion .subAccordion .ui-accordion-content,
  .secondary-accordion.ui-accordion .subAccordion .ui-accordion-content {
    padding-left: 1.1em;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2902, ../sass/_styleguide.scss */
  .node--type-supplemental-page .subAccordion .ui-accordion-content,
  .general-accordion.ui-accordion .subAccordion .ui-accordion-content,
  .primary-accordion.ui-accordion .subAccordion .ui-accordion-content,
  .secondary-accordion.ui-accordion .subAccordion .ui-accordion-content {
    padding-left: 0.4em;
  }
}
/* line 2907, ../sass/_styleguide.scss */
.node--type-supplemental-page .subAccordion .ui-accordion-content .clinicalTrialsBox .ui-accordion-content,
.general-accordion.ui-accordion .subAccordion .ui-accordion-content .clinicalTrialsBox .ui-accordion-content,
.primary-accordion.ui-accordion .subAccordion .ui-accordion-content .clinicalTrialsBox .ui-accordion-content,
.secondary-accordion.ui-accordion .subAccordion .ui-accordion-content .clinicalTrialsBox .ui-accordion-content {
  padding-left: .4em;
  padding-right: 0.4em;
}
@media all and (min-width: 1100px) {
  /* line 2907, ../sass/_styleguide.scss */
  .node--type-supplemental-page .subAccordion .ui-accordion-content .clinicalTrialsBox .ui-accordion-content,
  .general-accordion.ui-accordion .subAccordion .ui-accordion-content .clinicalTrialsBox .ui-accordion-content,
  .primary-accordion.ui-accordion .subAccordion .ui-accordion-content .clinicalTrialsBox .ui-accordion-content,
  .secondary-accordion.ui-accordion .subAccordion .ui-accordion-content .clinicalTrialsBox .ui-accordion-content {
    padding-left: .8em;
    padding-right: .8em;
  }
}
/* line 2917, ../sass/_styleguide.scss */
.node--type-supplemental-page .subAccordion .centeredSubContainer.subAccordionContainer.ui-accordion-content,
.general-accordion.ui-accordion .subAccordion .centeredSubContainer.subAccordionContainer.ui-accordion-content,
.primary-accordion.ui-accordion .subAccordion .centeredSubContainer.subAccordionContainer.ui-accordion-content,
.secondary-accordion.ui-accordion .subAccordion .centeredSubContainer.subAccordionContainer.ui-accordion-content {
  padding-left: 0;
  padding-right: 0;
}
/* line 2921, ../sass/_styleguide.scss */
.node--type-supplemental-page .subSecondAccordion,
.general-accordion.ui-accordion .subSecondAccordion,
.primary-accordion.ui-accordion .subSecondAccordion,
.secondary-accordion.ui-accordion .subSecondAccordion {
  font-size: 1rem;
  background-color: #fff;
}
@media all and (min-width: 1440px) {
  /* line 2921, ../sass/_styleguide.scss */
  .node--type-supplemental-page .subSecondAccordion,
  .general-accordion.ui-accordion .subSecondAccordion,
  .primary-accordion.ui-accordion .subSecondAccordion,
  .secondary-accordion.ui-accordion .subSecondAccordion {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2921, ../sass/_styleguide.scss */
  .node--type-supplemental-page .subSecondAccordion,
  .general-accordion.ui-accordion .subSecondAccordion,
  .primary-accordion.ui-accordion .subSecondAccordion,
  .secondary-accordion.ui-accordion .subSecondAccordion {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2921, ../sass/_styleguide.scss */
  .node--type-supplemental-page .subSecondAccordion,
  .general-accordion.ui-accordion .subSecondAccordion,
  .primary-accordion.ui-accordion .subSecondAccordion,
  .secondary-accordion.ui-accordion .subSecondAccordion {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2921, ../sass/_styleguide.scss */
  .node--type-supplemental-page .subSecondAccordion,
  .general-accordion.ui-accordion .subSecondAccordion,
  .primary-accordion.ui-accordion .subSecondAccordion,
  .secondary-accordion.ui-accordion .subSecondAccordion {
    font-size: 0.875rem;
  }
}
/* line 2926, ../sass/_styleguide.scss */
.node--type-supplemental-page .subSecondAccordion .ui-accordion-content, .node--type-supplemental-page .subThirdAccordion .ui-accordion-content,
.general-accordion.ui-accordion .subSecondAccordion .ui-accordion-content,
.general-accordion.ui-accordion .subThirdAccordion .ui-accordion-content,
.primary-accordion.ui-accordion .subSecondAccordion .ui-accordion-content,
.primary-accordion.ui-accordion .subThirdAccordion .ui-accordion-content,
.secondary-accordion.ui-accordion .subSecondAccordion .ui-accordion-content,
.secondary-accordion.ui-accordion .subThirdAccordion .ui-accordion-content {
  border-top: 1px solid #f2f2f2;
  background-image: none;
  background-color: #f2f2f2;
  font-size: 1rem;
  padding-bottom: 1em;
}
@media all and (min-width: 1100px) {
  /* line 2926, ../sass/_styleguide.scss */
  .node--type-supplemental-page .subSecondAccordion .ui-accordion-content, .node--type-supplemental-page .subThirdAccordion .ui-accordion-content,
  .general-accordion.ui-accordion .subSecondAccordion .ui-accordion-content,
  .general-accordion.ui-accordion .subThirdAccordion .ui-accordion-content,
  .primary-accordion.ui-accordion .subSecondAccordion .ui-accordion-content,
  .primary-accordion.ui-accordion .subThirdAccordion .ui-accordion-content,
  .secondary-accordion.ui-accordion .subSecondAccordion .ui-accordion-content,
  .secondary-accordion.ui-accordion .subThirdAccordion .ui-accordion-content {
    border-left: 20px solid #f2f2f2;
    border-right: 20px solid #f2f2f2;
    border-bottom: 20px solid #f2f2f2;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2926, ../sass/_styleguide.scss */
  .node--type-supplemental-page .subSecondAccordion .ui-accordion-content, .node--type-supplemental-page .subThirdAccordion .ui-accordion-content,
  .general-accordion.ui-accordion .subSecondAccordion .ui-accordion-content,
  .general-accordion.ui-accordion .subThirdAccordion .ui-accordion-content,
  .primary-accordion.ui-accordion .subSecondAccordion .ui-accordion-content,
  .primary-accordion.ui-accordion .subThirdAccordion .ui-accordion-content,
  .secondary-accordion.ui-accordion .subSecondAccordion .ui-accordion-content,
  .secondary-accordion.ui-accordion .subThirdAccordion .ui-accordion-content {
    border-left: 9px solid #f2f2f2;
    border-right: 9px solid #f2f2f2;
    border-bottom: 9px solid #f2f2f2;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2926, ../sass/_styleguide.scss */
  .node--type-supplemental-page .subSecondAccordion .ui-accordion-content, .node--type-supplemental-page .subThirdAccordion .ui-accordion-content,
  .general-accordion.ui-accordion .subSecondAccordion .ui-accordion-content,
  .general-accordion.ui-accordion .subThirdAccordion .ui-accordion-content,
  .primary-accordion.ui-accordion .subSecondAccordion .ui-accordion-content,
  .primary-accordion.ui-accordion .subThirdAccordion .ui-accordion-content,
  .secondary-accordion.ui-accordion .subSecondAccordion .ui-accordion-content,
  .secondary-accordion.ui-accordion .subThirdAccordion .ui-accordion-content {
    border-left: 6px solid #f2f2f2;
    border-right: 6px solid #f2f2f2;
    border-bottom: 6px solid #f2f2f2;
  }
}
@media all and (min-width: 1440px) {
  /* line 2926, ../sass/_styleguide.scss */
  .node--type-supplemental-page .subSecondAccordion .ui-accordion-content, .node--type-supplemental-page .subThirdAccordion .ui-accordion-content,
  .general-accordion.ui-accordion .subSecondAccordion .ui-accordion-content,
  .general-accordion.ui-accordion .subThirdAccordion .ui-accordion-content,
  .primary-accordion.ui-accordion .subSecondAccordion .ui-accordion-content,
  .primary-accordion.ui-accordion .subThirdAccordion .ui-accordion-content,
  .secondary-accordion.ui-accordion .subSecondAccordion .ui-accordion-content,
  .secondary-accordion.ui-accordion .subThirdAccordion .ui-accordion-content {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2926, ../sass/_styleguide.scss */
  .node--type-supplemental-page .subSecondAccordion .ui-accordion-content, .node--type-supplemental-page .subThirdAccordion .ui-accordion-content,
  .general-accordion.ui-accordion .subSecondAccordion .ui-accordion-content,
  .general-accordion.ui-accordion .subThirdAccordion .ui-accordion-content,
  .primary-accordion.ui-accordion .subSecondAccordion .ui-accordion-content,
  .primary-accordion.ui-accordion .subThirdAccordion .ui-accordion-content,
  .secondary-accordion.ui-accordion .subSecondAccordion .ui-accordion-content,
  .secondary-accordion.ui-accordion .subThirdAccordion .ui-accordion-content {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2926, ../sass/_styleguide.scss */
  .node--type-supplemental-page .subSecondAccordion .ui-accordion-content, .node--type-supplemental-page .subThirdAccordion .ui-accordion-content,
  .general-accordion.ui-accordion .subSecondAccordion .ui-accordion-content,
  .general-accordion.ui-accordion .subThirdAccordion .ui-accordion-content,
  .primary-accordion.ui-accordion .subSecondAccordion .ui-accordion-content,
  .primary-accordion.ui-accordion .subThirdAccordion .ui-accordion-content,
  .secondary-accordion.ui-accordion .subSecondAccordion .ui-accordion-content,
  .secondary-accordion.ui-accordion .subThirdAccordion .ui-accordion-content {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2926, ../sass/_styleguide.scss */
  .node--type-supplemental-page .subSecondAccordion .ui-accordion-content, .node--type-supplemental-page .subThirdAccordion .ui-accordion-content,
  .general-accordion.ui-accordion .subSecondAccordion .ui-accordion-content,
  .general-accordion.ui-accordion .subThirdAccordion .ui-accordion-content,
  .primary-accordion.ui-accordion .subSecondAccordion .ui-accordion-content,
  .primary-accordion.ui-accordion .subThirdAccordion .ui-accordion-content,
  .secondary-accordion.ui-accordion .subSecondAccordion .ui-accordion-content,
  .secondary-accordion.ui-accordion .subThirdAccordion .ui-accordion-content {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) {
  /* line 2926, ../sass/_styleguide.scss */
  .node--type-supplemental-page .subSecondAccordion .ui-accordion-content, .node--type-supplemental-page .subThirdAccordion .ui-accordion-content,
  .general-accordion.ui-accordion .subSecondAccordion .ui-accordion-content,
  .general-accordion.ui-accordion .subThirdAccordion .ui-accordion-content,
  .primary-accordion.ui-accordion .subSecondAccordion .ui-accordion-content,
  .primary-accordion.ui-accordion .subThirdAccordion .ui-accordion-content,
  .secondary-accordion.ui-accordion .subSecondAccordion .ui-accordion-content,
  .secondary-accordion.ui-accordion .subThirdAccordion .ui-accordion-content {
    padding-left: .9em;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2926, ../sass/_styleguide.scss */
  .node--type-supplemental-page .subSecondAccordion .ui-accordion-content, .node--type-supplemental-page .subThirdAccordion .ui-accordion-content,
  .general-accordion.ui-accordion .subSecondAccordion .ui-accordion-content,
  .general-accordion.ui-accordion .subThirdAccordion .ui-accordion-content,
  .primary-accordion.ui-accordion .subSecondAccordion .ui-accordion-content,
  .primary-accordion.ui-accordion .subThirdAccordion .ui-accordion-content,
  .secondary-accordion.ui-accordion .subSecondAccordion .ui-accordion-content,
  .secondary-accordion.ui-accordion .subThirdAccordion .ui-accordion-content {
    padding-left: 1.1em;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2926, ../sass/_styleguide.scss */
  .node--type-supplemental-page .subSecondAccordion .ui-accordion-content, .node--type-supplemental-page .subThirdAccordion .ui-accordion-content,
  .general-accordion.ui-accordion .subSecondAccordion .ui-accordion-content,
  .general-accordion.ui-accordion .subThirdAccordion .ui-accordion-content,
  .primary-accordion.ui-accordion .subSecondAccordion .ui-accordion-content,
  .primary-accordion.ui-accordion .subThirdAccordion .ui-accordion-content,
  .secondary-accordion.ui-accordion .subSecondAccordion .ui-accordion-content,
  .secondary-accordion.ui-accordion .subThirdAccordion .ui-accordion-content {
    padding-left: 0.4em;
  }
}
/* line 2932, ../sass/_styleguide.scss */
.node--type-supplemental-page .toolsContainer.ui-accordion-content, .node--type-supplemental-page .field--name-field-support-partners,
.general-accordion.ui-accordion .toolsContainer.ui-accordion-content,
.general-accordion.ui-accordion .field--name-field-support-partners,
.primary-accordion.ui-accordion .toolsContainer.ui-accordion-content,
.primary-accordion.ui-accordion .field--name-field-support-partners,
.secondary-accordion.ui-accordion .toolsContainer.ui-accordion-content,
.secondary-accordion.ui-accordion .field--name-field-support-partners {
  padding: 0;
}
/* line 2936, ../sass/_styleguide.scss */
.node--type-supplemental-page .field--name-field-additional-support .field__item,
.general-accordion.ui-accordion .field--name-field-additional-support .field__item,
.primary-accordion.ui-accordion .field--name-field-additional-support .field__item,
.secondary-accordion.ui-accordion .field--name-field-additional-support .field__item {
  margin-bottom: 0.8em;
}

/* line 2942, ../sass/_styleguide.scss */
.width-fill-available, .subAccordionContainer, .healthEducationBlock .standard-teaser .flexItemText {
  width: -webkit-fill-available;
  width: -moz-fill-available;
  width: -ms-fill-available;
  width: -o-fill-available;
  width: fill-available;
  width: -moz-available;
  width: available;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2942, ../sass/_styleguide.scss */
  .width-fill-available, .subAccordionContainer, .healthEducationBlock .standard-teaser .flexItemText {
    width: -webkit-fill-available;
    width: -moz-fill-available;
    width: -ms-fill-available;
    width: -o-fill-available;
    width: fill-available;
    width: -moz-available;
    width: available;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2942, ../sass/_styleguide.scss */
  .width-fill-available, .subAccordionContainer, .healthEducationBlock .standard-teaser .flexItemText {
    width: -webkit-fill-available;
    width: -moz-fill-available;
    width: -ms-fill-available;
    width: -o-fill-available;
    width: fill-available;
    width: -moz-available;
    width: available;
  }
}

/* line 2957, ../sass/_styleguide.scss */
.centeredSubContainer.subAccordionContainer .ui-accordion-content {
  padding: 0;
}

/* line 2961, ../sass/_styleguide.scss */
.node--type-supplemental-page .supplemental-accordion {
  padding-bottom: 40px;
}

/**
 * Filters
 **/
/* line 2971, ../sass/_styleguide.scss */
.formlabeltext, .node--type-webform label span, .webform-submission-form label span {
  font-size: 0.875rem !important;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-weight: bold;
  color: #222;
}

/* line 2977, ../sass/_styleguide.scss */
.hinttext::-webkit-input-placeholder {
  /* Chrome */
  font-size: 0.875rem;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-style: italic;
  color: #999;
}
@media all and (min-width: 1440px) {
  /* line 2977, ../sass/_styleguide.scss */
  .hinttext::-webkit-input-placeholder {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2977, ../sass/_styleguide.scss */
  .hinttext::-webkit-input-placeholder {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2977, ../sass/_styleguide.scss */
  .hinttext::-webkit-input-placeholder {
    font-size: 0.75rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2977, ../sass/_styleguide.scss */
  .hinttext::-webkit-input-placeholder {
    font-size: 1rem;
  }
}

/* line 2980, ../sass/_styleguide.scss */
.hinttext:-ms-input-placeholder {
  /* IE 10+ */
  font-size: 0.875rem;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-style: italic;
  color: #999;
}
@media all and (min-width: 1440px) {
  /* line 2980, ../sass/_styleguide.scss */
  .hinttext:-ms-input-placeholder {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2980, ../sass/_styleguide.scss */
  .hinttext:-ms-input-placeholder {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2980, ../sass/_styleguide.scss */
  .hinttext:-ms-input-placeholder {
    font-size: 0.75rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2980, ../sass/_styleguide.scss */
  .hinttext:-ms-input-placeholder {
    font-size: 1rem;
  }
}

/* line 2983, ../sass/_styleguide.scss */
.hinttext::-moz-placeholder {
  /* Firefox 19+ */
  font-size: 0.875rem;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-style: italic;
  color: #999;
  opacity: 1;
}
@media all and (min-width: 1440px) {
  /* line 2983, ../sass/_styleguide.scss */
  .hinttext::-moz-placeholder {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2983, ../sass/_styleguide.scss */
  .hinttext::-moz-placeholder {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2983, ../sass/_styleguide.scss */
  .hinttext::-moz-placeholder {
    font-size: 0.75rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2983, ../sass/_styleguide.scss */
  .hinttext::-moz-placeholder {
    font-size: 1rem;
  }
}

/* line 2987, ../sass/_styleguide.scss */
.hinttext:-moz-placeholder {
  /* Firefox 4 - 18 */
  font-size: 0.875rem;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-style: italic;
  color: #999;
  opacity: 1;
}
@media all and (min-width: 1440px) {
  /* line 2987, ../sass/_styleguide.scss */
  .hinttext:-moz-placeholder {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2987, ../sass/_styleguide.scss */
  .hinttext:-moz-placeholder {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2987, ../sass/_styleguide.scss */
  .hinttext:-moz-placeholder {
    font-size: 0.75rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2987, ../sass/_styleguide.scss */
  .hinttext:-moz-placeholder {
    font-size: 1rem;
  }
}

/* line 2992, ../sass/_styleguide.scss */
.filterbuttonlabel {
  font-size: 1rem;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-style: normal;
  color: #fff;
}
@media all and (min-width: 1440px) {
  /* line 2992, ../sass/_styleguide.scss */
  .filterbuttonlabel {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2992, ../sass/_styleguide.scss */
  .filterbuttonlabel {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2992, ../sass/_styleguide.scss */
  .filterbuttonlabel {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2992, ../sass/_styleguide.scss */
  .filterbuttonlabel {
    font-size: 1rem;
  }
}

/* line 3001, ../sass/_styleguide.scss */
.ui-autocomplete .ui-menu-item {
  font-size: 1rem;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-style: normal;
}
@media all and (min-width: 1440px) {
  /* line 3001, ../sass/_styleguide.scss */
  .ui-autocomplete .ui-menu-item {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 3001, ../sass/_styleguide.scss */
  .ui-autocomplete .ui-menu-item {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 3001, ../sass/_styleguide.scss */
  .ui-autocomplete .ui-menu-item {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 3001, ../sass/_styleguide.scss */
  .ui-autocomplete .ui-menu-item {
    font-size: 1rem;
  }
}

/* line 3009, ../sass/_styleguide.scss */
h3.filtertitle, .filtertitle.field--name-field-social-phrase-group-title, .filtertitle.field--name-field-image-gallery-title {
  font-size: 1.125rem;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-weight: regular;
  color: #fff;
}
@media all and (min-width: 1440px) {
  /* line 3009, ../sass/_styleguide.scss */
  h3.filtertitle, .filtertitle.field--name-field-social-phrase-group-title, .filtertitle.field--name-field-image-gallery-title {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 3009, ../sass/_styleguide.scss */
  h3.filtertitle, .filtertitle.field--name-field-social-phrase-group-title, .filtertitle.field--name-field-image-gallery-title {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 3009, ../sass/_styleguide.scss */
  h3.filtertitle, .filtertitle.field--name-field-social-phrase-group-title, .filtertitle.field--name-field-image-gallery-title {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 3009, ../sass/_styleguide.scss */
  h3.filtertitle, .filtertitle.field--name-field-social-phrase-group-title, .filtertitle.field--name-field-image-gallery-title {
    font-size: 0.875rem;
  }
}

/* line 3019, ../sass/_styleguide.scss */
.activity-code-text, .activity-code {
  font-size: 1.125rem;
  font-family: "Merriweather", serif;
  font-weight: regular;
  color: #222;
  text-transform: uppercase;
  padding: 1em;
}
@media all and (min-width: 1440px) {
  /* line 3019, ../sass/_styleguide.scss */
  .activity-code-text, .activity-code {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 3019, ../sass/_styleguide.scss */
  .activity-code-text, .activity-code {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 3019, ../sass/_styleguide.scss */
  .activity-code-text, .activity-code {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 3019, ../sass/_styleguide.scss */
  .activity-code-text, .activity-code {
    font-size: 1rem;
  }
}

/* line 3032, ../sass/_styleguide.scss */
.flexcontainer, .related-ht-ser-container, .field--name-field-sfa-card, .field--name-field-speaker,
.field--name-field-executives, .standard-card-field, .field--name-field-advisory-committees, .contact-nhlbi-titleblock, .field--name-field-contact-cards, .field--name-field-employment-opportunity-car, .all-grants-foa-container,
.field--name-field-program-officers,
.view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content,
.view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content, .node--type-individual-contact .field--name-field-contact-methods,
.node--type-division.node--view-mode-full .field--name-field-contact-methods,
.node--type-division.node--view-mode-subscribe .field--name-field-contact-methods,
.node--type-branch.node--view-mode-full .field--name-field-contact-methods,
.node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods,
.node--type-general.node--view-mode-full .field--name-field-contact-methods,
.node--type-general.node--view-mode-subscribe .field--name-field-contact-methods,
.node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods,
.node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods, .node--type-committee .field--name-field-card-text, .news-and-events--landing .landing-social, .field--name-field-sfa-cards, .locationMap.contact-location-map-container, .locationMap, .grants-and-training-card-wrapper, .about-nhlbi-division-card-wrapper, .hei-tools-icon-card-wrapper, .field--name-field-grants-and-training-card, .field--name-field-division-card, .field--name-field-tool-icon-card, .field--name-field-promotional-card, .field--name-field-sv-promotional-cards, .field--name-field-about-nhlbi-promotional-ca, .strategic-vision-titleblock, .ppg-titleblock-wrapper, .ppg-guidelines-card-wrapper, .field--name-field-human-subject-cards, .field--name-field-section-card, .field--name-field-highlight-card, .health-topic-teaser-container, .about-nhlbi-our-mission-wrapper, .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser, .publicationsBlock.view-nhlbi-publications > .view-content,
.field--name-field-related-publications, .healthEducationBlock .standard-teaser, .systematicEvidenceReviewsBlock .view-content,
.clinicalPracticeGuidelinesBlock .view-content,
.publicationsAndFactSheetsBlock .view-content, .rtFlexContainer, .node--type-research-topic .field--name-field-science-supplemental-page, .node--type-research-topic .researchTopicPublications, .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard, .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser,
.node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard, .esi-feature-card, .featured-science-instance-teaser-container, .sfa-teaser-container, .training-opportunity-card .field--name-field-associated-people, .field--name-field-featured-training-opportun, .field--name-field-career-stages, .field--name-field-workforce-development-card, .node--type-update.node--view-mode-executive-teaser, .news-and-events-titleblock, .contact-box > .field--name-field-contact-methods, .leadership-container, .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership, .branch-leadership-container, .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership, .node--type-general .field--name-field-related-publications, .node--type-general .field--name-field-general-publications-rlt, .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser, .node--type-general .field--name-field-related-publications > .field__item .standard-teaser, .objective-text-container, .objective-list-container, .field--name-field-goal-card, .strategic-vision-landing-goals-wrapper, .node--type-principal-investigator .striped-container-wrapper, .node--type-principal-investigator .striped-container, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser, .field--name-field-awards, .registerSocialContainer, .eventdatesLocationType, .news-article-container, .node--type-feature-article.node--view-mode-press-release-teaser,
.node--type-press-release.node--view-mode-press-release-teaser,
.node--type-events.node--view-mode-press-release-teaser,
.node--type-feature-article.node--view-mode-hp-press-release-teaser,
.node--type-press-release.node--view-mode-hp-press-release-teaser,
.node--type-events.node--view-mode-hp-press-release-teaser,
.node--type-news-mention.node--view-mode-hp-press-release-teaser, .news-header-container, .contacts-container .field--name-field-contacts, .publicationsBox .field--name-field-related-publications, .field--name-field-primary-featured-item, .field--name-field-additional-featured-items, .homepage-health-topics-container, .homepage-mission-areas-container, .homepage-location-container, .field--name-field-alumni, .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container,
.node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  overflow: hidden;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 3032, ../sass/_styleguide.scss */
  .flexcontainer, .related-ht-ser-container, .field--name-field-sfa-card, .field--name-field-speaker,
  .field--name-field-executives, .standard-card-field, .field--name-field-advisory-committees, .contact-nhlbi-titleblock, .field--name-field-contact-cards, .field--name-field-employment-opportunity-car, .all-grants-foa-container,
  .field--name-field-program-officers,
  .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content,
  .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content, .node--type-individual-contact .field--name-field-contact-methods,
  .node--type-division.node--view-mode-full .field--name-field-contact-methods,
  .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods,
  .node--type-branch.node--view-mode-full .field--name-field-contact-methods,
  .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods,
  .node--type-general.node--view-mode-full .field--name-field-contact-methods,
  .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods,
  .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods,
  .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods, .node--type-committee .field--name-field-card-text, .news-and-events--landing .landing-social, .field--name-field-sfa-cards, .locationMap.contact-location-map-container, .locationMap, .grants-and-training-card-wrapper, .about-nhlbi-division-card-wrapper, .hei-tools-icon-card-wrapper, .field--name-field-grants-and-training-card, .field--name-field-division-card, .field--name-field-tool-icon-card, .field--name-field-promotional-card, .field--name-field-sv-promotional-cards, .field--name-field-about-nhlbi-promotional-ca, .strategic-vision-titleblock, .ppg-titleblock-wrapper, .ppg-guidelines-card-wrapper, .field--name-field-human-subject-cards, .field--name-field-section-card, .field--name-field-highlight-card, .health-topic-teaser-container, .about-nhlbi-our-mission-wrapper, .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser, .publicationsBlock.view-nhlbi-publications > .view-content,
  .field--name-field-related-publications, .healthEducationBlock .standard-teaser, .systematicEvidenceReviewsBlock .view-content,
  .clinicalPracticeGuidelinesBlock .view-content,
  .publicationsAndFactSheetsBlock .view-content, .rtFlexContainer, .node--type-research-topic .field--name-field-science-supplemental-page, .node--type-research-topic .researchTopicPublications, .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard, .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser,
  .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard, .esi-feature-card, .featured-science-instance-teaser-container, .sfa-teaser-container, .training-opportunity-card .field--name-field-associated-people, .field--name-field-featured-training-opportun, .field--name-field-career-stages, .field--name-field-workforce-development-card, .node--type-update.node--view-mode-executive-teaser, .news-and-events-titleblock, .contact-box > .field--name-field-contact-methods, .leadership-container, .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership, .branch-leadership-container, .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership, .node--type-general .field--name-field-related-publications, .node--type-general .field--name-field-general-publications-rlt, .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser, .node--type-general .field--name-field-related-publications > .field__item .standard-teaser, .objective-text-container, .objective-list-container, .field--name-field-goal-card, .strategic-vision-landing-goals-wrapper, .node--type-principal-investigator .striped-container-wrapper, .node--type-principal-investigator .striped-container, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser, .field--name-field-awards, .registerSocialContainer, .eventdatesLocationType, .news-article-container, .node--type-feature-article.node--view-mode-press-release-teaser,
  .node--type-press-release.node--view-mode-press-release-teaser,
  .node--type-events.node--view-mode-press-release-teaser,
  .node--type-feature-article.node--view-mode-hp-press-release-teaser,
  .node--type-press-release.node--view-mode-hp-press-release-teaser,
  .node--type-events.node--view-mode-hp-press-release-teaser,
  .node--type-news-mention.node--view-mode-hp-press-release-teaser, .news-header-container, .contacts-container .field--name-field-contacts, .publicationsBox .field--name-field-related-publications, .field--name-field-primary-featured-item, .field--name-field-additional-featured-items, .homepage-health-topics-container, .homepage-mission-areas-container, .homepage-location-container, .field--name-field-alumni, .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container,
  .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
  }
}

/* line 3040, ../sass/_styleguide.scss */
.simpleFlexContainer {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  overflow: hidden;
}

/* line 3046, ../sass/_styleguide.scss */
.flexItemImage, .flexItemImageHalf, .flexItemImageTenth, .flexItemImageFourth, .flexItemImageThird, .flexItemImageThirdHalf, .hero-image {
  min-width: 50%;
  overflow: hidden;
  position: relative;
}
/* line 3051, ../sass/_styleguide.scss */
.flexItemImage img, .flexItemImageHalf img, .flexItemImageTenth img, .flexItemImageFourth img, .flexItemImageThird img, .flexItemImageThirdHalf img, .hero-image img {
  width: 100%;
  display: block;
}
/* line 3056, ../sass/_styleguide.scss */
.flexItemImage .social_media_header img, .flexItemImageHalf .social_media_header img, .flexItemImageTenth .social_media_header img, .flexItemImageFourth .social_media_header img, .flexItemImageThird .social_media_header img, .flexItemImageThirdHalf .social_media_header img, .hero-image .social_media_header img {
  width: auto;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 3046, ../sass/_styleguide.scss */
  .flexItemImage, .flexItemImageHalf, .flexItemImageTenth, .flexItemImageFourth, .flexItemImageThird, .flexItemImageThirdHalf, .hero-image {
    width: -webkit-fill-available;
    width: -moz-fill-available;
    width: -ms-fill-available;
    width: -o-fill-available;
    width: fill-available;
    width: -moz-available;
    width: available;
    min-width: auto;
    max-width: 100%;
  }
}

/* line 3068, ../sass/_styleguide.scss */
.flexItemImageHalf {
  max-width: 50%;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 3068, ../sass/_styleguide.scss */
  .flexItemImageHalf {
    max-width: 100%;
  }
}

/* line 3077, ../sass/_styleguide.scss */
.flexItemImageTenth {
  min-width: 10%;
  max-width: 10%;
  flex-basis: 10%;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 3077, ../sass/_styleguide.scss */
  .flexItemImageTenth {
    min-width: 10%;
    max-width: 10%;
    flex-basis: 10%;
  }
}

/* line 3089, ../sass/_styleguide.scss */
.flexItemImageFourth {
  min-width: 25%;
  max-width: 25%;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 3089, ../sass/_styleguide.scss */
  .flexItemImageFourth {
    max-width: 100%;
  }
}

/* line 3099, ../sass/_styleguide.scss */
.flexItemImageThird, .flexItemImageThirdHalf, .hero-image {
  min-width: 33%;
  max-width: 33%;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 3099, ../sass/_styleguide.scss */
  .flexItemImageThird, .flexItemImageThirdHalf, .hero-image {
    max-width: 100%;
  }
}

@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 3109, ../sass/_styleguide.scss */
  .flexItemImageThirdHalf {
    min-width: 50%;
    max-width: 50%;
  }
}

/* line 3118, ../sass/_styleguide.scss */
.flexItemText {
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-grow: 1;
  -o-flex-grow: 1;
  flex-grow: 1;
  padding: 1.5em;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 3118, ../sass/_styleguide.scss */
  .flexItemText {
    padding: 1em 0;
  }
}

@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 3126, ../sass/_styleguide.scss */
  .flexItemText.flexTextWithImage {
    padding: 1em;
  }
}

@media all and (min-width: 768px) {
  /* line 3142, ../sass/_styleguide.scss */
  .flexItemText.flexTextWithImage.flexItemTextHalf {
    width: 50%;
  }
}

/* line 3147, ../sass/_styleguide.scss */
.flexItemText.flexTextWithoutImage {
  padding-left: 0;
}
@media all and (min-width: 1100px) {
  /* line 3147, ../sass/_styleguide.scss */
  .flexItemText.flexTextWithoutImage {
    padding-left: 0;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 3147, ../sass/_styleguide.scss */
  .flexItemText.flexTextWithoutImage {
    padding-left: 0;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 3147, ../sass/_styleguide.scss */
  .flexItemText.flexTextWithoutImage {
    padding-left: 0;
  }
}

/* line 3164, ../sass/_styleguide.scss */
.flexItemText.flexItemTextHalf {
  padding: 1.5em 2em;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 3164, ../sass/_styleguide.scss */
  .flexItemText.flexItemTextHalf {
    padding-top: 2em;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 3164, ../sass/_styleguide.scss */
  .flexItemText.flexItemTextHalf {
    padding: 1.5em;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 3164, ../sass/_styleguide.scss */
  .flexItemText.flexItemTextHalf {
    width: auto;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 3182, ../sass/_styleguide.scss */
  .flexItemText.flexItemTextHalf p.view-all-wrapper {
    display: none;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 3187, ../sass/_styleguide.scss */
  .flexItemText.flexItemTextHalf a.viewalllink, .promoted-content-container .flexItemText.flexItemTextHalf .field--name-field-url > a, .flexItemText.flexItemTextHalf .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .flexItemText.flexItemTextHalf a, .flexItemText.flexItemTextHalf .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .flexItemText.flexItemTextHalf a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .flexItemText.flexItemTextHalf .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .flexItemText.flexItemTextHalf a, .flexItemText.flexItemTextHalf .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .flexItemText.flexItemTextHalf .field--name-field-url > a {
    display: none;
  }
}

/* line 3194, ../sass/_styleguide.scss */
.flexTextLeft, .flexTextRight {
  padding: 1em 1em 0.5em 0;
}

/* line 3199, ../sass/_styleguide.scss */
.blueBorderedListItem, .node--type-research-topic .researchTopicPublications .flexItemText .views-field-field-publication-link {
  border-bottom: #3885ca solid 1px;
  padding: 1em 0;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 3199, ../sass/_styleguide.scss */
  .blueBorderedListItem, .node--type-research-topic .researchTopicPublications .flexItemText .views-field-field-publication-link {
    padding: 0.5rem 0;
  }
}

/* line 3206, ../sass/_styleguide.scss */
.blueBorderedHeaderItem {
  font-size: 1.25rem;
  border-bottom: 3px solid #296eab;
  padding-bottom: 0.5em;
  margin-bottom: 1em;
}
@media all and (min-width: 1440px) {
  /* line 3206, ../sass/_styleguide.scss */
  .blueBorderedHeaderItem {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 3206, ../sass/_styleguide.scss */
  .blueBorderedHeaderItem {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 3206, ../sass/_styleguide.scss */
  .blueBorderedHeaderItem {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 3206, ../sass/_styleguide.scss */
  .blueBorderedHeaderItem {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 3206, ../sass/_styleguide.scss */
  .blueBorderedHeaderItem {
    padding-bottom: 0.3em;
  }
}

@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 3217, ../sass/_styleguide.scss */
  .whitePhotoCreditText .flexItemImage .photocredit, .primaryBlueBackground .flexItemImage .photocredit, .node--type-principal-investigator h1 .flexItemImage .photocredit, .node--type-principal-investigator .upperCaseHFour .flexItemImage .photocredit, .whitePhotoCreditText .flexItemImageHalf .photocredit, .primaryBlueBackground .flexItemImageHalf .photocredit, .node--type-principal-investigator h1 .flexItemImageHalf .photocredit, .node--type-principal-investigator .upperCaseHFour .flexItemImageHalf .photocredit, .whitePhotoCreditText .flexItemImageTenth .photocredit, .primaryBlueBackground .flexItemImageTenth .photocredit, .node--type-principal-investigator h1 .flexItemImageTenth .photocredit, .node--type-principal-investigator .upperCaseHFour .flexItemImageTenth .photocredit, .whitePhotoCreditText .flexItemImageFourth .photocredit, .primaryBlueBackground .flexItemImageFourth .photocredit, .node--type-principal-investigator h1 .flexItemImageFourth .photocredit, .node--type-principal-investigator .upperCaseHFour .flexItemImageFourth .photocredit, .whitePhotoCreditText .flexItemImageThird .photocredit, .primaryBlueBackground .flexItemImageThird .photocredit, .node--type-principal-investigator h1 .flexItemImageThird .photocredit, .node--type-principal-investigator .upperCaseHFour .flexItemImageThird .photocredit, .whitePhotoCreditText .flexItemImageThirdHalf .photocredit, .primaryBlueBackground .flexItemImageThirdHalf .photocredit, .node--type-principal-investigator h1 .flexItemImageThirdHalf .photocredit, .node--type-principal-investigator .upperCaseHFour .flexItemImageThirdHalf .photocredit, .whitePhotoCreditText .hero-image .photocredit, .primaryBlueBackground .hero-image .photocredit, .node--type-principal-investigator h1 .hero-image .photocredit, .node--type-principal-investigator .upperCaseHFour .hero-image .photocredit, .whitePhotoCreditText .flexItemImageHalf .photocredit, .primaryBlueBackground .flexItemImageHalf .photocredit, .node--type-principal-investigator h1 .flexItemImageHalf .photocredit, .node--type-principal-investigator .upperCaseHFour .flexItemImageHalf .photocredit {
    color: #fff;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 3223, ../sass/_styleguide.scss */
  .whitePhotoCreditText .flexItemImageThird, .primaryBlueBackground .flexItemImageThird, .node--type-principal-investigator h1 .flexItemImageThird, .node--type-principal-investigator .upperCaseHFour .flexItemImageThird, .whitePhotoCreditText .flexItemImageThirdHalf, .primaryBlueBackground .flexItemImageThirdHalf, .node--type-principal-investigator h1 .flexItemImageThirdHalf, .node--type-principal-investigator .upperCaseHFour .flexItemImageThirdHalf, .whitePhotoCreditText .hero-image, .primaryBlueBackground .hero-image, .node--type-principal-investigator h1 .hero-image, .node--type-principal-investigator .upperCaseHFour .hero-image {
    color: #222;
  }
}

/* line 3231, ../sass/_styleguide.scss */
.transparentBackground {
  color: #222;
  background-color: transparent;
  overflow: hidden;
}

/* line 3234, ../sass/_styleguide.scss */
.darkBlueBackground {
  color: #fff;
  background-color: #102d66;
  overflow: hidden;
}

/* line 3237, ../sass/_styleguide.scss */
.primaryBlueBackground, .node--type-principal-investigator h1, .node--type-principal-investigator .upperCaseHFour {
  color: #fff;
  background-color: #1a568c;
  overflow: hidden;
}

/* line 3243, ../sass/_styleguide.scss */
.primaryBlueBackground.white-header-text, .node--type-principal-investigator h1.white-header-text, .node--type-principal-investigator .white-header-text.upperCaseHFour {
  color: #fff;
  background-color: #1a568c;
}
/* line 126, ../sass/_mixins.scss */
.primaryBlueBackground.white-header-text a, .node--type-principal-investigator h1.white-header-text a, .node--type-principal-investigator .white-header-text.upperCaseHFour a, .primaryBlueBackground.white-header-text a:link, .node--type-principal-investigator h1.white-header-text a:link, .node--type-principal-investigator .white-header-text.upperCaseHFour a:link {
  color: #fff;
  text-decoration: underline;
}
/* line 132, ../sass/_mixins.scss */
.primaryBlueBackground.white-header-text a:visited, .node--type-principal-investigator h1.white-header-text a:visited, .node--type-principal-investigator .white-header-text.upperCaseHFour a:visited {
  color: #D7E7F4;
}
/* line 145, ../sass/_mixins.scss */
.primaryBlueBackground.white-header-text a:hover, .node--type-principal-investigator h1.white-header-text a:hover, .node--type-principal-investigator .white-header-text.upperCaseHFour a:hover {
  font-weight: bold;
}
/* line 154, ../sass/_mixins.scss */
.primaryBlueBackground.white-header-text h1, .node--type-principal-investigator h1.white-header-text h1, .node--type-principal-investigator .white-header-text.upperCaseHFour h1, .primaryBlueBackground.white-header-text .photocredit, .node--type-principal-investigator h1.white-header-text .photocredit, .node--type-principal-investigator .white-header-text.upperCaseHFour .photocredit {
  color: #fff;
}

/* line 3247, ../sass/_styleguide.scss */
.secondaryBlueBackground {
  color: #fff;
  background-color: #8caac4;
  overflow: hidden;
}

/* line 3250, ../sass/_styleguide.scss */
.tertiaryBlueBackground {
  color: #fff;
  background-color: #102d66;
  overflow: hidden;
}

/* line 3253, ../sass/_styleguide.scss */
.primaryRedBackground {
  color: #fff;
  background-color: #990000;
  overflow: hidden;
}

/* line 3256, ../sass/_styleguide.scss */
.newsRedBackground {
  color: #fff;
  background-color: #bf0d2e;
  overflow: hidden;
}
/* line 3263, ../sass/_styleguide.scss */
.newsRedBackground .herobannertitle > a:active, .newsRedBackground .herobannertitle-grey > a:active, .newsRedBackground .herobannertitle > a:focus, .newsRedBackground .herobannertitle-grey > a:focus {
  outline-color: #fff !important;
}
/* line 3268, ../sass/_styleguide.scss */
.newsRedBackground a.viewalllink, .newsRedBackground .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .newsRedBackground .field--name-field-url > a, .newsRedBackground .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .newsRedBackground a, .newsRedBackground .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .newsRedBackground a, .newsRedBackground .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .newsRedBackground .field--name-field-promotional-link > a, .newsRedBackground .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .newsRedBackground a, .newsRedBackground .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .newsRedBackground .field--name-field-url > a, .newsRedBackground .more-link a {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #bf0d2e;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #fff;
  padding: 0.8em 3em;
  display: table !important;
  background-image: none;
}
@media all and (min-width: 1440px) {
  /* line 3268, ../sass/_styleguide.scss */
  .newsRedBackground a.viewalllink, .newsRedBackground .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .newsRedBackground .field--name-field-url > a, .newsRedBackground .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .newsRedBackground a, .newsRedBackground .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .newsRedBackground a, .newsRedBackground .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .newsRedBackground .field--name-field-promotional-link > a, .newsRedBackground .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .newsRedBackground a, .newsRedBackground .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .newsRedBackground .field--name-field-url > a, .newsRedBackground .more-link a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 3268, ../sass/_styleguide.scss */
  .newsRedBackground a.viewalllink, .newsRedBackground .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .newsRedBackground .field--name-field-url > a, .newsRedBackground .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .newsRedBackground a, .newsRedBackground .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .newsRedBackground a, .newsRedBackground .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .newsRedBackground .field--name-field-promotional-link > a, .newsRedBackground .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .newsRedBackground a, .newsRedBackground .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .newsRedBackground .field--name-field-url > a, .newsRedBackground .more-link a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 3268, ../sass/_styleguide.scss */
  .newsRedBackground a.viewalllink, .newsRedBackground .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .newsRedBackground .field--name-field-url > a, .newsRedBackground .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .newsRedBackground a, .newsRedBackground .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .newsRedBackground a, .newsRedBackground .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .newsRedBackground .field--name-field-promotional-link > a, .newsRedBackground .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .newsRedBackground a, .newsRedBackground .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .newsRedBackground .field--name-field-url > a, .newsRedBackground .more-link a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 3268, ../sass/_styleguide.scss */
  .newsRedBackground a.viewalllink, .newsRedBackground .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .newsRedBackground .field--name-field-url > a, .newsRedBackground .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .newsRedBackground a, .newsRedBackground .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .newsRedBackground a, .newsRedBackground .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .newsRedBackground .field--name-field-promotional-link > a, .newsRedBackground .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .newsRedBackground a, .newsRedBackground .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .newsRedBackground .field--name-field-url > a, .newsRedBackground .more-link a {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.newsRedBackground a.viewalllink :hover, .newsRedBackground .promoted-content-container .flexItemText .field--name-field-url > a :hover, .promoted-content-container .flexItemText .newsRedBackground .field--name-field-url > a :hover, .newsRedBackground .contact-nhlbi--landing .field--name-field-directions-link a :hover, .contact-nhlbi--landing .field--name-field-directions-link .newsRedBackground a :hover, .newsRedBackground .isi-job-opportunities--landing .field--name-field-vacancies-link a :hover, .isi-job-opportunities--landing .field--name-field-vacancies-link .newsRedBackground a :hover, .newsRedBackground .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a :hover, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .newsRedBackground .field--name-field-promotional-link > a :hover, .newsRedBackground .fixedDarkBluePane .field--name-field-traveling-and-security a :hover, .fixedDarkBluePane .field--name-field-traveling-and-security .newsRedBackground a :hover, .newsRedBackground .field--name-field-community-card .field--name-field-url > a :hover, .field--name-field-community-card .newsRedBackground .field--name-field-url > a :hover, .newsRedBackground .more-link a :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 3268, ../sass/_styleguide.scss */
  .newsRedBackground a.viewalllink, .newsRedBackground .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .newsRedBackground .field--name-field-url > a, .newsRedBackground .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .newsRedBackground a, .newsRedBackground .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .newsRedBackground a, .newsRedBackground .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .newsRedBackground .field--name-field-promotional-link > a, .newsRedBackground .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .newsRedBackground a, .newsRedBackground .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .newsRedBackground .field--name-field-url > a, .newsRedBackground .more-link a {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 3268, ../sass/_styleguide.scss */
  .newsRedBackground a.viewalllink, .newsRedBackground .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .newsRedBackground .field--name-field-url > a, .newsRedBackground .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .newsRedBackground a, .newsRedBackground .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .newsRedBackground a, .newsRedBackground .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .newsRedBackground .field--name-field-promotional-link > a, .newsRedBackground .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .newsRedBackground a, .newsRedBackground .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .newsRedBackground .field--name-field-url > a, .newsRedBackground .more-link a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 3268, ../sass/_styleguide.scss */
  .newsRedBackground a.viewalllink, .newsRedBackground .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .newsRedBackground .field--name-field-url > a, .newsRedBackground .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .newsRedBackground a, .newsRedBackground .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .newsRedBackground a, .newsRedBackground .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .newsRedBackground .field--name-field-promotional-link > a, .newsRedBackground .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .newsRedBackground a, .newsRedBackground .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .newsRedBackground .field--name-field-url > a, .newsRedBackground .more-link a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 3268, ../sass/_styleguide.scss */
  .newsRedBackground a.viewalllink, .newsRedBackground .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .newsRedBackground .field--name-field-url > a, .newsRedBackground .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .newsRedBackground a, .newsRedBackground .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .newsRedBackground a, .newsRedBackground .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .newsRedBackground .field--name-field-promotional-link > a, .newsRedBackground .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .newsRedBackground a, .newsRedBackground .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .newsRedBackground .field--name-field-url > a, .newsRedBackground .more-link a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 3268, ../sass/_styleguide.scss */
  .newsRedBackground a.viewalllink, .newsRedBackground .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .newsRedBackground .field--name-field-url > a, .newsRedBackground .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .newsRedBackground a, .newsRedBackground .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .newsRedBackground a, .newsRedBackground .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .newsRedBackground .field--name-field-promotional-link > a, .newsRedBackground .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .newsRedBackground a, .newsRedBackground .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .newsRedBackground .field--name-field-url > a, .newsRedBackground .more-link a {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.newsRedBackground a.viewalllink:hover, .newsRedBackground .promoted-content-container .flexItemText .field--name-field-url > a:hover, .promoted-content-container .flexItemText .newsRedBackground .field--name-field-url > a:hover, .newsRedBackground .contact-nhlbi--landing .field--name-field-directions-link a:hover, .contact-nhlbi--landing .field--name-field-directions-link .newsRedBackground a:hover, .newsRedBackground .isi-job-opportunities--landing .field--name-field-vacancies-link a:hover, .isi-job-opportunities--landing .field--name-field-vacancies-link .newsRedBackground a:hover, .newsRedBackground .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:hover, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .newsRedBackground .field--name-field-promotional-link > a:hover, .newsRedBackground .fixedDarkBluePane .field--name-field-traveling-and-security a:hover, .fixedDarkBluePane .field--name-field-traveling-and-security .newsRedBackground a:hover, .newsRedBackground .field--name-field-community-card .field--name-field-url > a:hover, .field--name-field-community-card .newsRedBackground .field--name-field-url > a:hover, .newsRedBackground .more-link a:hover {
  background-color: #f6c163;
  border-color: #f6c163;
  color: #222;
  text-decoration: none;
}
/* line 2379, ../sass/_mixins.scss */
.newsRedBackground a.viewalllink:focus, .newsRedBackground .promoted-content-container .flexItemText .field--name-field-url > a:focus, .promoted-content-container .flexItemText .newsRedBackground .field--name-field-url > a:focus, .newsRedBackground .contact-nhlbi--landing .field--name-field-directions-link a:focus, .contact-nhlbi--landing .field--name-field-directions-link .newsRedBackground a:focus, .newsRedBackground .isi-job-opportunities--landing .field--name-field-vacancies-link a:focus, .isi-job-opportunities--landing .field--name-field-vacancies-link .newsRedBackground a:focus, .newsRedBackground .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:focus, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .newsRedBackground .field--name-field-promotional-link > a:focus, .newsRedBackground .fixedDarkBluePane .field--name-field-traveling-and-security a:focus, .fixedDarkBluePane .field--name-field-traveling-and-security .newsRedBackground a:focus, .newsRedBackground .field--name-field-community-card .field--name-field-url > a:focus, .field--name-field-community-card .newsRedBackground .field--name-field-url > a:focus, .newsRedBackground a.viewalllink:active, .newsRedBackground .promoted-content-container .flexItemText .field--name-field-url > a:active, .promoted-content-container .flexItemText .newsRedBackground .field--name-field-url > a:active, .newsRedBackground .contact-nhlbi--landing .field--name-field-directions-link a:active, .contact-nhlbi--landing .field--name-field-directions-link .newsRedBackground a:active, .newsRedBackground .isi-job-opportunities--landing .field--name-field-vacancies-link a:active, .isi-job-opportunities--landing .field--name-field-vacancies-link .newsRedBackground a:active, .newsRedBackground .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:active, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .newsRedBackground .field--name-field-promotional-link > a:active, .newsRedBackground .fixedDarkBluePane .field--name-field-traveling-and-security a:active, .fixedDarkBluePane .field--name-field-traveling-and-security .newsRedBackground a:active, .newsRedBackground .field--name-field-community-card .field--name-field-url > a:active, .field--name-field-community-card .newsRedBackground .field--name-field-url > a:active, .newsRedBackground .more-link a:focus, .newsRedBackground .more-link a:active {
  outline: #fff dotted 3px !important;
}
/* line 3271, ../sass/_styleguide.scss */
.newsRedBackground .more-link a {
  display: inline-block !important;
}

/* line 3275, ../sass/_styleguide.scss */
.newsRedBackground.white-header-text {
  color: #fff;
  background-color: #bf0d2e;
}
/* line 126, ../sass/_mixins.scss */
.newsRedBackground.white-header-text a, .newsRedBackground.white-header-text a:link {
  color: #fff;
  text-decoration: underline;
}
/* line 132, ../sass/_mixins.scss */
.newsRedBackground.white-header-text a:visited {
  color: #D7E7F4;
}
/* line 145, ../sass/_mixins.scss */
.newsRedBackground.white-header-text a:hover {
  font-weight: bold;
}
/* line 154, ../sass/_mixins.scss */
.newsRedBackground.white-header-text h1, .newsRedBackground.white-header-text .photocredit {
  color: #fff;
}

/* line 3283, ../sass/_styleguide.scss */
.darkRedBackground {
  color: #222;
  background-color: #850920;
  overflow: hidden;
}
/* line 3285, ../sass/_styleguide.scss */
.darkRedBackground h2, .darkRedBackground .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .darkRedBackground h1, .darkRedBackground .contact-method-label {
  color: #fff;
}
/* line 3289, ../sass/_styleguide.scss */
.darkRedBackground .esi-feature-card h2, .darkRedBackground .featured-science-instance-teaser-container h2, .darkRedBackground .esi-feature-card .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .darkRedBackground .esi-feature-card h1, .darkRedBackground .featured-science-instance-teaser-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .darkRedBackground .featured-science-instance-teaser-container h1, .darkRedBackground .esi-feature-card .contact-method-label, .darkRedBackground .featured-science-instance-teaser-container .contact-method-label, .darkRedBackground .featured-science-instance-teaser-container h2, .darkRedBackground .featured-science-instance-teaser-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .darkRedBackground .featured-science-instance-teaser-container h1, .darkRedBackground .featured-science-instance-teaser-container .contact-method-label {
  color: #222;
}

/* line 3295, ../sass/_styleguide.scss */
.pale-blue-white-background {
  color: #222;
  background-color: #f2f7fb;
  overflow: hidden;
}

/* line 3298, ../sass/_styleguide.scss */
.ppg-blue-background {
  color: #222;
  background-color: #1e578a;
  overflow: hidden;
}

/* line 3301, ../sass/_styleguide.scss */
.pale-blue-darker-white-background {
  color: #222;
  background-color: #f1f7fb;
  overflow: hidden;
}

/* line 3304, ../sass/_styleguide.scss */
.lightBlueBackground {
  color: #222;
  background-color: #d7e7f4;
  overflow: hidden;
}

/* line 3307, ../sass/_styleguide.scss */
.light-gray-background {
  color: #222;
  background-color: #f2f2f2;
  overflow: hidden;
}

/* line 3310, ../sass/_styleguide.scss */
.banner-promotion-grey-background {
  color: #222;
  background-color: #f5f6f5;
  overflow: hidden;
}

/* line 3313, ../sass/_styleguide.scss */
.secondary-grey-background {
  color: #222;
  background-color: #f4f4f4;
  overflow: hidden;
}

/* line 3316, ../sass/_styleguide.scss */
.banner-background-grey {
  color: #222;
  background-color: #E8E8E8;
  overflow: hidden;
}

/* line 3319, ../sass/_styleguide.scss */
.whiteBorderImage, .all-events--landing .eventFeatured .flexItemImageThird img, .all-events--landing .eventFeatured .flexItemImageThirdHalf img, .all-events--landing .eventFeatured .hero-image img, .all-events--landing .newsFeatured .flexItemImageThird img, .all-events--landing .newsFeatured .flexItemImageThirdHalf img, .all-events--landing .newsFeatured .hero-image img,
.all-news--landing .eventFeatured .flexItemImageThird img,
.all-news--landing .eventFeatured .flexItemImageThirdHalf img,
.all-news--landing .eventFeatured .hero-image img,
.all-news--landing .newsFeatured .flexItemImageThird img,
.all-news--landing .newsFeatured .flexItemImageThirdHalf img,
.all-news--landing .newsFeatured .hero-image img, .all-science--landing .all-science-header .flexItemImageThird img, .all-science--landing .all-science-header .flexItemImageThirdHalf img, .all-science--landing .all-science-header .hero-image img, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImage img, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageHalf img, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageTenth img, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageFourth img, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThird img, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThirdHalf img, .nhlbi-publications-and-resources--landing .publications-and-resources-header .hero-image img, .homepage-location-container .homepage-location-image img, .hei-partnering .flexItemImage img, .hei-partnering .flexItemImageHalf img, .hei-partnering .flexItemImageTenth img, .hei-partnering .flexItemImageFourth img, .hei-partnering .flexItemImageThird img, .hei-partnering .flexItemImageThirdHalf img, .hei-partnering .hero-image img {
  border: 10px solid #fff;
  box-sizing: border-box;
}

/* line 3323, ../sass/_styleguide.scss */
.whiteBorderImagePhotoCredit, .all-events--landing .eventFeatured .photocredit, .all-events--landing .newsFeatured .photocredit,
.all-news--landing .eventFeatured .photocredit,
.all-news--landing .newsFeatured .photocredit, .all-science--landing .all-science-header .photocredit {
  margin: -30px 10px 10px 10px;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 3323, ../sass/_styleguide.scss */
  .whiteBorderImagePhotoCredit, .all-events--landing .eventFeatured .photocredit, .all-events--landing .newsFeatured .photocredit,
  .all-news--landing .eventFeatured .photocredit,
  .all-news--landing .newsFeatured .photocredit, .all-science--landing .all-science-header .photocredit {
    width: 90%;
    margin-top: 0.2em;
    margin-bottom: 1em;
  }
}

/* line 3333, ../sass/_styleguide.scss */
.upperCaseHFour {
  font-size: 1.125rem;
  text-transform: uppercase;
}
@media all and (min-width: 1440px) {
  /* line 3333, ../sass/_styleguide.scss */
  .upperCaseHFour {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 3333, ../sass/_styleguide.scss */
  .upperCaseHFour {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 3333, ../sass/_styleguide.scss */
  .upperCaseHFour {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 3333, ../sass/_styleguide.scss */
  .upperCaseHFour {
    font-size: 1rem;
  }
}

/* line 3338, ../sass/_styleguide.scss */
.largeDescription {
  font-size: 1.125rem;
}
@media all and (min-width: 1440px) {
  /* line 3338, ../sass/_styleguide.scss */
  .largeDescription {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 3338, ../sass/_styleguide.scss */
  .largeDescription {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 3338, ../sass/_styleguide.scss */
  .largeDescription {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 3338, ../sass/_styleguide.scss */
  .largeDescription {
    font-size: 1rem;
  }
}

/* line 3341, ../sass/_styleguide.scss */
.largeEm {
  font-size: 1.125rem;
  font-style: italic;
}
@media all and (min-width: 1440px) {
  /* line 3341, ../sass/_styleguide.scss */
  .largeEm {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 3341, ../sass/_styleguide.scss */
  .largeEm {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 3341, ../sass/_styleguide.scss */
  .largeEm {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 3341, ../sass/_styleguide.scss */
  .largeEm {
    font-size: 1rem;
  }
}

/* line 3346, ../sass/_styleguide.scss */
.bolded {
  font-weight: bold;
}

/* line 3350, ../sass/_styleguide.scss */
.clearAll {
  clear: both;
}

/* line 3353, ../sass/_styleguide.scss */
.view-header + .view-filters::after {
  border: none;
}

/* line 3361, ../sass/_styleguide.scss */
.paddedContainer {
  padding-top: 0.2em;
  padding-bottom: 0.8em;
}

/* line 3368, ../sass/_styleguide.scss */
.oneEmPadding {
  padding-top: 3em;
  padding-bottom: 3em;
}

/* line 3374, ../sass/_styleguide.scss */
.fixedPane {
  padding: 0.6em 0;
  border-top: 1px solid #d7e7f4;
  color: #222;
  background-image: none;
  font-size: 1rem;
  display: block;
  height: 100%;
  margin-top: 0;
  width: -webkit-available;
  width: -moz-available;
  width: -ms-available;
  width: -o-available;
  width: available;
  width: -webkit-fill-available;
  width: -moz-fill-available;
  width: -ms-fill-available;
  width: -o-fill-available;
  width: fill-available;
  border: none;
  overflow: hidden;
}
@media all and (min-width: 1100px) {
  /* line 3374, ../sass/_styleguide.scss */
  .fixedPane {
    border-left: 0 solid #d7e7f4;
    border-right: 0 solid #d7e7f4;
    border-bottom: 0 solid #d7e7f4;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 3374, ../sass/_styleguide.scss */
  .fixedPane {
    border-left: 0 solid #d7e7f4;
    border-right: 0 solid #d7e7f4;
    border-bottom: 0 solid #d7e7f4;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 3374, ../sass/_styleguide.scss */
  .fixedPane {
    border-left: 0 solid #d7e7f4;
    border-right: 0 solid #d7e7f4;
    border-bottom: 0 solid #d7e7f4;
  }
}
@media all and (min-width: 1440px) {
  /* line 3374, ../sass/_styleguide.scss */
  .fixedPane {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 3374, ../sass/_styleguide.scss */
  .fixedPane {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 3374, ../sass/_styleguide.scss */
  .fixedPane {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 3374, ../sass/_styleguide.scss */
  .fixedPane {
    font-size: 1rem;
  }
}

/* line 3379, ../sass/_styleguide.scss */
.fixedDarkBluePane {
  padding: 0.6em 0;
  border-top: 1px solid #102d66;
  color: #fff;
  background-image: none;
  font-size: 1rem;
  display: block;
  height: 100%;
  margin-top: 0;
  width: -webkit-available;
  width: -moz-available;
  width: -ms-available;
  width: -o-available;
  width: available;
  width: -webkit-fill-available;
  width: -moz-fill-available;
  width: -ms-fill-available;
  width: -o-fill-available;
  width: fill-available;
  display: flex;
  overflow: hidden;
}
@media all and (min-width: 1100px) {
  /* line 3379, ../sass/_styleguide.scss */
  .fixedDarkBluePane {
    border-left: 0 solid #102d66;
    border-right: 0 solid #102d66;
    border-bottom: 0 solid #102d66;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 3379, ../sass/_styleguide.scss */
  .fixedDarkBluePane {
    border-left: 0 solid #102d66;
    border-right: 0 solid #102d66;
    border-bottom: 0 solid #102d66;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 3379, ../sass/_styleguide.scss */
  .fixedDarkBluePane {
    border-left: 0 solid #102d66;
    border-right: 0 solid #102d66;
    border-bottom: 0 solid #102d66;
  }
}
@media all and (min-width: 1440px) {
  /* line 3379, ../sass/_styleguide.scss */
  .fixedDarkBluePane {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 3379, ../sass/_styleguide.scss */
  .fixedDarkBluePane {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 3379, ../sass/_styleguide.scss */
  .fixedDarkBluePane {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 3379, ../sass/_styleguide.scss */
  .fixedDarkBluePane {
    font-size: 1rem;
  }
}

/* line 3386, ../sass/_styleguide.scss */
.contact-bio-image {
  width: 140px;
}

/* line 3391, ../sass/_styleguide.scss */
.centered {
  display: block;
  position: relative;
  text-align: center;
  clear: both;
  width: 100%;
}

/* line 3395, ../sass/_styleguide.scss */
.ui-widget-content a.readMoreLink,
a.readMoreLink,
.ui-widget-content a.readLessLink,
a.readLessLink {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  background-color: #1a568c;
  border: 1px solid #1a568c;
  clear: both;
  margin: 1em auto;
  padding: 0.8em 3em;
}
@media all and (min-width: 1440px) {
  /* line 3395, ../sass/_styleguide.scss */
  .ui-widget-content a.readMoreLink,
  a.readMoreLink,
  .ui-widget-content a.readLessLink,
  a.readLessLink {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 3395, ../sass/_styleguide.scss */
  .ui-widget-content a.readMoreLink,
  a.readMoreLink,
  .ui-widget-content a.readLessLink,
  a.readLessLink {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 3395, ../sass/_styleguide.scss */
  .ui-widget-content a.readMoreLink,
  a.readMoreLink,
  .ui-widget-content a.readLessLink,
  a.readLessLink {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 3395, ../sass/_styleguide.scss */
  .ui-widget-content a.readMoreLink,
  a.readMoreLink,
  .ui-widget-content a.readLessLink,
  a.readLessLink {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.ui-widget-content a.readMoreLink :hover,
a.readMoreLink :hover,
.ui-widget-content a.readLessLink :hover,
a.readLessLink :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 3395, ../sass/_styleguide.scss */
  .ui-widget-content a.readMoreLink,
  a.readMoreLink,
  .ui-widget-content a.readLessLink,
  a.readLessLink {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 3395, ../sass/_styleguide.scss */
  .ui-widget-content a.readMoreLink,
  a.readMoreLink,
  .ui-widget-content a.readLessLink,
  a.readLessLink {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 3395, ../sass/_styleguide.scss */
  .ui-widget-content a.readMoreLink,
  a.readMoreLink,
  .ui-widget-content a.readLessLink,
  a.readLessLink {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 3395, ../sass/_styleguide.scss */
  .ui-widget-content a.readMoreLink,
  a.readMoreLink,
  .ui-widget-content a.readLessLink,
  a.readLessLink {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 3395, ../sass/_styleguide.scss */
  .ui-widget-content a.readMoreLink,
  a.readMoreLink,
  .ui-widget-content a.readLessLink,
  a.readLessLink {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.ui-widget-content a.readMoreLink:hover,
a.readMoreLink:hover,
.ui-widget-content a.readLessLink:hover,
a.readLessLink:hover {
  background-color: #102d66;
  border-color: #102d66;
  color: #fff;
  text-decoration: none;
}

/* line 3402, ../sass/_styleguide.scss */
.ui-widget-content a.readMoreLink.hidden,
a.readMoreLink.hidden,
.ui-widget-content a.readLessLink.hidden,
a.readLessLink.hidden {
  display: none;
}

/* line 3409, ../sass/_styleguide.scss */
.darkGrayBodyText {
  color: #222;
}

/* line 3413, ../sass/_styleguide.scss */
.upperCase {
  text-transform: uppercase;
}

/* line 3417, ../sass/_styleguide.scss */
.pager, .standard-more-link, .news-and-events--landing .more-link, .view-more-link {
  margin: 0;
  padding: 1em 0;
}

/* line 3421, ../sass/_styleguide.scss */
.topContainerPadding {
  padding-top: 1.4em;
}

/* line 3424, ../sass/_styleguide.scss */
.bottomContainerPadding {
  padding-bottom: 1.4em;
}

/* line 3429, ../sass/_styleguide.scss */
h3.flat, .flat.field--name-field-social-phrase-group-title, .flat.field--name-field-image-gallery-title {
  cursor: auto;
}

/* line 3432, ../sass/_styleguide.scss */
.flatHeader, .accordion-header-secondary, div.flatPlainUnderlinedHeader, div.flatPlainHeader, div.flatPlainHeaderWhite, div.flatHeader, div.accordion-header-secondary, div.flatPlainUnderlinedHeader, div.flatPlainHeader, div.flatPlainHeaderWhite {
  line-height: 1.5;
  font-family: "Merriweather", serif;
  font-weight: normal;
  color: #222;
}

/* line 3446, ../sass/_styleguide.scss */
div.flatPlainUnderlinedHeader {
  border-radius: 0;
  border-bottom: 1px solid #a5a5a5;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  background: none;
  padding-left: 0;
  background: none;
  clear: both;
}

/* line 3454, ../sass/_styleguide.scss */
div.flatPlainHeader, div.flatPlainHeaderWhite {
  padding-left: 0;
  background: none;
  border: none;
}
/* line 3460, ../sass/_styleguide.scss */
div.flatPlainHeader:hover, div.flatPlainHeaderWhite:hover {
  font-weight: normal;
}

/* line 3464, ../sass/_styleguide.scss */
.flatPlainHeaderWhite, div.flatPlainHeaderWhite {
  color: #fff;
}

/* line 3468, ../sass/_styleguide.scss */
.blueBottom {
  font-size: 1.125rem;
  border-bottom: #3885ca 4px solid;
  padding-bottom: 0.5em;
  margin-bottom: .8em;
  font-weight: bold;
  width: 70%;
}
@media all and (min-width: 1440px) {
  /* line 3468, ../sass/_styleguide.scss */
  .blueBottom {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 3468, ../sass/_styleguide.scss */
  .blueBottom {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 3468, ../sass/_styleguide.scss */
  .blueBottom {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 3468, ../sass/_styleguide.scss */
  .blueBottom {
    font-size: 1rem;
  }
}

/* line 3471, ../sass/_styleguide.scss */
.lightBlueBottom {
  font-size: 1.125rem;
  border-bottom: #d7e7f4 3px solid;
  padding-bottom: 0.5em;
  margin-bottom: .8em;
  font-weight: bold;
  width: 70%;
}
@media all and (min-width: 1440px) {
  /* line 3471, ../sass/_styleguide.scss */
  .lightBlueBottom {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 3471, ../sass/_styleguide.scss */
  .lightBlueBottom {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 3471, ../sass/_styleguide.scss */
  .lightBlueBottom {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 3471, ../sass/_styleguide.scss */
  .lightBlueBottom {
    font-size: 1rem;
  }
}

/* line 3474, ../sass/_styleguide.scss */
.whiteBottom {
  font-size: 1.125rem;
  border-bottom: #fff 4px solid;
  padding-bottom: 0.5em;
  margin-bottom: .8em;
  font-weight: bold;
  width: 11em;
}
@media all and (min-width: 1440px) {
  /* line 3474, ../sass/_styleguide.scss */
  .whiteBottom {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 3474, ../sass/_styleguide.scss */
  .whiteBottom {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 3474, ../sass/_styleguide.scss */
  .whiteBottom {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 3474, ../sass/_styleguide.scss */
  .whiteBottom {
    font-size: 1rem;
  }
}

/* line 3477, ../sass/_styleguide.scss */
.greyBottom {
  font-size: 1.125rem;
  border-bottom: #999 4px solid;
  padding-bottom: 0.5em;
  margin-bottom: .8em;
  font-weight: bold;
  width: 16em;
}
@media all and (min-width: 1440px) {
  /* line 3477, ../sass/_styleguide.scss */
  .greyBottom {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 3477, ../sass/_styleguide.scss */
  .greyBottom {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 3477, ../sass/_styleguide.scss */
  .greyBottom {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 3477, ../sass/_styleguide.scss */
  .greyBottom {
    font-size: 1rem;
  }
}

/* line 3480, ../sass/_styleguide.scss */
.light-greyBottom {
  font-size: 1.125rem;
  border-bottom: #d7d7d7 4px solid;
  padding-bottom: 0.5em;
  margin-bottom: .8em;
  font-weight: bold;
  width: 11em;
  font-size: 1rem;
}
@media all and (min-width: 1440px) {
  /* line 3480, ../sass/_styleguide.scss */
  .light-greyBottom {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 3480, ../sass/_styleguide.scss */
  .light-greyBottom {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 3480, ../sass/_styleguide.scss */
  .light-greyBottom {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 3480, ../sass/_styleguide.scss */
  .light-greyBottom {
    font-size: 1rem;
  }
}
@media all and (min-width: 1440px) {
  /* line 3480, ../sass/_styleguide.scss */
  .light-greyBottom {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 3480, ../sass/_styleguide.scss */
  .light-greyBottom {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 3480, ../sass/_styleguide.scss */
  .light-greyBottom {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 3480, ../sass/_styleguide.scss */
  .light-greyBottom {
    font-size: 0.875rem;
  }
}

/* line 3484, ../sass/_styleguide.scss */
.no-wrap {
  white-space: nowrap;
}

/* line 3487, ../sass/_styleguide.scss */
.blueText {
  color: #0051a8;
}

/* line 3490, ../sass/_styleguide.scss */
.lightGreyText {
  color: #a8a8a8;
}

/* line 3493, ../sass/_styleguide.scss */
.mediumGreyTextCompliant {
  color: #595959;
}

/* line 3497, ../sass/_styleguide.scss */
.verticalCenter {
  vertical-align: middle;
  display: inline-block;
}

/* line 3501, ../sass/_styleguide.scss */
.centeredItalic {
  display: block;
  position: relative;
  text-align: center;
  clear: both;
  width: 100%;
  font-style: italic;
}

/* line 3505, ../sass/_styleguide.scss */
.centeredLineBrackets {
  display: block;
  position: relative;
  text-align: center;
  clear: both;
  width: 100%;
  color: #222;
  font-size: 1.25rem;
}
@media all and (min-width: 1440px) {
  /* line 3505, ../sass/_styleguide.scss */
  .centeredLineBrackets {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 3505, ../sass/_styleguide.scss */
  .centeredLineBrackets {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 3505, ../sass/_styleguide.scss */
  .centeredLineBrackets {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 3505, ../sass/_styleguide.scss */
  .centeredLineBrackets {
    font-size: 1rem;
  }
}
/* line 3509, ../sass/_styleguide.scss */
.centeredLineBrackets span {
  padding: 0 1em 0 1em;
}

/* line 3515, ../sass/_styleguide.scss */
.centeredLineBracketLines {
  content: ' ';
  display: inline-block;
  margin-bottom: .25em;
  border-bottom: 2px solid #999;
}
@media all and (min-width: 1100px) {
  /* line 3515, ../sass/_styleguide.scss */
  .centeredLineBracketLines {
    width: 8em;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 3515, ../sass/_styleguide.scss */
  .centeredLineBracketLines {
    width: 6em;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 3515, ../sass/_styleguide.scss */
  .centeredLineBracketLines {
    width: 5em;
  }
}

/* line 3530, ../sass/_styleguide.scss */
.see-also-links, .funding-area-related-resources-container {
  background-color: #f4f4f4;
  margin-top: 0;
  padding: 1em 0;
}
/* line 3534, ../sass/_styleguide.scss */
.see-also-links h2, .funding-area-related-resources-container h2, .see-also-links .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .see-also-links h1, .funding-area-related-resources-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .funding-area-related-resources-container h1, .see-also-links .contact-method-label, .funding-area-related-resources-container .contact-method-label {
  padding-bottom: 5px;
}
/* line 3537, ../sass/_styleguide.scss */
.see-also-links .content-container, .funding-area-related-resources-container .content-container {
  margin-top: 0;
  padding-top: 10px;
}
/* line 3541, ../sass/_styleguide.scss */
.see-also-links ul, .funding-area-related-resources-container ul {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
  padding-bottom: 20px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 3541, ../sass/_styleguide.scss */
  .see-also-links ul, .funding-area-related-resources-container ul {
    padding-left: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 3541, ../sass/_styleguide.scss */
  .see-also-links ul, .funding-area-related-resources-container ul {
    padding-left: 0.5rem;
  }
}
/* line 3552, ../sass/_styleguide.scss */
.see-also-links ul li, .funding-area-related-resources-container ul li {
  margin-bottom: 0;
}

/* line 3559, ../sass/_styleguide.scss */
.social_media_header {
  clear: both;
}
/* line 3561, ../sass/_styleguide.scss */
.social_media_header ul {
  list-style-type: none;
  overflow: visible;
  margin: 0;
  padding: 0;
}
/* line 3567, ../sass/_styleguide.scss */
.social_media_header li {
  float: left;
  text-align: center;
}
/* line 3570, ../sass/_styleguide.scss */
.social_media_header li a {
  display: block;
  text-align: center;
  padding: 10px 10px 10px 0px;
  text-decoration: none;
}
/* line 3575, ../sass/_styleguide.scss */
.social_media_header li a:hover {
  background-color: transparent;
}
/* line 3578, ../sass/_styleguide.scss */
.social_media_header li a:focus, .social_media_header li a:active {
  outline: none !important;
}
/* line 3581, ../sass/_styleguide.scss */
.social_media_header li a img {
  height: 35px;
}

/* line 3589, ../sass/_styleguide.scss */
.syndicate .hidden {
  display: block;
}
/* line 3592, ../sass/_styleguide.scss */
.syndicate a.readMoreLink, .syndicate a.readLessLink {
  display: none;
}

/* line 3597, ../sass/_styleguide.scss */
.center {
  text-align: center;
}

/* line 3601, ../sass/_styleguide.scss */
.AlignLeft, .node--type-landing-page h1.AlignLeft {
  text-align: left;
}

/* line 3604, ../sass/_styleguide.scss */
.AlignRight {
  text-align: right;
}

/* line 3607, ../sass/_styleguide.scss */
.AlignJustify {
  text-align: justify;
}

/* line 3612, ../sass/_styleguide.scss */
.related-ht-ser-container {
  padding: 20px 0;
}

/* line 3616, ../sass/_styleguide.scss */
.related-ht-ser-container .bottom-card:not(:last-child) {
  margin-right: 2em;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 3616, ../sass/_styleguide.scss */
  .related-ht-ser-container .bottom-card:not(:last-child) {
    margin-right: 0;
  }
}

/* line 3622, ../sass/_styleguide.scss */
.additional-support-title, h3.additional-support-title, .additional-support-title.field--name-field-social-phrase-group-title, .additional-support-title.field--name-field-image-gallery-title {
  border-bottom: 3px solid #d2d9e1;
  padding-bottom: 10px;
  font-family: "Merriweather", serif;
}

/* line 3627, ../sass/_styleguide.scss */
.bottom-card {
  color: #222;
  background-color: #eaf3fa;
  padding: 1em;
  margin-top: .5em;
  min-height: 32%;
}
/* line 3633, ../sass/_styleguide.scss */
.bottom-card h3, .bottom-card .field--name-field-social-phrase-group-title, .bottom-card .field--name-field-image-gallery-title {
  border-bottom: 2px solid #d2d9e1;
  margin: 0 0 0.25em;
  padding-bottom: 0;
  font-family: "Merriweather", serif;
}
/* line 3639, ../sass/_styleguide.scss */
.bottom-card a:link {
  color: #0051a8;
}
/* line 3642, ../sass/_styleguide.scss */
.bottom-card a:visited {
  color: #6f57B5;
}
@media all and (min-width: 768px) {
  /* line 3627, ../sass/_styleguide.scss */
  .bottom-card {
    width: 50%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 3627, ../sass/_styleguide.scss */
  .bottom-card {
    width: -webkit-fill-available;
    width: -moz-fill-available;
    width: -ms-fill-available;
    width: -o-fill-available;
    width: fill-available;
    width: -moz-available;
    width: available;
  }
}

@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 3653, ../sass/_styleguide.scss */
  .desktop-display {
    display: none;
  }
}

@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 3658, ../sass/_styleguide.scss */
  .desktop-tablet-display {
    display: none;
  }
}

@media all and (min-width: 1100px) {
  /* line 3663, ../sass/_styleguide.scss */
  .tablet-phone-display {
    display: none;
  }
}

@media all and (min-width: 768px) {
  /* line 3668, ../sass/_styleguide.scss */
  .phone-display {
    display: none;
  }
}

/* line 3674, ../sass/_styleguide.scss */
.field--name-field-sfa-card {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 0.5em;
  padding-bottom: 1em;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 3674, ../sass/_styleguide.scss */
  .field--name-field-sfa-card {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    -ms-column-count: 1;
    -o-column-count: 1;
    column-count: 1;
  }
}

/* line 3683, ../sass/_styleguide.scss */
.field--name-field-sfa-card > .field__item {
  background-color: #fff;
  width: 32%;
  margin: 0 1em 1em 0;
}
/* line 3687, ../sass/_styleguide.scss */
.field--name-field-sfa-card > .field__item .science-instance-card {
  height: 100%;
  padding: 1.5em 1em 1em 1em;
}
/* line 3690, ../sass/_styleguide.scss */
.field--name-field-sfa-card > .field__item .science-instance-card h4 {
  margin-bottom: 0;
}
/* line 3692, ../sass/_styleguide.scss */
.field--name-field-sfa-card > .field__item .science-instance-card h4 .field--name-field-card-title {
  display: inline;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 3683, ../sass/_styleguide.scss */
  .field--name-field-sfa-card > .field__item {
    width: 45%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 3683, ../sass/_styleguide.scss */
  .field--name-field-sfa-card > .field__item {
    width: auto;
    margin-right: 0;
  }
}

@media all and (min-width: 1100px) {
  /* line 3705, ../sass/_styleguide.scss */
  .field--name-field-sfa-card > .field__item:nth-child(3n) {
    margin-right: 0;
  }
}

@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 3710, ../sass/_styleguide.scss */
  .field--name-field-sfa-card > .field__item:nth-child(2n) {
    margin-right: 0;
  }
}

/* line 3715, ../sass/_styleguide.scss */
.no-wrap {
  white-space: nowrap;
}

/* line 3718, ../sass/_styleguide.scss */
.padded-top {
  padding-top: 0.8em;
}

/* line 3721, ../sass/_styleguide.scss */
.block-display {
  display: block;
}

/* line 3724, ../sass/_styleguide.scss */
.margined-top {
  margin-top: 1em;
}

/* line 3727, ../sass/_styleguide.scss */
.margined-bottom {
  margin-bottom: 1em;
}

/* line 3730, ../sass/_styleguide.scss */
.full-padded-top {
  padding-top: 1em;
}

/* line 3733, ../sass/_styleguide.scss */
.extra-padded-top {
  padding-top: 1.5em;
}

/* line 3736, ../sass/_styleguide.scss */
.content-container.page-top {
  margin-top: 0;
}

@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 3739, ../sass/_styleguide.scss */
  .no-phone-margin, .content-container.no-phone-margin {
    margin-right: 0;
    margin-left: 0;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

/* line 3748, ../sass/_styleguide.scss */
.content-container.padded-top {
  margin-top: 0;
}

/* line 3751, ../sass/_styleguide.scss */
.no-padding, .content-container.no-padding {
  padding-top: 0;
  margin-top: 0;
}

/* line 3756, ../sass/_styleguide.scss */
.top-and-bottom-margin, .content-container.top-and-bottom-margin {
  margin-top: 2em;
  margin-bottom: 3em;
}

/* line 3760, ../sass/_styleguide.scss */
.top-and-bottom-padding {
  padding-bottom: 1.5em;
  padding-top: 1.5em;
}

/* line 3764, ../sass/_styleguide.scss */
.top-and-bottom-thicker-padding {
  padding-bottom: 2em;
  padding-top: 2em;
}

/* line 3768, ../sass/_styleguide.scss */
.top-padding {
  padding-top: 1.5em;
}

/* line 3771, ../sass/_styleguide.scss */
.top-normal-padding {
  padding-top: 1em;
}

/* line 3774, ../sass/_styleguide.scss */
.top-and-bottom-thick-padding {
  padding-bottom: 3em;
  padding-top: 3em;
}

/* line 3778, ../sass/_styleguide.scss */
.top-and-bottom-very-thick-padding {
  padding-bottom: 4em;
  padding-top: 4em;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 3778, ../sass/_styleguide.scss */
  .top-and-bottom-very-thick-padding {
    padding-bottom: 3em;
    padding-top: 3em;
  }
}

/* line 3786, ../sass/_styleguide.scss */
.top-and-bottom-normal-padding, .field--name-field-grants-card {
  padding-bottom: 1em;
  padding-top: 1em;
}

/* line 3790, ../sass/_styleguide.scss */
.bottom-padding, .content-container.bottom-padding, .node--type-division.node--view-mode-full .related-scientific-focus-areas-container,
.node--type-division.node--view-mode-subscribe .related-scientific-focus-areas-container,
.node--type-branch.node--view-mode-full .related-scientific-focus-areas-container,
.node--type-branch.node--view-mode-subscribe .related-scientific-focus-areas-container {
  padding-bottom: 1.5em;
}

/* line 3793, ../sass/_styleguide.scss */
.bottom-half-padding {
  padding-bottom: 0.5em;
}

/* line 3796, ../sass/_styleguide.scss */
.bottom-normal-padding {
  padding-bottom: 1em;
}

/* line 3799, ../sass/_styleguide.scss */
.bottom-margin {
  margin-bottom: 1.5em;
}

/* line 3802, ../sass/_styleguide.scss */
.bottom-normal-margin {
  margin-bottom: 1em;
}

/* line 3805, ../sass/_styleguide.scss */
.bottom-thick-padding {
  padding-bottom: 3em;
}

/* line 3808, ../sass/_styleguide.scss */
.normal-bottom-padding, .content-container.normal-bottom-padding {
  padding-bottom: 1em;
}

/* line 3811, ../sass/_styleguide.scss */
.content-container.bottom-padding, .node--type-division.node--view-mode-full .content-container.related-scientific-focus-areas-container,
.node--type-division.node--view-mode-subscribe .content-container.related-scientific-focus-areas-container,
.node--type-branch.node--view-mode-full .content-container.related-scientific-focus-areas-container,
.node--type-branch.node--view-mode-subscribe .content-container.related-scientific-focus-areas-container {
  margin-top: 0;
}

/* line 3815, ../sass/_styleguide.scss */
.extra-bottom-padding, .content-container.extra-bottom-padding {
  padding-bottom: 2em;
}

/* line 3818, ../sass/_styleguide.scss */
.field--name-field-display-title {
  display: inline;
}

/* line 3821, ../sass/_styleguide.scss */
.no-bottom-padding-or-margin {
  padding-bottom: 0;
  margin-bottom: 0;
}

/* line 3828, ../sass/_styleguide.scss */
.updates-left-padding {
  padding-left: 1.5rem;
}

/* line 3831, ../sass/_styleguide.scss */
.standard-left-padding, .node--type-principal-investigator .pi-content-section.standard-left-padding {
  padding-left: 36px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 3831, ../sass/_styleguide.scss */
  .standard-left-padding, .node--type-principal-investigator .pi-content-section.standard-left-padding {
    padding-left: 16.2px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 3831, ../sass/_styleguide.scss */
  .standard-left-padding, .node--type-principal-investigator .pi-content-section.standard-left-padding {
    padding-left: 14.4px;
  }
}

@media all and (min-width: 1440px) {
  /* line 3841, ../sass/_styleguide.scss */
  .header-footer-responsive-padding {
    padding-left: 75px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 3841, ../sass/_styleguide.scss */
  .header-footer-responsive-padding {
    padding-left: 65px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 3841, ../sass/_styleguide.scss */
  .header-footer-responsive-padding {
    padding-left: 60px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 3841, ../sass/_styleguide.scss */
  .header-footer-responsive-padding {
    padding-left: 20px;
  }
}

@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 3855, ../sass/_styleguide.scss */
  .field--name-field-speaker {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
  }
}

/* line 3861, ../sass/_styleguide.scss */
.speakerCard {
  margin: 0 1em 0 0;
  padding: 1em;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 3861, ../sass/_styleguide.scss */
  .speakerCard {
    height: auto;
    margin-right: 0;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 3861, ../sass/_styleguide.scss */
  .speakerCard {
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
  }
}

/* line 3877, ../sass/_styleguide.scss */
.speakerCard.cardBio {
  background-color: #498fcd;
  color: #fff;
  position: relative;
  overflow: hidden;
  flex: 1 1 0;
  -ms-flex: 1 1 0px;
  -webkit-flex: 1 1 0;
}
/* line 3886, ../sass/_styleguide.scss */
.speakerCard.cardBio .flexItemImage img, .speakerCard.cardBio .flexItemImageHalf img, .speakerCard.cardBio .flexItemImageTenth img, .speakerCard.cardBio .flexItemImageFourth img, .speakerCard.cardBio .flexItemImageThird img, .speakerCard.cardBio .flexItemImageThirdHalf img, .speakerCard.cardBio .hero-image img {
  opacity: 0.15;
}
/* line 3890, ../sass/_styleguide.scss */
.speakerCard.cardBio .flexItemText {
  opacity: 0;
}
/* line 3893, ../sass/_styleguide.scss */
.speakerCard.cardBio .speaker-hover {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  text-align: center;
  height: 100%;
  width: 100%;
  flex: 1 1 0;
  -ms-flex: 1 1 0px;
  -webkit-flex: 1 1 0;
}
/* line 3908, ../sass/_styleguide.scss */
.speakerCard.cardBio .speaker-hover .speakername, .speakerCard.cardBio .speaker-hover .speakername:hover {
  color: #fff;
}
/* line 3911, ../sass/_styleguide.scss */
.speakerCard.cardBio .speaker-hover .speaker-bio, .speakerCard.cardBio .speaker-hover .speaker-bio:hover {
  padding: 1em;
  color: #fff;
  max-width: 90%;
  margin-right: auto;
  margin-left: auto;
}

/* line 3921, ../sass/_styleguide.scss */
.speakerCard.cardImage {
  background-color: #f4f4f4;
  -ms-flex: 1 1 0px;
  -webkit-flex: 1 1 0;
  flex: 1 1 0;
}
/* line 3926, ../sass/_styleguide.scss */
.speakerCard.cardImage .speaker-hover {
  display: none;
}
/* line 3929, ../sass/_styleguide.scss */
.speakerCard.cardImage .flexItemText {
  text-align: center;
}

/* line 3936, ../sass/_styleguide.scss */
.director-bioCard {
  height: auto;
}

/* line 3939, ../sass/_styleguide.scss */
.speakerCard, .bioCard, .director-bioCard {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
}
/* line 3943, ../sass/_styleguide.scss */
.speakerCard .flexItemText, .bioCard .flexItemText, .director-bioCard .flexItemText {
  padding-top: 1em;
  padding-bottom: 1em;
  width: 100%;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 3939, ../sass/_styleguide.scss */
  .speakerCard, .bioCard, .director-bioCard {
    height: auto;
    margin-right: 0;
  }
}

/* line 3954, ../sass/_styleguide.scss */
.leadership-bioCard {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
}
/* line 3958, ../sass/_styleguide.scss */
.leadership-bioCard .flexItemText {
  padding: 1em 0;
  width: 100%;
}
/* line 3961, ../sass/_styleguide.scss */
.leadership-bioCard .flexItemText h3, .leadership-bioCard .flexItemText .field--name-field-social-phrase-group-title, .leadership-bioCard .flexItemText .field--name-field-image-gallery-title {
  margin: 0;
}
/* line 3964, ../sass/_styleguide.scss */
.leadership-bioCard .flexItemText h4 {
  margin-bottom: 0.4em;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 3967, ../sass/_styleguide.scss */
  .leadership-bioCard .flexItemText h3, .leadership-bioCard .flexItemText .field--name-field-social-phrase-group-title, .leadership-bioCard .flexItemText .field--name-field-image-gallery-title, .leadership-bioCard .flexItemText h4 {
    margin-bottom: 0.2em;
  }
}
/* line 3973, ../sass/_styleguide.scss */
.leadership-bioCard .flexItemImage, .leadership-bioCard .flexItemImageHalf, .leadership-bioCard .flexItemImageTenth, .leadership-bioCard .flexItemImageFourth, .leadership-bioCard .flexItemImageThird, .leadership-bioCard .flexItemImageThirdHalf, .leadership-bioCard .hero-image {
  padding-right: 2em;
    /*

      @extend .directorprofilephoto;
      @include bp-phone-and-tablet {
        min-width: 30%;
        max-width: 30%;
      }
  */
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 3954, ../sass/_styleguide.scss */
  .leadership-bioCard {
    height: auto;
    margin-right: 0;
  }
}

/* line 3990, ../sass/_styleguide.scss */
.field--name-field-speaker,
.field--name-field-executives {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  -o-align-items: stretch;
  align-items: stretch;
  margin-top: 1em;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 3990, ../sass/_styleguide.scss */
  .field--name-field-speaker,
  .field--name-field-executives {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
  }
}

/* line 4001, ../sass/_styleguide.scss */
.field--name-field-speaker > .field__item {
  width: 30%;
  margin-right: 1.5%;
  margin-left: 1.5%;
  overflow: hidden;
  margin-bottom: 1em;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 4001, ../sass/_styleguide.scss */
  .field--name-field-speaker > .field__item {
    width: 100%;
  }
}

/* line 4016, ../sass/_styleguide.scss */
.field--name-field-executives {
  padding-top: 1.5em;
  padding-bottom: 1.5em;
}

/* line 4023, ../sass/_styleguide.scss */
.field--name-field-executives > .field__item {
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  -o-flex: 1;
  flex: 1;
  margin-bottom: 1em;
  background-color: #fff;
  overflow: hidden;
  padding-top: 2em;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
@media all and (min-width: 1100px) {
  /* line 4023, ../sass/_styleguide.scss */
  .field--name-field-executives > .field__item {
    max-width: 32.25%;
    min-width: 32.25%;
    flex-basis: 32.25%;
    margin-right: 1em;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 4023, ../sass/_styleguide.scss */
  .field--name-field-executives > .field__item {
    max-width: 48%;
    min-width: 48%;
    flex-basis: 48%;
    margin-right: 1em;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 4023, ../sass/_styleguide.scss */
  .field--name-field-executives > .field__item {
    max-width: none;
    min-width: auto;
    flex-basis: auto;
    width: auto;
    margin-right: 0;
  }
}
/* line 4050, ../sass/_styleguide.scss */
.field--name-field-executives > .field__item .bioCard {
  width: 100%;
}

@media all and (min-width: 1100px) {
  /* line 4055, ../sass/_styleguide.scss */
  .field--name-field-executives > .field__item:nth-child(3n) {
    margin-right: 0;
  }
}

@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 4062, ../sass/_styleguide.scss */
  .field--name-field-executives > .field__item:nth-child(2n) {
    margin-right: 0;
  }
}

/* line 4070, ../sass/_styleguide.scss */
.publicationsContainer {
  background-color: #102d66;
}
/* line 4072, ../sass/_styleguide.scss */
.publicationsContainer h2, .publicationsContainer .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .publicationsContainer h1, .publicationsContainer .contact-method-label {
  color: #fff;
}

/* line 4077, ../sass/_styleguide.scss */
.publicationsContainer .views-element-container, .publicationsContainer #publication-list-container, .executive-publications-container .views-element-container, .executive-publications-container #publication-list-container {
  padding-top: 1em;
}
/* line 4083, ../sass/_styleguide.scss */
.publicationsContainer .views-element-container .view-nhlbi-research-publications, .publicationsContainer .views-element-container .field--name-field-related-publications, .publicationsContainer #publication-list-container .view-nhlbi-research-publications, .publicationsContainer #publication-list-container .field--name-field-related-publications, .executive-publications-container .views-element-container .view-nhlbi-research-publications, .executive-publications-container .views-element-container .field--name-field-related-publications, .executive-publications-container #publication-list-container .view-nhlbi-research-publications, .executive-publications-container #publication-list-container .field--name-field-related-publications {
  width: -webkit-fill-available;
  width: -moz-fill-available;
  width: -ms-fill-available;
  width: -o-fill-available;
  width: fill-available;
  width: -moz-available;
  width: available;
  color: #0051a8;
  background-color: transparent;
}
/* line 4086, ../sass/_styleguide.scss */
.publicationsContainer .views-element-container .view-nhlbi-research-publications .field__item, .publicationsContainer .views-element-container .field--name-field-related-publications .field__item, .publicationsContainer #publication-list-container .view-nhlbi-research-publications .field__item, .publicationsContainer #publication-list-container .field--name-field-related-publications .field__item, .executive-publications-container .views-element-container .view-nhlbi-research-publications .field__item, .executive-publications-container .views-element-container .field--name-field-related-publications .field__item, .executive-publications-container #publication-list-container .view-nhlbi-research-publications .field__item, .executive-publications-container #publication-list-container .field--name-field-related-publications .field__item {
  width: 100%;
}
/* line 126, ../sass/_mixins.scss */
.publicationsContainer .views-element-container .view-nhlbi-research-publications a, .publicationsContainer .views-element-container .view-nhlbi-research-publications a:link, .publicationsContainer .views-element-container .field--name-field-related-publications a, .publicationsContainer .views-element-container .field--name-field-related-publications a:link, .publicationsContainer #publication-list-container .view-nhlbi-research-publications a, .publicationsContainer #publication-list-container .view-nhlbi-research-publications a:link, .publicationsContainer #publication-list-container .field--name-field-related-publications a, .publicationsContainer #publication-list-container .field--name-field-related-publications a:link, .executive-publications-container .views-element-container .view-nhlbi-research-publications a, .executive-publications-container .views-element-container .view-nhlbi-research-publications a:link, .executive-publications-container .views-element-container .field--name-field-related-publications a, .executive-publications-container .views-element-container .field--name-field-related-publications a:link, .executive-publications-container #publication-list-container .view-nhlbi-research-publications a, .executive-publications-container #publication-list-container .view-nhlbi-research-publications a:link, .executive-publications-container #publication-list-container .field--name-field-related-publications a, .executive-publications-container #publication-list-container .field--name-field-related-publications a:link {
  color: #0051a8;
  text-decoration: underline;
}
/* line 136, ../sass/_mixins.scss */
.publicationsContainer .views-element-container .view-nhlbi-research-publications a:visited, .publicationsContainer .views-element-container .field--name-field-related-publications a:visited, .publicationsContainer #publication-list-container .view-nhlbi-research-publications a:visited, .publicationsContainer #publication-list-container .field--name-field-related-publications a:visited, .executive-publications-container .views-element-container .view-nhlbi-research-publications a:visited, .executive-publications-container .views-element-container .field--name-field-related-publications a:visited, .executive-publications-container #publication-list-container .view-nhlbi-research-publications a:visited, .executive-publications-container #publication-list-container .field--name-field-related-publications a:visited {
  color: #6f57B5;
}
/* line 145, ../sass/_mixins.scss */
.publicationsContainer .views-element-container .view-nhlbi-research-publications a:hover, .publicationsContainer .views-element-container .field--name-field-related-publications a:hover, .publicationsContainer #publication-list-container .view-nhlbi-research-publications a:hover, .publicationsContainer #publication-list-container .field--name-field-related-publications a:hover, .executive-publications-container .views-element-container .view-nhlbi-research-publications a:hover, .executive-publications-container .views-element-container .field--name-field-related-publications a:hover, .executive-publications-container #publication-list-container .view-nhlbi-research-publications a:hover, .executive-publications-container #publication-list-container .field--name-field-related-publications a:hover {
  font-weight: bold;
}
/* line 154, ../sass/_mixins.scss */
.publicationsContainer .views-element-container .view-nhlbi-research-publications h1, .publicationsContainer .views-element-container .view-nhlbi-research-publications .photocredit, .publicationsContainer .views-element-container .field--name-field-related-publications h1, .publicationsContainer .views-element-container .field--name-field-related-publications .photocredit, .publicationsContainer #publication-list-container .view-nhlbi-research-publications h1, .publicationsContainer #publication-list-container .view-nhlbi-research-publications .photocredit, .publicationsContainer #publication-list-container .field--name-field-related-publications h1, .publicationsContainer #publication-list-container .field--name-field-related-publications .photocredit, .executive-publications-container .views-element-container .view-nhlbi-research-publications h1, .executive-publications-container .views-element-container .view-nhlbi-research-publications .photocredit, .executive-publications-container .views-element-container .field--name-field-related-publications h1, .executive-publications-container .views-element-container .field--name-field-related-publications .photocredit, .executive-publications-container #publication-list-container .view-nhlbi-research-publications h1, .executive-publications-container #publication-list-container .view-nhlbi-research-publications .photocredit, .executive-publications-container #publication-list-container .field--name-field-related-publications h1, .executive-publications-container #publication-list-container .field--name-field-related-publications .photocredit {
  color: #0051a8;
}
/* line 4091, ../sass/_styleguide.scss */
.publicationsContainer .views-element-container .view-nhlbi-research-publications .singlePublicationCard, .publicationsContainer .views-element-container .field--name-field-related-publications .singlePublicationCard, .publicationsContainer #publication-list-container .view-nhlbi-research-publications .singlePublicationCard, .publicationsContainer #publication-list-container .field--name-field-related-publications .singlePublicationCard, .executive-publications-container .views-element-container .view-nhlbi-research-publications .singlePublicationCard, .executive-publications-container .views-element-container .field--name-field-related-publications .singlePublicationCard, .executive-publications-container #publication-list-container .view-nhlbi-research-publications .singlePublicationCard, .executive-publications-container #publication-list-container .field--name-field-related-publications .singlePublicationCard {
  background-color: #fff;
  margin-bottom: 1em;
  padding: 1em;
}
/* line 4095, ../sass/_styleguide.scss */
.publicationsContainer .views-element-container .view-nhlbi-research-publications .singlePublicationCard .bodytext, .publicationsContainer .views-element-container .view-nhlbi-research-publications .singlePublicationCard .darkGrayBodyText, .publicationsContainer .views-element-container .view-nhlbi-research-publications .singlePublicationCard .foa-expiration-date, .publicationsContainer .views-element-container .field--name-field-related-publications .singlePublicationCard .bodytext, .publicationsContainer .views-element-container .field--name-field-related-publications .singlePublicationCard .darkGrayBodyText, .publicationsContainer .views-element-container .field--name-field-related-publications .singlePublicationCard .foa-expiration-date, .publicationsContainer #publication-list-container .view-nhlbi-research-publications .singlePublicationCard .bodytext, .publicationsContainer #publication-list-container .view-nhlbi-research-publications .singlePublicationCard .darkGrayBodyText, .publicationsContainer #publication-list-container .view-nhlbi-research-publications .singlePublicationCard .foa-expiration-date, .publicationsContainer #publication-list-container .field--name-field-related-publications .singlePublicationCard .bodytext, .publicationsContainer #publication-list-container .field--name-field-related-publications .singlePublicationCard .darkGrayBodyText, .publicationsContainer #publication-list-container .field--name-field-related-publications .singlePublicationCard .foa-expiration-date, .executive-publications-container .views-element-container .view-nhlbi-research-publications .singlePublicationCard .bodytext, .executive-publications-container .views-element-container .view-nhlbi-research-publications .singlePublicationCard .darkGrayBodyText, .executive-publications-container .views-element-container .view-nhlbi-research-publications .singlePublicationCard .foa-expiration-date, .executive-publications-container .views-element-container .field--name-field-related-publications .singlePublicationCard .bodytext, .executive-publications-container .views-element-container .field--name-field-related-publications .singlePublicationCard .darkGrayBodyText, .executive-publications-container .views-element-container .field--name-field-related-publications .singlePublicationCard .foa-expiration-date, .executive-publications-container #publication-list-container .view-nhlbi-research-publications .singlePublicationCard .bodytext, .executive-publications-container #publication-list-container .view-nhlbi-research-publications .singlePublicationCard .darkGrayBodyText, .executive-publications-container #publication-list-container .view-nhlbi-research-publications .singlePublicationCard .foa-expiration-date, .executive-publications-container #publication-list-container .field--name-field-related-publications .singlePublicationCard .bodytext, .executive-publications-container #publication-list-container .field--name-field-related-publications .singlePublicationCard .darkGrayBodyText, .executive-publications-container #publication-list-container .field--name-field-related-publications .singlePublicationCard .foa-expiration-date {
  color: #222;
}
/* line 4099, ../sass/_styleguide.scss */
.publicationsContainer .views-element-container .view-nhlbi-research-publications .field--name-field-publication-authors, .publicationsContainer .views-element-container .field--name-field-related-publications .field--name-field-publication-authors, .publicationsContainer #publication-list-container .view-nhlbi-research-publications .field--name-field-publication-authors, .publicationsContainer #publication-list-container .field--name-field-related-publications .field--name-field-publication-authors, .executive-publications-container .views-element-container .view-nhlbi-research-publications .field--name-field-publication-authors, .executive-publications-container .views-element-container .field--name-field-related-publications .field--name-field-publication-authors, .executive-publications-container #publication-list-container .view-nhlbi-research-publications .field--name-field-publication-authors, .executive-publications-container #publication-list-container .field--name-field-related-publications .field--name-field-publication-authors {
  margin-bottom: 1em;
}
/* line 4102, ../sass/_styleguide.scss */
.publicationsContainer .views-element-container .view-nhlbi-research-publications .field--name-field-publication-volume, .publicationsContainer .views-element-container .view-nhlbi-research-publications .field--name-field-publication-date, .publicationsContainer .views-element-container .view-nhlbi-research-publications .field--name-field-publication-issue, .publicationsContainer .views-element-container .field--name-field-related-publications .field--name-field-publication-volume, .publicationsContainer .views-element-container .field--name-field-related-publications .field--name-field-publication-date, .publicationsContainer .views-element-container .field--name-field-related-publications .field--name-field-publication-issue, .publicationsContainer #publication-list-container .view-nhlbi-research-publications .field--name-field-publication-volume, .publicationsContainer #publication-list-container .view-nhlbi-research-publications .field--name-field-publication-date, .publicationsContainer #publication-list-container .view-nhlbi-research-publications .field--name-field-publication-issue, .publicationsContainer #publication-list-container .field--name-field-related-publications .field--name-field-publication-volume, .publicationsContainer #publication-list-container .field--name-field-related-publications .field--name-field-publication-date, .publicationsContainer #publication-list-container .field--name-field-related-publications .field--name-field-publication-issue, .executive-publications-container .views-element-container .view-nhlbi-research-publications .field--name-field-publication-volume, .executive-publications-container .views-element-container .view-nhlbi-research-publications .field--name-field-publication-date, .executive-publications-container .views-element-container .view-nhlbi-research-publications .field--name-field-publication-issue, .executive-publications-container .views-element-container .field--name-field-related-publications .field--name-field-publication-volume, .executive-publications-container .views-element-container .field--name-field-related-publications .field--name-field-publication-date, .executive-publications-container .views-element-container .field--name-field-related-publications .field--name-field-publication-issue, .executive-publications-container #publication-list-container .view-nhlbi-research-publications .field--name-field-publication-volume, .executive-publications-container #publication-list-container .view-nhlbi-research-publications .field--name-field-publication-date, .executive-publications-container #publication-list-container .view-nhlbi-research-publications .field--name-field-publication-issue, .executive-publications-container #publication-list-container .field--name-field-related-publications .field--name-field-publication-volume, .executive-publications-container #publication-list-container .field--name-field-related-publications .field--name-field-publication-date, .executive-publications-container #publication-list-container .field--name-field-related-publications .field--name-field-publication-issue {
  display: inline;
}
/* line 4105, ../sass/_styleguide.scss */
.publicationsContainer .views-element-container .view-nhlbi-research-publications a.button, .publicationsContainer .views-element-container .field--name-field-related-publications a.button, .publicationsContainer #publication-list-container .view-nhlbi-research-publications a.button, .publicationsContainer #publication-list-container .field--name-field-related-publications a.button, .executive-publications-container .views-element-container .view-nhlbi-research-publications a.button, .executive-publications-container .views-element-container .field--name-field-related-publications a.button, .executive-publications-container #publication-list-container .view-nhlbi-research-publications a.button, .executive-publications-container #publication-list-container .field--name-field-related-publications a.button {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  background-color: #1a568c;
  border: 1px solid #1a568c;
  clear: both;
  margin: 1em auto;
  padding: 0.8em 3em;
}
@media all and (min-width: 1440px) {
  /* line 4105, ../sass/_styleguide.scss */
  .publicationsContainer .views-element-container .view-nhlbi-research-publications a.button, .publicationsContainer .views-element-container .field--name-field-related-publications a.button, .publicationsContainer #publication-list-container .view-nhlbi-research-publications a.button, .publicationsContainer #publication-list-container .field--name-field-related-publications a.button, .executive-publications-container .views-element-container .view-nhlbi-research-publications a.button, .executive-publications-container .views-element-container .field--name-field-related-publications a.button, .executive-publications-container #publication-list-container .view-nhlbi-research-publications a.button, .executive-publications-container #publication-list-container .field--name-field-related-publications a.button {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 4105, ../sass/_styleguide.scss */
  .publicationsContainer .views-element-container .view-nhlbi-research-publications a.button, .publicationsContainer .views-element-container .field--name-field-related-publications a.button, .publicationsContainer #publication-list-container .view-nhlbi-research-publications a.button, .publicationsContainer #publication-list-container .field--name-field-related-publications a.button, .executive-publications-container .views-element-container .view-nhlbi-research-publications a.button, .executive-publications-container .views-element-container .field--name-field-related-publications a.button, .executive-publications-container #publication-list-container .view-nhlbi-research-publications a.button, .executive-publications-container #publication-list-container .field--name-field-related-publications a.button {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 4105, ../sass/_styleguide.scss */
  .publicationsContainer .views-element-container .view-nhlbi-research-publications a.button, .publicationsContainer .views-element-container .field--name-field-related-publications a.button, .publicationsContainer #publication-list-container .view-nhlbi-research-publications a.button, .publicationsContainer #publication-list-container .field--name-field-related-publications a.button, .executive-publications-container .views-element-container .view-nhlbi-research-publications a.button, .executive-publications-container .views-element-container .field--name-field-related-publications a.button, .executive-publications-container #publication-list-container .view-nhlbi-research-publications a.button, .executive-publications-container #publication-list-container .field--name-field-related-publications a.button {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 4105, ../sass/_styleguide.scss */
  .publicationsContainer .views-element-container .view-nhlbi-research-publications a.button, .publicationsContainer .views-element-container .field--name-field-related-publications a.button, .publicationsContainer #publication-list-container .view-nhlbi-research-publications a.button, .publicationsContainer #publication-list-container .field--name-field-related-publications a.button, .executive-publications-container .views-element-container .view-nhlbi-research-publications a.button, .executive-publications-container .views-element-container .field--name-field-related-publications a.button, .executive-publications-container #publication-list-container .view-nhlbi-research-publications a.button, .executive-publications-container #publication-list-container .field--name-field-related-publications a.button {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.publicationsContainer .views-element-container .view-nhlbi-research-publications a.button :hover, .publicationsContainer .views-element-container .field--name-field-related-publications a.button :hover, .publicationsContainer #publication-list-container .view-nhlbi-research-publications a.button :hover, .publicationsContainer #publication-list-container .field--name-field-related-publications a.button :hover, .executive-publications-container .views-element-container .view-nhlbi-research-publications a.button :hover, .executive-publications-container .views-element-container .field--name-field-related-publications a.button :hover, .executive-publications-container #publication-list-container .view-nhlbi-research-publications a.button :hover, .executive-publications-container #publication-list-container .field--name-field-related-publications a.button :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 4105, ../sass/_styleguide.scss */
  .publicationsContainer .views-element-container .view-nhlbi-research-publications a.button, .publicationsContainer .views-element-container .field--name-field-related-publications a.button, .publicationsContainer #publication-list-container .view-nhlbi-research-publications a.button, .publicationsContainer #publication-list-container .field--name-field-related-publications a.button, .executive-publications-container .views-element-container .view-nhlbi-research-publications a.button, .executive-publications-container .views-element-container .field--name-field-related-publications a.button, .executive-publications-container #publication-list-container .view-nhlbi-research-publications a.button, .executive-publications-container #publication-list-container .field--name-field-related-publications a.button {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 4105, ../sass/_styleguide.scss */
  .publicationsContainer .views-element-container .view-nhlbi-research-publications a.button, .publicationsContainer .views-element-container .field--name-field-related-publications a.button, .publicationsContainer #publication-list-container .view-nhlbi-research-publications a.button, .publicationsContainer #publication-list-container .field--name-field-related-publications a.button, .executive-publications-container .views-element-container .view-nhlbi-research-publications a.button, .executive-publications-container .views-element-container .field--name-field-related-publications a.button, .executive-publications-container #publication-list-container .view-nhlbi-research-publications a.button, .executive-publications-container #publication-list-container .field--name-field-related-publications a.button {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 4105, ../sass/_styleguide.scss */
  .publicationsContainer .views-element-container .view-nhlbi-research-publications a.button, .publicationsContainer .views-element-container .field--name-field-related-publications a.button, .publicationsContainer #publication-list-container .view-nhlbi-research-publications a.button, .publicationsContainer #publication-list-container .field--name-field-related-publications a.button, .executive-publications-container .views-element-container .view-nhlbi-research-publications a.button, .executive-publications-container .views-element-container .field--name-field-related-publications a.button, .executive-publications-container #publication-list-container .view-nhlbi-research-publications a.button, .executive-publications-container #publication-list-container .field--name-field-related-publications a.button {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 4105, ../sass/_styleguide.scss */
  .publicationsContainer .views-element-container .view-nhlbi-research-publications a.button, .publicationsContainer .views-element-container .field--name-field-related-publications a.button, .publicationsContainer #publication-list-container .view-nhlbi-research-publications a.button, .publicationsContainer #publication-list-container .field--name-field-related-publications a.button, .executive-publications-container .views-element-container .view-nhlbi-research-publications a.button, .executive-publications-container .views-element-container .field--name-field-related-publications a.button, .executive-publications-container #publication-list-container .view-nhlbi-research-publications a.button, .executive-publications-container #publication-list-container .field--name-field-related-publications a.button {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 4105, ../sass/_styleguide.scss */
  .publicationsContainer .views-element-container .view-nhlbi-research-publications a.button, .publicationsContainer .views-element-container .field--name-field-related-publications a.button, .publicationsContainer #publication-list-container .view-nhlbi-research-publications a.button, .publicationsContainer #publication-list-container .field--name-field-related-publications a.button, .executive-publications-container .views-element-container .view-nhlbi-research-publications a.button, .executive-publications-container .views-element-container .field--name-field-related-publications a.button, .executive-publications-container #publication-list-container .view-nhlbi-research-publications a.button, .executive-publications-container #publication-list-container .field--name-field-related-publications a.button {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.publicationsContainer .views-element-container .view-nhlbi-research-publications a.button:hover, .publicationsContainer .views-element-container .field--name-field-related-publications a.button:hover, .publicationsContainer #publication-list-container .view-nhlbi-research-publications a.button:hover, .publicationsContainer #publication-list-container .field--name-field-related-publications a.button:hover, .executive-publications-container .views-element-container .view-nhlbi-research-publications a.button:hover, .executive-publications-container .views-element-container .field--name-field-related-publications a.button:hover, .executive-publications-container #publication-list-container .view-nhlbi-research-publications a.button:hover, .executive-publications-container #publication-list-container .field--name-field-related-publications a.button:hover {
  background-color: #102d66;
  border-color: #102d66;
  color: #fff;
  text-decoration: none;
}

/* line 4111, ../sass/_styleguide.scss */
.margined-top-and-bottom {
  margin-top: 2em;
  margin-bottom: 2em;
}

/* line 4115, ../sass/_styleguide.scss */
.extra-margined-top {
  margin-top: 2em;
}

/* line 4119, ../sass/_styleguide.scss */
.field--name-field-additional-text p:first-of-type {
  margin-top: 0;
}

/* line 4123, ../sass/_styleguide.scss */
.bottom-view-link {
  display: inline-block;
  background-position: center right;
  padding: 2em 1.3em 2em 0;
}
@media all and (min-width: 1100px) {
  /* line 4123, ../sass/_styleguide.scss */
  .bottom-view-link {
    height: 2.125rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 4123, ../sass/_styleguide.scss */
  .bottom-view-link {
    height: 2.125rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 4123, ../sass/_styleguide.scss */
  .bottom-view-link {
    height: 1.5rem;
  }
}

/* line 4139, ../sass/_styleguide.scss */
.standard-card-field, .field--name-field-advisory-committees, .contact-nhlbi-titleblock, .field--name-field-contact-cards, .field--name-field-employment-opportunity-car, .all-grants-foa-container,
.field--name-field-program-officers,
.view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content,
.view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content, .node--type-individual-contact .field--name-field-contact-methods,
.node--type-division.node--view-mode-full .field--name-field-contact-methods,
.node--type-division.node--view-mode-subscribe .field--name-field-contact-methods,
.node--type-branch.node--view-mode-full .field--name-field-contact-methods,
.node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods,
.node--type-general.node--view-mode-full .field--name-field-contact-methods,
.node--type-general.node--view-mode-subscribe .field--name-field-contact-methods,
.node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods,
.node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods, .node--type-committee .field--name-field-card-text {
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -o-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  -o-align-items: stretch;
  align-items: stretch;
}

@media all and (min-width: 1100px) {
  /* line 4146, ../sass/_styleguide.scss */
  .standard-card-width, .standard-card-field-item, .standard-card-field > .field__item, .field--name-field-advisory-committees > .field__item, .contact-nhlbi-titleblock > .field__item, .field--name-field-contact-cards > .field__item, .field--name-field-employment-opportunity-car > .field__item, .all-grants-foa-container > .field__item,
  .field--name-field-program-officers > .field__item,
  .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content > .field__item,
  .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content > .field__item, .node--type-individual-contact .field--name-field-contact-methods > .field__item,
  .node--type-division.node--view-mode-full .field--name-field-contact-methods > .field__item,
  .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods > .field__item,
  .node--type-branch.node--view-mode-full .field--name-field-contact-methods > .field__item,
  .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods > .field__item,
  .node--type-general.node--view-mode-full .field--name-field-contact-methods > .field__item,
  .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods > .field__item,
  .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods > .field__item,
  .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods > .field__item, .node--type-committee .field--name-field-card-text > .field__item, .grants-foa-card {
    margin-right: 1em;
    width: 28%;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 4146, ../sass/_styleguide.scss */
  .standard-card-width, .standard-card-field-item, .standard-card-field > .field__item, .field--name-field-advisory-committees > .field__item, .contact-nhlbi-titleblock > .field__item, .field--name-field-contact-cards > .field__item, .field--name-field-employment-opportunity-car > .field__item, .all-grants-foa-container > .field__item,
  .field--name-field-program-officers > .field__item,
  .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content > .field__item,
  .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content > .field__item, .node--type-individual-contact .field--name-field-contact-methods > .field__item,
  .node--type-division.node--view-mode-full .field--name-field-contact-methods > .field__item,
  .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods > .field__item,
  .node--type-branch.node--view-mode-full .field--name-field-contact-methods > .field__item,
  .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods > .field__item,
  .node--type-general.node--view-mode-full .field--name-field-contact-methods > .field__item,
  .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods > .field__item,
  .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods > .field__item,
  .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods > .field__item, .node--type-committee .field--name-field-card-text > .field__item, .grants-foa-card {
    margin-right: 1em;
    width: 40%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 4146, ../sass/_styleguide.scss */
  .standard-card-width, .standard-card-field-item, .standard-card-field > .field__item, .field--name-field-advisory-committees > .field__item, .contact-nhlbi-titleblock > .field__item, .field--name-field-contact-cards > .field__item, .field--name-field-employment-opportunity-car > .field__item, .all-grants-foa-container > .field__item,
  .field--name-field-program-officers > .field__item,
  .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content > .field__item,
  .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content > .field__item, .node--type-individual-contact .field--name-field-contact-methods > .field__item,
  .node--type-division.node--view-mode-full .field--name-field-contact-methods > .field__item,
  .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods > .field__item,
  .node--type-branch.node--view-mode-full .field--name-field-contact-methods > .field__item,
  .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods > .field__item,
  .node--type-general.node--view-mode-full .field--name-field-contact-methods > .field__item,
  .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods > .field__item,
  .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods > .field__item,
  .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods > .field__item, .node--type-committee .field--name-field-card-text > .field__item, .grants-foa-card {
    width: -webkit-fill-available;
    width: -moz-fill-available;
    width: -ms-fill-available;
    width: -o-fill-available;
    width: fill-available;
    width: -moz-available;
    width: available;
    margin-right: 0;
  }
}

@media all and (min-width: 1100px) {
  /* line 4161, ../sass/_styleguide.scss */
  .standard-card-max-width {
    max-width: 33%;
    flex-basis: 33%;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 4161, ../sass/_styleguide.scss */
  .standard-card-max-width {
    max-width: 40%;
    flex-basis: 40%;
  }
}

/* line 4171, ../sass/_styleguide.scss */
.standard-card-field-item, .standard-card-field > .field__item, .field--name-field-advisory-committees > .field__item, .contact-nhlbi-titleblock > .field__item, .field--name-field-contact-cards > .field__item, .field--name-field-employment-opportunity-car > .field__item, .all-grants-foa-container > .field__item,
.field--name-field-program-officers > .field__item,
.view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content > .field__item,
.view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content > .field__item, .node--type-individual-contact .field--name-field-contact-methods > .field__item,
.node--type-division.node--view-mode-full .field--name-field-contact-methods > .field__item,
.node--type-division.node--view-mode-subscribe .field--name-field-contact-methods > .field__item,
.node--type-branch.node--view-mode-full .field--name-field-contact-methods > .field__item,
.node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods > .field__item,
.node--type-general.node--view-mode-full .field--name-field-contact-methods > .field__item,
.node--type-general.node--view-mode-subscribe .field--name-field-contact-methods > .field__item,
.node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods > .field__item,
.node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods > .field__item, .node--type-committee .field--name-field-card-text > .field__item, .grants-foa-card {
  background-color: #f4f4f4;
  padding: 0 1em;
  margin-bottom: 1em;
}

/* line 4178, ../sass/_styleguide.scss */
.standard-card-field:before, .field--name-field-advisory-committees:before, .contact-nhlbi-titleblock:before, .field--name-field-contact-cards:before, .field--name-field-employment-opportunity-car:before, .all-grants-foa-container:before,
.field--name-field-program-officers:before,
.view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content:before,
.view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content:before, .node--type-individual-contact .field--name-field-contact-methods:before,
.node--type-division.node--view-mode-full .field--name-field-contact-methods:before,
.node--type-division.node--view-mode-subscribe .field--name-field-contact-methods:before,
.node--type-branch.node--view-mode-full .field--name-field-contact-methods:before,
.node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods:before,
.node--type-general.node--view-mode-full .field--name-field-contact-methods:before,
.node--type-general.node--view-mode-subscribe .field--name-field-contact-methods:before,
.node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods:before,
.node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods:before, .node--type-committee .field--name-field-card-text:before,
.standard-card-field:after,
.field--name-field-advisory-committees:after,
.contact-nhlbi-titleblock:after,
.field--name-field-contact-cards:after,
.field--name-field-employment-opportunity-car:after,
.all-grants-foa-container:after,
.field--name-field-program-officers:after,
.view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content:after,
.view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content:after,
.node--type-individual-contact .field--name-field-contact-methods:after,
.node--type-division.node--view-mode-full .field--name-field-contact-methods:after,
.node--type-division.node--view-mode-subscribe .field--name-field-contact-methods:after,
.node--type-branch.node--view-mode-full .field--name-field-contact-methods:after,
.node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods:after,
.node--type-general.node--view-mode-full .field--name-field-contact-methods:after,
.node--type-general.node--view-mode-subscribe .field--name-field-contact-methods:after,
.node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods:after,
.node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods:after,
.node--type-committee .field--name-field-card-text:after,
.standard-card-field-item:before,
.standard-card-field > .field__item:before,
.field--name-field-advisory-committees > .field__item:before,
.contact-nhlbi-titleblock > .field__item:before,
.field--name-field-contact-cards > .field__item:before,
.field--name-field-employment-opportunity-car > .field__item:before,
.all-grants-foa-container > .field__item:before,
.field--name-field-program-officers > .field__item:before,
.view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content > .field__item:before,
.view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content > .field__item:before,
.node--type-individual-contact .field--name-field-contact-methods > .field__item:before,
.node--type-division.node--view-mode-full .field--name-field-contact-methods > .field__item:before,
.node--type-division.node--view-mode-subscribe .field--name-field-contact-methods > .field__item:before,
.node--type-branch.node--view-mode-full .field--name-field-contact-methods > .field__item:before,
.node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods > .field__item:before,
.node--type-general.node--view-mode-full .field--name-field-contact-methods > .field__item:before,
.node--type-general.node--view-mode-subscribe .field--name-field-contact-methods > .field__item:before,
.node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods > .field__item:before,
.node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods > .field__item:before,
.node--type-committee .field--name-field-card-text > .field__item:before,
.grants-foa-card:before,
.standard-card-field:after,
.field--name-field-advisory-committees:after,
.contact-nhlbi-titleblock:after,
.field--name-field-contact-cards:after,
.field--name-field-employment-opportunity-car:after,
.all-grants-foa-container:after,
.field--name-field-program-officers:after,
.view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content:after,
.view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content:after,
.node--type-individual-contact .field--name-field-contact-methods:after,
.node--type-division.node--view-mode-full .field--name-field-contact-methods:after,
.node--type-division.node--view-mode-subscribe .field--name-field-contact-methods:after,
.node--type-branch.node--view-mode-full .field--name-field-contact-methods:after,
.node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods:after,
.node--type-general.node--view-mode-full .field--name-field-contact-methods:after,
.node--type-general.node--view-mode-subscribe .field--name-field-contact-methods:after,
.node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods:after,
.node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods:after,
.node--type-committee .field--name-field-card-text:after {
  content: '';
  display: inline;
  width: 0;
}

/* line 4191, ../sass/_styleguide.scss */
.inline-list, ul.associated-organization-list {
  display: inline;
  list-style: none;
  padding: 0;
}
/* line 4195, ../sass/_styleguide.scss */
.inline-list li, ul.associated-organization-list li, .inline-list li > div, ul.associated-organization-list li > div {
  display: inline;
}
/* line 4198, ../sass/_styleguide.scss */
.inline-list li:after, ul.associated-organization-list li:after {
  content: ', ';
}
/* line 4201, ../sass/_styleguide.scss */
.inline-list li:last-child:after, ul.associated-organization-list li:last-child:after {
  content: '';
}

/* line 4206, ../sass/_styleguide.scss */
ul.list-style-type-none {
  list-style-type: none;
}

/* line 4210, ../sass/_styleguide.scss */
.paragraph--type--vacancy-card .field--name-field-title-link {
  text-align: center;
}

/* line 4214, ../sass/_styleguide.scss */
.paragraph--type--contact-information {
  margin: 0 0 1.25em;
  padding: 0;
}

/* line 4218, ../sass/_styleguide.scss */
.standard-more-link, .news-and-events--landing .more-link, .view-more-link {
  margin: 1.5em 0 1.5em 0;
}
/* line 4222, ../sass/_styleguide.scss */
.standard-more-link a, .news-and-events--landing .more-link a, .view-more-link a {
  display: inline-block;
}

/* line 4226, ../sass/_styleguide.scss */
.image-and-photocredit-container,
.embedded-image-and-photocredit-container {
  position: relative;
}

/* line 4230, ../sass/_styleguide.scss */
.embedded-image-and-photocredit-container {
  display: inline-block;
}
/* line 4232, ../sass/_styleguide.scss */
.embedded-image-and-photocredit-container .photocredit {
  margin-top: -25px;
}

/* line 4236, ../sass/_styleguide.scss */
.modal-image-and-photocredit-container {
  box-sizing: border-box;
}
/* line 4238, ../sass/_styleguide.scss */
.modal-image-and-photocredit-container .photocredit {
  width: 98%;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 4238, ../sass/_styleguide.scss */
  .modal-image-and-photocredit-container .photocredit {
    margin-top: -20px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 4238, ../sass/_styleguide.scss */
  .modal-image-and-photocredit-container .photocredit {
    color: #fff;
    background: #4a4a4a;
    background: rgba(74, 74, 74, 0.4);
    display: inline-block;
    position: absolute;
    margin-bottom: 0;
  }
}

/* line 4253, ../sass/_styleguide.scss */
.image-modal-caption {
  background-color: #fff;
}

/* line 4257, ../sass/_styleguide.scss */
.image-modal-caption, .embedded-image-caption {
  display: table-caption;
  caption-side: bottom;
  padding: 0 1em 1em;
}

/* line 4262, ../sass/_styleguide.scss */
.embedded-image-and-photocredit-wrapper {
  display: table;
}

/*
 * IE fixes for WYSIWYG images max-width.
 */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  /* line 4270, ../sass/_styleguide.scss */
  .embedded-image-and-photocredit-wrapper, .embedded-image-and-photocredit-container, .embedded-image-caption {
    display: block;
  }

  /* line 4274, ../sass/_styleguide.scss */
  .contact-and-content-container .expanding-content-container {
    max-width: auto;
  }
}
/* line 4279, ../sass/_styleguide.scss */
.photocredit {
  font-size: 0.625rem;
  display: inline-block;
  overflow: hidden;
  position: absolute;
  width: 100%;
  box-sizing: border-box;
  margin-top: -20px;
  padding-left: 1em;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  color: #fff;
  background: #4a4a4a;
  background: rgba(74, 74, 74, 0.4);
}
@media all and (min-width: 1440px) {
  /* line 4279, ../sass/_styleguide.scss */
  .photocredit {
    font-size: 0.625rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 4279, ../sass/_styleguide.scss */
  .photocredit {
    font-size: 0.5rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 4279, ../sass/_styleguide.scss */
  .photocredit {
    font-size: 0.5rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 4279, ../sass/_styleguide.scss */
  .photocredit {
    font-size: 0.5rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 4279, ../sass/_styleguide.scss */
  .photocredit {
    margin-top: -40px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 4279, ../sass/_styleguide.scss */
  .photocredit {
    color: #222;
    background: transparent;
    display: block;
    position: relative;
    margin-top: 0.2em;
    margin-bottom: 1em;
  }
}

/* line 4305, ../sass/_styleguide.scss */
.field--name-field-photo-credit {
  display: inline;
}

/* line 4308, ../sass/_styleguide.scss */
.white-header-text {
  color: #fff;
}

/* line 4315, ../sass/_styleguide.scss */
.alerts-message-submitted {
  background-color: #e7f4e2;
}
/* line 4317, ../sass/_styleguide.scss */
.alerts-message-submitted .alerttitle {
  background-image: url("../images/ico-successalert.png");
  background-size: 32px 32px;
  background-repeat: no-repeat;
  background-position: 20px center;
  display: table-cell;
  content: " ";
  height: 32px;
  vertical-align: middle;
  padding: 20px 60px;
  font-family: "Merriweather", serif;
  font-weight: normal;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 4317, ../sass/_styleguide.scss */
  .alerts-message-submitted .alerttitle {
    background-size: 32px 32px;
    height: 32px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 4317, ../sass/_styleguide.scss */
  .alerts-message-submitted .alerttitle {
    background-size: 32px 32px;
    height: 32px;
  }
}

/* line 4327, ../sass/_styleguide.scss */
.alerts-message-submitted-error {
  background-color: #fff4f3;
  border: 1px solid #bf0d2e;
  color: #222;
  border-radius: 10px;
  padding: 20px 40px;
}
/* line 4333, ../sass/_styleguide.scss */
.alerts-message-submitted-error .alerttitle {
  vertical-align: middle;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-weight: 600;
  color: #222;
}

/* line 4343, ../sass/_styleguide.scss */
.objective-list-text, .objective-list-container ol.objective-list {
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-weight: normal;
}

/* line 4349, ../sass/_styleguide.scss */
.field--name-field-files > .field__item {
  margin-bottom: 0.3em;
}

/**
 * The styles for focus color in general and specific for elements against red color backgrounds.
 */
/* line 4357, ../sass/_styleguide.scss */
.id-footer-social a:focus {
  outline: #efefef dotted 3px !important;
}

/* line 4361, ../sass/_styleguide.scss */
#main-navbar ul li span:focus, #main-navbar ul li > a:focus, .field--name-field-division-link a:focus {
  outline: #bf0d2e dotted 3px !important;
  outline-offset: 2px;
}

/* line 4366, ../sass/_styleguide.scss */
.blueRoundButton a:focus, .redRoundButton a:focus, .standard-more-link a:focus, .news-and-events--landing .more-link a:focus, .view-more-link a:focus, a.bluebutton:focus {
  outline: #bf0d2e dotted 3px !important;
  outline-offset: -2px;
}

/* line 4371, ../sass/_styleguide.scss */
.red-hei .hei-grants a:focus,
.red-hei .hei-health-professionals .field--name-field-url a:focus,
.funding-area-related-resources-container ul li a:focus,
.primaryRedBackground .herobannertitle-grey a:focus,
.social_media_header li a:focus > img,
.news-acceptance-alert .field--name-body a:focus img,
.embedded-image-and-photocredit-wrapper a:focus img,
input.emailAddress:focus,
.search-bar-expanded:focus {
  outline: #bf0d2e dotted 3px !important;
}

/* line 4382, ../sass/_styleguide.scss */
.red-hei .hei-related-initiatives-wrapper a:focus a {
  outline: #bf0d2e dotted 3px !important;
  display: block;
}

/* line 4387, ../sass/_styleguide.scss */
.blue-hei .hei-partnering-background a:focus,
.red-hei .hei-partnering-background a:focus,
.red-hei .node--type-news-mention a:focus,
.blue-hei .hei-top-button a:focus,
.blue-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a:focus,
.yellow-turquoise-hei .hei-partnering .blue-hei .field--name-field-url a:focus,
.red-hei .hei-news :focus,
.blue-hei a.ext:focus,
.red-hei .hei-top-button a:focus,
.red-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a:focus,
.yellow-turquoise-hei .hei-partnering .red-hei .field--name-field-url a:focus,
.red-hei .hei-events a:focus,
.blue-hei .hei-news .herobannertitle a:focus,
.blue-hei .hei-news .herobannertitle-grey a:focus,
.red-hei .hei-partnering-background .field--name-field-url a:focus,
.field--name-field-about-nhlbi-promotional-ca .herobannertitle a:focus > div,
.field--name-field-about-nhlbi-promotional-ca .herobannertitle-grey a:focus > div,
.field--name-field-sv-promotional-cards .herobannertitle a:focus > div,
.field--name-field-about-nhlbi-promotional-ca .herobannertitle a:focus > div,
.field--name-field-sv-promotional-cards .herobannertitle-grey a:focus > div,
.field--name-field-about-nhlbi-promotional-ca .herobannertitle-grey a:focus > div,
.publicationsContainer .pager__item a.button:focus,
.publicationsContainer .blueRoundButton a.button:focus,
.publicationsContainer .redRoundButton a.button:focus,
.publicationsContainer .standard-more-link a.button:focus,
.publicationsContainer .news-and-events--landing .more-link a.button:focus,
.news-and-events--landing .publicationsContainer .more-link a.button:focus,
.publicationsContainer .view-more-link a.button:focus,
.darkRedBackground .pager__item a:focus,
.darkRedBackground .blueRoundButton a:focus,
.darkRedBackground .redRoundButton a:focus,
.darkRedBackground .standard-more-link a:focus,
.darkRedBackground .news-and-events--landing .more-link a:focus,
.news-and-events--landing .darkRedBackground .more-link a:focus,
.darkRedBackground .view-more-link a:focus,
.darkRedBackground .pager__item a.button:focus,
.darkRedBackground .blueRoundButton a.button:focus,
.darkRedBackground .redRoundButton a.button:focus,
.darkRedBackground .standard-more-link a.button:focus,
.darkRedBackground .news-and-events--landing .more-link a.button:focus,
.news-and-events--landing .darkRedBackground .more-link a.button:focus,
.darkRedBackground .view-more-link a.button:focus,
.theScienceEventItem .herobannertitle a:focus,
.theScienceEventItem .herobannertitle-grey a:focus, .theScienceNewsItem .herobannertitle a:focus, .theScienceNewsItem .herobannertitle-grey a:focus,
.primaryRedBackground .herobannertitle a:focus,
.primaryRedBackground .herobannertitle-grey a:focus,
.hei-news .herobannertitle a:focus,
.hei-news .herobannertitle-grey a:focus,
.blue-hei .hei-partnering-background a:active,
.red-hei .hei-partnering-background a:active,
.red-hei .node--type-news-mention a:active,
.blue-hei .hei-top-button a:active,
.blue-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a:active,
.yellow-turquoise-hei .hei-partnering .blue-hei .field--name-field-url a:active,
.red-hei .hei-news :active,
.blue-hei a.ext:active,
.red-hei .hei-top-button a:active,
.red-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a:active,
.yellow-turquoise-hei .hei-partnering .red-hei .field--name-field-url a:active,
.red-hei .hei-events a:active,
.blue-hei .hei-news .herobannertitle a:active,
.blue-hei .hei-news .herobannertitle-grey a:active,
.red-hei .hei-partnering-background .field--name-field-url a:active,
.field--name-field-about-nhlbi-promotional-ca .herobannertitle a:active > div,
.field--name-field-about-nhlbi-promotional-ca .herobannertitle-grey a:active > div,
.field--name-field-sv-promotional-cards .herobannertitle a:active > div,
.field--name-field-about-nhlbi-promotional-ca .herobannertitle a:active > div,
.field--name-field-sv-promotional-cards .herobannertitle-grey a:active > div,
.field--name-field-about-nhlbi-promotional-ca .herobannertitle-grey a:active > div,
.publicationsContainer .pager__item a.button:active,
.publicationsContainer .blueRoundButton a.button:active,
.publicationsContainer .redRoundButton a.button:active,
.publicationsContainer .standard-more-link a.button:active,
.publicationsContainer .news-and-events--landing .more-link a.button:active,
.news-and-events--landing .publicationsContainer .more-link a.button:active,
.publicationsContainer .view-more-link a.button:active,
.darkRedBackground .pager__item a:active,
.darkRedBackground .blueRoundButton a:active,
.darkRedBackground .redRoundButton a:active,
.darkRedBackground .standard-more-link a:active,
.darkRedBackground .news-and-events--landing .more-link a:active,
.news-and-events--landing .darkRedBackground .more-link a:active,
.darkRedBackground .view-more-link a:active,
.darkRedBackground .pager__item a.button:active,
.darkRedBackground .blueRoundButton a.button:active,
.darkRedBackground .redRoundButton a.button:active,
.darkRedBackground .standard-more-link a.button:active,
.darkRedBackground .news-and-events--landing .more-link a.button:active,
.news-and-events--landing .darkRedBackground .more-link a.button:active,
.darkRedBackground .view-more-link a.button:active,
.theScienceEventItem .herobannertitle a:active,
.theScienceEventItem .herobannertitle-grey a:active, .theScienceNewsItem .herobannertitle a:active, .theScienceNewsItem .herobannertitle-grey a:active,
.primaryRedBackground .herobannertitle a:active,
.primaryRedBackground .herobannertitle-grey a:active,
.hei-news .herobannertitle a:active,
.hei-news .herobannertitle-grey a:active {
  outline: #efefef dotted 3px !important;
}

/* line 4427, ../sass/_styleguide.scss */
.lightBlueBackground .herobannertitle a:focus, .lightBlueBackground .herobannertitle-grey a:focus {
  outline-offset: -3px;
}

/* line 4431, ../sass/_styleguide.scss */
.blue-hei .hei-grants a:focus,
.herobannertitle a:focus,
.herobannertitle-grey a:focus,
.herobannertitle-grey a:focus > span,
.blue-hei .hei-health-professionals .field--name-field-url a:focus,
.standard-more-link a:focus,
.news-and-events--landing .more-link a:focus,
.view-more-link a:focus, .news-and-events--landing .more-link a:focus, .view-more-link a:focus, .standard-more-link a.button:focus, .news-and-events--landing .more-link a.button:focus, .view-more-link a.button:focus, .news-and-events--landing .more-link a.button:focus, .pager__item a:focus, .blueRoundButton a:focus, .redRoundButton a:focus, .standard-more-link a:focus, .news-and-events--landing .more-link a:focus, .view-more-link a:focus, .pager__item a.button:focus, .blueRoundButton a.button:focus, .redRoundButton a.button:focus, .standard-more-link a.button:focus, .news-and-events--landing .more-link a.button:focus, .view-more-link a.button:focus {
  outline: #bf0d2e dotted 3px !important;
}

/* line 4438, ../sass/_styleguide.scss */
.blue-hei .hei-related-initiatives-wrapper a:focus a {
  outline: #102d66 dotted 3px;
  display: block;
}

/* line 4443, ../sass/_styleguide.scss */
.field--name-field-directions-link a:focus, input.button--primary:focus, input.sign-up:focus, input.subscribe:focus, .global-search-bar input:focus, .nhlbi-search-autocomplete input:focus, input.sing-up:focus, a.social-link-hei:focus, a.social-link-hei.ext:focus {
  outline: #bf0d2e dotted 3px !important;
}

/* line 4447, ../sass/_styleguide.scss */
.see-also-links ul li a:focus, .funding-area-related-resources-container ul li a:focus, .fixedPane a:focus {
  text-decoration: underline;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  /* line 4453, ../sass/_styleguide.scss */
  .general-accordion .ui-accordion-content .views-row a:focus {
    outline: #bf0d2e dotted 3px !important;
  }

  /* line 4456, ../sass/_styleguide.scss */
  a.nhlbi-social-modal:focus img {
    outline: #bf0d2e dotted 3px !important;
  }
}
/* line 4461, ../sass/_styleguide.scss */
.turquoise-hei .hei-partnering-background .field--name-field-url a:focus {
  outline: #efefef dotted 3px !important;
}

/* line 4467, ../sass/_styleguide.scss */
.pager__items .pager__item, .pager__items .blueRoundButton, .pager__items .redRoundButton, .pager__items .standard-more-link, .pager__items .news-and-events--landing .more-link, .news-and-events--landing .pager__items .more-link, .pager__items .view-more-link, .pager .pager__item, .standard-more-link .pager__item, .news-and-events--landing .more-link .pager__item, .view-more-link .pager__item, .pager .blueRoundButton, .standard-more-link .blueRoundButton, .news-and-events--landing .more-link .blueRoundButton, .view-more-link .blueRoundButton, .pager .redRoundButton, .standard-more-link .redRoundButton, .news-and-events--landing .more-link .redRoundButton, .view-more-link .redRoundButton, .pager .standard-more-link, .standard-more-link .standard-more-link, .news-and-events--landing .more-link .standard-more-link, .view-more-link .standard-more-link, .pager .news-and-events--landing .more-link, .news-and-events--landing .pager .more-link, .standard-more-link .news-and-events--landing .more-link, .news-and-events--landing .standard-more-link .more-link, .news-and-events--landing .more-link .more-link, .view-more-link .news-and-events--landing .more-link, .news-and-events--landing .view-more-link .more-link, .pager .view-more-link, .standard-more-link .view-more-link, .news-and-events--landing .more-link .view-more-link, .view-more-link .view-more-link {
  display: inline-block;
}

/* line 4477, ../sass/_styleguide.scss */
img.b-lazy {
  min-height: 1px;
}

/* line 4482, ../sass/_styleguide.scss */
.viewmorebutton {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  background-color: #1a568c;
  border: 1px solid #1a568c;
  padding: 0.8em 3em;
  display: table !important;
  background-image: none;
  color: white !important;
}
@media all and (min-width: 1440px) {
  /* line 4482, ../sass/_styleguide.scss */
  .viewmorebutton {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 4482, ../sass/_styleguide.scss */
  .viewmorebutton {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 4482, ../sass/_styleguide.scss */
  .viewmorebutton {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 4482, ../sass/_styleguide.scss */
  .viewmorebutton {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.viewmorebutton :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 4482, ../sass/_styleguide.scss */
  .viewmorebutton {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 4482, ../sass/_styleguide.scss */
  .viewmorebutton {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 4482, ../sass/_styleguide.scss */
  .viewmorebutton {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 4482, ../sass/_styleguide.scss */
  .viewmorebutton {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 4482, ../sass/_styleguide.scss */
  .viewmorebutton {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.viewmorebutton:hover {
  background-color: #102d66;
  border-color: #102d66;
  color: #fff;
  text-decoration: none;
}
/* line 2379, ../sass/_mixins.scss */
.viewmorebutton:focus, .viewmorebutton:active {
  outline: #bf0d2e dotted 3px !important;
}

/* line 4487, ../sass/_styleguide.scss */
.viewmorebutton:visited {
  color: white !important;
}

/* line 4491, ../sass/_styleguide.scss */
.viewmorebutton:hover {
  color: white !important;
  font-size: 1rem !important;
  font-weight: normal !important;
}

/* line 4497, ../sass/_styleguide.scss */
.hei-community a {
  margin: 4px;
}

@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 177, ../sass/_mixins.scss */
  .all-nhlbi-publications--landing .pager__items {
    padding: 0;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 177, ../sass/_mixins.scss */
  .all-nhlbi-publications--landing .pager__items {
    padding-left: 0;
    padding-right: 15px;
  }
}
/* line 188, ../sass/_mixins.scss */
.all-nhlbi-publications--landing .pager__items .pager__item, .all-nhlbi-publications--landing .pager__items .blueRoundButton, .all-nhlbi-publications--landing .pager__items .redRoundButton, .all-nhlbi-publications--landing .pager__items .standard-more-link, .all-nhlbi-publications--landing .pager__items .news-and-events--landing .more-link, .news-and-events--landing .all-nhlbi-publications--landing .pager__items .more-link, .all-nhlbi-publications--landing .pager__items .view-more-link, .all-nhlbi-publications--landing .pager .pager__item, .all-nhlbi-publications--landing .standard-more-link .pager__item, .all-nhlbi-publications--landing .news-and-events--landing .more-link .pager__item, .news-and-events--landing .all-nhlbi-publications--landing .more-link .pager__item, .all-nhlbi-publications--landing .view-more-link .pager__item, .all-nhlbi-publications--landing .pager .blueRoundButton, .all-nhlbi-publications--landing .standard-more-link .blueRoundButton, .all-nhlbi-publications--landing .news-and-events--landing .more-link .blueRoundButton, .news-and-events--landing .all-nhlbi-publications--landing .more-link .blueRoundButton, .all-nhlbi-publications--landing .view-more-link .blueRoundButton, .all-nhlbi-publications--landing .pager .redRoundButton, .all-nhlbi-publications--landing .standard-more-link .redRoundButton, .all-nhlbi-publications--landing .news-and-events--landing .more-link .redRoundButton, .news-and-events--landing .all-nhlbi-publications--landing .more-link .redRoundButton, .all-nhlbi-publications--landing .view-more-link .redRoundButton, .all-nhlbi-publications--landing .pager .standard-more-link, .all-nhlbi-publications--landing .standard-more-link .standard-more-link, .all-nhlbi-publications--landing .news-and-events--landing .more-link .standard-more-link, .news-and-events--landing .all-nhlbi-publications--landing .more-link .standard-more-link, .all-nhlbi-publications--landing .view-more-link .standard-more-link, .all-nhlbi-publications--landing .pager .news-and-events--landing .more-link, .news-and-events--landing .all-nhlbi-publications--landing .pager .more-link, .all-nhlbi-publications--landing .standard-more-link .news-and-events--landing .more-link, .news-and-events--landing .all-nhlbi-publications--landing .standard-more-link .more-link, .all-nhlbi-publications--landing .news-and-events--landing .more-link .more-link, .news-and-events--landing .all-nhlbi-publications--landing .more-link .more-link, .all-nhlbi-publications--landing .view-more-link .news-and-events--landing .more-link, .news-and-events--landing .all-nhlbi-publications--landing .view-more-link .more-link, .all-nhlbi-publications--landing .pager .view-more-link, .all-nhlbi-publications--landing .standard-more-link .view-more-link, .all-nhlbi-publications--landing .news-and-events--landing .more-link .view-more-link, .news-and-events--landing .all-nhlbi-publications--landing .more-link .view-more-link, .all-nhlbi-publications--landing .view-more-link .view-more-link {
  display: inline-block;
  border: 1px solid #d7d7d7;
  background-color: #fff;
  padding: 0;
  margin: 0 -.13em;
  text-align: center;
  width: auto;
  height: auto;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 188, ../sass/_mixins.scss */
  .all-nhlbi-publications--landing .pager__items .pager__item, .all-nhlbi-publications--landing .pager__items .blueRoundButton, .all-nhlbi-publications--landing .pager__items .redRoundButton, .all-nhlbi-publications--landing .pager__items .standard-more-link, .all-nhlbi-publications--landing .pager__items .news-and-events--landing .more-link, .news-and-events--landing .all-nhlbi-publications--landing .pager__items .more-link, .all-nhlbi-publications--landing .pager__items .view-more-link, .all-nhlbi-publications--landing .pager .pager__item, .all-nhlbi-publications--landing .standard-more-link .pager__item, .all-nhlbi-publications--landing .news-and-events--landing .more-link .pager__item, .news-and-events--landing .all-nhlbi-publications--landing .more-link .pager__item, .all-nhlbi-publications--landing .view-more-link .pager__item, .all-nhlbi-publications--landing .pager .blueRoundButton, .all-nhlbi-publications--landing .standard-more-link .blueRoundButton, .all-nhlbi-publications--landing .news-and-events--landing .more-link .blueRoundButton, .news-and-events--landing .all-nhlbi-publications--landing .more-link .blueRoundButton, .all-nhlbi-publications--landing .view-more-link .blueRoundButton, .all-nhlbi-publications--landing .pager .redRoundButton, .all-nhlbi-publications--landing .standard-more-link .redRoundButton, .all-nhlbi-publications--landing .news-and-events--landing .more-link .redRoundButton, .news-and-events--landing .all-nhlbi-publications--landing .more-link .redRoundButton, .all-nhlbi-publications--landing .view-more-link .redRoundButton, .all-nhlbi-publications--landing .pager .standard-more-link, .all-nhlbi-publications--landing .standard-more-link .standard-more-link, .all-nhlbi-publications--landing .news-and-events--landing .more-link .standard-more-link, .news-and-events--landing .all-nhlbi-publications--landing .more-link .standard-more-link, .all-nhlbi-publications--landing .view-more-link .standard-more-link, .all-nhlbi-publications--landing .pager .news-and-events--landing .more-link, .news-and-events--landing .all-nhlbi-publications--landing .pager .more-link, .all-nhlbi-publications--landing .standard-more-link .news-and-events--landing .more-link, .news-and-events--landing .all-nhlbi-publications--landing .standard-more-link .more-link, .all-nhlbi-publications--landing .news-and-events--landing .more-link .more-link, .news-and-events--landing .all-nhlbi-publications--landing .more-link .more-link, .all-nhlbi-publications--landing .view-more-link .news-and-events--landing .more-link, .news-and-events--landing .all-nhlbi-publications--landing .view-more-link .more-link, .all-nhlbi-publications--landing .pager .view-more-link, .all-nhlbi-publications--landing .standard-more-link .view-more-link, .all-nhlbi-publications--landing .news-and-events--landing .more-link .view-more-link, .news-and-events--landing .all-nhlbi-publications--landing .more-link .view-more-link, .all-nhlbi-publications--landing .view-more-link .view-more-link {
    width: 45px;
    height: 45px;
    display: none;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 188, ../sass/_mixins.scss */
  .all-nhlbi-publications--landing .pager__items .pager__item, .all-nhlbi-publications--landing .pager__items .blueRoundButton, .all-nhlbi-publications--landing .pager__items .redRoundButton, .all-nhlbi-publications--landing .pager__items .standard-more-link, .all-nhlbi-publications--landing .pager__items .news-and-events--landing .more-link, .news-and-events--landing .all-nhlbi-publications--landing .pager__items .more-link, .all-nhlbi-publications--landing .pager__items .view-more-link, .all-nhlbi-publications--landing .pager .pager__item, .all-nhlbi-publications--landing .standard-more-link .pager__item, .all-nhlbi-publications--landing .news-and-events--landing .more-link .pager__item, .news-and-events--landing .all-nhlbi-publications--landing .more-link .pager__item, .all-nhlbi-publications--landing .view-more-link .pager__item, .all-nhlbi-publications--landing .pager .blueRoundButton, .all-nhlbi-publications--landing .standard-more-link .blueRoundButton, .all-nhlbi-publications--landing .news-and-events--landing .more-link .blueRoundButton, .news-and-events--landing .all-nhlbi-publications--landing .more-link .blueRoundButton, .all-nhlbi-publications--landing .view-more-link .blueRoundButton, .all-nhlbi-publications--landing .pager .redRoundButton, .all-nhlbi-publications--landing .standard-more-link .redRoundButton, .all-nhlbi-publications--landing .news-and-events--landing .more-link .redRoundButton, .news-and-events--landing .all-nhlbi-publications--landing .more-link .redRoundButton, .all-nhlbi-publications--landing .view-more-link .redRoundButton, .all-nhlbi-publications--landing .pager .standard-more-link, .all-nhlbi-publications--landing .standard-more-link .standard-more-link, .all-nhlbi-publications--landing .news-and-events--landing .more-link .standard-more-link, .news-and-events--landing .all-nhlbi-publications--landing .more-link .standard-more-link, .all-nhlbi-publications--landing .view-more-link .standard-more-link, .all-nhlbi-publications--landing .pager .news-and-events--landing .more-link, .news-and-events--landing .all-nhlbi-publications--landing .pager .more-link, .all-nhlbi-publications--landing .standard-more-link .news-and-events--landing .more-link, .news-and-events--landing .all-nhlbi-publications--landing .standard-more-link .more-link, .all-nhlbi-publications--landing .news-and-events--landing .more-link .more-link, .news-and-events--landing .all-nhlbi-publications--landing .more-link .more-link, .all-nhlbi-publications--landing .view-more-link .news-and-events--landing .more-link, .news-and-events--landing .all-nhlbi-publications--landing .view-more-link .more-link, .all-nhlbi-publications--landing .pager .view-more-link, .all-nhlbi-publications--landing .standard-more-link .view-more-link, .all-nhlbi-publications--landing .news-and-events--landing .more-link .view-more-link, .news-and-events--landing .all-nhlbi-publications--landing .more-link .view-more-link, .all-nhlbi-publications--landing .view-more-link .view-more-link {
    display: none;
  }
}
/* line 207, ../sass/_mixins.scss */
.all-nhlbi-publications--landing .pager__items .pager__item a, .all-nhlbi-publications--landing .pager__items .blueRoundButton a, .all-nhlbi-publications--landing .pager__items .redRoundButton a, .all-nhlbi-publications--landing .pager__items .standard-more-link a, .all-nhlbi-publications--landing .pager__items .news-and-events--landing .more-link a, .news-and-events--landing .all-nhlbi-publications--landing .pager__items .more-link a, .all-nhlbi-publications--landing .pager__items .view-more-link a, .all-nhlbi-publications--landing .pager .pager__item a, .all-nhlbi-publications--landing .standard-more-link .pager__item a, .all-nhlbi-publications--landing .news-and-events--landing .more-link .pager__item a, .news-and-events--landing .all-nhlbi-publications--landing .more-link .pager__item a, .all-nhlbi-publications--landing .view-more-link .pager__item a, .all-nhlbi-publications--landing .pager .blueRoundButton a, .all-nhlbi-publications--landing .standard-more-link .blueRoundButton a, .all-nhlbi-publications--landing .news-and-events--landing .more-link .blueRoundButton a, .news-and-events--landing .all-nhlbi-publications--landing .more-link .blueRoundButton a, .all-nhlbi-publications--landing .view-more-link .blueRoundButton a, .all-nhlbi-publications--landing .pager .redRoundButton a, .all-nhlbi-publications--landing .standard-more-link .redRoundButton a, .all-nhlbi-publications--landing .news-and-events--landing .more-link .redRoundButton a, .news-and-events--landing .all-nhlbi-publications--landing .more-link .redRoundButton a, .all-nhlbi-publications--landing .view-more-link .redRoundButton a, .all-nhlbi-publications--landing .pager .standard-more-link a, .all-nhlbi-publications--landing .standard-more-link .standard-more-link a, .all-nhlbi-publications--landing .news-and-events--landing .more-link .standard-more-link a, .news-and-events--landing .all-nhlbi-publications--landing .more-link .standard-more-link a, .all-nhlbi-publications--landing .view-more-link .standard-more-link a, .all-nhlbi-publications--landing .pager .news-and-events--landing .more-link a, .news-and-events--landing .all-nhlbi-publications--landing .pager .more-link a, .all-nhlbi-publications--landing .standard-more-link .news-and-events--landing .more-link a, .news-and-events--landing .all-nhlbi-publications--landing .standard-more-link .more-link a, .all-nhlbi-publications--landing .news-and-events--landing .more-link .more-link a, .news-and-events--landing .all-nhlbi-publications--landing .more-link .more-link a, .all-nhlbi-publications--landing .view-more-link .news-and-events--landing .more-link a, .news-and-events--landing .all-nhlbi-publications--landing .view-more-link .more-link a, .all-nhlbi-publications--landing .pager .view-more-link a, .all-nhlbi-publications--landing .standard-more-link .view-more-link a, .all-nhlbi-publications--landing .news-and-events--landing .more-link .view-more-link a, .news-and-events--landing .all-nhlbi-publications--landing .more-link .view-more-link a, .all-nhlbi-publications--landing .view-more-link .view-more-link a {
  display: block;
  padding: 1em 1.5em;
  color: #222;
  text-decoration: none;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 207, ../sass/_mixins.scss */
  .all-nhlbi-publications--landing .pager__items .pager__item a, .all-nhlbi-publications--landing .pager__items .blueRoundButton a, .all-nhlbi-publications--landing .pager__items .redRoundButton a, .all-nhlbi-publications--landing .pager__items .standard-more-link a, .all-nhlbi-publications--landing .pager__items .news-and-events--landing .more-link a, .news-and-events--landing .all-nhlbi-publications--landing .pager__items .more-link a, .all-nhlbi-publications--landing .pager__items .view-more-link a, .all-nhlbi-publications--landing .pager .pager__item a, .all-nhlbi-publications--landing .standard-more-link .pager__item a, .all-nhlbi-publications--landing .news-and-events--landing .more-link .pager__item a, .news-and-events--landing .all-nhlbi-publications--landing .more-link .pager__item a, .all-nhlbi-publications--landing .view-more-link .pager__item a, .all-nhlbi-publications--landing .pager .blueRoundButton a, .all-nhlbi-publications--landing .standard-more-link .blueRoundButton a, .all-nhlbi-publications--landing .news-and-events--landing .more-link .blueRoundButton a, .news-and-events--landing .all-nhlbi-publications--landing .more-link .blueRoundButton a, .all-nhlbi-publications--landing .view-more-link .blueRoundButton a, .all-nhlbi-publications--landing .pager .redRoundButton a, .all-nhlbi-publications--landing .standard-more-link .redRoundButton a, .all-nhlbi-publications--landing .news-and-events--landing .more-link .redRoundButton a, .news-and-events--landing .all-nhlbi-publications--landing .more-link .redRoundButton a, .all-nhlbi-publications--landing .view-more-link .redRoundButton a, .all-nhlbi-publications--landing .pager .standard-more-link a, .all-nhlbi-publications--landing .standard-more-link .standard-more-link a, .all-nhlbi-publications--landing .news-and-events--landing .more-link .standard-more-link a, .news-and-events--landing .all-nhlbi-publications--landing .more-link .standard-more-link a, .all-nhlbi-publications--landing .view-more-link .standard-more-link a, .all-nhlbi-publications--landing .pager .news-and-events--landing .more-link a, .news-and-events--landing .all-nhlbi-publications--landing .pager .more-link a, .all-nhlbi-publications--landing .standard-more-link .news-and-events--landing .more-link a, .news-and-events--landing .all-nhlbi-publications--landing .standard-more-link .more-link a, .all-nhlbi-publications--landing .news-and-events--landing .more-link .more-link a, .news-and-events--landing .all-nhlbi-publications--landing .more-link .more-link a, .all-nhlbi-publications--landing .view-more-link .news-and-events--landing .more-link a, .news-and-events--landing .all-nhlbi-publications--landing .view-more-link .more-link a, .all-nhlbi-publications--landing .pager .view-more-link a, .all-nhlbi-publications--landing .standard-more-link .view-more-link a, .all-nhlbi-publications--landing .news-and-events--landing .more-link .view-more-link a, .news-and-events--landing .all-nhlbi-publications--landing .more-link .view-more-link a, .all-nhlbi-publications--landing .view-more-link .view-more-link a {
    padding: 0.6em 0.5em;
  }
}
/* line 217, ../sass/_mixins.scss */
.all-nhlbi-publications--landing .pager__items .pager__item a:focus, .all-nhlbi-publications--landing .pager__items .blueRoundButton a:focus, .all-nhlbi-publications--landing .pager__items .redRoundButton a:focus, .all-nhlbi-publications--landing .pager__items .standard-more-link a:focus, .all-nhlbi-publications--landing .pager__items .news-and-events--landing .more-link a:focus, .news-and-events--landing .all-nhlbi-publications--landing .pager__items .more-link a:focus, .all-nhlbi-publications--landing .pager__items .view-more-link a:focus, .all-nhlbi-publications--landing .pager__items .pager__item a:active, .all-nhlbi-publications--landing .pager__items .blueRoundButton a:active, .all-nhlbi-publications--landing .pager__items .redRoundButton a:active, .all-nhlbi-publications--landing .pager__items .standard-more-link a:active, .all-nhlbi-publications--landing .pager__items .news-and-events--landing .more-link a:active, .news-and-events--landing .all-nhlbi-publications--landing .pager__items .more-link a:active, .all-nhlbi-publications--landing .pager__items .view-more-link a:active, .all-nhlbi-publications--landing .pager .pager__item a:focus, .all-nhlbi-publications--landing .standard-more-link .pager__item a:focus, .all-nhlbi-publications--landing .news-and-events--landing .more-link .pager__item a:focus, .news-and-events--landing .all-nhlbi-publications--landing .more-link .pager__item a:focus, .all-nhlbi-publications--landing .view-more-link .pager__item a:focus, .all-nhlbi-publications--landing .pager .blueRoundButton a:focus, .all-nhlbi-publications--landing .standard-more-link .blueRoundButton a:focus, .all-nhlbi-publications--landing .news-and-events--landing .more-link .blueRoundButton a:focus, .news-and-events--landing .all-nhlbi-publications--landing .more-link .blueRoundButton a:focus, .all-nhlbi-publications--landing .view-more-link .blueRoundButton a:focus, .all-nhlbi-publications--landing .pager .redRoundButton a:focus, .all-nhlbi-publications--landing .standard-more-link .redRoundButton a:focus, .all-nhlbi-publications--landing .news-and-events--landing .more-link .redRoundButton a:focus, .news-and-events--landing .all-nhlbi-publications--landing .more-link .redRoundButton a:focus, .all-nhlbi-publications--landing .view-more-link .redRoundButton a:focus, .all-nhlbi-publications--landing .pager .standard-more-link a:focus, .all-nhlbi-publications--landing .standard-more-link .standard-more-link a:focus, .all-nhlbi-publications--landing .news-and-events--landing .more-link .standard-more-link a:focus, .news-and-events--landing .all-nhlbi-publications--landing .more-link .standard-more-link a:focus, .all-nhlbi-publications--landing .view-more-link .standard-more-link a:focus, .all-nhlbi-publications--landing .pager .news-and-events--landing .more-link a:focus, .news-and-events--landing .all-nhlbi-publications--landing .pager .more-link a:focus, .all-nhlbi-publications--landing .standard-more-link .news-and-events--landing .more-link a:focus, .news-and-events--landing .all-nhlbi-publications--landing .standard-more-link .more-link a:focus, .all-nhlbi-publications--landing .news-and-events--landing .more-link .more-link a:focus, .news-and-events--landing .all-nhlbi-publications--landing .more-link .more-link a:focus, .all-nhlbi-publications--landing .view-more-link .news-and-events--landing .more-link a:focus, .news-and-events--landing .all-nhlbi-publications--landing .view-more-link .more-link a:focus, .all-nhlbi-publications--landing .pager .view-more-link a:focus, .all-nhlbi-publications--landing .standard-more-link .view-more-link a:focus, .all-nhlbi-publications--landing .news-and-events--landing .more-link .view-more-link a:focus, .news-and-events--landing .all-nhlbi-publications--landing .more-link .view-more-link a:focus, .all-nhlbi-publications--landing .view-more-link .view-more-link a:focus, .all-nhlbi-publications--landing .pager .pager__item a:active, .all-nhlbi-publications--landing .standard-more-link .pager__item a:active, .all-nhlbi-publications--landing .news-and-events--landing .more-link .pager__item a:active, .news-and-events--landing .all-nhlbi-publications--landing .more-link .pager__item a:active, .all-nhlbi-publications--landing .view-more-link .pager__item a:active, .all-nhlbi-publications--landing .pager .blueRoundButton a:active, .all-nhlbi-publications--landing .standard-more-link .blueRoundButton a:active, .all-nhlbi-publications--landing .news-and-events--landing .more-link .blueRoundButton a:active, .news-and-events--landing .all-nhlbi-publications--landing .more-link .blueRoundButton a:active, .all-nhlbi-publications--landing .view-more-link .blueRoundButton a:active, .all-nhlbi-publications--landing .pager .redRoundButton a:active, .all-nhlbi-publications--landing .standard-more-link .redRoundButton a:active, .all-nhlbi-publications--landing .news-and-events--landing .more-link .redRoundButton a:active, .news-and-events--landing .all-nhlbi-publications--landing .more-link .redRoundButton a:active, .all-nhlbi-publications--landing .view-more-link .redRoundButton a:active, .all-nhlbi-publications--landing .pager .standard-more-link a:active, .all-nhlbi-publications--landing .standard-more-link .standard-more-link a:active, .all-nhlbi-publications--landing .news-and-events--landing .more-link .standard-more-link a:active, .news-and-events--landing .all-nhlbi-publications--landing .more-link .standard-more-link a:active, .all-nhlbi-publications--landing .view-more-link .standard-more-link a:active, .all-nhlbi-publications--landing .pager .news-and-events--landing .more-link a:active, .news-and-events--landing .all-nhlbi-publications--landing .pager .more-link a:active, .all-nhlbi-publications--landing .standard-more-link .news-and-events--landing .more-link a:active, .news-and-events--landing .all-nhlbi-publications--landing .standard-more-link .more-link a:active, .all-nhlbi-publications--landing .news-and-events--landing .more-link .more-link a:active, .news-and-events--landing .all-nhlbi-publications--landing .more-link .more-link a:active, .all-nhlbi-publications--landing .view-more-link .news-and-events--landing .more-link a:active, .news-and-events--landing .all-nhlbi-publications--landing .view-more-link .more-link a:active, .all-nhlbi-publications--landing .pager .view-more-link a:active, .all-nhlbi-publications--landing .standard-more-link .view-more-link a:active, .all-nhlbi-publications--landing .news-and-events--landing .more-link .view-more-link a:active, .news-and-events--landing .all-nhlbi-publications--landing .more-link .view-more-link a:active, .all-nhlbi-publications--landing .view-more-link .view-more-link a:active {
  position: relative;
  z-index: 1;
}
/* line 222, ../sass/_mixins.scss */
.all-nhlbi-publications--landing .pager__items .pager__item--first, .all-nhlbi-publications--landing .pager__items .pager__item--previous, .all-nhlbi-publications--landing .pager__items .pager__item--next, .all-nhlbi-publications--landing .pager__items .pager__item--last, .all-nhlbi-publications--landing .pager .pager__item--first, .all-nhlbi-publications--landing .standard-more-link .pager__item--first, .all-nhlbi-publications--landing .news-and-events--landing .more-link .pager__item--first, .news-and-events--landing .all-nhlbi-publications--landing .more-link .pager__item--first, .all-nhlbi-publications--landing .view-more-link .pager__item--first, .all-nhlbi-publications--landing .pager .pager__item--previous, .all-nhlbi-publications--landing .standard-more-link .pager__item--previous, .all-nhlbi-publications--landing .news-and-events--landing .more-link .pager__item--previous, .news-and-events--landing .all-nhlbi-publications--landing .more-link .pager__item--previous, .all-nhlbi-publications--landing .view-more-link .pager__item--previous, .all-nhlbi-publications--landing .pager .pager__item--next, .all-nhlbi-publications--landing .standard-more-link .pager__item--next, .all-nhlbi-publications--landing .news-and-events--landing .more-link .pager__item--next, .news-and-events--landing .all-nhlbi-publications--landing .more-link .pager__item--next, .all-nhlbi-publications--landing .view-more-link .pager__item--next, .all-nhlbi-publications--landing .pager .pager__item--last, .all-nhlbi-publications--landing .standard-more-link .pager__item--last, .all-nhlbi-publications--landing .news-and-events--landing .more-link .pager__item--last, .news-and-events--landing .all-nhlbi-publications--landing .more-link .pager__item--last, .all-nhlbi-publications--landing .view-more-link .pager__item--last {
  border: 1px solid #d7d7d7;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 222, ../sass/_mixins.scss */
  .all-nhlbi-publications--landing .pager__items .pager__item--first, .all-nhlbi-publications--landing .pager__items .pager__item--previous, .all-nhlbi-publications--landing .pager__items .pager__item--next, .all-nhlbi-publications--landing .pager__items .pager__item--last, .all-nhlbi-publications--landing .pager .pager__item--first, .all-nhlbi-publications--landing .standard-more-link .pager__item--first, .all-nhlbi-publications--landing .news-and-events--landing .more-link .pager__item--first, .news-and-events--landing .all-nhlbi-publications--landing .more-link .pager__item--first, .all-nhlbi-publications--landing .view-more-link .pager__item--first, .all-nhlbi-publications--landing .pager .pager__item--previous, .all-nhlbi-publications--landing .standard-more-link .pager__item--previous, .all-nhlbi-publications--landing .news-and-events--landing .more-link .pager__item--previous, .news-and-events--landing .all-nhlbi-publications--landing .more-link .pager__item--previous, .all-nhlbi-publications--landing .view-more-link .pager__item--previous, .all-nhlbi-publications--landing .pager .pager__item--next, .all-nhlbi-publications--landing .standard-more-link .pager__item--next, .all-nhlbi-publications--landing .news-and-events--landing .more-link .pager__item--next, .news-and-events--landing .all-nhlbi-publications--landing .more-link .pager__item--next, .all-nhlbi-publications--landing .view-more-link .pager__item--next, .all-nhlbi-publications--landing .pager .pager__item--last, .all-nhlbi-publications--landing .standard-more-link .pager__item--last, .all-nhlbi-publications--landing .news-and-events--landing .more-link .pager__item--last, .news-and-events--landing .all-nhlbi-publications--landing .more-link .pager__item--last, .all-nhlbi-publications--landing .view-more-link .pager__item--last {
    display: inline-block;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 222, ../sass/_mixins.scss */
  .all-nhlbi-publications--landing .pager__items .pager__item--first, .all-nhlbi-publications--landing .pager__items .pager__item--previous, .all-nhlbi-publications--landing .pager__items .pager__item--next, .all-nhlbi-publications--landing .pager__items .pager__item--last, .all-nhlbi-publications--landing .pager .pager__item--first, .all-nhlbi-publications--landing .standard-more-link .pager__item--first, .all-nhlbi-publications--landing .news-and-events--landing .more-link .pager__item--first, .news-and-events--landing .all-nhlbi-publications--landing .more-link .pager__item--first, .all-nhlbi-publications--landing .view-more-link .pager__item--first, .all-nhlbi-publications--landing .pager .pager__item--previous, .all-nhlbi-publications--landing .standard-more-link .pager__item--previous, .all-nhlbi-publications--landing .news-and-events--landing .more-link .pager__item--previous, .news-and-events--landing .all-nhlbi-publications--landing .more-link .pager__item--previous, .all-nhlbi-publications--landing .view-more-link .pager__item--previous, .all-nhlbi-publications--landing .pager .pager__item--next, .all-nhlbi-publications--landing .standard-more-link .pager__item--next, .all-nhlbi-publications--landing .news-and-events--landing .more-link .pager__item--next, .news-and-events--landing .all-nhlbi-publications--landing .more-link .pager__item--next, .all-nhlbi-publications--landing .view-more-link .pager__item--next, .all-nhlbi-publications--landing .pager .pager__item--last, .all-nhlbi-publications--landing .standard-more-link .pager__item--last, .all-nhlbi-publications--landing .news-and-events--landing .more-link .pager__item--last, .news-and-events--landing .all-nhlbi-publications--landing .more-link .pager__item--last, .all-nhlbi-publications--landing .view-more-link .pager__item--last {
    display: inline-block;
  }
}
/* line 231, ../sass/_mixins.scss */
.all-nhlbi-publications--landing .pager__items .pager__item--first, .all-nhlbi-publications--landing .pager__items .pager__item--last, .all-nhlbi-publications--landing .pager .pager__item--first, .all-nhlbi-publications--landing .standard-more-link .pager__item--first, .all-nhlbi-publications--landing .news-and-events--landing .more-link .pager__item--first, .news-and-events--landing .all-nhlbi-publications--landing .more-link .pager__item--first, .all-nhlbi-publications--landing .view-more-link .pager__item--first, .all-nhlbi-publications--landing .pager .pager__item--last, .all-nhlbi-publications--landing .standard-more-link .pager__item--last, .all-nhlbi-publications--landing .news-and-events--landing .more-link .pager__item--last, .news-and-events--landing .all-nhlbi-publications--landing .more-link .pager__item--last, .all-nhlbi-publications--landing .view-more-link .pager__item--last {
  margin: 0 -.14em;
}
/* line 234, ../sass/_mixins.scss */
.all-nhlbi-publications--landing .pager__items .pager__item--ellipsis, .all-nhlbi-publications--landing .pager .pager__item--ellipsis, .all-nhlbi-publications--landing .standard-more-link .pager__item--ellipsis, .all-nhlbi-publications--landing .news-and-events--landing .more-link .pager__item--ellipsis, .news-and-events--landing .all-nhlbi-publications--landing .more-link .pager__item--ellipsis, .all-nhlbi-publications--landing .view-more-link .pager__item--ellipsis {
  display: none;
}
/* line 239, ../sass/_mixins.scss */
.all-nhlbi-publications--landing .pager__items .pager__item:hover, .all-nhlbi-publications--landing .pager__items .blueRoundButton:hover, .all-nhlbi-publications--landing .pager__items .redRoundButton:hover, .all-nhlbi-publications--landing .pager__items .standard-more-link:hover, .all-nhlbi-publications--landing .pager__items .news-and-events--landing .more-link:hover, .news-and-events--landing .all-nhlbi-publications--landing .pager__items .more-link:hover, .all-nhlbi-publications--landing .pager__items .view-more-link:hover, .all-nhlbi-publications--landing .pager .pager__item:hover, .all-nhlbi-publications--landing .standard-more-link .pager__item:hover, .all-nhlbi-publications--landing .news-and-events--landing .more-link .pager__item:hover, .news-and-events--landing .all-nhlbi-publications--landing .more-link .pager__item:hover, .all-nhlbi-publications--landing .view-more-link .pager__item:hover, .all-nhlbi-publications--landing .pager .blueRoundButton:hover, .all-nhlbi-publications--landing .standard-more-link .blueRoundButton:hover, .all-nhlbi-publications--landing .news-and-events--landing .more-link .blueRoundButton:hover, .news-and-events--landing .all-nhlbi-publications--landing .more-link .blueRoundButton:hover, .all-nhlbi-publications--landing .view-more-link .blueRoundButton:hover, .all-nhlbi-publications--landing .pager .redRoundButton:hover, .all-nhlbi-publications--landing .standard-more-link .redRoundButton:hover, .all-nhlbi-publications--landing .news-and-events--landing .more-link .redRoundButton:hover, .news-and-events--landing .all-nhlbi-publications--landing .more-link .redRoundButton:hover, .all-nhlbi-publications--landing .view-more-link .redRoundButton:hover, .all-nhlbi-publications--landing .pager .standard-more-link:hover, .all-nhlbi-publications--landing .standard-more-link .standard-more-link:hover, .all-nhlbi-publications--landing .news-and-events--landing .more-link .standard-more-link:hover, .news-and-events--landing .all-nhlbi-publications--landing .more-link .standard-more-link:hover, .all-nhlbi-publications--landing .view-more-link .standard-more-link:hover, .all-nhlbi-publications--landing .pager .news-and-events--landing .more-link:hover, .news-and-events--landing .all-nhlbi-publications--landing .pager .more-link:hover, .all-nhlbi-publications--landing .standard-more-link .news-and-events--landing .more-link:hover, .news-and-events--landing .all-nhlbi-publications--landing .standard-more-link .more-link:hover, .all-nhlbi-publications--landing .news-and-events--landing .more-link .more-link:hover, .news-and-events--landing .all-nhlbi-publications--landing .more-link .more-link:hover, .all-nhlbi-publications--landing .view-more-link .news-and-events--landing .more-link:hover, .news-and-events--landing .all-nhlbi-publications--landing .view-more-link .more-link:hover, .all-nhlbi-publications--landing .pager .view-more-link:hover, .all-nhlbi-publications--landing .standard-more-link .view-more-link:hover, .all-nhlbi-publications--landing .news-and-events--landing .more-link .view-more-link:hover, .news-and-events--landing .all-nhlbi-publications--landing .more-link .view-more-link:hover, .all-nhlbi-publications--landing .view-more-link .view-more-link:hover {
  background-color: #1a568c;
  color: #fff;
}
/* line 242, ../sass/_mixins.scss */
.all-nhlbi-publications--landing .pager__items .pager__item:hover a, .all-nhlbi-publications--landing .pager__items .blueRoundButton:hover a, .all-nhlbi-publications--landing .pager__items .redRoundButton:hover a, .all-nhlbi-publications--landing .pager__items .standard-more-link:hover a, .all-nhlbi-publications--landing .pager__items .news-and-events--landing .more-link:hover a, .news-and-events--landing .all-nhlbi-publications--landing .pager__items .more-link:hover a, .all-nhlbi-publications--landing .pager__items .view-more-link:hover a, .all-nhlbi-publications--landing .pager .pager__item:hover a, .all-nhlbi-publications--landing .standard-more-link .pager__item:hover a, .all-nhlbi-publications--landing .news-and-events--landing .more-link .pager__item:hover a, .news-and-events--landing .all-nhlbi-publications--landing .more-link .pager__item:hover a, .all-nhlbi-publications--landing .view-more-link .pager__item:hover a, .all-nhlbi-publications--landing .pager .blueRoundButton:hover a, .all-nhlbi-publications--landing .standard-more-link .blueRoundButton:hover a, .all-nhlbi-publications--landing .news-and-events--landing .more-link .blueRoundButton:hover a, .news-and-events--landing .all-nhlbi-publications--landing .more-link .blueRoundButton:hover a, .all-nhlbi-publications--landing .view-more-link .blueRoundButton:hover a, .all-nhlbi-publications--landing .pager .redRoundButton:hover a, .all-nhlbi-publications--landing .standard-more-link .redRoundButton:hover a, .all-nhlbi-publications--landing .news-and-events--landing .more-link .redRoundButton:hover a, .news-and-events--landing .all-nhlbi-publications--landing .more-link .redRoundButton:hover a, .all-nhlbi-publications--landing .view-more-link .redRoundButton:hover a, .all-nhlbi-publications--landing .pager .standard-more-link:hover a, .all-nhlbi-publications--landing .standard-more-link .standard-more-link:hover a, .all-nhlbi-publications--landing .news-and-events--landing .more-link .standard-more-link:hover a, .news-and-events--landing .all-nhlbi-publications--landing .more-link .standard-more-link:hover a, .all-nhlbi-publications--landing .view-more-link .standard-more-link:hover a, .all-nhlbi-publications--landing .pager .news-and-events--landing .more-link:hover a, .news-and-events--landing .all-nhlbi-publications--landing .pager .more-link:hover a, .all-nhlbi-publications--landing .standard-more-link .news-and-events--landing .more-link:hover a, .news-and-events--landing .all-nhlbi-publications--landing .standard-more-link .more-link:hover a, .all-nhlbi-publications--landing .news-and-events--landing .more-link .more-link:hover a, .news-and-events--landing .all-nhlbi-publications--landing .more-link .more-link:hover a, .all-nhlbi-publications--landing .view-more-link .news-and-events--landing .more-link:hover a, .news-and-events--landing .all-nhlbi-publications--landing .view-more-link .more-link:hover a, .all-nhlbi-publications--landing .pager .view-more-link:hover a, .all-nhlbi-publications--landing .standard-more-link .view-more-link:hover a, .all-nhlbi-publications--landing .news-and-events--landing .more-link .view-more-link:hover a, .news-and-events--landing .all-nhlbi-publications--landing .more-link .view-more-link:hover a, .all-nhlbi-publications--landing .view-more-link .view-more-link:hover a {
  color: #fff;
}
/* line 246, ../sass/_mixins.scss */
.all-nhlbi-publications--landing .pager__items .pager__item.is-active, .all-nhlbi-publications--landing .pager__items .is-active.blueRoundButton, .all-nhlbi-publications--landing .pager__items .is-active.redRoundButton, .all-nhlbi-publications--landing .pager__items .is-active.standard-more-link, .all-nhlbi-publications--landing .pager__items .news-and-events--landing .is-active.more-link, .news-and-events--landing .all-nhlbi-publications--landing .pager__items .is-active.more-link, .all-nhlbi-publications--landing .pager__items .is-active.view-more-link, .all-nhlbi-publications--landing .pager .pager__item.is-active, .all-nhlbi-publications--landing .standard-more-link .pager__item.is-active, .all-nhlbi-publications--landing .news-and-events--landing .more-link .pager__item.is-active, .news-and-events--landing .all-nhlbi-publications--landing .more-link .pager__item.is-active, .all-nhlbi-publications--landing .view-more-link .pager__item.is-active, .all-nhlbi-publications--landing .pager .is-active.blueRoundButton, .all-nhlbi-publications--landing .standard-more-link .is-active.blueRoundButton, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.blueRoundButton, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.blueRoundButton, .all-nhlbi-publications--landing .view-more-link .is-active.blueRoundButton, .all-nhlbi-publications--landing .pager .is-active.redRoundButton, .all-nhlbi-publications--landing .standard-more-link .is-active.redRoundButton, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.redRoundButton, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.redRoundButton, .all-nhlbi-publications--landing .view-more-link .is-active.redRoundButton, .all-nhlbi-publications--landing .pager .is-active.standard-more-link, .all-nhlbi-publications--landing .standard-more-link .is-active.standard-more-link, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.standard-more-link, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.standard-more-link, .all-nhlbi-publications--landing .view-more-link .is-active.standard-more-link, .all-nhlbi-publications--landing .pager .news-and-events--landing .is-active.more-link, .news-and-events--landing .all-nhlbi-publications--landing .pager .is-active.more-link, .all-nhlbi-publications--landing .standard-more-link .news-and-events--landing .is-active.more-link, .news-and-events--landing .all-nhlbi-publications--landing .standard-more-link .is-active.more-link, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.more-link, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.more-link, .all-nhlbi-publications--landing .view-more-link .news-and-events--landing .is-active.more-link, .news-and-events--landing .all-nhlbi-publications--landing .view-more-link .is-active.more-link, .all-nhlbi-publications--landing .pager .is-active.view-more-link, .all-nhlbi-publications--landing .standard-more-link .is-active.view-more-link, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.view-more-link, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.view-more-link, .all-nhlbi-publications--landing .view-more-link .is-active.view-more-link {
  background-color: #1a568c;
}
/* line 248, ../sass/_mixins.scss */
.all-nhlbi-publications--landing .pager__items .pager__item.is-active a, .all-nhlbi-publications--landing .pager__items .is-active.blueRoundButton a, .all-nhlbi-publications--landing .pager__items .is-active.redRoundButton a, .all-nhlbi-publications--landing .pager__items .is-active.standard-more-link a, .all-nhlbi-publications--landing .pager__items .news-and-events--landing .is-active.more-link a, .news-and-events--landing .all-nhlbi-publications--landing .pager__items .is-active.more-link a, .all-nhlbi-publications--landing .pager__items .is-active.view-more-link a, .all-nhlbi-publications--landing .pager .pager__item.is-active a, .all-nhlbi-publications--landing .standard-more-link .pager__item.is-active a, .all-nhlbi-publications--landing .news-and-events--landing .more-link .pager__item.is-active a, .news-and-events--landing .all-nhlbi-publications--landing .more-link .pager__item.is-active a, .all-nhlbi-publications--landing .view-more-link .pager__item.is-active a, .all-nhlbi-publications--landing .pager .is-active.blueRoundButton a, .all-nhlbi-publications--landing .standard-more-link .is-active.blueRoundButton a, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.blueRoundButton a, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.blueRoundButton a, .all-nhlbi-publications--landing .view-more-link .is-active.blueRoundButton a, .all-nhlbi-publications--landing .pager .is-active.redRoundButton a, .all-nhlbi-publications--landing .standard-more-link .is-active.redRoundButton a, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.redRoundButton a, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.redRoundButton a, .all-nhlbi-publications--landing .view-more-link .is-active.redRoundButton a, .all-nhlbi-publications--landing .pager .is-active.standard-more-link a, .all-nhlbi-publications--landing .standard-more-link .is-active.standard-more-link a, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.standard-more-link a, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.standard-more-link a, .all-nhlbi-publications--landing .view-more-link .is-active.standard-more-link a, .all-nhlbi-publications--landing .pager .news-and-events--landing .is-active.more-link a, .news-and-events--landing .all-nhlbi-publications--landing .pager .is-active.more-link a, .all-nhlbi-publications--landing .standard-more-link .news-and-events--landing .is-active.more-link a, .news-and-events--landing .all-nhlbi-publications--landing .standard-more-link .is-active.more-link a, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.more-link a, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.more-link a, .all-nhlbi-publications--landing .view-more-link .news-and-events--landing .is-active.more-link a, .news-and-events--landing .all-nhlbi-publications--landing .view-more-link .is-active.more-link a, .all-nhlbi-publications--landing .pager .is-active.view-more-link a, .all-nhlbi-publications--landing .standard-more-link .is-active.view-more-link a, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.view-more-link a, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.view-more-link a, .all-nhlbi-publications--landing .view-more-link .is-active.view-more-link a {
  color: #fff;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 246, ../sass/_mixins.scss */
  .all-nhlbi-publications--landing .pager__items .pager__item.is-active, .all-nhlbi-publications--landing .pager__items .is-active.blueRoundButton, .all-nhlbi-publications--landing .pager__items .is-active.redRoundButton, .all-nhlbi-publications--landing .pager__items .is-active.standard-more-link, .all-nhlbi-publications--landing .pager__items .news-and-events--landing .is-active.more-link, .news-and-events--landing .all-nhlbi-publications--landing .pager__items .is-active.more-link, .all-nhlbi-publications--landing .pager__items .is-active.view-more-link, .all-nhlbi-publications--landing .pager .pager__item.is-active, .all-nhlbi-publications--landing .standard-more-link .pager__item.is-active, .all-nhlbi-publications--landing .news-and-events--landing .more-link .pager__item.is-active, .news-and-events--landing .all-nhlbi-publications--landing .more-link .pager__item.is-active, .all-nhlbi-publications--landing .view-more-link .pager__item.is-active, .all-nhlbi-publications--landing .pager .is-active.blueRoundButton, .all-nhlbi-publications--landing .standard-more-link .is-active.blueRoundButton, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.blueRoundButton, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.blueRoundButton, .all-nhlbi-publications--landing .view-more-link .is-active.blueRoundButton, .all-nhlbi-publications--landing .pager .is-active.redRoundButton, .all-nhlbi-publications--landing .standard-more-link .is-active.redRoundButton, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.redRoundButton, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.redRoundButton, .all-nhlbi-publications--landing .view-more-link .is-active.redRoundButton, .all-nhlbi-publications--landing .pager .is-active.standard-more-link, .all-nhlbi-publications--landing .standard-more-link .is-active.standard-more-link, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.standard-more-link, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.standard-more-link, .all-nhlbi-publications--landing .view-more-link .is-active.standard-more-link, .all-nhlbi-publications--landing .pager .news-and-events--landing .is-active.more-link, .news-and-events--landing .all-nhlbi-publications--landing .pager .is-active.more-link, .all-nhlbi-publications--landing .standard-more-link .news-and-events--landing .is-active.more-link, .news-and-events--landing .all-nhlbi-publications--landing .standard-more-link .is-active.more-link, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.more-link, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.more-link, .all-nhlbi-publications--landing .view-more-link .news-and-events--landing .is-active.more-link, .news-and-events--landing .all-nhlbi-publications--landing .view-more-link .is-active.more-link, .all-nhlbi-publications--landing .pager .is-active.view-more-link, .all-nhlbi-publications--landing .standard-more-link .is-active.view-more-link, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.view-more-link, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.view-more-link, .all-nhlbi-publications--landing .view-more-link .is-active.view-more-link {
    display: inline-block;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 246, ../sass/_mixins.scss */
  .all-nhlbi-publications--landing .pager__items .pager__item.is-active, .all-nhlbi-publications--landing .pager__items .is-active.blueRoundButton, .all-nhlbi-publications--landing .pager__items .is-active.redRoundButton, .all-nhlbi-publications--landing .pager__items .is-active.standard-more-link, .all-nhlbi-publications--landing .pager__items .news-and-events--landing .is-active.more-link, .news-and-events--landing .all-nhlbi-publications--landing .pager__items .is-active.more-link, .all-nhlbi-publications--landing .pager__items .is-active.view-more-link, .all-nhlbi-publications--landing .pager .pager__item.is-active, .all-nhlbi-publications--landing .standard-more-link .pager__item.is-active, .all-nhlbi-publications--landing .news-and-events--landing .more-link .pager__item.is-active, .news-and-events--landing .all-nhlbi-publications--landing .more-link .pager__item.is-active, .all-nhlbi-publications--landing .view-more-link .pager__item.is-active, .all-nhlbi-publications--landing .pager .is-active.blueRoundButton, .all-nhlbi-publications--landing .standard-more-link .is-active.blueRoundButton, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.blueRoundButton, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.blueRoundButton, .all-nhlbi-publications--landing .view-more-link .is-active.blueRoundButton, .all-nhlbi-publications--landing .pager .is-active.redRoundButton, .all-nhlbi-publications--landing .standard-more-link .is-active.redRoundButton, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.redRoundButton, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.redRoundButton, .all-nhlbi-publications--landing .view-more-link .is-active.redRoundButton, .all-nhlbi-publications--landing .pager .is-active.standard-more-link, .all-nhlbi-publications--landing .standard-more-link .is-active.standard-more-link, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.standard-more-link, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.standard-more-link, .all-nhlbi-publications--landing .view-more-link .is-active.standard-more-link, .all-nhlbi-publications--landing .pager .news-and-events--landing .is-active.more-link, .news-and-events--landing .all-nhlbi-publications--landing .pager .is-active.more-link, .all-nhlbi-publications--landing .standard-more-link .news-and-events--landing .is-active.more-link, .news-and-events--landing .all-nhlbi-publications--landing .standard-more-link .is-active.more-link, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.more-link, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.more-link, .all-nhlbi-publications--landing .view-more-link .news-and-events--landing .is-active.more-link, .news-and-events--landing .all-nhlbi-publications--landing .view-more-link .is-active.more-link, .all-nhlbi-publications--landing .pager .is-active.view-more-link, .all-nhlbi-publications--landing .standard-more-link .is-active.view-more-link, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.view-more-link, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.view-more-link, .all-nhlbi-publications--landing .view-more-link .is-active.view-more-link {
    display: inline-block;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 258, ../sass/_mixins.scss */
  .all-nhlbi-publications--landing .pager__items .pager__item.is-active + .pager__item, .all-nhlbi-publications--landing .pager__items .is-active.blueRoundButton + .pager__item, .all-nhlbi-publications--landing .pager__items .is-active.redRoundButton + .pager__item, .all-nhlbi-publications--landing .pager__items .is-active.standard-more-link + .pager__item, .all-nhlbi-publications--landing .pager__items .news-and-events--landing .is-active.more-link + .pager__item, .news-and-events--landing .all-nhlbi-publications--landing .pager__items .is-active.more-link + .pager__item, .all-nhlbi-publications--landing .pager__items .is-active.view-more-link + .pager__item, .all-nhlbi-publications--landing .pager__items .pager__item.is-active + .blueRoundButton, .all-nhlbi-publications--landing .pager__items .is-active.blueRoundButton + .blueRoundButton, .all-nhlbi-publications--landing .pager__items .is-active.redRoundButton + .blueRoundButton, .all-nhlbi-publications--landing .pager__items .is-active.standard-more-link + .blueRoundButton, .all-nhlbi-publications--landing .pager__items .news-and-events--landing .is-active.more-link + .blueRoundButton, .news-and-events--landing .all-nhlbi-publications--landing .pager__items .is-active.more-link + .blueRoundButton, .all-nhlbi-publications--landing .pager__items .is-active.view-more-link + .blueRoundButton, .all-nhlbi-publications--landing .pager__items .pager__item.is-active + .redRoundButton, .all-nhlbi-publications--landing .pager__items .is-active.blueRoundButton + .redRoundButton, .all-nhlbi-publications--landing .pager__items .is-active.redRoundButton + .redRoundButton, .all-nhlbi-publications--landing .pager__items .is-active.standard-more-link + .redRoundButton, .all-nhlbi-publications--landing .pager__items .news-and-events--landing .is-active.more-link + .redRoundButton, .news-and-events--landing .all-nhlbi-publications--landing .pager__items .is-active.more-link + .redRoundButton, .all-nhlbi-publications--landing .pager__items .is-active.view-more-link + .redRoundButton, .all-nhlbi-publications--landing .pager__items .pager__item.is-active + .standard-more-link, .all-nhlbi-publications--landing .pager__items .is-active.blueRoundButton + .standard-more-link, .all-nhlbi-publications--landing .pager__items .is-active.redRoundButton + .standard-more-link, .all-nhlbi-publications--landing .pager__items .is-active.standard-more-link + .standard-more-link, .all-nhlbi-publications--landing .pager__items .news-and-events--landing .is-active.more-link + .standard-more-link, .news-and-events--landing .all-nhlbi-publications--landing .pager__items .is-active.more-link + .standard-more-link, .all-nhlbi-publications--landing .pager__items .is-active.view-more-link + .standard-more-link, .all-nhlbi-publications--landing .pager__items .news-and-events--landing .pager__item.is-active + .more-link, .news-and-events--landing .all-nhlbi-publications--landing .pager__items .pager__item.is-active + .more-link, .all-nhlbi-publications--landing .pager__items .news-and-events--landing .is-active.blueRoundButton + .more-link, .news-and-events--landing .all-nhlbi-publications--landing .pager__items .is-active.blueRoundButton + .more-link, .all-nhlbi-publications--landing .pager__items .news-and-events--landing .is-active.redRoundButton + .more-link, .news-and-events--landing .all-nhlbi-publications--landing .pager__items .is-active.redRoundButton + .more-link, .all-nhlbi-publications--landing .pager__items .news-and-events--landing .is-active.standard-more-link + .more-link, .news-and-events--landing .all-nhlbi-publications--landing .pager__items .is-active.standard-more-link + .more-link, .all-nhlbi-publications--landing .pager__items .news-and-events--landing .is-active.more-link + .more-link, .news-and-events--landing .all-nhlbi-publications--landing .pager__items .is-active.more-link + .more-link, .all-nhlbi-publications--landing .pager__items .news-and-events--landing .is-active.view-more-link + .more-link, .news-and-events--landing .all-nhlbi-publications--landing .pager__items .is-active.view-more-link + .more-link, .all-nhlbi-publications--landing .pager__items .pager__item.is-active + .view-more-link, .all-nhlbi-publications--landing .pager__items .is-active.blueRoundButton + .view-more-link, .all-nhlbi-publications--landing .pager__items .is-active.redRoundButton + .view-more-link, .all-nhlbi-publications--landing .pager__items .is-active.standard-more-link + .view-more-link, .all-nhlbi-publications--landing .pager__items .news-and-events--landing .is-active.more-link + .view-more-link, .news-and-events--landing .all-nhlbi-publications--landing .pager__items .is-active.more-link + .view-more-link, .all-nhlbi-publications--landing .pager__items .is-active.view-more-link + .view-more-link, .all-nhlbi-publications--landing .pager .pager__item.is-active + .pager__item, .all-nhlbi-publications--landing .standard-more-link .pager__item.is-active + .pager__item, .all-nhlbi-publications--landing .news-and-events--landing .more-link .pager__item.is-active + .pager__item, .news-and-events--landing .all-nhlbi-publications--landing .more-link .pager__item.is-active + .pager__item, .all-nhlbi-publications--landing .view-more-link .pager__item.is-active + .pager__item, .all-nhlbi-publications--landing .pager .is-active.blueRoundButton + .pager__item, .all-nhlbi-publications--landing .standard-more-link .is-active.blueRoundButton + .pager__item, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.blueRoundButton + .pager__item, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.blueRoundButton + .pager__item, .all-nhlbi-publications--landing .view-more-link .is-active.blueRoundButton + .pager__item, .all-nhlbi-publications--landing .pager .is-active.redRoundButton + .pager__item, .all-nhlbi-publications--landing .standard-more-link .is-active.redRoundButton + .pager__item, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.redRoundButton + .pager__item, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.redRoundButton + .pager__item, .all-nhlbi-publications--landing .view-more-link .is-active.redRoundButton + .pager__item, .all-nhlbi-publications--landing .pager .is-active.standard-more-link + .pager__item, .all-nhlbi-publications--landing .standard-more-link .is-active.standard-more-link + .pager__item, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.standard-more-link + .pager__item, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.standard-more-link + .pager__item, .all-nhlbi-publications--landing .view-more-link .is-active.standard-more-link + .pager__item, .all-nhlbi-publications--landing .pager .news-and-events--landing .is-active.more-link + .pager__item, .news-and-events--landing .all-nhlbi-publications--landing .pager .is-active.more-link + .pager__item, .all-nhlbi-publications--landing .standard-more-link .news-and-events--landing .is-active.more-link + .pager__item, .news-and-events--landing .all-nhlbi-publications--landing .standard-more-link .is-active.more-link + .pager__item, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.more-link + .pager__item, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.more-link + .pager__item, .all-nhlbi-publications--landing .view-more-link .news-and-events--landing .is-active.more-link + .pager__item, .news-and-events--landing .all-nhlbi-publications--landing .view-more-link .is-active.more-link + .pager__item, .all-nhlbi-publications--landing .pager .is-active.view-more-link + .pager__item, .all-nhlbi-publications--landing .standard-more-link .is-active.view-more-link + .pager__item, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.view-more-link + .pager__item, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.view-more-link + .pager__item, .all-nhlbi-publications--landing .view-more-link .is-active.view-more-link + .pager__item, .all-nhlbi-publications--landing .pager .pager__item.is-active + .blueRoundButton, .all-nhlbi-publications--landing .standard-more-link .pager__item.is-active + .blueRoundButton, .all-nhlbi-publications--landing .news-and-events--landing .more-link .pager__item.is-active + .blueRoundButton, .news-and-events--landing .all-nhlbi-publications--landing .more-link .pager__item.is-active + .blueRoundButton, .all-nhlbi-publications--landing .view-more-link .pager__item.is-active + .blueRoundButton, .all-nhlbi-publications--landing .pager .is-active.blueRoundButton + .blueRoundButton, .all-nhlbi-publications--landing .standard-more-link .is-active.blueRoundButton + .blueRoundButton, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.blueRoundButton + .blueRoundButton, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.blueRoundButton + .blueRoundButton, .all-nhlbi-publications--landing .view-more-link .is-active.blueRoundButton + .blueRoundButton, .all-nhlbi-publications--landing .pager .is-active.redRoundButton + .blueRoundButton, .all-nhlbi-publications--landing .standard-more-link .is-active.redRoundButton + .blueRoundButton, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.redRoundButton + .blueRoundButton, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.redRoundButton + .blueRoundButton, .all-nhlbi-publications--landing .view-more-link .is-active.redRoundButton + .blueRoundButton, .all-nhlbi-publications--landing .pager .is-active.standard-more-link + .blueRoundButton, .all-nhlbi-publications--landing .standard-more-link .is-active.standard-more-link + .blueRoundButton, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.standard-more-link + .blueRoundButton, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.standard-more-link + .blueRoundButton, .all-nhlbi-publications--landing .view-more-link .is-active.standard-more-link + .blueRoundButton, .all-nhlbi-publications--landing .pager .news-and-events--landing .is-active.more-link + .blueRoundButton, .news-and-events--landing .all-nhlbi-publications--landing .pager .is-active.more-link + .blueRoundButton, .all-nhlbi-publications--landing .standard-more-link .news-and-events--landing .is-active.more-link + .blueRoundButton, .news-and-events--landing .all-nhlbi-publications--landing .standard-more-link .is-active.more-link + .blueRoundButton, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.more-link + .blueRoundButton, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.more-link + .blueRoundButton, .all-nhlbi-publications--landing .view-more-link .news-and-events--landing .is-active.more-link + .blueRoundButton, .news-and-events--landing .all-nhlbi-publications--landing .view-more-link .is-active.more-link + .blueRoundButton, .all-nhlbi-publications--landing .pager .is-active.view-more-link + .blueRoundButton, .all-nhlbi-publications--landing .standard-more-link .is-active.view-more-link + .blueRoundButton, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.view-more-link + .blueRoundButton, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.view-more-link + .blueRoundButton, .all-nhlbi-publications--landing .view-more-link .is-active.view-more-link + .blueRoundButton, .all-nhlbi-publications--landing .pager .pager__item.is-active + .redRoundButton, .all-nhlbi-publications--landing .standard-more-link .pager__item.is-active + .redRoundButton, .all-nhlbi-publications--landing .news-and-events--landing .more-link .pager__item.is-active + .redRoundButton, .news-and-events--landing .all-nhlbi-publications--landing .more-link .pager__item.is-active + .redRoundButton, .all-nhlbi-publications--landing .view-more-link .pager__item.is-active + .redRoundButton, .all-nhlbi-publications--landing .pager .is-active.blueRoundButton + .redRoundButton, .all-nhlbi-publications--landing .standard-more-link .is-active.blueRoundButton + .redRoundButton, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.blueRoundButton + .redRoundButton, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.blueRoundButton + .redRoundButton, .all-nhlbi-publications--landing .view-more-link .is-active.blueRoundButton + .redRoundButton, .all-nhlbi-publications--landing .pager .is-active.redRoundButton + .redRoundButton, .all-nhlbi-publications--landing .standard-more-link .is-active.redRoundButton + .redRoundButton, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.redRoundButton + .redRoundButton, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.redRoundButton + .redRoundButton, .all-nhlbi-publications--landing .view-more-link .is-active.redRoundButton + .redRoundButton, .all-nhlbi-publications--landing .pager .is-active.standard-more-link + .redRoundButton, .all-nhlbi-publications--landing .standard-more-link .is-active.standard-more-link + .redRoundButton, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.standard-more-link + .redRoundButton, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.standard-more-link + .redRoundButton, .all-nhlbi-publications--landing .view-more-link .is-active.standard-more-link + .redRoundButton, .all-nhlbi-publications--landing .pager .news-and-events--landing .is-active.more-link + .redRoundButton, .news-and-events--landing .all-nhlbi-publications--landing .pager .is-active.more-link + .redRoundButton, .all-nhlbi-publications--landing .standard-more-link .news-and-events--landing .is-active.more-link + .redRoundButton, .news-and-events--landing .all-nhlbi-publications--landing .standard-more-link .is-active.more-link + .redRoundButton, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.more-link + .redRoundButton, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.more-link + .redRoundButton, .all-nhlbi-publications--landing .view-more-link .news-and-events--landing .is-active.more-link + .redRoundButton, .news-and-events--landing .all-nhlbi-publications--landing .view-more-link .is-active.more-link + .redRoundButton, .all-nhlbi-publications--landing .pager .is-active.view-more-link + .redRoundButton, .all-nhlbi-publications--landing .standard-more-link .is-active.view-more-link + .redRoundButton, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.view-more-link + .redRoundButton, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.view-more-link + .redRoundButton, .all-nhlbi-publications--landing .view-more-link .is-active.view-more-link + .redRoundButton, .all-nhlbi-publications--landing .pager .pager__item.is-active + .standard-more-link, .all-nhlbi-publications--landing .standard-more-link .pager__item.is-active + .standard-more-link, .all-nhlbi-publications--landing .news-and-events--landing .more-link .pager__item.is-active + .standard-more-link, .news-and-events--landing .all-nhlbi-publications--landing .more-link .pager__item.is-active + .standard-more-link, .all-nhlbi-publications--landing .view-more-link .pager__item.is-active + .standard-more-link, .all-nhlbi-publications--landing .pager .is-active.blueRoundButton + .standard-more-link, .all-nhlbi-publications--landing .standard-more-link .is-active.blueRoundButton + .standard-more-link, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.blueRoundButton + .standard-more-link, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.blueRoundButton + .standard-more-link, .all-nhlbi-publications--landing .view-more-link .is-active.blueRoundButton + .standard-more-link, .all-nhlbi-publications--landing .pager .is-active.redRoundButton + .standard-more-link, .all-nhlbi-publications--landing .standard-more-link .is-active.redRoundButton + .standard-more-link, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.redRoundButton + .standard-more-link, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.redRoundButton + .standard-more-link, .all-nhlbi-publications--landing .view-more-link .is-active.redRoundButton + .standard-more-link, .all-nhlbi-publications--landing .pager .is-active.standard-more-link + .standard-more-link, .all-nhlbi-publications--landing .standard-more-link .is-active.standard-more-link + .standard-more-link, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.standard-more-link + .standard-more-link, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.standard-more-link + .standard-more-link, .all-nhlbi-publications--landing .view-more-link .is-active.standard-more-link + .standard-more-link, .all-nhlbi-publications--landing .pager .news-and-events--landing .is-active.more-link + .standard-more-link, .news-and-events--landing .all-nhlbi-publications--landing .pager .is-active.more-link + .standard-more-link, .all-nhlbi-publications--landing .standard-more-link .news-and-events--landing .is-active.more-link + .standard-more-link, .news-and-events--landing .all-nhlbi-publications--landing .standard-more-link .is-active.more-link + .standard-more-link, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.more-link + .standard-more-link, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.more-link + .standard-more-link, .all-nhlbi-publications--landing .view-more-link .news-and-events--landing .is-active.more-link + .standard-more-link, .news-and-events--landing .all-nhlbi-publications--landing .view-more-link .is-active.more-link + .standard-more-link, .all-nhlbi-publications--landing .pager .is-active.view-more-link + .standard-more-link, .all-nhlbi-publications--landing .standard-more-link .is-active.view-more-link + .standard-more-link, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.view-more-link + .standard-more-link, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.view-more-link + .standard-more-link, .all-nhlbi-publications--landing .view-more-link .is-active.view-more-link + .standard-more-link, .all-nhlbi-publications--landing .pager .news-and-events--landing .pager__item.is-active + .more-link, .news-and-events--landing .all-nhlbi-publications--landing .pager .pager__item.is-active + .more-link, .all-nhlbi-publications--landing .standard-more-link .news-and-events--landing .pager__item.is-active + .more-link, .news-and-events--landing .all-nhlbi-publications--landing .standard-more-link .pager__item.is-active + .more-link, .all-nhlbi-publications--landing .news-and-events--landing .more-link .pager__item.is-active + .more-link, .news-and-events--landing .all-nhlbi-publications--landing .more-link .pager__item.is-active + .more-link, .all-nhlbi-publications--landing .view-more-link .news-and-events--landing .pager__item.is-active + .more-link, .news-and-events--landing .all-nhlbi-publications--landing .view-more-link .pager__item.is-active + .more-link, .all-nhlbi-publications--landing .pager .news-and-events--landing .is-active.blueRoundButton + .more-link, .news-and-events--landing .all-nhlbi-publications--landing .pager .is-active.blueRoundButton + .more-link, .all-nhlbi-publications--landing .standard-more-link .news-and-events--landing .is-active.blueRoundButton + .more-link, .news-and-events--landing .all-nhlbi-publications--landing .standard-more-link .is-active.blueRoundButton + .more-link, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.blueRoundButton + .more-link, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.blueRoundButton + .more-link, .all-nhlbi-publications--landing .view-more-link .news-and-events--landing .is-active.blueRoundButton + .more-link, .news-and-events--landing .all-nhlbi-publications--landing .view-more-link .is-active.blueRoundButton + .more-link, .all-nhlbi-publications--landing .pager .news-and-events--landing .is-active.redRoundButton + .more-link, .news-and-events--landing .all-nhlbi-publications--landing .pager .is-active.redRoundButton + .more-link, .all-nhlbi-publications--landing .standard-more-link .news-and-events--landing .is-active.redRoundButton + .more-link, .news-and-events--landing .all-nhlbi-publications--landing .standard-more-link .is-active.redRoundButton + .more-link, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.redRoundButton + .more-link, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.redRoundButton + .more-link, .all-nhlbi-publications--landing .view-more-link .news-and-events--landing .is-active.redRoundButton + .more-link, .news-and-events--landing .all-nhlbi-publications--landing .view-more-link .is-active.redRoundButton + .more-link, .all-nhlbi-publications--landing .pager .news-and-events--landing .is-active.standard-more-link + .more-link, .news-and-events--landing .all-nhlbi-publications--landing .pager .is-active.standard-more-link + .more-link, .all-nhlbi-publications--landing .standard-more-link .news-and-events--landing .is-active.standard-more-link + .more-link, .news-and-events--landing .all-nhlbi-publications--landing .standard-more-link .is-active.standard-more-link + .more-link, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.standard-more-link + .more-link, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.standard-more-link + .more-link, .all-nhlbi-publications--landing .view-more-link .news-and-events--landing .is-active.standard-more-link + .more-link, .news-and-events--landing .all-nhlbi-publications--landing .view-more-link .is-active.standard-more-link + .more-link, .all-nhlbi-publications--landing .pager .news-and-events--landing .is-active.more-link + .more-link, .news-and-events--landing .all-nhlbi-publications--landing .pager .is-active.more-link + .more-link, .all-nhlbi-publications--landing .standard-more-link .news-and-events--landing .is-active.more-link + .more-link, .news-and-events--landing .all-nhlbi-publications--landing .standard-more-link .is-active.more-link + .more-link, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.more-link + .more-link, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.more-link + .more-link, .all-nhlbi-publications--landing .view-more-link .news-and-events--landing .is-active.more-link + .more-link, .news-and-events--landing .all-nhlbi-publications--landing .view-more-link .is-active.more-link + .more-link, .all-nhlbi-publications--landing .pager .news-and-events--landing .is-active.view-more-link + .more-link, .news-and-events--landing .all-nhlbi-publications--landing .pager .is-active.view-more-link + .more-link, .all-nhlbi-publications--landing .standard-more-link .news-and-events--landing .is-active.view-more-link + .more-link, .news-and-events--landing .all-nhlbi-publications--landing .standard-more-link .is-active.view-more-link + .more-link, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.view-more-link + .more-link, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.view-more-link + .more-link, .all-nhlbi-publications--landing .view-more-link .news-and-events--landing .is-active.view-more-link + .more-link, .news-and-events--landing .all-nhlbi-publications--landing .view-more-link .is-active.view-more-link + .more-link, .all-nhlbi-publications--landing .pager .pager__item.is-active + .view-more-link, .all-nhlbi-publications--landing .standard-more-link .pager__item.is-active + .view-more-link, .all-nhlbi-publications--landing .news-and-events--landing .more-link .pager__item.is-active + .view-more-link, .news-and-events--landing .all-nhlbi-publications--landing .more-link .pager__item.is-active + .view-more-link, .all-nhlbi-publications--landing .view-more-link .pager__item.is-active + .view-more-link, .all-nhlbi-publications--landing .pager .is-active.blueRoundButton + .view-more-link, .all-nhlbi-publications--landing .standard-more-link .is-active.blueRoundButton + .view-more-link, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.blueRoundButton + .view-more-link, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.blueRoundButton + .view-more-link, .all-nhlbi-publications--landing .view-more-link .is-active.blueRoundButton + .view-more-link, .all-nhlbi-publications--landing .pager .is-active.redRoundButton + .view-more-link, .all-nhlbi-publications--landing .standard-more-link .is-active.redRoundButton + .view-more-link, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.redRoundButton + .view-more-link, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.redRoundButton + .view-more-link, .all-nhlbi-publications--landing .view-more-link .is-active.redRoundButton + .view-more-link, .all-nhlbi-publications--landing .pager .is-active.standard-more-link + .view-more-link, .all-nhlbi-publications--landing .standard-more-link .is-active.standard-more-link + .view-more-link, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.standard-more-link + .view-more-link, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.standard-more-link + .view-more-link, .all-nhlbi-publications--landing .view-more-link .is-active.standard-more-link + .view-more-link, .all-nhlbi-publications--landing .pager .news-and-events--landing .is-active.more-link + .view-more-link, .news-and-events--landing .all-nhlbi-publications--landing .pager .is-active.more-link + .view-more-link, .all-nhlbi-publications--landing .standard-more-link .news-and-events--landing .is-active.more-link + .view-more-link, .news-and-events--landing .all-nhlbi-publications--landing .standard-more-link .is-active.more-link + .view-more-link, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.more-link + .view-more-link, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.more-link + .view-more-link, .all-nhlbi-publications--landing .view-more-link .news-and-events--landing .is-active.more-link + .view-more-link, .news-and-events--landing .all-nhlbi-publications--landing .view-more-link .is-active.more-link + .view-more-link, .all-nhlbi-publications--landing .pager .is-active.view-more-link + .view-more-link, .all-nhlbi-publications--landing .standard-more-link .is-active.view-more-link + .view-more-link, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.view-more-link + .view-more-link, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.view-more-link + .view-more-link, .all-nhlbi-publications--landing .view-more-link .is-active.view-more-link + .view-more-link {
    display: inline-block;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 258, ../sass/_mixins.scss */
  .all-nhlbi-publications--landing .pager__items .pager__item.is-active + .pager__item, .all-nhlbi-publications--landing .pager__items .is-active.blueRoundButton + .pager__item, .all-nhlbi-publications--landing .pager__items .is-active.redRoundButton + .pager__item, .all-nhlbi-publications--landing .pager__items .is-active.standard-more-link + .pager__item, .all-nhlbi-publications--landing .pager__items .news-and-events--landing .is-active.more-link + .pager__item, .news-and-events--landing .all-nhlbi-publications--landing .pager__items .is-active.more-link + .pager__item, .all-nhlbi-publications--landing .pager__items .is-active.view-more-link + .pager__item, .all-nhlbi-publications--landing .pager__items .pager__item.is-active + .blueRoundButton, .all-nhlbi-publications--landing .pager__items .is-active.blueRoundButton + .blueRoundButton, .all-nhlbi-publications--landing .pager__items .is-active.redRoundButton + .blueRoundButton, .all-nhlbi-publications--landing .pager__items .is-active.standard-more-link + .blueRoundButton, .all-nhlbi-publications--landing .pager__items .news-and-events--landing .is-active.more-link + .blueRoundButton, .news-and-events--landing .all-nhlbi-publications--landing .pager__items .is-active.more-link + .blueRoundButton, .all-nhlbi-publications--landing .pager__items .is-active.view-more-link + .blueRoundButton, .all-nhlbi-publications--landing .pager__items .pager__item.is-active + .redRoundButton, .all-nhlbi-publications--landing .pager__items .is-active.blueRoundButton + .redRoundButton, .all-nhlbi-publications--landing .pager__items .is-active.redRoundButton + .redRoundButton, .all-nhlbi-publications--landing .pager__items .is-active.standard-more-link + .redRoundButton, .all-nhlbi-publications--landing .pager__items .news-and-events--landing .is-active.more-link + .redRoundButton, .news-and-events--landing .all-nhlbi-publications--landing .pager__items .is-active.more-link + .redRoundButton, .all-nhlbi-publications--landing .pager__items .is-active.view-more-link + .redRoundButton, .all-nhlbi-publications--landing .pager__items .pager__item.is-active + .standard-more-link, .all-nhlbi-publications--landing .pager__items .is-active.blueRoundButton + .standard-more-link, .all-nhlbi-publications--landing .pager__items .is-active.redRoundButton + .standard-more-link, .all-nhlbi-publications--landing .pager__items .is-active.standard-more-link + .standard-more-link, .all-nhlbi-publications--landing .pager__items .news-and-events--landing .is-active.more-link + .standard-more-link, .news-and-events--landing .all-nhlbi-publications--landing .pager__items .is-active.more-link + .standard-more-link, .all-nhlbi-publications--landing .pager__items .is-active.view-more-link + .standard-more-link, .all-nhlbi-publications--landing .pager__items .news-and-events--landing .pager__item.is-active + .more-link, .news-and-events--landing .all-nhlbi-publications--landing .pager__items .pager__item.is-active + .more-link, .all-nhlbi-publications--landing .pager__items .news-and-events--landing .is-active.blueRoundButton + .more-link, .news-and-events--landing .all-nhlbi-publications--landing .pager__items .is-active.blueRoundButton + .more-link, .all-nhlbi-publications--landing .pager__items .news-and-events--landing .is-active.redRoundButton + .more-link, .news-and-events--landing .all-nhlbi-publications--landing .pager__items .is-active.redRoundButton + .more-link, .all-nhlbi-publications--landing .pager__items .news-and-events--landing .is-active.standard-more-link + .more-link, .news-and-events--landing .all-nhlbi-publications--landing .pager__items .is-active.standard-more-link + .more-link, .all-nhlbi-publications--landing .pager__items .news-and-events--landing .is-active.more-link + .more-link, .news-and-events--landing .all-nhlbi-publications--landing .pager__items .is-active.more-link + .more-link, .all-nhlbi-publications--landing .pager__items .news-and-events--landing .is-active.view-more-link + .more-link, .news-and-events--landing .all-nhlbi-publications--landing .pager__items .is-active.view-more-link + .more-link, .all-nhlbi-publications--landing .pager__items .pager__item.is-active + .view-more-link, .all-nhlbi-publications--landing .pager__items .is-active.blueRoundButton + .view-more-link, .all-nhlbi-publications--landing .pager__items .is-active.redRoundButton + .view-more-link, .all-nhlbi-publications--landing .pager__items .is-active.standard-more-link + .view-more-link, .all-nhlbi-publications--landing .pager__items .news-and-events--landing .is-active.more-link + .view-more-link, .news-and-events--landing .all-nhlbi-publications--landing .pager__items .is-active.more-link + .view-more-link, .all-nhlbi-publications--landing .pager__items .is-active.view-more-link + .view-more-link, .all-nhlbi-publications--landing .pager .pager__item.is-active + .pager__item, .all-nhlbi-publications--landing .standard-more-link .pager__item.is-active + .pager__item, .all-nhlbi-publications--landing .news-and-events--landing .more-link .pager__item.is-active + .pager__item, .news-and-events--landing .all-nhlbi-publications--landing .more-link .pager__item.is-active + .pager__item, .all-nhlbi-publications--landing .view-more-link .pager__item.is-active + .pager__item, .all-nhlbi-publications--landing .pager .is-active.blueRoundButton + .pager__item, .all-nhlbi-publications--landing .standard-more-link .is-active.blueRoundButton + .pager__item, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.blueRoundButton + .pager__item, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.blueRoundButton + .pager__item, .all-nhlbi-publications--landing .view-more-link .is-active.blueRoundButton + .pager__item, .all-nhlbi-publications--landing .pager .is-active.redRoundButton + .pager__item, .all-nhlbi-publications--landing .standard-more-link .is-active.redRoundButton + .pager__item, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.redRoundButton + .pager__item, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.redRoundButton + .pager__item, .all-nhlbi-publications--landing .view-more-link .is-active.redRoundButton + .pager__item, .all-nhlbi-publications--landing .pager .is-active.standard-more-link + .pager__item, .all-nhlbi-publications--landing .standard-more-link .is-active.standard-more-link + .pager__item, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.standard-more-link + .pager__item, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.standard-more-link + .pager__item, .all-nhlbi-publications--landing .view-more-link .is-active.standard-more-link + .pager__item, .all-nhlbi-publications--landing .pager .news-and-events--landing .is-active.more-link + .pager__item, .news-and-events--landing .all-nhlbi-publications--landing .pager .is-active.more-link + .pager__item, .all-nhlbi-publications--landing .standard-more-link .news-and-events--landing .is-active.more-link + .pager__item, .news-and-events--landing .all-nhlbi-publications--landing .standard-more-link .is-active.more-link + .pager__item, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.more-link + .pager__item, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.more-link + .pager__item, .all-nhlbi-publications--landing .view-more-link .news-and-events--landing .is-active.more-link + .pager__item, .news-and-events--landing .all-nhlbi-publications--landing .view-more-link .is-active.more-link + .pager__item, .all-nhlbi-publications--landing .pager .is-active.view-more-link + .pager__item, .all-nhlbi-publications--landing .standard-more-link .is-active.view-more-link + .pager__item, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.view-more-link + .pager__item, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.view-more-link + .pager__item, .all-nhlbi-publications--landing .view-more-link .is-active.view-more-link + .pager__item, .all-nhlbi-publications--landing .pager .pager__item.is-active + .blueRoundButton, .all-nhlbi-publications--landing .standard-more-link .pager__item.is-active + .blueRoundButton, .all-nhlbi-publications--landing .news-and-events--landing .more-link .pager__item.is-active + .blueRoundButton, .news-and-events--landing .all-nhlbi-publications--landing .more-link .pager__item.is-active + .blueRoundButton, .all-nhlbi-publications--landing .view-more-link .pager__item.is-active + .blueRoundButton, .all-nhlbi-publications--landing .pager .is-active.blueRoundButton + .blueRoundButton, .all-nhlbi-publications--landing .standard-more-link .is-active.blueRoundButton + .blueRoundButton, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.blueRoundButton + .blueRoundButton, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.blueRoundButton + .blueRoundButton, .all-nhlbi-publications--landing .view-more-link .is-active.blueRoundButton + .blueRoundButton, .all-nhlbi-publications--landing .pager .is-active.redRoundButton + .blueRoundButton, .all-nhlbi-publications--landing .standard-more-link .is-active.redRoundButton + .blueRoundButton, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.redRoundButton + .blueRoundButton, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.redRoundButton + .blueRoundButton, .all-nhlbi-publications--landing .view-more-link .is-active.redRoundButton + .blueRoundButton, .all-nhlbi-publications--landing .pager .is-active.standard-more-link + .blueRoundButton, .all-nhlbi-publications--landing .standard-more-link .is-active.standard-more-link + .blueRoundButton, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.standard-more-link + .blueRoundButton, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.standard-more-link + .blueRoundButton, .all-nhlbi-publications--landing .view-more-link .is-active.standard-more-link + .blueRoundButton, .all-nhlbi-publications--landing .pager .news-and-events--landing .is-active.more-link + .blueRoundButton, .news-and-events--landing .all-nhlbi-publications--landing .pager .is-active.more-link + .blueRoundButton, .all-nhlbi-publications--landing .standard-more-link .news-and-events--landing .is-active.more-link + .blueRoundButton, .news-and-events--landing .all-nhlbi-publications--landing .standard-more-link .is-active.more-link + .blueRoundButton, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.more-link + .blueRoundButton, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.more-link + .blueRoundButton, .all-nhlbi-publications--landing .view-more-link .news-and-events--landing .is-active.more-link + .blueRoundButton, .news-and-events--landing .all-nhlbi-publications--landing .view-more-link .is-active.more-link + .blueRoundButton, .all-nhlbi-publications--landing .pager .is-active.view-more-link + .blueRoundButton, .all-nhlbi-publications--landing .standard-more-link .is-active.view-more-link + .blueRoundButton, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.view-more-link + .blueRoundButton, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.view-more-link + .blueRoundButton, .all-nhlbi-publications--landing .view-more-link .is-active.view-more-link + .blueRoundButton, .all-nhlbi-publications--landing .pager .pager__item.is-active + .redRoundButton, .all-nhlbi-publications--landing .standard-more-link .pager__item.is-active + .redRoundButton, .all-nhlbi-publications--landing .news-and-events--landing .more-link .pager__item.is-active + .redRoundButton, .news-and-events--landing .all-nhlbi-publications--landing .more-link .pager__item.is-active + .redRoundButton, .all-nhlbi-publications--landing .view-more-link .pager__item.is-active + .redRoundButton, .all-nhlbi-publications--landing .pager .is-active.blueRoundButton + .redRoundButton, .all-nhlbi-publications--landing .standard-more-link .is-active.blueRoundButton + .redRoundButton, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.blueRoundButton + .redRoundButton, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.blueRoundButton + .redRoundButton, .all-nhlbi-publications--landing .view-more-link .is-active.blueRoundButton + .redRoundButton, .all-nhlbi-publications--landing .pager .is-active.redRoundButton + .redRoundButton, .all-nhlbi-publications--landing .standard-more-link .is-active.redRoundButton + .redRoundButton, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.redRoundButton + .redRoundButton, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.redRoundButton + .redRoundButton, .all-nhlbi-publications--landing .view-more-link .is-active.redRoundButton + .redRoundButton, .all-nhlbi-publications--landing .pager .is-active.standard-more-link + .redRoundButton, .all-nhlbi-publications--landing .standard-more-link .is-active.standard-more-link + .redRoundButton, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.standard-more-link + .redRoundButton, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.standard-more-link + .redRoundButton, .all-nhlbi-publications--landing .view-more-link .is-active.standard-more-link + .redRoundButton, .all-nhlbi-publications--landing .pager .news-and-events--landing .is-active.more-link + .redRoundButton, .news-and-events--landing .all-nhlbi-publications--landing .pager .is-active.more-link + .redRoundButton, .all-nhlbi-publications--landing .standard-more-link .news-and-events--landing .is-active.more-link + .redRoundButton, .news-and-events--landing .all-nhlbi-publications--landing .standard-more-link .is-active.more-link + .redRoundButton, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.more-link + .redRoundButton, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.more-link + .redRoundButton, .all-nhlbi-publications--landing .view-more-link .news-and-events--landing .is-active.more-link + .redRoundButton, .news-and-events--landing .all-nhlbi-publications--landing .view-more-link .is-active.more-link + .redRoundButton, .all-nhlbi-publications--landing .pager .is-active.view-more-link + .redRoundButton, .all-nhlbi-publications--landing .standard-more-link .is-active.view-more-link + .redRoundButton, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.view-more-link + .redRoundButton, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.view-more-link + .redRoundButton, .all-nhlbi-publications--landing .view-more-link .is-active.view-more-link + .redRoundButton, .all-nhlbi-publications--landing .pager .pager__item.is-active + .standard-more-link, .all-nhlbi-publications--landing .standard-more-link .pager__item.is-active + .standard-more-link, .all-nhlbi-publications--landing .news-and-events--landing .more-link .pager__item.is-active + .standard-more-link, .news-and-events--landing .all-nhlbi-publications--landing .more-link .pager__item.is-active + .standard-more-link, .all-nhlbi-publications--landing .view-more-link .pager__item.is-active + .standard-more-link, .all-nhlbi-publications--landing .pager .is-active.blueRoundButton + .standard-more-link, .all-nhlbi-publications--landing .standard-more-link .is-active.blueRoundButton + .standard-more-link, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.blueRoundButton + .standard-more-link, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.blueRoundButton + .standard-more-link, .all-nhlbi-publications--landing .view-more-link .is-active.blueRoundButton + .standard-more-link, .all-nhlbi-publications--landing .pager .is-active.redRoundButton + .standard-more-link, .all-nhlbi-publications--landing .standard-more-link .is-active.redRoundButton + .standard-more-link, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.redRoundButton + .standard-more-link, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.redRoundButton + .standard-more-link, .all-nhlbi-publications--landing .view-more-link .is-active.redRoundButton + .standard-more-link, .all-nhlbi-publications--landing .pager .is-active.standard-more-link + .standard-more-link, .all-nhlbi-publications--landing .standard-more-link .is-active.standard-more-link + .standard-more-link, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.standard-more-link + .standard-more-link, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.standard-more-link + .standard-more-link, .all-nhlbi-publications--landing .view-more-link .is-active.standard-more-link + .standard-more-link, .all-nhlbi-publications--landing .pager .news-and-events--landing .is-active.more-link + .standard-more-link, .news-and-events--landing .all-nhlbi-publications--landing .pager .is-active.more-link + .standard-more-link, .all-nhlbi-publications--landing .standard-more-link .news-and-events--landing .is-active.more-link + .standard-more-link, .news-and-events--landing .all-nhlbi-publications--landing .standard-more-link .is-active.more-link + .standard-more-link, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.more-link + .standard-more-link, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.more-link + .standard-more-link, .all-nhlbi-publications--landing .view-more-link .news-and-events--landing .is-active.more-link + .standard-more-link, .news-and-events--landing .all-nhlbi-publications--landing .view-more-link .is-active.more-link + .standard-more-link, .all-nhlbi-publications--landing .pager .is-active.view-more-link + .standard-more-link, .all-nhlbi-publications--landing .standard-more-link .is-active.view-more-link + .standard-more-link, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.view-more-link + .standard-more-link, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.view-more-link + .standard-more-link, .all-nhlbi-publications--landing .view-more-link .is-active.view-more-link + .standard-more-link, .all-nhlbi-publications--landing .pager .news-and-events--landing .pager__item.is-active + .more-link, .news-and-events--landing .all-nhlbi-publications--landing .pager .pager__item.is-active + .more-link, .all-nhlbi-publications--landing .standard-more-link .news-and-events--landing .pager__item.is-active + .more-link, .news-and-events--landing .all-nhlbi-publications--landing .standard-more-link .pager__item.is-active + .more-link, .all-nhlbi-publications--landing .news-and-events--landing .more-link .pager__item.is-active + .more-link, .news-and-events--landing .all-nhlbi-publications--landing .more-link .pager__item.is-active + .more-link, .all-nhlbi-publications--landing .view-more-link .news-and-events--landing .pager__item.is-active + .more-link, .news-and-events--landing .all-nhlbi-publications--landing .view-more-link .pager__item.is-active + .more-link, .all-nhlbi-publications--landing .pager .news-and-events--landing .is-active.blueRoundButton + .more-link, .news-and-events--landing .all-nhlbi-publications--landing .pager .is-active.blueRoundButton + .more-link, .all-nhlbi-publications--landing .standard-more-link .news-and-events--landing .is-active.blueRoundButton + .more-link, .news-and-events--landing .all-nhlbi-publications--landing .standard-more-link .is-active.blueRoundButton + .more-link, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.blueRoundButton + .more-link, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.blueRoundButton + .more-link, .all-nhlbi-publications--landing .view-more-link .news-and-events--landing .is-active.blueRoundButton + .more-link, .news-and-events--landing .all-nhlbi-publications--landing .view-more-link .is-active.blueRoundButton + .more-link, .all-nhlbi-publications--landing .pager .news-and-events--landing .is-active.redRoundButton + .more-link, .news-and-events--landing .all-nhlbi-publications--landing .pager .is-active.redRoundButton + .more-link, .all-nhlbi-publications--landing .standard-more-link .news-and-events--landing .is-active.redRoundButton + .more-link, .news-and-events--landing .all-nhlbi-publications--landing .standard-more-link .is-active.redRoundButton + .more-link, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.redRoundButton + .more-link, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.redRoundButton + .more-link, .all-nhlbi-publications--landing .view-more-link .news-and-events--landing .is-active.redRoundButton + .more-link, .news-and-events--landing .all-nhlbi-publications--landing .view-more-link .is-active.redRoundButton + .more-link, .all-nhlbi-publications--landing .pager .news-and-events--landing .is-active.standard-more-link + .more-link, .news-and-events--landing .all-nhlbi-publications--landing .pager .is-active.standard-more-link + .more-link, .all-nhlbi-publications--landing .standard-more-link .news-and-events--landing .is-active.standard-more-link + .more-link, .news-and-events--landing .all-nhlbi-publications--landing .standard-more-link .is-active.standard-more-link + .more-link, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.standard-more-link + .more-link, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.standard-more-link + .more-link, .all-nhlbi-publications--landing .view-more-link .news-and-events--landing .is-active.standard-more-link + .more-link, .news-and-events--landing .all-nhlbi-publications--landing .view-more-link .is-active.standard-more-link + .more-link, .all-nhlbi-publications--landing .pager .news-and-events--landing .is-active.more-link + .more-link, .news-and-events--landing .all-nhlbi-publications--landing .pager .is-active.more-link + .more-link, .all-nhlbi-publications--landing .standard-more-link .news-and-events--landing .is-active.more-link + .more-link, .news-and-events--landing .all-nhlbi-publications--landing .standard-more-link .is-active.more-link + .more-link, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.more-link + .more-link, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.more-link + .more-link, .all-nhlbi-publications--landing .view-more-link .news-and-events--landing .is-active.more-link + .more-link, .news-and-events--landing .all-nhlbi-publications--landing .view-more-link .is-active.more-link + .more-link, .all-nhlbi-publications--landing .pager .news-and-events--landing .is-active.view-more-link + .more-link, .news-and-events--landing .all-nhlbi-publications--landing .pager .is-active.view-more-link + .more-link, .all-nhlbi-publications--landing .standard-more-link .news-and-events--landing .is-active.view-more-link + .more-link, .news-and-events--landing .all-nhlbi-publications--landing .standard-more-link .is-active.view-more-link + .more-link, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.view-more-link + .more-link, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.view-more-link + .more-link, .all-nhlbi-publications--landing .view-more-link .news-and-events--landing .is-active.view-more-link + .more-link, .news-and-events--landing .all-nhlbi-publications--landing .view-more-link .is-active.view-more-link + .more-link, .all-nhlbi-publications--landing .pager .pager__item.is-active + .view-more-link, .all-nhlbi-publications--landing .standard-more-link .pager__item.is-active + .view-more-link, .all-nhlbi-publications--landing .news-and-events--landing .more-link .pager__item.is-active + .view-more-link, .news-and-events--landing .all-nhlbi-publications--landing .more-link .pager__item.is-active + .view-more-link, .all-nhlbi-publications--landing .view-more-link .pager__item.is-active + .view-more-link, .all-nhlbi-publications--landing .pager .is-active.blueRoundButton + .view-more-link, .all-nhlbi-publications--landing .standard-more-link .is-active.blueRoundButton + .view-more-link, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.blueRoundButton + .view-more-link, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.blueRoundButton + .view-more-link, .all-nhlbi-publications--landing .view-more-link .is-active.blueRoundButton + .view-more-link, .all-nhlbi-publications--landing .pager .is-active.redRoundButton + .view-more-link, .all-nhlbi-publications--landing .standard-more-link .is-active.redRoundButton + .view-more-link, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.redRoundButton + .view-more-link, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.redRoundButton + .view-more-link, .all-nhlbi-publications--landing .view-more-link .is-active.redRoundButton + .view-more-link, .all-nhlbi-publications--landing .pager .is-active.standard-more-link + .view-more-link, .all-nhlbi-publications--landing .standard-more-link .is-active.standard-more-link + .view-more-link, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.standard-more-link + .view-more-link, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.standard-more-link + .view-more-link, .all-nhlbi-publications--landing .view-more-link .is-active.standard-more-link + .view-more-link, .all-nhlbi-publications--landing .pager .news-and-events--landing .is-active.more-link + .view-more-link, .news-and-events--landing .all-nhlbi-publications--landing .pager .is-active.more-link + .view-more-link, .all-nhlbi-publications--landing .standard-more-link .news-and-events--landing .is-active.more-link + .view-more-link, .news-and-events--landing .all-nhlbi-publications--landing .standard-more-link .is-active.more-link + .view-more-link, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.more-link + .view-more-link, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.more-link + .view-more-link, .all-nhlbi-publications--landing .view-more-link .news-and-events--landing .is-active.more-link + .view-more-link, .news-and-events--landing .all-nhlbi-publications--landing .view-more-link .is-active.more-link + .view-more-link, .all-nhlbi-publications--landing .pager .is-active.view-more-link + .view-more-link, .all-nhlbi-publications--landing .standard-more-link .is-active.view-more-link + .view-more-link, .all-nhlbi-publications--landing .news-and-events--landing .more-link .is-active.view-more-link + .view-more-link, .news-and-events--landing .all-nhlbi-publications--landing .more-link .is-active.view-more-link + .view-more-link, .all-nhlbi-publications--landing .view-more-link .is-active.view-more-link + .view-more-link {
    display: inline-block;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 266, ../sass/_mixins.scss */
  .all-nhlbi-publications--landing .pager__items .pager__item.pager-is-visible, .all-nhlbi-publications--landing .pager__items .pager-is-visible.blueRoundButton, .all-nhlbi-publications--landing .pager__items .pager-is-visible.redRoundButton, .all-nhlbi-publications--landing .pager__items .pager-is-visible.standard-more-link, .all-nhlbi-publications--landing .pager__items .news-and-events--landing .pager-is-visible.more-link, .news-and-events--landing .all-nhlbi-publications--landing .pager__items .pager-is-visible.more-link, .all-nhlbi-publications--landing .pager__items .pager-is-visible.view-more-link, .all-nhlbi-publications--landing .pager .pager__item.pager-is-visible, .all-nhlbi-publications--landing .standard-more-link .pager__item.pager-is-visible, .all-nhlbi-publications--landing .news-and-events--landing .more-link .pager__item.pager-is-visible, .news-and-events--landing .all-nhlbi-publications--landing .more-link .pager__item.pager-is-visible, .all-nhlbi-publications--landing .view-more-link .pager__item.pager-is-visible, .all-nhlbi-publications--landing .pager .pager-is-visible.blueRoundButton, .all-nhlbi-publications--landing .standard-more-link .pager-is-visible.blueRoundButton, .all-nhlbi-publications--landing .news-and-events--landing .more-link .pager-is-visible.blueRoundButton, .news-and-events--landing .all-nhlbi-publications--landing .more-link .pager-is-visible.blueRoundButton, .all-nhlbi-publications--landing .view-more-link .pager-is-visible.blueRoundButton, .all-nhlbi-publications--landing .pager .pager-is-visible.redRoundButton, .all-nhlbi-publications--landing .standard-more-link .pager-is-visible.redRoundButton, .all-nhlbi-publications--landing .news-and-events--landing .more-link .pager-is-visible.redRoundButton, .news-and-events--landing .all-nhlbi-publications--landing .more-link .pager-is-visible.redRoundButton, .all-nhlbi-publications--landing .view-more-link .pager-is-visible.redRoundButton, .all-nhlbi-publications--landing .pager .pager-is-visible.standard-more-link, .all-nhlbi-publications--landing .standard-more-link .pager-is-visible.standard-more-link, .all-nhlbi-publications--landing .news-and-events--landing .more-link .pager-is-visible.standard-more-link, .news-and-events--landing .all-nhlbi-publications--landing .more-link .pager-is-visible.standard-more-link, .all-nhlbi-publications--landing .view-more-link .pager-is-visible.standard-more-link, .all-nhlbi-publications--landing .pager .news-and-events--landing .pager-is-visible.more-link, .news-and-events--landing .all-nhlbi-publications--landing .pager .pager-is-visible.more-link, .all-nhlbi-publications--landing .standard-more-link .news-and-events--landing .pager-is-visible.more-link, .news-and-events--landing .all-nhlbi-publications--landing .standard-more-link .pager-is-visible.more-link, .all-nhlbi-publications--landing .news-and-events--landing .more-link .pager-is-visible.more-link, .news-and-events--landing .all-nhlbi-publications--landing .more-link .pager-is-visible.more-link, .all-nhlbi-publications--landing .view-more-link .news-and-events--landing .pager-is-visible.more-link, .news-and-events--landing .all-nhlbi-publications--landing .view-more-link .pager-is-visible.more-link, .all-nhlbi-publications--landing .pager .pager-is-visible.view-more-link, .all-nhlbi-publications--landing .standard-more-link .pager-is-visible.view-more-link, .all-nhlbi-publications--landing .news-and-events--landing .more-link .pager-is-visible.view-more-link, .news-and-events--landing .all-nhlbi-publications--landing .more-link .pager-is-visible.view-more-link, .all-nhlbi-publications--landing .view-more-link .pager-is-visible.view-more-link {
    display: inline-block;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 271, ../sass/_mixins.scss */
  .all-nhlbi-publications--landing .pager__items .pager__item.before-is-active, .all-nhlbi-publications--landing .pager__items .before-is-active.blueRoundButton, .all-nhlbi-publications--landing .pager__items .before-is-active.redRoundButton, .all-nhlbi-publications--landing .pager__items .before-is-active.standard-more-link, .all-nhlbi-publications--landing .pager__items .news-and-events--landing .before-is-active.more-link, .news-and-events--landing .all-nhlbi-publications--landing .pager__items .before-is-active.more-link, .all-nhlbi-publications--landing .pager__items .before-is-active.view-more-link, .all-nhlbi-publications--landing .pager .pager__item.before-is-active, .all-nhlbi-publications--landing .standard-more-link .pager__item.before-is-active, .all-nhlbi-publications--landing .news-and-events--landing .more-link .pager__item.before-is-active, .news-and-events--landing .all-nhlbi-publications--landing .more-link .pager__item.before-is-active, .all-nhlbi-publications--landing .view-more-link .pager__item.before-is-active, .all-nhlbi-publications--landing .pager .before-is-active.blueRoundButton, .all-nhlbi-publications--landing .standard-more-link .before-is-active.blueRoundButton, .all-nhlbi-publications--landing .news-and-events--landing .more-link .before-is-active.blueRoundButton, .news-and-events--landing .all-nhlbi-publications--landing .more-link .before-is-active.blueRoundButton, .all-nhlbi-publications--landing .view-more-link .before-is-active.blueRoundButton, .all-nhlbi-publications--landing .pager .before-is-active.redRoundButton, .all-nhlbi-publications--landing .standard-more-link .before-is-active.redRoundButton, .all-nhlbi-publications--landing .news-and-events--landing .more-link .before-is-active.redRoundButton, .news-and-events--landing .all-nhlbi-publications--landing .more-link .before-is-active.redRoundButton, .all-nhlbi-publications--landing .view-more-link .before-is-active.redRoundButton, .all-nhlbi-publications--landing .pager .before-is-active.standard-more-link, .all-nhlbi-publications--landing .standard-more-link .before-is-active.standard-more-link, .all-nhlbi-publications--landing .news-and-events--landing .more-link .before-is-active.standard-more-link, .news-and-events--landing .all-nhlbi-publications--landing .more-link .before-is-active.standard-more-link, .all-nhlbi-publications--landing .view-more-link .before-is-active.standard-more-link, .all-nhlbi-publications--landing .pager .news-and-events--landing .before-is-active.more-link, .news-and-events--landing .all-nhlbi-publications--landing .pager .before-is-active.more-link, .all-nhlbi-publications--landing .standard-more-link .news-and-events--landing .before-is-active.more-link, .news-and-events--landing .all-nhlbi-publications--landing .standard-more-link .before-is-active.more-link, .all-nhlbi-publications--landing .news-and-events--landing .more-link .before-is-active.more-link, .news-and-events--landing .all-nhlbi-publications--landing .more-link .before-is-active.more-link, .all-nhlbi-publications--landing .view-more-link .news-and-events--landing .before-is-active.more-link, .news-and-events--landing .all-nhlbi-publications--landing .view-more-link .before-is-active.more-link, .all-nhlbi-publications--landing .pager .before-is-active.view-more-link, .all-nhlbi-publications--landing .standard-more-link .before-is-active.view-more-link, .all-nhlbi-publications--landing .news-and-events--landing .more-link .before-is-active.view-more-link, .news-and-events--landing .all-nhlbi-publications--landing .more-link .before-is-active.view-more-link, .all-nhlbi-publications--landing .view-more-link .before-is-active.view-more-link {
    display: inline-block;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 276, ../sass/_mixins.scss */
  .all-nhlbi-publications--landing .pager__items .pager__item.before-is-active-last, .all-nhlbi-publications--landing .pager__items .before-is-active-last.blueRoundButton, .all-nhlbi-publications--landing .pager__items .before-is-active-last.redRoundButton, .all-nhlbi-publications--landing .pager__items .before-is-active-last.standard-more-link, .all-nhlbi-publications--landing .pager__items .news-and-events--landing .before-is-active-last.more-link, .news-and-events--landing .all-nhlbi-publications--landing .pager__items .before-is-active-last.more-link, .all-nhlbi-publications--landing .pager__items .before-is-active-last.view-more-link, .all-nhlbi-publications--landing .pager .pager__item.before-is-active-last, .all-nhlbi-publications--landing .standard-more-link .pager__item.before-is-active-last, .all-nhlbi-publications--landing .news-and-events--landing .more-link .pager__item.before-is-active-last, .news-and-events--landing .all-nhlbi-publications--landing .more-link .pager__item.before-is-active-last, .all-nhlbi-publications--landing .view-more-link .pager__item.before-is-active-last, .all-nhlbi-publications--landing .pager .before-is-active-last.blueRoundButton, .all-nhlbi-publications--landing .standard-more-link .before-is-active-last.blueRoundButton, .all-nhlbi-publications--landing .news-and-events--landing .more-link .before-is-active-last.blueRoundButton, .news-and-events--landing .all-nhlbi-publications--landing .more-link .before-is-active-last.blueRoundButton, .all-nhlbi-publications--landing .view-more-link .before-is-active-last.blueRoundButton, .all-nhlbi-publications--landing .pager .before-is-active-last.redRoundButton, .all-nhlbi-publications--landing .standard-more-link .before-is-active-last.redRoundButton, .all-nhlbi-publications--landing .news-and-events--landing .more-link .before-is-active-last.redRoundButton, .news-and-events--landing .all-nhlbi-publications--landing .more-link .before-is-active-last.redRoundButton, .all-nhlbi-publications--landing .view-more-link .before-is-active-last.redRoundButton, .all-nhlbi-publications--landing .pager .before-is-active-last.standard-more-link, .all-nhlbi-publications--landing .standard-more-link .before-is-active-last.standard-more-link, .all-nhlbi-publications--landing .news-and-events--landing .more-link .before-is-active-last.standard-more-link, .news-and-events--landing .all-nhlbi-publications--landing .more-link .before-is-active-last.standard-more-link, .all-nhlbi-publications--landing .view-more-link .before-is-active-last.standard-more-link, .all-nhlbi-publications--landing .pager .news-and-events--landing .before-is-active-last.more-link, .news-and-events--landing .all-nhlbi-publications--landing .pager .before-is-active-last.more-link, .all-nhlbi-publications--landing .standard-more-link .news-and-events--landing .before-is-active-last.more-link, .news-and-events--landing .all-nhlbi-publications--landing .standard-more-link .before-is-active-last.more-link, .all-nhlbi-publications--landing .news-and-events--landing .more-link .before-is-active-last.more-link, .news-and-events--landing .all-nhlbi-publications--landing .more-link .before-is-active-last.more-link, .all-nhlbi-publications--landing .view-more-link .news-and-events--landing .before-is-active-last.more-link, .news-and-events--landing .all-nhlbi-publications--landing .view-more-link .before-is-active-last.more-link, .all-nhlbi-publications--landing .pager .before-is-active-last.view-more-link, .all-nhlbi-publications--landing .standard-more-link .before-is-active-last.view-more-link, .all-nhlbi-publications--landing .news-and-events--landing .more-link .before-is-active-last.view-more-link, .news-and-events--landing .all-nhlbi-publications--landing .more-link .before-is-active-last.view-more-link, .all-nhlbi-publications--landing .view-more-link .before-is-active-last.view-more-link {
    display: inline-block;
  }
}
/* line 281, ../sass/_mixins.scss */
.all-nhlbi-publications--landing .pager__items .pager__item a:focus, .all-nhlbi-publications--landing .pager__items .blueRoundButton a:focus, .all-nhlbi-publications--landing .pager__items .redRoundButton a:focus, .all-nhlbi-publications--landing .pager__items .standard-more-link a:focus, .all-nhlbi-publications--landing .pager__items .news-and-events--landing .more-link a:focus, .news-and-events--landing .all-nhlbi-publications--landing .pager__items .more-link a:focus, .all-nhlbi-publications--landing .pager__items .view-more-link a:focus, .all-nhlbi-publications--landing .pager__items .pager_item a:active, .all-nhlbi-publications--landing .pager .pager__item a:focus, .all-nhlbi-publications--landing .standard-more-link .pager__item a:focus, .all-nhlbi-publications--landing .news-and-events--landing .more-link .pager__item a:focus, .news-and-events--landing .all-nhlbi-publications--landing .more-link .pager__item a:focus, .all-nhlbi-publications--landing .view-more-link .pager__item a:focus, .all-nhlbi-publications--landing .pager .blueRoundButton a:focus, .all-nhlbi-publications--landing .standard-more-link .blueRoundButton a:focus, .all-nhlbi-publications--landing .news-and-events--landing .more-link .blueRoundButton a:focus, .news-and-events--landing .all-nhlbi-publications--landing .more-link .blueRoundButton a:focus, .all-nhlbi-publications--landing .view-more-link .blueRoundButton a:focus, .all-nhlbi-publications--landing .pager .redRoundButton a:focus, .all-nhlbi-publications--landing .standard-more-link .redRoundButton a:focus, .all-nhlbi-publications--landing .news-and-events--landing .more-link .redRoundButton a:focus, .news-and-events--landing .all-nhlbi-publications--landing .more-link .redRoundButton a:focus, .all-nhlbi-publications--landing .view-more-link .redRoundButton a:focus, .all-nhlbi-publications--landing .pager .standard-more-link a:focus, .all-nhlbi-publications--landing .standard-more-link .standard-more-link a:focus, .all-nhlbi-publications--landing .news-and-events--landing .more-link .standard-more-link a:focus, .news-and-events--landing .all-nhlbi-publications--landing .more-link .standard-more-link a:focus, .all-nhlbi-publications--landing .view-more-link .standard-more-link a:focus, .all-nhlbi-publications--landing .pager .news-and-events--landing .more-link a:focus, .news-and-events--landing .all-nhlbi-publications--landing .pager .more-link a:focus, .all-nhlbi-publications--landing .standard-more-link .news-and-events--landing .more-link a:focus, .news-and-events--landing .all-nhlbi-publications--landing .standard-more-link .more-link a:focus, .all-nhlbi-publications--landing .news-and-events--landing .more-link .more-link a:focus, .news-and-events--landing .all-nhlbi-publications--landing .more-link .more-link a:focus, .all-nhlbi-publications--landing .view-more-link .news-and-events--landing .more-link a:focus, .news-and-events--landing .all-nhlbi-publications--landing .view-more-link .more-link a:focus, .all-nhlbi-publications--landing .pager .view-more-link a:focus, .all-nhlbi-publications--landing .standard-more-link .view-more-link a:focus, .all-nhlbi-publications--landing .news-and-events--landing .more-link .view-more-link a:focus, .news-and-events--landing .all-nhlbi-publications--landing .more-link .view-more-link a:focus, .all-nhlbi-publications--landing .view-more-link .view-more-link a:focus, .all-nhlbi-publications--landing .pager .pager_item a:active, .all-nhlbi-publications--landing .standard-more-link .pager_item a:active, .all-nhlbi-publications--landing .news-and-events--landing .more-link .pager_item a:active, .news-and-events--landing .all-nhlbi-publications--landing .more-link .pager_item a:active, .all-nhlbi-publications--landing .view-more-link .pager_item a:active {
  outline: #bf0d2e dotted 3px !important;
}
/* line 285, ../sass/_mixins.scss */
.all-nhlbi-publications--landing .pager__items .pager-first, .all-nhlbi-publications--landing .pager .pager-first, .all-nhlbi-publications--landing .standard-more-link .pager-first, .all-nhlbi-publications--landing .news-and-events--landing .more-link .pager-first, .news-and-events--landing .all-nhlbi-publications--landing .more-link .pager-first, .all-nhlbi-publications--landing .view-more-link .pager-first {
  background-image: url("../images/Pagination Icons/png/dark-grey/angle-left-first solid.png");
  background-repeat: no-repeat;
  background-position: initial;
  background-position-x: center;
  background-position-y: center;
  background-size: contain;
  display: inline-block;
  width: 1em;
  height: 1em;
}
/* line 297, ../sass/_mixins.scss */
.all-nhlbi-publications--landing .pager__items .pager__item--first:hover .pager-first, .all-nhlbi-publications--landing .pager .pager__item--first:hover .pager-first, .all-nhlbi-publications--landing .standard-more-link .pager__item--first:hover .pager-first, .all-nhlbi-publications--landing .news-and-events--landing .more-link .pager__item--first:hover .pager-first, .news-and-events--landing .all-nhlbi-publications--landing .more-link .pager__item--first:hover .pager-first, .all-nhlbi-publications--landing .view-more-link .pager__item--first:hover .pager-first {
  background-image: url("../images/Pagination Icons/png/white/angle-left-first solid.png");
}
/* line 301, ../sass/_mixins.scss */
.all-nhlbi-publications--landing .pager__items .pager-previous, .all-nhlbi-publications--landing .pager .pager-previous, .all-nhlbi-publications--landing .standard-more-link .pager-previous, .all-nhlbi-publications--landing .news-and-events--landing .more-link .pager-previous, .news-and-events--landing .all-nhlbi-publications--landing .more-link .pager-previous, .all-nhlbi-publications--landing .view-more-link .pager-previous {
  background-image: url("../images/Pagination Icons/png/dark-grey/angle-left-prev solid.png");
  background-repeat: no-repeat;
  background-position: initial;
  background-position-x: center;
  background-position-y: center;
  background-size: contain;
  display: inline-block;
  width: 1em;
  height: 1em;
}
/* line 313, ../sass/_mixins.scss */
.all-nhlbi-publications--landing .pager__items .pager__item--previous:hover .pager-previous, .all-nhlbi-publications--landing .pager .pager__item--previous:hover .pager-previous, .all-nhlbi-publications--landing .standard-more-link .pager__item--previous:hover .pager-previous, .all-nhlbi-publications--landing .news-and-events--landing .more-link .pager__item--previous:hover .pager-previous, .news-and-events--landing .all-nhlbi-publications--landing .more-link .pager__item--previous:hover .pager-previous, .all-nhlbi-publications--landing .view-more-link .pager__item--previous:hover .pager-previous {
  background-image: url("../images/Pagination Icons/png/white/angle-left-prev solid.png");
}
/* line 318, ../sass/_mixins.scss */
.all-nhlbi-publications--landing .pager__items .pager-next, .all-nhlbi-publications--landing .pager .pager-next, .all-nhlbi-publications--landing .standard-more-link .pager-next, .all-nhlbi-publications--landing .news-and-events--landing .more-link .pager-next, .news-and-events--landing .all-nhlbi-publications--landing .more-link .pager-next, .all-nhlbi-publications--landing .view-more-link .pager-next {
  background-image: url("../images/Pagination Icons/png/dark-grey/angle-right-next solid.png");
  background-repeat: no-repeat;
  background-position: initial;
  background-position-x: center;
  background-position-y: center;
  background-size: contain;
  display: inline-block;
  width: 1em;
  height: 1em;
}
/* line 330, ../sass/_mixins.scss */
.all-nhlbi-publications--landing .pager__items .pager__item--next:hover .pager-next, .all-nhlbi-publications--landing .pager .pager__item--next:hover .pager-next, .all-nhlbi-publications--landing .standard-more-link .pager__item--next:hover .pager-next, .all-nhlbi-publications--landing .news-and-events--landing .more-link .pager__item--next:hover .pager-next, .news-and-events--landing .all-nhlbi-publications--landing .more-link .pager__item--next:hover .pager-next, .all-nhlbi-publications--landing .view-more-link .pager__item--next:hover .pager-next {
  background-image: url("../images/Pagination Icons/png/white/angle-right-next solid.png");
}
/* line 335, ../sass/_mixins.scss */
.all-nhlbi-publications--landing .pager__items .pager-last, .all-nhlbi-publications--landing .pager .pager-last, .all-nhlbi-publications--landing .standard-more-link .pager-last, .all-nhlbi-publications--landing .news-and-events--landing .more-link .pager-last, .news-and-events--landing .all-nhlbi-publications--landing .more-link .pager-last, .all-nhlbi-publications--landing .view-more-link .pager-last {
  background-image: url("../images/Pagination Icons/png/dark-grey/angle-right-last solid.png");
  background-repeat: no-repeat;
  background-position: initial;
  background-position-x: center;
  background-position-y: center;
  background-size: contain;
  display: inline-block;
  width: 1em;
  height: 1em;
}
/* line 347, ../sass/_mixins.scss */
.all-nhlbi-publications--landing .pager__items .pager__item--last:hover .pager-last, .all-nhlbi-publications--landing .pager .pager__item--last:hover .pager-last, .all-nhlbi-publications--landing .standard-more-link .pager__item--last:hover .pager-last, .all-nhlbi-publications--landing .news-and-events--landing .more-link .pager__item--last:hover .pager-last, .news-and-events--landing .all-nhlbi-publications--landing .more-link .pager__item--last:hover .pager-last, .all-nhlbi-publications--landing .view-more-link .pager__item--last:hover .pager-last {
  background-image: url("../images/Pagination Icons/png/white/angle-right-last solid.png");
}
/* line 4505, ../sass/_styleguide.scss */
.all-nhlbi-publications--landing .view-header {
  display: block;
  margin: 1.5em 0 2em 0;
  padding-left: 10px;
}
/* line 4511, ../sass/_styleguide.scss */
.all-nhlbi-publications--landing .form-item-items-per-page {
  display: block;
  float: right;
  padding-right: 10px;
}
/* line 4515, ../sass/_styleguide.scss */
.all-nhlbi-publications--landing .form-item-items-per-page label {
  display: inline-block;
}

/* line 4521, ../sass/_styleguide.scss */
.general-accordion.ui-accordion,
.primary-accordion.ui-accordion,
.secondary-accordion.ui-accordion,
.supplemental-accordion {
  border: none;
}
/* line 4527, ../sass/_styleguide.scss */
.general-accordion.ui-accordion .ui-accordion-header:focus,
.primary-accordion.ui-accordion .ui-accordion-header:focus,
.secondary-accordion.ui-accordion .ui-accordion-header:focus,
.supplemental-accordion .ui-accordion-header:focus {
  outline: none;
}
/* line 4530, ../sass/_styleguide.scss */
.general-accordion.ui-accordion .ui-accordion-header:focus h2, .general-accordion.ui-accordion .ui-accordion-header:focus .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .general-accordion.ui-accordion .ui-accordion-header:focus h1, .general-accordion.ui-accordion .ui-accordion-header:focus .contact-method-label, .general-accordion.ui-accordion .ui-accordion-header:focus h3, .general-accordion.ui-accordion .ui-accordion-header:focus .field--name-field-social-phrase-group-title, .general-accordion.ui-accordion .ui-accordion-header:focus .field--name-field-image-gallery-title,
.primary-accordion.ui-accordion .ui-accordion-header:focus h2,
.primary-accordion.ui-accordion .ui-accordion-header:focus .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .primary-accordion.ui-accordion .ui-accordion-header:focus h1,
.primary-accordion.ui-accordion .ui-accordion-header:focus .contact-method-label,
.primary-accordion.ui-accordion .ui-accordion-header:focus h3,
.primary-accordion.ui-accordion .ui-accordion-header:focus .field--name-field-social-phrase-group-title,
.primary-accordion.ui-accordion .ui-accordion-header:focus .field--name-field-image-gallery-title,
.secondary-accordion.ui-accordion .ui-accordion-header:focus h2,
.secondary-accordion.ui-accordion .ui-accordion-header:focus .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .secondary-accordion.ui-accordion .ui-accordion-header:focus h1,
.secondary-accordion.ui-accordion .ui-accordion-header:focus .contact-method-label,
.secondary-accordion.ui-accordion .ui-accordion-header:focus h3,
.secondary-accordion.ui-accordion .ui-accordion-header:focus .field--name-field-social-phrase-group-title,
.secondary-accordion.ui-accordion .ui-accordion-header:focus .field--name-field-image-gallery-title,
.supplemental-accordion .ui-accordion-header:focus h2,
.supplemental-accordion .ui-accordion-header:focus .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .supplemental-accordion .ui-accordion-header:focus h1,
.supplemental-accordion .ui-accordion-header:focus .contact-method-label,
.supplemental-accordion .ui-accordion-header:focus h3,
.supplemental-accordion .ui-accordion-header:focus .field--name-field-social-phrase-group-title,
.supplemental-accordion .ui-accordion-header:focus .field--name-field-image-gallery-title {
  outline: #bf0d2e dotted 3px;
}
/* line 4535, ../sass/_styleguide.scss */
.general-accordion.ui-accordion h2.ui-accordion-header:focus, .general-accordion.ui-accordion .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.ui-accordion-header:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .general-accordion.ui-accordion h1.ui-accordion-header:focus, .general-accordion.ui-accordion .ui-accordion-header.contact-method-label:focus, .general-accordion.ui-accordion h3.ui-accordion-header:focus, .general-accordion.ui-accordion .ui-accordion-header.field--name-field-social-phrase-group-title:focus, .general-accordion.ui-accordion .ui-accordion-header.field--name-field-image-gallery-title:focus,
.primary-accordion.ui-accordion h2.ui-accordion-header:focus,
.primary-accordion.ui-accordion .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.ui-accordion-header:focus,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .primary-accordion.ui-accordion h1.ui-accordion-header:focus,
.primary-accordion.ui-accordion .ui-accordion-header.contact-method-label:focus,
.primary-accordion.ui-accordion h3.ui-accordion-header:focus,
.primary-accordion.ui-accordion .ui-accordion-header.field--name-field-social-phrase-group-title:focus,
.primary-accordion.ui-accordion .ui-accordion-header.field--name-field-image-gallery-title:focus,
.secondary-accordion.ui-accordion h2.ui-accordion-header:focus,
.secondary-accordion.ui-accordion .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.ui-accordion-header:focus,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .secondary-accordion.ui-accordion h1.ui-accordion-header:focus,
.secondary-accordion.ui-accordion .ui-accordion-header.contact-method-label:focus,
.secondary-accordion.ui-accordion h3.ui-accordion-header:focus,
.secondary-accordion.ui-accordion .ui-accordion-header.field--name-field-social-phrase-group-title:focus,
.secondary-accordion.ui-accordion .ui-accordion-header.field--name-field-image-gallery-title:focus,
.supplemental-accordion h2.ui-accordion-header:focus,
.supplemental-accordion .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.ui-accordion-header:focus,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .supplemental-accordion h1.ui-accordion-header:focus,
.supplemental-accordion .ui-accordion-header.contact-method-label:focus,
.supplemental-accordion h3.ui-accordion-header:focus,
.supplemental-accordion .ui-accordion-header.field--name-field-social-phrase-group-title:focus,
.supplemental-accordion .ui-accordion-header.field--name-field-image-gallery-title:focus {
  outline: #bf0d2e dotted 3px;
}
/* line 4542, ../sass/_styleguide.scss */
.general-accordion.ui-accordion .ui-accordion .ui-accordion-header:focus,
.primary-accordion.ui-accordion .ui-accordion .ui-accordion-header:focus,
.secondary-accordion.ui-accordion .ui-accordion .ui-accordion-header:focus,
.supplemental-accordion .ui-accordion .ui-accordion-header:focus {
  outline: #bf0d2e dotted 3px;
}

/* line 4550, ../sass/_styleguide.scss */
input:focus, select:focus, textarea:focus {
  outline: #bf0d2e 3px dotted;
}

/**
 * Shared classes that are extended by multiple stylesheets.
 *
 * This is only intended to be used as a stopgap while we have separate stylesheets.
 * New classes should not be added.  Classes may be moved here if the are extended by a component a
 * and that causes the css compilation to fail
 **/
/* line 10, ../sass/_shared.scss */
.pagenavtitle, .gov-delivery-foa-signup .email-alert-text {
  font-size: 1.125rem;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-weight: bold;
  color: #222;
}
@media all and (min-width: 1440px) {
  /* line 10, ../sass/_shared.scss */
  .pagenavtitle, .gov-delivery-foa-signup .email-alert-text {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 10, ../sass/_shared.scss */
  .pagenavtitle, .gov-delivery-foa-signup .email-alert-text {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 10, ../sass/_shared.scss */
  .pagenavtitle, .gov-delivery-foa-signup .email-alert-text {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 10, ../sass/_shared.scss */
  .pagenavtitle, .gov-delivery-foa-signup .email-alert-text {
    font-size: 1rem;
  }
}

/* Layout rules */
/**
 * Center the page.
 *
 * If you want to make the page a fixed width and centered in the viewport,
 * this is the standards-compliant way to do that.
 */
/* line 7, ../sass/layouts/_global.scss */
.clearfix, .row, .row .row, #content #submenu-block ul.menu, #nhlbi-submenu-block ul.menu {
  *zoom: 1;
}
/* line 9, ../sass/layouts/_global.scss */
.clearfix:before, .row:before, .row .row:before, #content #submenu-block ul.menu:before, #nhlbi-submenu-block ul.menu:before, .clearfix:after, .row:after, .row .row:after, #content #submenu-block ul.menu:after, #nhlbi-submenu-block ul.menu:after {
  content: " ";
  display: table;
}
/* line 13, ../sass/layouts/_global.scss */
.clearfix:after, .row:after, .row .row:after, #content #submenu-block ul.menu:after, #nhlbi-submenu-block ul.menu:after {
  clear: both;
}

/* line 17, ../sass/layouts/_global.scss */
.row, .column {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 21, ../sass/layouts/_global.scss */
.content-container {
  margin-top: 1.4em;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  clear: both;
  /*
  @include bp-desktop-mid {
    width: $desktopWidth;
    margin-left: auto;
    margin-right: auto;
  }

  @include bp-desktop-constrained {
    width: 95%;
  }
   */
}
@media all and (min-width: 1100px) {
  /* line 21, ../sass/layouts/_global.scss */
  .content-container {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 21, ../sass/layouts/_global.scss */
  .content-container {
    width: 95%;
  }
}

@media all and (min-width: 768px) {
  /* line 24, ../sass/layouts/_global.scss */
  .content-container-constrained, .topicFeatured .view-content .views-row, .topicLanding > .view-content > .views-infinite-scroll-content-wrapper, .executive-news--landing .topicFeatured > .view-content .views-rows, .content-container.content-container-constrained, .topicFeatured .view-content .content-container.views-row, .topicLanding > .view-content > .content-container.views-infinite-scroll-content-wrapper, .executive-news--landing .topicFeatured > .view-content .content-container.views-rows {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}

/* line 32, ../sass/layouts/_global.scss */
.content-container-full-tablet {
  margin-top: 1.4em;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  clear: both;
  /*
  @include bp-desktop-mid {
    width: $desktopWidth;
    margin-left: auto;
    margin-right: auto;
  }

  @include bp-desktop-constrained {
    width: 95%;
  }
   */
}
@media all and (min-width: 1100px) {
  /* line 32, ../sass/layouts/_global.scss */
  .content-container-full-tablet {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 32, ../sass/layouts/_global.scss */
  .content-container-full-tablet {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 32, ../sass/layouts/_global.scss */
  .content-container-full-tablet {
    width: 95%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 32, ../sass/layouts/_global.scss */
  .content-container-full-tablet {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

/* line 35, ../sass/layouts/_global.scss */
.content-container-full-phone {
  margin-top: 1.4em;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  clear: both;
  /*
  @include bp-desktop-mid {
    width: $desktopWidth;
    margin-left: auto;
    margin-right: auto;
  }

  @include bp-desktop-constrained {
    width: 95%;
  }
   */
}
@media all and (min-width: 1100px) {
  /* line 35, ../sass/layouts/_global.scss */
  .content-container-full-phone {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 35, ../sass/layouts/_global.scss */
  .content-container-full-phone {
    width: 95%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 35, ../sass/layouts/_global.scss */
  .content-container-full-phone {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

/* line 39, ../sass/layouts/_global.scss */
.content-indent {
  width: auto;
}
@media all and (min-width: 1100px) {
  /* line 39, ../sass/layouts/_global.scss */
  .content-indent {
    margin-left: 2.6em;
    width: auto;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 39, ../sass/layouts/_global.scss */
  .content-indent {
    margin-left: 1.6em;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 39, ../sass/layouts/_global.scss */
  .content-indent {
    margin-left: 0;
  }
}

/* line 43, ../sass/layouts/_global.scss */
.row {
  overflow-x: hidden;
  margin-top: 0;
  margin-bottom: 0;
  /* setting fixed width */
}

/* line 51, ../sass/layouts/_global.scss */
.row .row {
  width: auto;
  max-width: none;
}
@media all and (min-width: 1100px) {
  /* line 51, ../sass/layouts/_global.scss */
  .row .row {
    margin-left: -1.25em;
    margin-right: -1.25em;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 51, ../sass/layouts/_global.scss */
  .row .row {
    margin-left: -0.96154em;
    margin-right: -0.96154em;
  }
}
@media all and (min-width: 480px) and (max-width: 767px) {
  /* line 51, ../sass/layouts/_global.scss */
  .row .row {
    margin-left: -0.625em;
    margin-right: -0.625em;
  }
}
@media all and (min-width: 0em) and (max-width: 360px) {
  /* line 51, ../sass/layouts/_global.scss */
  .row .row {
    margin-left: -0.41667em;
    margin-right: -0.41667em;
  }
}

/* line 73, ../sass/layouts/_global.scss */
.column {
  position: relative;
  width: 100%;
  float: left;
  word-wrap: break-word;
}
@media all and (min-width: 1100px) {
  /* line 73, ../sass/layouts/_global.scss */
  .column {
    padding-left: 1.25em;
    padding-right: 1.25em;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 73, ../sass/layouts/_global.scss */
  .column {
    padding-left: 0.96154em;
    padding-right: 0.96154em;
  }
}
@media all and (min-width: 480px) and (max-width: 767px) {
  /* line 73, ../sass/layouts/_global.scss */
  .column {
    padding-left: 0.625em;
    padding-right: 0.625em;
  }
}
@media all and (min-width: 0em) and (max-width: 360px) {
  /* line 73, ../sass/layouts/_global.scss */
  .column {
    padding-left: 0.41667em;
    padding-right: 0.41667em;
  }
}

/* line 96, ../sass/layouts/_global.scss */
.panel-three-column {
  overflow: hidden;
  *zoom: 1;
  overflow: visible;
}

/* line 104, ../sass/layouts/_global.scss */
aside.layout-sidebar-second {
  margin-top: .625em;
}

/**
 * The layout when there are no sidebars.
 */
/* line 112, ../sass/layouts/_global.scss */
.no-sidebars #page-content, .no-sidebars #content {
  padding: 0;
}
/* line 116, ../sass/layouts/_global.scss */
.no-sidebars #page-content {
  clear: both;
}

/**
 * The layout when there is only one sidebar, the left one.
 */
/* line 124, ../sass/layouts/_global.scss */
.sidebar-first {
  /* Span 1 column, starting in 1st column from left. */
}
/* line 125, ../sass/layouts/_global.scss */
.sidebar-first #content {
  width: 81.25%;
  padding-right: 0;
}
@media all and (min-width: 1100px) {
  /* line 125, ../sass/layouts/_global.scss */
  .sidebar-first #content {
    padding-left: 1.25em;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 125, ../sass/layouts/_global.scss */
  .sidebar-first #content {
    padding-left: 0.96154em;
  }
}
@media all and (min-width: 480px) and (max-width: 767px) {
  /* line 125, ../sass/layouts/_global.scss */
  .sidebar-first #content {
    padding-left: 0.625em;
  }
}
@media all and (min-width: 0em) and (max-width: 360px) {
  /* line 125, ../sass/layouts/_global.scss */
  .sidebar-first #content {
    padding-left: 0.41667em;
  }
}
/* line 144, ../sass/layouts/_global.scss */
.sidebar-first aside.layout-sidebar-first {
  width: 18.75%;
  padding-left: 0;
}

/**
 * The layout when there is only one sidebar, the right one.
 */
/* line 154, ../sass/layouts/_global.scss */
.sidebar-second #content {
  width: 78.125%;
  padding-left: 0;
}
@media all and (min-width: 1100px) {
  /* line 154, ../sass/layouts/_global.scss */
  .sidebar-second #content {
    padding-right: 1.25em;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 154, ../sass/layouts/_global.scss */
  .sidebar-second #content {
    padding-right: 0.96154em;
  }
}
@media all and (min-width: 480px) and (max-width: 767px) {
  /* line 154, ../sass/layouts/_global.scss */
  .sidebar-second #content {
    padding-right: 0.625em;
  }
}
@media all and (min-width: 0em) and (max-width: 360px) {
  /* line 154, ../sass/layouts/_global.scss */
  .sidebar-second #content {
    padding-right: 0.41667em;
  }
}
/* line 170, ../sass/layouts/_global.scss */
.sidebar-second aside.layout-sidebar-second {
  width: 21.875%;
  padding-right: 0;
}

/**
 * The layout when there are two sidebars.
 */
/* line 180, ../sass/layouts/_global.scss */
.two-sidebars #content {
  width: 60.375%;
  padding: 0 1.25em;
}
@media all and (min-width: 1100px) {
  /* line 180, ../sass/layouts/_global.scss */
  .two-sidebars #content {
    padding: 0 1.25em;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 180, ../sass/layouts/_global.scss */
  .two-sidebars #content {
    padding: 0 0.96154em;
  }
}
@media all and (min-width: 480px) and (max-width: 767px) {
  /* line 180, ../sass/layouts/_global.scss */
  .two-sidebars #content {
    padding: 0 0.625em;
  }
}
@media all and (min-width: 0em) and (max-width: 360px) {
  /* line 180, ../sass/layouts/_global.scss */
  .two-sidebars #content {
    padding: 0 0.41667em;
  }
}
/* line 196, ../sass/layouts/_global.scss */
.two-sidebars aside.layout-sidebar-first {
  width: 18.75%;
  padding-left: 0;
}
/* line 201, ../sass/layouts/_global.scss */
.two-sidebars aside.layout-sidebar-second {
  width: 20.875%;
  padding-right: 0;
  float: right;
}

/* line 1, ../sass/layouts/_home_page.scss */
#homepage-content {
  margin-top: 0;
}

/* line 4, ../sass/layouts/_home_page.scss */
#homepage-left {
  width: 75%;
}
/* line 7, ../sass/layouts/_home_page.scss */
#homepage-left article {
  margin-bottom: 20px;
}

/* line 12, ../sass/layouts/_home_page.scss */
#homepage-right {
  width: 25%;
}
/* line 15, ../sass/layouts/_home_page.scss */
#homepage-right .field-name-field-image {
  float: none;
  text-align: center;
  margin: 10px 0 0 0;
}
/* line 20, ../sass/layouts/_home_page.scss */
#homepage-right .field-name-field-image img {
  max-height: 180px;
}

/* line 25, ../sass/layouts/_home_page.scss */
#homepage-top {
  padding: 0;
  margin-bottom: 15px;
}

/* line 29, ../sass/layouts/_home_page.scss */
#homepage-first, #homepage-second, #homepage-third {
  width: 33.333%;
}

/* line 33, ../sass/layouts/_home_page.scss */
#homepage-below-top ul, #homepage-right ul {
  margin-top: 0;
  padding: 0;
  list-style-position: inside;
}
/* line 38, ../sass/layouts/_home_page.scss */
#homepage-below-top p, #homepage-right p {
  clear: both;
}

/* line 42, ../sass/layouts/_home_page.scss */
.node-type-home-page .carousel-items {
  width: 100%;
}

/* Our Hearts Map and Social Share page */
/*$research-topic-desktop-width: 384px;
$research-topic-desktop-height: 287px;
$research-topic-tablet-width: 384px;
$research-topic-tablet-height: 287px;
$research-topic-phone-width: 360px;
$research-topic-phone-height: 272px;*/
/*@mixin responsive-banner-promotion-text {
  @include responsive-font($banner-promotion-text-desktop-font-size, $banner-promotion-text-tablet-font-size, $banner-promotion-text-tablet-font-size, $banner-promotion-text-phone-font-size);
}*/
/*@mixin responsive-initiativehashtag {
  @include responsive-font($initiativehashtag-desktop-font-size, $initiativehashtag-desktop-font-size, $initiativehashtag-tablet-font-size, $initiativehashtag-phone-font-size);
}
@mixin responsive-initiativebuttonlabel {
  @include responsive-font($initiativebuttonlabel-desktop-font-size, $initiativebuttonlabel-desktop-font-size, $initiativebuttonlabel-tablet-font-size, $initiativebuttonlabel-phone-font-size);
}*/
/*
 * Sets the color and direction or featured related items section
 * @backgroundColor - the color of the full-width background
 * @contentContainer - the color of the inner content background
 * @headingColor - the color of the H tag
 * @textColor  - the color of the summary text
 * @flex-direction - the direction of orientation for the flexbox items
 */
/*
 * Sets the styles for files cards
 * @backgroundColor - the color of the full-width background
 *
 */
/*@mixin responsive-banner-promotion-text {
  @include responsive-font($banner-promotion-text-desktop-font-size, $banner-promotion-text-tablet-font-size, $banner-promotion-text-tablet-font-size, $banner-promotion-text-phone-font-size);
}*/
/*@mixin responsive-initiativehashtag {
  @include responsive-font($initiativehashtag-desktop-font-size, $initiativehashtag-desktop-font-size, $initiativehashtag-tablet-font-size, $initiativehashtag-phone-font-size);
}
@mixin responsive-initiativebuttonlabel {
  @include responsive-font($initiativebuttonlabel-desktop-font-size, $initiativebuttonlabel-desktop-font-size, $initiativebuttonlabel-tablet-font-size, $initiativebuttonlabel-phone-font-size);
}*/
/*
 * Sets the color and direction or featured related items section
 * @backgroundColor - the color of the full-width background
 * @contentContainer - the color of the inner content background
 * @headingColor - the color of the H tag
 * @textColor  - the color of the summary text
 * @flex-direction - the direction of orientation for the flexbox items
 */
/*
 * Sets the styles for files cards
 * @backgroundColor - the color of the full-width background
 *
 */
/* line 16, ../sass/layouts/_our_hearts.scss */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

/* line 24, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts h1, .node--type-our-hearts .field--name-field-ourhearts-map-title {
  color: #222;
  font-weight: bold;
  text-align: left;
  margin: 1.5em 0.5em 0.25em 0.5em;
}
/* line 31, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts h3, .node--type-our-hearts .field--name-field-social-phrase-group-title, .node--type-our-hearts .field--name-field-image-gallery-title, .node--type-our-hearts .field--name-field-ourhearts-learncards-title, .node--type-our-hearts .field--name-field-ourhearts-share-cards-titl {
  font-family: "Merriweather", serif;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: normal;
  margin-bottom: 1em;
}
@media all and (min-width: 1440px) {
  /* line 31, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts h3, .node--type-our-hearts .field--name-field-social-phrase-group-title, .node--type-our-hearts .field--name-field-image-gallery-title, .node--type-our-hearts .field--name-field-ourhearts-learncards-title, .node--type-our-hearts .field--name-field-ourhearts-share-cards-titl {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 31, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts h3, .node--type-our-hearts .field--name-field-social-phrase-group-title, .node--type-our-hearts .field--name-field-image-gallery-title, .node--type-our-hearts .field--name-field-ourhearts-learncards-title, .node--type-our-hearts .field--name-field-ourhearts-share-cards-titl {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 31, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts h3, .node--type-our-hearts .field--name-field-social-phrase-group-title, .node--type-our-hearts .field--name-field-image-gallery-title, .node--type-our-hearts .field--name-field-ourhearts-learncards-title, .node--type-our-hearts .field--name-field-ourhearts-share-cards-titl {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 31, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts h3, .node--type-our-hearts .field--name-field-social-phrase-group-title, .node--type-our-hearts .field--name-field-image-gallery-title, .node--type-our-hearts .field--name-field-ourhearts-learncards-title, .node--type-our-hearts .field--name-field-ourhearts-share-cards-titl {
    font-size: 1.125rem;
  }
}
/* line 38, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .field--name-field-ourhearts-learncards-title {
  color: #222;
}

/* line 45, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .field--type-text-with-summary, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .field--type-text-with-summary {
  color: #222;
  padding: 0.5em 1em;
  text-align: left;
  z-index: 10;
  position: relative;
}
/* line 51, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .field--type-text-with-summary p, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .field--type-text-with-summary p {
  font-size: 1.125rem;
}
@media all and (min-width: 1440px) {
  /* line 51, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .field--type-text-with-summary p, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .field--type-text-with-summary p {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 51, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .field--type-text-with-summary p, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .field--type-text-with-summary p {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 51, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .field--type-text-with-summary p, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .field--type-text-with-summary p {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 51, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .field--type-text-with-summary p, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .field--type-text-with-summary p {
    font-size: 1rem;
  }
}
/* line 61, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts article.node--type-our-hearts .social-links-buttons a:focus, .node--type-our-hearts article.node--type-our-hearts .social-button-container a:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts article.node--type-our-hearts .social-links-buttons a:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts article.node--type-our-hearts .social-button-container a:focus {
  border: 2px solid #007A89;
}
/* line 65, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts article.node--type-our-hearts .social-links-buttons a:active, .node--type-our-hearts article.node--type-our-hearts .social-button-container a:active, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts article.node--type-our-hearts .social-links-buttons a:active, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts article.node--type-our-hearts .social-button-container a:active {
  border: 0px;
}
/* line 75, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts #block-heartgmapblock #map, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts #block-heartgmapblock #map {
  width: 100%;
  height: 100%;
  margin: 0;
  border: 0;
  position: relative;
}
@media all and (min-width: 480px) and (max-width: 767px) {
  /* line 75, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts #block-heartgmapblock #map, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts #block-heartgmapblock #map {
    height: 400px;
  }
}
@media all and (max-width: 479px) {
  /* line 75, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts #block-heartgmapblock #map, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts #block-heartgmapblock #map {
    height: 400px;
  }
}
/* line 92, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts #block-heartgmapblock #legend, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts #block-heartgmapblock #legend {
  font-family: "Open Sans",Verdana, Arial, sans-serif;
  margin: 10px;
  padding: 15px;
  background: #fff;
  border-radius: 6px;
  box-shadow: #3c3c3c 5px 5px 5px;
}
/* line 100, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts #block-heartgmapblock #legend h3, .node--type-our-hearts #block-heartgmapblock #legend .field--name-field-social-phrase-group-title, .node--type-our-hearts #block-heartgmapblock #legend .field--name-field-image-gallery-title, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts #block-heartgmapblock #legend h3, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts #block-heartgmapblock #legend .field--name-field-social-phrase-group-title, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts #block-heartgmapblock #legend .field--name-field-image-gallery-title {
  margin-top: 0;
  font-size: 1.5em;
  font-weight: bold;
  color: #222;
}
/* line 107, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts #block-heartgmapblock #legend img, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts #block-heartgmapblock #legend img {
  vertical-align: middle;
  width: 30px;
  margin-right: 10px;
}
/* line 113, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts #block-heartgmapblock #legend div, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts #block-heartgmapblock #legend div {
  font-size: 0.875rem;
  color: #222;
}
@media all and (max-width: 479px) {
  /* line 92, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts #block-heartgmapblock #legend, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts #block-heartgmapblock #legend {
    display: none;
  }
}
/* line 123, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts #block-heartgmapblock .map-wrapper, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts #block-heartgmapblock .map-wrapper {
  position: relative;
  width: 100%;
  height: 700px;
}
/* line 130, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts #block-heartgmapblock #heart-map-sidebar,
.node--type-our-hearts #block-heartgmapblock div#close-side-panel, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts #block-heartgmapblock #heart-map-sidebar,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts #block-heartgmapblock div#close-side-panel {
  position: absolute;
  left: -400px;
  height: 100%;
  width: 400px;
  overflow: scroll;
  z-index: 99999;
  background: #f4f4f4;
  border: 1px solid #CCCCCC;
  box-sizing: border-box;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media all and (max-width: 479px) {
  /* line 130, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts #block-heartgmapblock #heart-map-sidebar,
  .node--type-our-hearts #block-heartgmapblock div#close-side-panel, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts #block-heartgmapblock #heart-map-sidebar,
  .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts #block-heartgmapblock div#close-side-panel {
    left: -80%;
    width: 80%;
  }
}
/* line 152, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts #block-heartgmapblock .sidebar-header, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts #block-heartgmapblock .sidebar-header {
  border-bottom: 1px solid #CCCCCC;
  padding: 1em 2em;
}
/* line 156, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts #block-heartgmapblock .side-panel-card, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts #block-heartgmapblock .side-panel-card {
  margin: 1em;
  padding: 1em;
  background: #fff;
}
/* line 160, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts #block-heartgmapblock .side-panel-card p img, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts #block-heartgmapblock .side-panel-card p img {
  margin-top: 1em;
}
/* line 164, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts #block-heartgmapblock .side-panel-card .social-handle, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts #block-heartgmapblock .side-panel-card .social-handle {
  text-transform: capitalize;
}
/* line 168, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts #block-heartgmapblock .event-title, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts #block-heartgmapblock .event-title {
  font-size: 1.285714285714286em;
}
/* line 172, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts #block-heartgmapblock a.event-title, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts #block-heartgmapblock a.event-title {
  color: #4D2D67;
}
/* line 175, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts #block-heartgmapblock .city-name, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts #block-heartgmapblock .city-name {
  font-size: 1.142857142857143em;
  font-weight: bold;
}
/* line 180, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts #block-heartgmapblock .heart-map-display, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts #block-heartgmapblock .heart-map-display {
  left: 0 !important;
}
/* line 184, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts #block-heartgmapblock .side-closer, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts #block-heartgmapblock .side-closer {
  left: 400px !important;
}
@media all and (max-width: 479px) {
  /* line 184, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts #block-heartgmapblock .side-closer, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts #block-heartgmapblock .side-closer {
    left: 80% !important;
  }
}
/* line 191, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts #block-heartgmapblock .arrow-left, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts #block-heartgmapblock .arrow-left {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid #222;
  margin: 19px auto;
}
/* line 199, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts #block-heartgmapblock div#close-side-panel, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts #block-heartgmapblock div#close-side-panel {
  width: 35px;
  height: 60px;
  top: 20px;
  border-left: 2px solid #999;
  z-index: 90000;
  overflow: hidden;
  cursor: pointer;
}
/* line 209, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts #block-heartgmapblock #loadingAjax, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts #block-heartgmapblock #loadingAjax {
  z-index: 99999;
}
/* line 213, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts #block-heartgmapblock .spinner-wrapper, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts #block-heartgmapblock .spinner-wrapper {
  width: 100%;
  float: left;
  position: relative;
}
/* line 219, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts #block-heartgmapblock #loader, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts #block-heartgmapblock #loader {
  margin: 56px auto;
  width: 42px;
  display: block;
}
/* line 225, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts #block-heartgmapblock .loading, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts #block-heartgmapblock .loading {
  border: 12px solid #f4f4f4;
  border-top: 12px solid #007A89;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin .75s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* line 239, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts #block-heartgmapblock .social-key-container, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts #block-heartgmapblock .social-key-container {
  padding-top: 2em;
  padding-bottom: 2em;
  display: flex;
}
@media all and (min-width: 0em) and (max-width: 1024px) {
  /* line 239, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts #block-heartgmapblock .social-key-container, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts #block-heartgmapblock .social-key-container {
    padding: 0 1.5em;
  }
}
@media all and (min-width: 480px) and (max-width: 767px) {
  /* line 239, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts #block-heartgmapblock .social-key-container, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts #block-heartgmapblock .social-key-container {
    flex-direction: column;
  }
}
@media all and (max-width: 479px) {
  /* line 239, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts #block-heartgmapblock .social-key-container, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts #block-heartgmapblock .social-key-container {
    flex-direction: column;
  }
}
/* line 257, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts #block-heartgmapblock .social-key-inner-container, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts #block-heartgmapblock .social-key-inner-container {
  width: 65%;
}
@media all and (min-width: 480px) and (max-width: 767px) {
  /* line 257, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts #block-heartgmapblock .social-key-inner-container, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts #block-heartgmapblock .social-key-inner-container {
    width: auto;
  }
}
@media all and (max-width: 479px) {
  /* line 257, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts #block-heartgmapblock .social-key-inner-container, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts #block-heartgmapblock .social-key-inner-container {
    width: auto;
  }
}
/* line 269, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts #block-heartgmapblock .social-links-buttons, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts #block-heartgmapblock .social-links-buttons {
  width: 35%;
  text-align: right;
  margin-top: 4em;
}
@media all and (min-width: 480px) and (max-width: 767px) {
  /* line 269, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts #block-heartgmapblock .social-links-buttons, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts #block-heartgmapblock .social-links-buttons {
    width: auto;
    text-align: left;
  }
}
@media all and (max-width: 479px) {
  /* line 269, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts #block-heartgmapblock .social-links-buttons, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts #block-heartgmapblock .social-links-buttons {
    width: auto;
    text-align: left;
  }
}
/* line 284, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts #block-heartgmapblock .social-links-buttons a.ext-icon, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts #block-heartgmapblock .social-links-buttons a.ext-icon {
  display: none;
}
/* line 288, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts #block-heartgmapblock .social-links-buttons .facebook-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts #block-heartgmapblock .social-links-buttons .facebook-link {
  width: 44px;
  height: 44px;
  background: url("../images/ourhearts/facebook-icon.svg") top left no-repeat;
  background-size: 100%;
  margin: 0 0.3em;
  display: inline-block;
}
/* line 296, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts #block-heartgmapblock .social-links-buttons .facebook-link span, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts #block-heartgmapblock .social-links-buttons .facebook-link span {
  position: absolute;
  margin-left: -50000px;
}
/* line 302, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts #block-heartgmapblock .social-links-buttons .twitter-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts #block-heartgmapblock .social-links-buttons .twitter-link {
  width: 44px;
  height: 44px;
  background: url("../images/ourhearts/twitter-icon.svg") top left no-repeat;
  background-size: 100%;
  margin: 0 0.3em;
  display: inline-block;
}
/* line 310, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts #block-heartgmapblock .social-links-buttons .twitter-link span, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts #block-heartgmapblock .social-links-buttons .twitter-link span {
  position: absolute;
  margin-left: -50000px;
}
/* line 316, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts #block-heartgmapblock .social-links-buttons .linkedin-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts #block-heartgmapblock .social-links-buttons .linkedin-link {
  width: 44px;
  height: 44px;
  background: url("../images/ourhearts/linkedin-icon.svg") top left no-repeat;
  background-size: 100%;
  margin: 0 0.3em;
  display: inline-block;
}
/* line 324, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts #block-heartgmapblock .social-links-buttons .linkedin-link span, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts #block-heartgmapblock .social-links-buttons .linkedin-link span {
  position: absolute;
  margin-left: -50000px;
}
/* line 330, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts #block-heartgmapblock .social-links-buttons .youtube-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts #block-heartgmapblock .social-links-buttons .youtube-link {
  width: 44px;
  height: 44px;
  background: url("../images/ourhearts/youtube-icon.svg") top left no-repeat;
  background-size: 100%;
  margin: 0 0.3em;
  display: inline-block;
}
/* line 338, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts #block-heartgmapblock .social-links-buttons .youtube-link span, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts #block-heartgmapblock .social-links-buttons .youtube-link span {
  position: absolute;
  margin-left: -50000px;
}
/* line 345, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts #block-heartgmapblock .social-key, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts #block-heartgmapblock .social-key {
  padding: 5px 10px 5px 40px;
  background: url("../images/ourhearts/Heart-icon.svg") 0 40% no-repeat;
  background-size: 25px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  /* line 345, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts #block-heartgmapblock .social-key, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts #block-heartgmapblock .social-key {
    background-image: url("../images/ourhearts/heart-icon-png.png");
    background-repeat: no-repeat;
  }
}
/* line 355, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts #block-heartgmapblock .social-key p, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts #block-heartgmapblock .social-key p {
  margin: 5px 0;
  font-size: 1.125rem;
  color: #222;
}
@media all and (min-width: 1440px) {
  /* line 355, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts #block-heartgmapblock .social-key p, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts #block-heartgmapblock .social-key p {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 355, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts #block-heartgmapblock .social-key p, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts #block-heartgmapblock .social-key p {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 355, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts #block-heartgmapblock .social-key p, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts #block-heartgmapblock .social-key p {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 355, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts #block-heartgmapblock .social-key p, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts #block-heartgmapblock .social-key p {
    font-size: 1rem;
  }
}
/* line 362, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts #block-heartgmapblock .event-key, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts #block-heartgmapblock .event-key {
  padding: 5px 10px 5px 40px;
  background: url("../images/ourhearts/Event-icon.svg") 0 40% no-repeat;
  background-size: 25px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  /* line 362, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts #block-heartgmapblock .event-key, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts #block-heartgmapblock .event-key {
    background-image: url("../images/ourhearts/event-icon-png.png");
    background-repeat: no-repeat;
  }
}
/* line 372, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts #block-heartgmapblock .event-key p, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts #block-heartgmapblock .event-key p {
  margin: 5px 0;
  font-size: 1.125rem;
  color: #222;
}
@media all and (min-width: 1440px) {
  /* line 372, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts #block-heartgmapblock .event-key p, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts #block-heartgmapblock .event-key p {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 372, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts #block-heartgmapblock .event-key p, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts #block-heartgmapblock .event-key p {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 372, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts #block-heartgmapblock .event-key p, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts #block-heartgmapblock .event-key p {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 372, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts #block-heartgmapblock .event-key p, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts #block-heartgmapblock .event-key p {
    font-size: 1rem;
  }
}
/* line 383, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts-card, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card {
  border-top: 4px solid #fff;
}
/* line 387, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts_share, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts_share {
  background: #4D2D66;
  padding: 3em 1em;
  text-align: center;
}
/* line 391, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts_share h3, .node--type-our-hearts .ourhearts_share .field--name-field-social-phrase-group-title, .node--type-our-hearts .ourhearts_share .field--name-field-image-gallery-title, .node--type-our-hearts .ourhearts_share .ourhearts_titles, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts_share h3, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts_share .field--name-field-social-phrase-group-title, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts_share .field--name-field-image-gallery-title, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts_share .ourhearts_titles {
  width: 100%;
  text-align: left;
}
/* line 396, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts_share .field--name-field-ourhearts-share-card img, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts_share .field--name-field-ourhearts-share-card img {
  height: auto;
}
/* line 400, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts_share .field--name-field-ourhearts-share-cards-titl, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts_share .field--name-field-ourhearts-share-cards-titl {
  color: #fff;
  text-align: left;
}
/* line 405, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts_share .responsive-container, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts_share .responsive-container {
  display: flex;
  justify-content: space-evenly;
  align-items: stretch;
}
@media all and (max-width: 767px) {
  /* line 405, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .ourhearts_share .responsive-container, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts_share .responsive-container {
    display: block;
  }
}
/* line 414, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts_share .responsive-container .field--name-field-card-text, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts_share .responsive-container .field--name-field-card-text {
  display: flex;
  justify-content: space-evenly;
  align-items: stretch;
  position: relative;
}
/* line 421, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts_share .responsive-container .field__item.quote-bubble, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts_share .responsive-container .field__item.quote-bubble {
  background: #fff;
  padding: 2em;
  text-align: left;
  position: relative;
  margin: 0 0.5em 0;
}
@media all and (max-width: 767px) {
  /* line 421, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .ourhearts_share .responsive-container .field__item.quote-bubble, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts_share .responsive-container .field__item.quote-bubble {
    margin-bottom: 2em;
    width: auto;
  }
}
/* line 433, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts_share .responsive-container .field__item.quote-bubble p, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts_share .responsive-container .field__item.quote-bubble p {
  font-size: 1.125rem;
}
@media all and (min-width: 1440px) {
  /* line 433, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .ourhearts_share .responsive-container .field__item.quote-bubble p, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts_share .responsive-container .field__item.quote-bubble p {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 433, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .ourhearts_share .responsive-container .field__item.quote-bubble p, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts_share .responsive-container .field__item.quote-bubble p {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 433, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .ourhearts_share .responsive-container .field__item.quote-bubble p, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts_share .responsive-container .field__item.quote-bubble p {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 433, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .ourhearts_share .responsive-container .field__item.quote-bubble p, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts_share .responsive-container .field__item.quote-bubble p {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 1024px) {
  /* line 405, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .ourhearts_share .responsive-container, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts_share .responsive-container {
    padding: 0;
  }
}
/* line 442, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts_share .field__items, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts_share .field__items {
  margin: auto;
}
/* line 446, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts_share h2, .node--type-our-hearts .ourhearts_share .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-our-hearts .ourhearts_share h1, .node--type-our-hearts .ourhearts_share .contact-method-label, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts_share h2, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts_share .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .ourhearts_share h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts_share .contact-method-label {
  display: none;
  text-align: center;
}
/* line 451, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts_share h3.accordion-header, .node--type-our-hearts .ourhearts_share .accordion-header.field--name-field-social-phrase-group-title, .node--type-our-hearts .ourhearts_share .accordion-header.field--name-field-image-gallery-title, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts_share h3.accordion-header, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts_share .accordion-header.field--name-field-social-phrase-group-title, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts_share .accordion-header.field--name-field-image-gallery-title {
  font-family: "Merriweather", serif;
  font-size: 1.4em;
  font-weight: normal;
  margin-bottom: 1em;
}
/* line 458, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts_share .field__label, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts_share .field__label {
  display: none;
}
/* line 462, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts_share .field--name-field-card-text, .node--type-our-hearts .ourhearts_share .social-button-container, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts_share .field--name-field-card-text, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts_share .social-button-container {
  display: inline;
  padding-bottom: 5em;
}
/* line 466, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts_share .field--name-field-card-text .field__item.quote-bubble, .node--type-our-hearts .ourhearts_share .social-button-container .field__item.quote-bubble, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts_share .field--name-field-card-text .field__item.quote-bubble, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts_share .social-button-container .field__item.quote-bubble {
  width: 33.3%;
}
/* line 469, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts_share .field--name-field-card-text .field__item.quote-bubble:after, .node--type-our-hearts .ourhearts_share .social-button-container .field__item.quote-bubble:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts_share .field--name-field-card-text .field__item.quote-bubble:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts_share .social-button-container .field__item.quote-bubble:after {
  content: '';
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 20px solid #fff;
  bottom: -15px;
  position: absolute;
  left: 48%;
}
/* line 481, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts_share .field--name-field-card-text .field__item.quote-bubble:first-child:after, .node--type-our-hearts .ourhearts_share .social-button-container .field__item.quote-bubble:first-child:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts_share .field--name-field-card-text .field__item.quote-bubble:first-child:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts_share .social-button-container .field__item.quote-bubble:first-child:after {
  left: 10%;
  border-right: 20px solid transparent;
  border-left: 0px solid transparent;
}
/* line 487, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts_share .field--name-field-card-text .field__item.quote-bubble:last-child:after, .node--type-our-hearts .ourhearts_share .social-button-container .field__item.quote-bubble:last-child:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts_share .field--name-field-card-text .field__item.quote-bubble:last-child:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts_share .social-button-container .field__item.quote-bubble:last-child:after {
  left: 85%;
  border-left: 20px solid transparent;
  border-right: 0px solid transparent;
}
/* line 494, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts_share .field--name-field-card-text .paragraph--type--social-media-links, .node--type-our-hearts .ourhearts_share .social-button-container .paragraph--type--social-media-links, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts_share .field--name-field-card-text .paragraph--type--social-media-links, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts_share .social-button-container .paragraph--type--social-media-links {
  display: inline-block;
  font-size: 0.875rem;
  margin: 1em 0 0;
  position: absolute;
  bottom: 15px;
  right: 0;
  width: calc(33.3% - 1em);
  padding: 0 0.9em;
  text-align: center;
}
/* line 506, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts_share .field--name-field-card-text div:nth-child(4), .node--type-our-hearts .ourhearts_share .social-button-container div:nth-child(4), .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts_share .field--name-field-card-text div:nth-child(4), .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts_share .social-button-container div:nth-child(4) {
  left: 33.3%;
}
/* line 510, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts_share .field--name-field-card-text .social_buttons, .node--type-our-hearts .ourhearts_share .social-button-container .social_buttons, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts_share .field--name-field-card-text .social_buttons, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts_share .social-button-container .social_buttons {
  display: inline;
  padding: 1em 0;
  clear: both;
  margin: 1em 0;
  font-size: 1.1em;
}
/* line 517, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts_share .field--name-field-card-text .social_buttons .social_buttons_buttons, .node--type-our-hearts .ourhearts_share .social-button-container .social_buttons .social_buttons_buttons, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts_share .field--name-field-card-text .social_buttons .social_buttons_buttons, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts_share .social-button-container .social_buttons .social_buttons_buttons {
  display: inline-block;
  padding-top: 0.5em;
}
/* line 522, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts_share .field--name-field-card-text .social_buttons .share.facebook, .node--type-our-hearts .ourhearts_share .social-button-container .social_buttons .share.facebook, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts_share .field--name-field-card-text .social_buttons .share.facebook, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts_share .social-button-container .social_buttons .share.facebook {
  background: url("../images/ourhearts/facebook-icon.svg") top left no-repeat;
  background-size: 100%;
  width: 22px;
  height: 22px;
  margin: 0 0.15em -0.3em 0.15em;
  display: none;
  visibility: hidden;
}
/* line 531, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts_share .field--name-field-card-text .social_buttons .share.facebook span, .node--type-our-hearts .ourhearts_share .social-button-container .social_buttons .share.facebook span, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts_share .field--name-field-card-text .social_buttons .share.facebook span, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts_share .social-button-container .social_buttons .share.facebook span {
  position: absolute;
  margin-left: -50000px;
  color: transparent;
}
/* line 538, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts_share .field--name-field-card-text .social_buttons .share.twitter, .node--type-our-hearts .ourhearts_share .social-button-container .social_buttons .share.twitter, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts_share .field--name-field-card-text .social_buttons .share.twitter, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts_share .social-button-container .social_buttons .share.twitter {
  background: url("../images/ourhearts/twitter-icon.svg") top left no-repeat;
  background-size: 100%;
  width: 22px;
  height: 22px;
  display: inline-block;
  margin: 0 0.15em -0.3em 0.15em;
}
/* line 546, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts_share .field--name-field-card-text .social_buttons .share.twitter span, .node--type-our-hearts .ourhearts_share .social-button-container .social_buttons .share.twitter span, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts_share .field--name-field-card-text .social_buttons .share.twitter span, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts_share .social-button-container .social_buttons .share.twitter span {
  position: absolute;
  margin-left: -50000px;
  color: transparent;
}
/* line 557, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts_map_title, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts_map_title {
  margin-top: 3em;
}
/* line 559, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts_map_title h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts_map_title h1 {
  text-align: left;
}
/* line 563, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts_map_description, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts_map_description {
  margin-bottom: 1em;
}
/* line 565, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts_map_description h3, .node--type-our-hearts .ourhearts_map_description .field--name-field-social-phrase-group-title, .node--type-our-hearts .ourhearts_map_description .field--name-field-image-gallery-title, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts_map_description h3, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts_map_description .field--name-field-social-phrase-group-title, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts_map_description .field--name-field-image-gallery-title {
  margin: 0 0.5em 0.25em 0.5em;
}
/* line 570, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts-card, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card {
  background-color: #f4f4f4;
  padding: 3em 1em;
  text-align: center;
}
/* line 577, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts-card .responsive-container h3, .node--type-our-hearts .ourhearts-card .responsive-container .field--name-field-social-phrase-group-title, .node--type-our-hearts .ourhearts-card .responsive-container .field--name-field-image-gallery-title, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .responsive-container h3, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .responsive-container .field--name-field-social-phrase-group-title, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .responsive-container .field--name-field-image-gallery-title {
  text-align: left;
}
@media all and (max-width: 767px) {
  /* line 575, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .ourhearts-card .responsive-container, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .responsive-container {
    display: block;
  }
}
/* line 585, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts-card .responsive-container .ourhearts_titles, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .responsive-container .ourhearts_titles {
  text-align: left;
}
/* line 589, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts-card .responsive-container .field--name-field-card-text, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .responsive-container .field--name-field-card-text {
  width: 33%;
  position: relative;
  margin: 0 0.5em;
}
/* line 595, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts-card .responsive-container .field__item.quote-bubble, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .responsive-container .field__item.quote-bubble {
  background: #fff;
  padding: 2.5em;
  text-align: left;
  min-height: 15em;
  position: relative;
}
@media all and (max-width: 767px) {
  /* line 595, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .ourhearts-card .responsive-container .field__item.quote-bubble, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .responsive-container .field__item.quote-bubble {
    margin-bottom: 2em;
    width: auto;
  }
}
/* line 607, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts-card .responsive-container .field__item.quote-bubble p, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .responsive-container .field__item.quote-bubble p {
  font-size: 1.125rem;
}
@media all and (min-width: 1440px) {
  /* line 607, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .ourhearts-card .responsive-container .field__item.quote-bubble p, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .responsive-container .field__item.quote-bubble p {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 607, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .ourhearts-card .responsive-container .field__item.quote-bubble p, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .responsive-container .field__item.quote-bubble p {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 607, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .ourhearts-card .responsive-container .field__item.quote-bubble p, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .responsive-container .field__item.quote-bubble p {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 607, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .ourhearts-card .responsive-container .field__item.quote-bubble p, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .responsive-container .field__item.quote-bubble p {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 1024px) {
  /* line 575, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .ourhearts-card .responsive-container, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .responsive-container {
    padding: 0;
  }
}
/* line 616, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts-card .field__items, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .field__items {
  margin: auto;
}
/* line 620, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts-card h2, .node--type-our-hearts .ourhearts-card .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-our-hearts .ourhearts-card h1, .node--type-our-hearts .ourhearts-card .contact-method-label, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card h2, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .ourhearts-card h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .contact-method-label {
  display: none;
  text-align: center;
}
/* line 625, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts-card h3.accordion-header, .node--type-our-hearts .ourhearts-card .accordion-header.field--name-field-social-phrase-group-title, .node--type-our-hearts .ourhearts-card .accordion-header.field--name-field-image-gallery-title, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card h3.accordion-header, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .accordion-header.field--name-field-social-phrase-group-title, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .accordion-header.field--name-field-image-gallery-title {
  font-family: "Merriweather", serif;
  font-size: 1.4em;
  font-weight: normal;
  margin-bottom: 1em;
}
/* line 632, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts-card .field__label, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .field__label {
  display: none;
}
/* line 636, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts-card .field--name-field-card-text, .node--type-our-hearts .ourhearts-card .social-button-container, .node--type-our-hearts .ourhearts-card .field--name-field-ourhearts-card, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .field--name-field-card-text, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .social-button-container, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .field--name-field-ourhearts-card {
  display: flex;
  justify-content: space-evenly;
  align-items: stretch;
}
@media all and (max-width: 767px) {
  /* line 636, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .ourhearts-card .field--name-field-card-text, .node--type-our-hearts .ourhearts-card .social-button-container, .node--type-our-hearts .ourhearts-card .field--name-field-ourhearts-card, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .field--name-field-card-text, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .social-button-container, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .field--name-field-ourhearts-card {
    display: block;
  }
}
/* line 645, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts-card .field--name-field-card-text .field__item, .node--type-our-hearts .ourhearts-card .field--name-field-card-text .social_buttons, .node--type-our-hearts .ourhearts-card .social-button-container .field__item, .node--type-our-hearts .ourhearts-card .social-button-container .social_buttons, .node--type-our-hearts .ourhearts-card .field--name-field-ourhearts-card .field__item, .node--type-our-hearts .ourhearts-card .field--name-field-ourhearts-card .social_buttons, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .field--name-field-card-text .field__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .field--name-field-card-text .social_buttons, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .social-button-container .field__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .social-button-container .social_buttons, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .field--name-field-ourhearts-card .field__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .field--name-field-ourhearts-card .social_buttons {
  width: 33%;
  position: relative;
  margin: 0 0.5em;
}
/* line 651, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts-card .field--name-field-card-text .field--name-field-video-url, .node--type-our-hearts .ourhearts-card .social-button-container .field--name-field-video-url, .node--type-our-hearts .ourhearts-card .field--name-field-ourhearts-card .field--name-field-video-url, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .field--name-field-card-text .field--name-field-video-url, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .social-button-container .field--name-field-video-url, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .field--name-field-ourhearts-card .field--name-field-video-url {
  width: 100%;
  margin: 0;
}
/* line 654, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts-card .field--name-field-card-text .field--name-field-video-url .video-embed-field-responsive-video, .node--type-our-hearts .ourhearts-card .social-button-container .field--name-field-video-url .video-embed-field-responsive-video, .node--type-our-hearts .ourhearts-card .field--name-field-ourhearts-card .field--name-field-video-url .video-embed-field-responsive-video, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .field--name-field-card-text .field--name-field-video-url .video-embed-field-responsive-video, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .social-button-container .field--name-field-video-url .video-embed-field-responsive-video, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .field--name-field-ourhearts-card .field--name-field-video-url .video-embed-field-responsive-video {
  width: 100%;
  height: 100%;
}
/* line 660, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts-card .field--name-field-card-text .field__item.quote-bubble, .node--type-our-hearts .ourhearts-card .social-button-container .field__item.quote-bubble, .node--type-our-hearts .ourhearts-card .field--name-field-ourhearts-card .field__item.quote-bubble, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .field--name-field-card-text .field__item.quote-bubble, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .social-button-container .field__item.quote-bubble, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .field--name-field-ourhearts-card .field__item.quote-bubble {
  background: #fff;
  padding: 2em;
  text-align: left;
  position: relative;
}
/* line 665, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts-card .field--name-field-card-text .field__item.quote-bubble img, .node--type-our-hearts .ourhearts-card .social-button-container .field__item.quote-bubble img, .node--type-our-hearts .ourhearts-card .field--name-field-ourhearts-card .field__item.quote-bubble img, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .field--name-field-card-text .field__item.quote-bubble img, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .social-button-container .field__item.quote-bubble img, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .field--name-field-ourhearts-card .field__item.quote-bubble img {
  height: auto;
}
/* line 670, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts-card .field--name-field-card-text .field__item.quote-bubble a:active img, .node--type-our-hearts .ourhearts-card .field--name-field-card-text .field__item.quote-bubble a:focus img, .node--type-our-hearts .ourhearts-card .social-button-container .field__item.quote-bubble a:active img, .node--type-our-hearts .ourhearts-card .social-button-container .field__item.quote-bubble a:focus img, .node--type-our-hearts .ourhearts-card .field--name-field-ourhearts-card .field__item.quote-bubble a:active img, .node--type-our-hearts .ourhearts-card .field--name-field-ourhearts-card .field__item.quote-bubble a:focus img, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .field--name-field-card-text .field__item.quote-bubble a:active img, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .field--name-field-card-text .field__item.quote-bubble a:focus img, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .social-button-container .field__item.quote-bubble a:active img, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .social-button-container .field__item.quote-bubble a:focus img, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .field--name-field-ourhearts-card .field__item.quote-bubble a:active img, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .field--name-field-ourhearts-card .field__item.quote-bubble a:focus img {
  outline: #BF0D2E dotted 3px;
}
@media all and (max-width: 767px) {
  /* line 660, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .ourhearts-card .field--name-field-card-text .field__item.quote-bubble, .node--type-our-hearts .ourhearts-card .social-button-container .field__item.quote-bubble, .node--type-our-hearts .ourhearts-card .field--name-field-ourhearts-card .field__item.quote-bubble, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .field--name-field-card-text .field__item.quote-bubble, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .social-button-container .field__item.quote-bubble, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .field--name-field-ourhearts-card .field__item.quote-bubble {
    margin-bottom: 2em;
    width: auto;
  }
}
/* line 680, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts-card .field--name-field-card-text .field__item.quote-bubble p, .node--type-our-hearts .ourhearts-card .social-button-container .field__item.quote-bubble p, .node--type-our-hearts .ourhearts-card .field--name-field-ourhearts-card .field__item.quote-bubble p, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .field--name-field-card-text .field__item.quote-bubble p, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .social-button-container .field__item.quote-bubble p, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .field--name-field-ourhearts-card .field__item.quote-bubble p {
  font-size: 1.125rem;
}
@media all and (min-width: 1440px) {
  /* line 680, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .ourhearts-card .field--name-field-card-text .field__item.quote-bubble p, .node--type-our-hearts .ourhearts-card .social-button-container .field__item.quote-bubble p, .node--type-our-hearts .ourhearts-card .field--name-field-ourhearts-card .field__item.quote-bubble p, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .field--name-field-card-text .field__item.quote-bubble p, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .social-button-container .field__item.quote-bubble p, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .field--name-field-ourhearts-card .field__item.quote-bubble p {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 680, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .ourhearts-card .field--name-field-card-text .field__item.quote-bubble p, .node--type-our-hearts .ourhearts-card .social-button-container .field__item.quote-bubble p, .node--type-our-hearts .ourhearts-card .field--name-field-ourhearts-card .field__item.quote-bubble p, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .field--name-field-card-text .field__item.quote-bubble p, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .social-button-container .field__item.quote-bubble p, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .field--name-field-ourhearts-card .field__item.quote-bubble p {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 680, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .ourhearts-card .field--name-field-card-text .field__item.quote-bubble p, .node--type-our-hearts .ourhearts-card .social-button-container .field__item.quote-bubble p, .node--type-our-hearts .ourhearts-card .field--name-field-ourhearts-card .field__item.quote-bubble p, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .field--name-field-card-text .field__item.quote-bubble p, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .social-button-container .field__item.quote-bubble p, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .field--name-field-ourhearts-card .field__item.quote-bubble p {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 680, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .ourhearts-card .field--name-field-card-text .field__item.quote-bubble p, .node--type-our-hearts .ourhearts-card .social-button-container .field__item.quote-bubble p, .node--type-our-hearts .ourhearts-card .field--name-field-ourhearts-card .field__item.quote-bubble p, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .field--name-field-card-text .field__item.quote-bubble p, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .social-button-container .field__item.quote-bubble p, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .field--name-field-ourhearts-card .field__item.quote-bubble p {
    font-size: 1rem;
  }
}
/* line 690, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts-card .field--name-field-card-text .field__item.quote-bubble:after, .node--type-our-hearts .ourhearts-card .social-button-container .field__item.quote-bubble:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .field--name-field-card-text .field__item.quote-bubble:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .social-button-container .field__item.quote-bubble:after {
  content: '';
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 20px solid #fff;
  bottom: -15px;
  position: absolute;
  left: 48%;
}
/* line 702, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts-card .field--name-field-card-text .field__item.quote-bubble:first-child:after, .node--type-our-hearts .ourhearts-card .social-button-container .field__item.quote-bubble:first-child:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .field--name-field-card-text .field__item.quote-bubble:first-child:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .social-button-container .field__item.quote-bubble:first-child:after {
  left: 10%;
  border-right: 20px solid transparent;
  border-left: 0px solid transparent;
}
/* line 708, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts-card .field--name-field-card-text .field__item.quote-bubble:last-child:after, .node--type-our-hearts .ourhearts-card .social-button-container .field__item.quote-bubble:last-child:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .field--name-field-card-text .field__item.quote-bubble:last-child:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .social-button-container .field__item.quote-bubble:last-child:after {
  left: 85%;
  border-left: 20px solid transparent;
  border-right: 0px solid transparent;
}
/* line 715, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts-card .field--name-field-card-text .social_buttons, .node--type-our-hearts .ourhearts-card .social-button-container .social_buttons, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .field--name-field-card-text .social_buttons, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .social-button-container .social_buttons {
  padding: 1em 0;
  clear: both;
  margin: 1em 0;
  font-size: 1.1em;
}
/* line 721, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts-card .field--name-field-card-text .social_buttons .social_buttons_buttons, .node--type-our-hearts .ourhearts-card .social-button-container .social_buttons .social_buttons_buttons, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .field--name-field-card-text .social_buttons .social_buttons_buttons, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .social-button-container .social_buttons .social_buttons_buttons {
  display: inline-block;
  padding-top: 0.5em;
}
/* line 726, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts-card .field--name-field-card-text .social_buttons .share.facebook, .node--type-our-hearts .ourhearts-card .social-button-container .social_buttons .share.facebook, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .field--name-field-card-text .social_buttons .share.facebook, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .social-button-container .social_buttons .share.facebook {
  background: url("../images/ourhearts/facebook-icon.svg") top left no-repeat;
  background-size: 100%;
  width: 22px;
  height: 22px;
  display: inline-block;
  margin: 0 0.15em -0.3em 0.15em;
}
/* line 734, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts-card .field--name-field-card-text .social_buttons .share.facebook span, .node--type-our-hearts .ourhearts-card .social-button-container .social_buttons .share.facebook span, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .field--name-field-card-text .social_buttons .share.facebook span, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .social-button-container .social_buttons .share.facebook span {
  position: absolute;
  margin-left: -50000px;
  color: transparent;
}
/* line 741, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts-card .field--name-field-card-text .social_buttons .share.twitter, .node--type-our-hearts .ourhearts-card .social-button-container .social_buttons .share.twitter, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .field--name-field-card-text .social_buttons .share.twitter, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .social-button-container .social_buttons .share.twitter {
  background: url("../images/ourhearts/twitter-icon.svg") top left no-repeat;
  background-size: 100%;
  width: 22px;
  height: 22px;
  display: inline-block;
  margin: 0 0.15em -0.3em 0.15em;
}
/* line 749, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts-card .field--name-field-card-text .social_buttons .share.twitter span, .node--type-our-hearts .ourhearts-card .social-button-container .social_buttons .share.twitter span, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .field--name-field-card-text .social_buttons .share.twitter span, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .social-button-container .social_buttons .share.twitter span {
  position: absolute;
  margin-left: -50000px;
  color: transparent;
}
/* line 762, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts-card .social-button-container .social_buttons:last-child span, .node--type-our-hearts .ourhearts-card .social-button-container .social_buttons:last-child a.share.twitter, .node--type-our-hearts .ourhearts-card .social-button-container .social_buttons:last-child a.share.facebook, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .social-button-container .social_buttons:last-child span, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .social-button-container .social_buttons:last-child a.share.twitter, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-card .social-button-container .social_buttons:last-child a.share.facebook {
  display: none;
}
@media all and (max-width: 767px) {
  /* line 769, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .ourhearts_share, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts_share {
    display: none;
  }
}
/* line 777, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .social-share-container, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container {
  position: relative;
}
@media all and (min-width: 0em) and (max-width: 1024px) {
  /* line 780, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .social-share-container .responsive-container, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container {
    padding: 0 1.5em;
  }
}
/* line 786, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .social-share-container .social-background-top, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .social-background-top {
  position: absolute;
  width: 50%;
  left: 0;
  height: 95px;
  background: #4D2D66;
  content: '';
  z-index: -10;
}
@media all and (max-width: 767px) {
  /* line 786, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .social-share-container .social-background-top, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .social-background-top {
    display: none;
  }
}
/* line 800, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .social-share-container .event-background-top, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .event-background-top {
  position: absolute;
  width: 50%;
  right: 0;
  height: 95px;
  background: #007A89;
  content: '';
  z-index: -10;
}
@media all and (max-width: 767px) {
  /* line 800, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .social-share-container .event-background-top, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .event-background-top {
    display: none;
  }
}
/* line 815, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .social-share-container .responsive-container, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container {
  display: flex;
}
/* line 818, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .social-share-container .responsive-container .social-event-box, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .social-event-box {
  width: 50%;
}
/* line 821, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .social-share-container .responsive-container .social-event-box h2, .node--type-our-hearts .social-share-container .responsive-container .social-event-box .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-our-hearts .social-share-container .responsive-container .social-event-box h1, .node--type-our-hearts .social-share-container .responsive-container .social-event-box .contact-method-label, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .social-event-box h2, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .social-event-box .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .social-share-container .responsive-container .social-event-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .social-event-box .contact-method-label {
  color: #fff;
}
/* line 827, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .header-box, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .header-box, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .header-box, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .header-box {
  padding: 2em 4em 2em 0;
}
@media all and (min-width: 0em) and (max-width: 1024px) {
  /* line 827, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .header-box, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .header-box, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .header-box, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .header-box {
    padding: 2em 1.5em 2em 0;
  }
}
@media all and (max-width: 767px) {
  /* line 827, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .header-box, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .header-box, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .header-box, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .header-box {
    background: #4D2D66;
    width: calc(100% + 40px);
    margin-left: -20px;
    height: 35px;
    padding: 1.75em 2em;
  }
}
/* line 842, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .header-box h2, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .header-box h1, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .header-box .contact-method-label, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .header-box h2, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .header-box h1, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .header-box .contact-method-label, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .header-box h2, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .social-share-container .responsive-container .ourhearts_get-social .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .header-box .contact-method-label, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .header-box h2, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .social-share-container .responsive-container .ourhearts_get-social-all .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .header-box .contact-method-label {
  display: inline-block;
  position: relative;
  background-color: #4D2D66;
  margin: 0.15em 0;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 842, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .header-box h2, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .header-box h1, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .header-box .contact-method-label, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .header-box h2, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .header-box h1, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .header-box .contact-method-label, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .header-box h2, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .social-share-container .responsive-container .ourhearts_get-social .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .header-box .contact-method-label, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .header-box h2, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .social-share-container .responsive-container .ourhearts_get-social-all .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .header-box .contact-method-label {
    font-size: 1.5rem;
  }
}
/* line 852, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .header-box h2:after, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .header-box h1:after, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .header-box .contact-method-label:after, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .header-box h2:after, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .header-box h1:after, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .header-box .contact-method-label:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .header-box h2:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-all-posts-page .header-box h1:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .social-share-container .responsive-container .ourhearts_get-social .header-box h1:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .header-box .contact-method-label:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .header-box h2:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-all-posts-page .header-box h1:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .social-share-container .responsive-container .ourhearts_get-social-all .header-box h1:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .header-box .contact-method-label:after {
  background: url("../images/ourhearts/Heart-header-icon.svg") 100% 50% no-repeat;
  background-size: 35px;
  content: '';
  width: 35px;
  height: 35px;
  display: inline-block;
  margin-left: 20px;
  margin-bottom: -6px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  /* line 852, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .header-box h2:after, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .header-box h1:after, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .header-box .contact-method-label:after, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .header-box h2:after, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .header-box h1:after, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .header-box .contact-method-label:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .header-box h2:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-all-posts-page .header-box h1:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .social-share-container .responsive-container .ourhearts_get-social .header-box h1:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .header-box .contact-method-label:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .header-box h2:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-all-posts-page .header-box h1:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .social-share-container .responsive-container .ourhearts_get-social-all .header-box h1:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .header-box .contact-method-label:after {
    background-image: url("../images/ourhearts/heart-header-icon-png.png");
    background-repeat: no-repeat;
  }
}
@media all and (max-width: 767px) {
  /* line 852, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .header-box h2:after, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .header-box h1:after, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .header-box .contact-method-label:after, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .header-box h2:after, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .header-box h1:after, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .header-box .contact-method-label:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .header-box h2:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-all-posts-page .header-box h1:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .social-share-container .responsive-container .ourhearts_get-social .header-box h1:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .header-box .contact-method-label:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .header-box h2:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-all-posts-page .header-box h1:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .social-share-container .responsive-container .ourhearts_get-social-all .header-box h1:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .header-box .contact-method-label:after {
    width: 30px;
    height: 30px;
    background-size: 30px;
  }
}
/* line 875, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .content-box, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .content-box, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .content-box, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .content-box {
  padding: 0em 4em 2em 0;
  background: #f4f4f4;
}
@media all and (min-width: 0em) and (max-width: 1024px) {
  /* line 875, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .content-box, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .content-box, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .content-box, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .content-box {
    padding: 2em 1.5em 2em 0;
  }
}
/* line 883, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .content-box h3, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .content-box .field--name-field-social-phrase-group-title, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .content-box .field--name-field-image-gallery-title, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .content-box h3, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .content-box .field--name-field-social-phrase-group-title, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .content-box .field--name-field-image-gallery-title, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .content-box h3, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .content-box .field--name-field-social-phrase-group-title, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .content-box .field--name-field-image-gallery-title, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .content-box h3, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .content-box .field--name-field-social-phrase-group-title, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .content-box .field--name-field-image-gallery-title {
  font-family: "Open Sans", Verdana, Arial, sans-serif;
}
/* line 887, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .content-box:after, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .content-box:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .content-box:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .content-box:after {
  content: '';
  position: absolute;
  width: 50%;
  left: 0;
  top: 0;
  height: 100%;
  background: #f4f4f4;
  z-index: -11;
  border-bottom: 3px solid #f4f4f4;
}
@media all and (max-width: 767px) {
  /* line 875, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .content-box, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .content-box, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .content-box, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .content-box {
    padding: 2em 0;
    position: relative;
  }
  /* line 903, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .content-box:after, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .content-box:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .content-box:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .content-box:after {
    width: calc(100% + 90px);
    margin-left: -45px;
    height: calc(100% + 2em);
  }
}
/* line 912, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts ul.pager, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts ul.standard-more-link, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .news-and-events--landing ul.more-link, .news-and-events--landing .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts ul.more-link, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts ul.view-more-link, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 ul.pager, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 ul.standard-more-link, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .news-and-events--landing ul.more-link, .news-and-events--landing .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 ul.more-link, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 ul.view-more-link, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts ul.pager, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts ul.standard-more-link, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .news-and-events--landing ul.more-link, .news-and-events--landing .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts ul.more-link, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts ul.view-more-link, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 ul.pager, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 ul.standard-more-link, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .news-and-events--landing ul.more-link, .news-and-events--landing .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 ul.more-link, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 ul.view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts ul.pager, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts ul.standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .news-and-events--landing ul.more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts ul.more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts ul.view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 ul.pager, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 ul.standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .news-and-events--landing ul.more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 ul.more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 ul.view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts ul.pager, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts ul.standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .news-and-events--landing ul.more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts ul.more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts ul.view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 ul.pager, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 ul.standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .news-and-events--landing ul.more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 ul.more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 ul.view-more-link {
  display: none;
  visibility: hidden;
}
/* line 918, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .view-header .view-content .views-row, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .view-header .view-content .views-row, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .view-header .view-content .views-row, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .view-header .view-content .views-row, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .view-header .view-content .views-row, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .view-header .view-content .views-row, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .view-header .view-content .views-row, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .view-header .view-content .views-row {
  padding: 1.5em;
  border: 3px solid #C1B6CA;
  display: block;
  width: auto;
  margin-bottom: 2em;
  color: #222;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  background: #fff;
  position: relative;
  margin-top: 3.5em;
}
/* line 930, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .view-header .view-content .views-row:after, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .view-header .view-content .views-row:after, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .view-header .view-content .views-row:after, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .view-header .view-content .views-row:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .view-header .view-content .views-row:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .view-header .view-content .views-row:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .view-header .view-content .views-row:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .view-header .view-content .views-row:after {
  content: '';
  clear: both;
  display: block;
}
/* line 937, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .view-header .featured-header, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .view-header .featured-header, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .view-header .featured-header, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .view-header .featured-header, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .view-header .featured-header, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .view-header .featured-header, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .view-header .featured-header, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .view-header .featured-header {
  position: absolute;
  left: 0;
  top: 0;
  margin-top: -3.5em;
}
/* line 944, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .view-header .social-link-container-click, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .view-header .social-link-container-click, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .view-header .social-link-container-click, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .view-header .social-link-container-click, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .view-header .social-link-container-click, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .view-header .social-link-container-click, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .view-header .social-link-container-click, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .view-header .social-link-container-click {
  position: absolute;
  width: calc(100% + 6px);
  margin-left: calc(-1.5em + -3px);
  height: calc(100% + 6px);
  margin-top: calc(-1.5em + -3px);
  display: block;
  content: '';
  color: transparent;
}
/* line 954, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .view-header .social-link-container-click:hover, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .view-header .social-link-container-click:focus, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .view-header .social-link-container-click:active, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .view-header .social-link-container-click:hover, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .view-header .social-link-container-click:focus, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .view-header .social-link-container-click:active, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .view-header .social-link-container-click:hover, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .view-header .social-link-container-click:focus, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .view-header .social-link-container-click:active, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .view-header .social-link-container-click:hover, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .view-header .social-link-container-click:focus, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .view-header .social-link-container-click:active, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .view-header .social-link-container-click:hover, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .view-header .social-link-container-click:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .view-header .social-link-container-click:active, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .view-header .social-link-container-click:hover, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .view-header .social-link-container-click:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .view-header .social-link-container-click:active, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .view-header .social-link-container-click:hover, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .view-header .social-link-container-click:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .view-header .social-link-container-click:active, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .view-header .social-link-container-click:hover, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .view-header .social-link-container-click:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .view-header .social-link-container-click:active {
  box-shadow: 3px 3px 5px #ccc;
  transition: box-shadow 0.5s;
  border: 0;
  outline: none;
}
/* line 962, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .view-header .oh-social-media, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .view-header .oh-social-media, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .view-header .oh-social-media, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .view-header .oh-social-media, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .view-header .oh-social-media, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .view-header .oh-social-media, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .view-header .oh-social-media, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .view-header .oh-social-media {
  max-height: 300px;
  overflow: hidden;
  margin-bottom: 1em;
}
/* line 968, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .view-header .oh-social-text-container, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .view-header .oh-social-text-container, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .view-header .oh-social-text-container, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .view-header .oh-social-text-container, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .view-header .oh-social-text-container, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .view-header .oh-social-text-container, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .view-header .oh-social-text-container, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .view-header .oh-social-text-container {
  width: 100%;
  display: block;
  flex-grow: 2;
}
/* line 974, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .view-header:after, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .view-header:after, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .view-header:after, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .view-header:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .view-header:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .view-header:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .view-header:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .view-header:after {
  content: '';
  clear: both;
  display: block;
}
/* line 983, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .views-infinite-scroll-content-wrapper .views-row, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .view-all-posts-content-container .views-row, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .views-infinite-scroll-content-wrapper .views-row, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .view-all-posts-content-container .views-row, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .views-infinite-scroll-content-wrapper .views-row, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .view-all-posts-content-container .views-row, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .views-infinite-scroll-content-wrapper .views-row, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .view-all-posts-content-container .views-row, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .views-infinite-scroll-content-wrapper .views-row, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .view-all-posts-content-container .views-row, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .views-infinite-scroll-content-wrapper .views-row, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .view-all-posts-content-container .views-row, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .views-infinite-scroll-content-wrapper .views-row, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .view-all-posts-content-container .views-row, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .views-infinite-scroll-content-wrapper .views-row, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .view-all-posts-content-container .views-row {
  display: flex;
  flex-direction: row-reverse;
  align-items: stretch;
  position: relative;
}
@media all and (min-width: 0em) and (max-width: 1024px) {
  /* line 983, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .views-infinite-scroll-content-wrapper .views-row, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .view-all-posts-content-container .views-row, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .views-infinite-scroll-content-wrapper .views-row, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .view-all-posts-content-container .views-row, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .views-infinite-scroll-content-wrapper .views-row, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .view-all-posts-content-container .views-row, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .views-infinite-scroll-content-wrapper .views-row, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .view-all-posts-content-container .views-row, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .views-infinite-scroll-content-wrapper .views-row, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .view-all-posts-content-container .views-row, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .views-infinite-scroll-content-wrapper .views-row, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .view-all-posts-content-container .views-row, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .views-infinite-scroll-content-wrapper .views-row, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .view-all-posts-content-container .views-row, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .views-infinite-scroll-content-wrapper .views-row, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .view-all-posts-content-container .views-row {
    flex-direction: column;
  }
}
@media all and (min-width: 480px) and (max-width: 767px) {
  /* line 983, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .views-infinite-scroll-content-wrapper .views-row, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .view-all-posts-content-container .views-row, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .views-infinite-scroll-content-wrapper .views-row, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .view-all-posts-content-container .views-row, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .views-infinite-scroll-content-wrapper .views-row, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .view-all-posts-content-container .views-row, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .views-infinite-scroll-content-wrapper .views-row, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .view-all-posts-content-container .views-row, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .views-infinite-scroll-content-wrapper .views-row, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .view-all-posts-content-container .views-row, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .views-infinite-scroll-content-wrapper .views-row, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .view-all-posts-content-container .views-row, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .views-infinite-scroll-content-wrapper .views-row, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .view-all-posts-content-container .views-row, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .views-infinite-scroll-content-wrapper .views-row, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .view-all-posts-content-container .views-row {
    flex-direction: row-reverse;
  }
}
@media all and (max-width: 479px) {
  /* line 983, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .views-infinite-scroll-content-wrapper .views-row, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .view-all-posts-content-container .views-row, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .views-infinite-scroll-content-wrapper .views-row, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .view-all-posts-content-container .views-row, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .views-infinite-scroll-content-wrapper .views-row, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .view-all-posts-content-container .views-row, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .views-infinite-scroll-content-wrapper .views-row, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .view-all-posts-content-container .views-row, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .views-infinite-scroll-content-wrapper .views-row, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .view-all-posts-content-container .views-row, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .views-infinite-scroll-content-wrapper .views-row, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .view-all-posts-content-container .views-row, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .views-infinite-scroll-content-wrapper .views-row, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .view-all-posts-content-container .views-row, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .views-infinite-scroll-content-wrapper .views-row, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .view-all-posts-content-container .views-row {
    flex-direction: column;
  }
}
/* line 1002, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .views-infinite-scroll-content-wrapper .social-link-container-click, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .view-all-posts-content-container .social-link-container-click, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .views-infinite-scroll-content-wrapper .social-link-container-click, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .view-all-posts-content-container .social-link-container-click, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .views-infinite-scroll-content-wrapper .social-link-container-click, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .view-all-posts-content-container .social-link-container-click, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .views-infinite-scroll-content-wrapper .social-link-container-click, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .view-all-posts-content-container .social-link-container-click, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .views-infinite-scroll-content-wrapper .social-link-container-click, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .view-all-posts-content-container .social-link-container-click, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .views-infinite-scroll-content-wrapper .social-link-container-click, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .view-all-posts-content-container .social-link-container-click, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .views-infinite-scroll-content-wrapper .social-link-container-click, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .view-all-posts-content-container .social-link-container-click, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .views-infinite-scroll-content-wrapper .social-link-container-click, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .view-all-posts-content-container .social-link-container-click {
  position: absolute;
  width: 100%;
  margin-left: 0.5em;
  height: 100%;
  margin-top: -1.5em;
  display: block;
  content: '';
  color: transparent;
}
/* line 1011, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .views-infinite-scroll-content-wrapper .social-link-container-click:hover, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .views-infinite-scroll-content-wrapper .social-link-container-click:focus, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .views-infinite-scroll-content-wrapper .social-link-container-click:active, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .view-all-posts-content-container .social-link-container-click:hover, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .view-all-posts-content-container .social-link-container-click:focus, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .view-all-posts-content-container .social-link-container-click:active, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .views-infinite-scroll-content-wrapper .social-link-container-click:hover, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .views-infinite-scroll-content-wrapper .social-link-container-click:focus, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .views-infinite-scroll-content-wrapper .social-link-container-click:active, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .view-all-posts-content-container .social-link-container-click:hover, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .view-all-posts-content-container .social-link-container-click:focus, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .view-all-posts-content-container .social-link-container-click:active, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .views-infinite-scroll-content-wrapper .social-link-container-click:hover, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .views-infinite-scroll-content-wrapper .social-link-container-click:focus, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .views-infinite-scroll-content-wrapper .social-link-container-click:active, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .view-all-posts-content-container .social-link-container-click:hover, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .view-all-posts-content-container .social-link-container-click:focus, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .view-all-posts-content-container .social-link-container-click:active, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .views-infinite-scroll-content-wrapper .social-link-container-click:hover, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .views-infinite-scroll-content-wrapper .social-link-container-click:focus, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .views-infinite-scroll-content-wrapper .social-link-container-click:active, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .view-all-posts-content-container .social-link-container-click:hover, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .view-all-posts-content-container .social-link-container-click:focus, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .view-all-posts-content-container .social-link-container-click:active, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .views-infinite-scroll-content-wrapper .social-link-container-click:hover, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .views-infinite-scroll-content-wrapper .social-link-container-click:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .views-infinite-scroll-content-wrapper .social-link-container-click:active, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .view-all-posts-content-container .social-link-container-click:hover, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .view-all-posts-content-container .social-link-container-click:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .view-all-posts-content-container .social-link-container-click:active, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .views-infinite-scroll-content-wrapper .social-link-container-click:hover, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .views-infinite-scroll-content-wrapper .social-link-container-click:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .views-infinite-scroll-content-wrapper .social-link-container-click:active, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .view-all-posts-content-container .social-link-container-click:hover, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .view-all-posts-content-container .social-link-container-click:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .view-all-posts-content-container .social-link-container-click:active, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .views-infinite-scroll-content-wrapper .social-link-container-click:hover, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .views-infinite-scroll-content-wrapper .social-link-container-click:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .views-infinite-scroll-content-wrapper .social-link-container-click:active, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .view-all-posts-content-container .social-link-container-click:hover, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .view-all-posts-content-container .social-link-container-click:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .view-all-posts-content-container .social-link-container-click:active, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .views-infinite-scroll-content-wrapper .social-link-container-click:hover, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .views-infinite-scroll-content-wrapper .social-link-container-click:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .views-infinite-scroll-content-wrapper .social-link-container-click:active, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .view-all-posts-content-container .social-link-container-click:hover, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .view-all-posts-content-container .social-link-container-click:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .view-all-posts-content-container .social-link-container-click:active {
  box-shadow: 3px 3px 5px #ccc;
  transition: box-shadow 0.5s;
  border: 0;
  outline: none;
}
@media all and (min-width: 0em) and (max-width: 1024px) {
  /* line 1002, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .views-infinite-scroll-content-wrapper .social-link-container-click, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .view-all-posts-content-container .social-link-container-click, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .views-infinite-scroll-content-wrapper .social-link-container-click, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .view-all-posts-content-container .social-link-container-click, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .views-infinite-scroll-content-wrapper .social-link-container-click, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .view-all-posts-content-container .social-link-container-click, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .views-infinite-scroll-content-wrapper .social-link-container-click, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .view-all-posts-content-container .social-link-container-click, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .views-infinite-scroll-content-wrapper .social-link-container-click, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .view-all-posts-content-container .social-link-container-click, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .views-infinite-scroll-content-wrapper .social-link-container-click, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .view-all-posts-content-container .social-link-container-click, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .views-infinite-scroll-content-wrapper .social-link-container-click, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .view-all-posts-content-container .social-link-container-click, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .views-infinite-scroll-content-wrapper .social-link-container-click, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .view-all-posts-content-container .social-link-container-click {
    margin-left: -0.5em;
  }
}
@media all and (max-width: 767px) {
  /* line 1002, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .views-infinite-scroll-content-wrapper .social-link-container-click, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .view-all-posts-content-container .social-link-container-click, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .views-infinite-scroll-content-wrapper .social-link-container-click, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .view-all-posts-content-container .social-link-container-click, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .views-infinite-scroll-content-wrapper .social-link-container-click, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .view-all-posts-content-container .social-link-container-click, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .views-infinite-scroll-content-wrapper .social-link-container-click, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .view-all-posts-content-container .social-link-container-click, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .views-infinite-scroll-content-wrapper .social-link-container-click, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .view-all-posts-content-container .social-link-container-click, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .views-infinite-scroll-content-wrapper .social-link-container-click, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .view-all-posts-content-container .social-link-container-click, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .views-infinite-scroll-content-wrapper .social-link-container-click, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .view-all-posts-content-container .social-link-container-click, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .views-infinite-scroll-content-wrapper .social-link-container-click, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .view-all-posts-content-container .social-link-container-click {
    margin-left: 0.5em;
  }
}
/* line 1027, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .views-infinite-scroll-content-wrapper .oh-social-text-container, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .view-all-posts-content-container .oh-social-text-container, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .views-infinite-scroll-content-wrapper .oh-social-text-container, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .view-all-posts-content-container .oh-social-text-container, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .views-infinite-scroll-content-wrapper .oh-social-text-container, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .view-all-posts-content-container .oh-social-text-container, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .views-infinite-scroll-content-wrapper .oh-social-text-container, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .view-all-posts-content-container .oh-social-text-container, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .views-infinite-scroll-content-wrapper .oh-social-text-container, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .view-all-posts-content-container .oh-social-text-container, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .views-infinite-scroll-content-wrapper .oh-social-text-container, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .view-all-posts-content-container .oh-social-text-container, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .views-infinite-scroll-content-wrapper .oh-social-text-container, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .view-all-posts-content-container .oh-social-text-container, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .views-infinite-scroll-content-wrapper .oh-social-text-container, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .view-all-posts-content-container .oh-social-text-container {
  margin: 0 1em;
  flex-grow: 2;
}
/* line 1032, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .views-infinite-scroll-content-wrapper .oh-social-media, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .view-all-posts-content-container .oh-social-media, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .views-infinite-scroll-content-wrapper .oh-social-media, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .view-all-posts-content-container .oh-social-media, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .views-infinite-scroll-content-wrapper .oh-social-media, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .view-all-posts-content-container .oh-social-media, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .views-infinite-scroll-content-wrapper .oh-social-media, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .view-all-posts-content-container .oh-social-media, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .views-infinite-scroll-content-wrapper .oh-social-media, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .view-all-posts-content-container .oh-social-media, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .views-infinite-scroll-content-wrapper .oh-social-media, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .view-all-posts-content-container .oh-social-media, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .views-infinite-scroll-content-wrapper .oh-social-media, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .view-all-posts-content-container .oh-social-media, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .views-infinite-scroll-content-wrapper .oh-social-media, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .view-all-posts-content-container .oh-social-media {
  margin: 0 1em;
}
/* line 1035, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .views-infinite-scroll-content-wrapper .oh-social-media img, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .view-all-posts-content-container .oh-social-media img, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .views-infinite-scroll-content-wrapper .oh-social-media img, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .view-all-posts-content-container .oh-social-media img, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .views-infinite-scroll-content-wrapper .oh-social-media img, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .view-all-posts-content-container .oh-social-media img, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .views-infinite-scroll-content-wrapper .oh-social-media img, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .view-all-posts-content-container .oh-social-media img, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .views-infinite-scroll-content-wrapper .oh-social-media img, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .view-all-posts-content-container .oh-social-media img, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .views-infinite-scroll-content-wrapper .oh-social-media img, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .view-all-posts-content-container .oh-social-media img, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .views-infinite-scroll-content-wrapper .oh-social-media img, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .view-all-posts-content-container .oh-social-media img, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .views-infinite-scroll-content-wrapper .oh-social-media img, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .view-all-posts-content-container .oh-social-media img {
  min-width: 250px;
  width: 250px;
}
@media all and (min-width: 0em) and (max-width: 1024px) {
  /* line 1035, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .views-infinite-scroll-content-wrapper .oh-social-media img, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .view-all-posts-content-container .oh-social-media img, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .views-infinite-scroll-content-wrapper .oh-social-media img, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .view-all-posts-content-container .oh-social-media img, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .views-infinite-scroll-content-wrapper .oh-social-media img, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .view-all-posts-content-container .oh-social-media img, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .views-infinite-scroll-content-wrapper .oh-social-media img, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .view-all-posts-content-container .oh-social-media img, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .views-infinite-scroll-content-wrapper .oh-social-media img, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .view-all-posts-content-container .oh-social-media img, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .views-infinite-scroll-content-wrapper .oh-social-media img, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .view-all-posts-content-container .oh-social-media img, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .views-infinite-scroll-content-wrapper .oh-social-media img, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .view-all-posts-content-container .oh-social-media img, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .views-infinite-scroll-content-wrapper .oh-social-media img, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .view-all-posts-content-container .oh-social-media img {
    min-width: 100%;
    width: 100%;
    margin-bottom: 1em;
  }
}
@media all and (min-width: 480px) and (max-width: 767px) {
  /* line 1035, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .views-infinite-scroll-content-wrapper .oh-social-media img, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .view-all-posts-content-container .oh-social-media img, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .views-infinite-scroll-content-wrapper .oh-social-media img, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .view-all-posts-content-container .oh-social-media img, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .views-infinite-scroll-content-wrapper .oh-social-media img, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .view-all-posts-content-container .oh-social-media img, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .views-infinite-scroll-content-wrapper .oh-social-media img, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .view-all-posts-content-container .oh-social-media img, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .views-infinite-scroll-content-wrapper .oh-social-media img, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .view-all-posts-content-container .oh-social-media img, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .views-infinite-scroll-content-wrapper .oh-social-media img, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .view-all-posts-content-container .oh-social-media img, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .views-infinite-scroll-content-wrapper .oh-social-media img, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .view-all-posts-content-container .oh-social-media img, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .views-infinite-scroll-content-wrapper .oh-social-media img, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .view-all-posts-content-container .oh-social-media img {
    min-width: 180px;
    width: 180px;
  }
}
@media all and (max-width: 479px) {
  /* line 1035, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .views-infinite-scroll-content-wrapper .oh-social-media img, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .view-all-posts-content-container .oh-social-media img, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .views-infinite-scroll-content-wrapper .oh-social-media img, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .view-all-posts-content-container .oh-social-media img, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .views-infinite-scroll-content-wrapper .oh-social-media img, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .view-all-posts-content-container .oh-social-media img, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .views-infinite-scroll-content-wrapper .oh-social-media img, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .view-all-posts-content-container .oh-social-media img, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .views-infinite-scroll-content-wrapper .oh-social-media img, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .view-all-posts-content-container .oh-social-media img, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .views-infinite-scroll-content-wrapper .oh-social-media img, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .view-all-posts-content-container .oh-social-media img, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .views-infinite-scroll-content-wrapper .oh-social-media img, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .view-all-posts-content-container .oh-social-media img, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .views-infinite-scroll-content-wrapper .oh-social-media img, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .view-all-posts-content-container .oh-social-media img {
    width: 100%;
    margin-bottom: 1em;
  }
}
/* line 1058, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .ext-icon, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .ext-icon, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .ext-icon, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .ext-icon, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .ext-icon, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .ext-icon, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .ext-icon, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .ext-icon {
  display: none;
}
/* line 1062, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .oh-social-source.twitter, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .oh-social-source.twitter, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .oh-social-source.twitter, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .oh-social-source.twitter, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .oh-social-source.twitter, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .oh-social-source.twitter, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .oh-social-source.twitter, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .oh-social-source.twitter {
  background: url("../images/ourhearts/twitter-header-icon.svg") 100% 45% no-repeat;
  background-size: 16px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  /* line 1062, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .oh-social-source.twitter, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .oh-social-source.twitter, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .oh-social-source.twitter, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .oh-social-source.twitter, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .oh-social-source.twitter, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .oh-social-source.twitter, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .oh-social-source.twitter, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .oh-social-source.twitter {
    background-image: url("../images/ourhearts/twitter-header-icon-png.png");
    background-repeat: no-repeat;
  }
}
/* line 1072, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .oh-social-source.instagram, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .oh-social-source.instagram, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .oh-social-source.instagram, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .oh-social-source.instagram, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .oh-social-source.instagram, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .oh-social-source.instagram, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .oh-social-source.instagram, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .oh-social-source.instagram {
  background: url("../images/ourhearts/instagram-header-icon.svg") 100% 45% no-repeat;
  background-size: 16px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  /* line 1072, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .oh-social-source.instagram, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .oh-social-source.instagram, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .oh-social-source.instagram, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .oh-social-source.instagram, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .oh-social-source.instagram, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .oh-social-source.instagram, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .oh-social-source.instagram, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .oh-social-source.instagram {
    background-image: url("../images/ourhearts/instagram-header-icon-png.png");
    background-repeat: no-repeat;
  }
}
/* line 1082, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .oh-social-source.facebook, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .oh-social-source.facebook, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .oh-social-source.facebook, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .oh-social-source.facebook, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .oh-social-source.facebook, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .oh-social-source.facebook, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .oh-social-source.facebook, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .oh-social-source.facebook {
  background: url("../images/ourhearts/facebook-header-icon.svg") 100% 45% no-repeat;
  background-size: 16px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  /* line 1082, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .oh-social-source.facebook, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .oh-social-source.facebook, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .oh-social-source.facebook, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .oh-social-source.facebook, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .oh-social-source.facebook, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .oh-social-source.facebook, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .oh-social-source.facebook, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .oh-social-source.facebook {
    background-image: url("../images/ourhearts/facebook-header-icon-png.png");
    background-repeat: no-repeat;
  }
}
/* line 1092, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .oh-social-source, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .oh-social-source a, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .oh-social-source, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .oh-social-source a, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .oh-social-source, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .oh-social-source a, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .oh-social-source, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .oh-social-source a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .oh-social-source, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .oh-social-source a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .oh-social-source, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .oh-social-source a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .oh-social-source, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .oh-social-source a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .oh-social-source, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .oh-social-source a {
  color: #4D2D66;
  font-weight: bold;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 1em;
  margin-bottom: 1.5em;
  text-decoration: none;
  text-transform: capitalize;
}
/* line 1102, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .oh-social-pubdate, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .oh-social-pubdate, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .oh-social-pubdate, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .oh-social-pubdate, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .oh-social-pubdate, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .oh-social-pubdate, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .oh-social-pubdate, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .oh-social-pubdate {
  float: right;
  font-size: 0.875rem;
}
/* line 1107, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .view-content, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .view-content, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .view-content, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .view-content, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .view-content, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .view-content, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .view-content, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .view-content {
  position: relative;
  color: #222;
  word-break: break-word;
}
/* line 1112, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .view-content .views-row, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .view-content .views-row, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .view-content .views-row, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .view-content .views-row, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-nhlbi-basic-social-posts .view-content .views-row, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social .view-display-id-page_1 .view-content .views-row, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-nhlbi-basic-social-posts .view-content .views-row, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all .view-display-id-page_1 .view-content .views-row {
  margin-bottom: 2em;
  padding: 1.5em 0.5em;
  background: #fff;
}
@media all and (max-width: 767px) {
  /* line 826, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-social-all, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-social-all {
    background: #f4f4f4;
  }
}
/* line 1126, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-together .header-box, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-together .header-box {
  padding: 2em 0 2em 4em;
}
@media all and (min-width: 0em) and (max-width: 1024px) {
  /* line 1126, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-together .header-box, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-together .header-box {
    padding: 2em 0 2em 1.5em;
  }
}
@media all and (max-width: 767px) {
  /* line 1126, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-together .header-box, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-together .header-box {
    background: #007A89;
    width: calc(100% + 40px);
    margin-left: -20px;
    height: 35px;
    padding: 1.75em 2em;
  }
}
/* line 1141, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-together .header-box h2, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-together .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-together .header-box h1, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-together .header-box .contact-method-label, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-together .header-box h2, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-together .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .social-share-container .responsive-container .ourhearts_get-together .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-together .header-box .contact-method-label {
  display: inline-block;
  position: relative;
  background-color: #007A89;
  margin: 0.15em 0;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1141, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-together .header-box h2, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-together .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-together .header-box h1, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-together .header-box .contact-method-label, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-together .header-box h2, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-together .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .social-share-container .responsive-container .ourhearts_get-together .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-together .header-box .contact-method-label {
    font-size: 1.5rem;
  }
}
/* line 1151, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-together .header-box h2:after, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-together .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-together .header-box h1:after, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-together .header-box .contact-method-label:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-together .header-box h2:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-together .view-all-posts-page .header-box h1:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .social-share-container .responsive-container .ourhearts_get-together .header-box h1:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-together .header-box .contact-method-label:after {
  background: url("../images/ourhearts/Event-header-icon.svg") 100% 50% no-repeat;
  background-size: 35px;
  content: '';
  width: 35px;
  height: 35px;
  display: inline-block;
  margin-left: 20px;
  margin-bottom: -6px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  /* line 1151, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-together .header-box h2:after, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-together .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-together .header-box h1:after, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-together .header-box .contact-method-label:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-together .header-box h2:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-together .view-all-posts-page .header-box h1:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .social-share-container .responsive-container .ourhearts_get-together .header-box h1:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-together .header-box .contact-method-label:after {
    background-image: url("../images/ourhearts/event-header-icon-png.png");
    background-repeat: no-repeat;
  }
}
@media all and (max-width: 767px) {
  /* line 1151, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-together .header-box h2:after, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-together .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-together .header-box h1:after, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-together .header-box .contact-method-label:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-together .header-box h2:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-together .view-all-posts-page .header-box h1:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .social-share-container .responsive-container .ourhearts_get-together .header-box h1:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-together .header-box .contact-method-label:after {
    width: 30px;
    height: 30px;
    background-size: 30px;
  }
}
/* line 1173, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-together .content-box, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-together .content-box {
  padding: 0 0 2em 4em;
}
@media all and (min-width: 0em) and (max-width: 1024px) {
  /* line 1173, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-together .content-box, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-together .content-box {
    padding: 2em 0 2em 1.5em;
  }
}
/* line 1180, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-together .content-box h3, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-together .content-box .field--name-field-social-phrase-group-title, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-together .content-box .field--name-field-image-gallery-title, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-together .content-box h3, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-together .content-box .field--name-field-social-phrase-group-title, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-together .content-box .field--name-field-image-gallery-title {
  font-family: "Open Sans", Verdana, Arial, sans-serif;
}
/* line 1184, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-together .content-box:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-together .content-box:after {
  content: '';
  position: absolute;
  width: 50%;
  right: 0;
  top: 0;
  height: 100%;
  z-index: -11;
  border-bottom: 3px solid #f4f4f4;
}
/* line 1195, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-together .content-box .views-element-container, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-together .content-box .views-element-container {
  position: relative;
}
@media all and (max-width: 767px) {
  /* line 1173, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-together .content-box, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-together .content-box {
    padding: 2em 0;
  }
  /* line 1202, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-together .content-box:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-together .content-box:after {
    display: none;
  }
}
@media all and (max-width: 767px) {
  /* line 1125, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-together, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-together {
    border-bottom: 3px solid #f4f4f4;
  }
}
/* line 1216, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-together .view-nhlbi-basic-events .view-header .view-content .views-row, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-together .view-nhlbi-basic-events .view-header .view-content .views-row {
  padding: 1.5em;
  border: 3px solid #99D7E0;
  display: block;
  width: auto;
  margin-bottom: 2em;
  color: #222;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  margin-top: 3.5em;
}
/* line 1227, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-together .view-nhlbi-basic-events .view-header .featured-header, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-together .view-nhlbi-basic-events .view-header .featured-header {
  position: absolute;
  left: 0;
  top: 0;
  margin-top: -3.5em;
}
/* line 1235, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-together .view-nhlbi-basic-events .views-field-event-name, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-together .view-nhlbi-basic-events .views-field-event-name {
  color: #4D2D66;
  font-weight: 200;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 1.25rem;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1.5em;
  float: left;
}
/* line 1246, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-together .view-nhlbi-basic-events .views-field-start-time, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-together .view-nhlbi-basic-events .views-field-start-time {
  float: right;
  color: #222;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
}
/* line 1253, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-together .view-nhlbi-basic-events .views-field-end-time, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-together .view-nhlbi-basic-events .views-field-end-time {
  display: none;
}
/* line 1257, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-together .view-nhlbi-basic-events .views-field-address__langcode, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-together .view-nhlbi-basic-events .views-field-address__langcode {
  clear: both;
}
/* line 1260, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-together .view-nhlbi-basic-events .views-field-address__langcode p, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-together .view-nhlbi-basic-events .views-field-address__langcode p {
  font-size: 0.875rem;
}
/* line 1265, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-together .view-nhlbi-basic-events .views-field-event-url, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-together .view-nhlbi-basic-events .views-field-event-url {
  margin-top: 1em;
}
/* line 1268, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-together .view-nhlbi-basic-events .views-field-event-url a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-together .view-nhlbi-basic-events .views-field-event-url a {
  font-size: 1rem;
}
/* line 1273, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-together .view-nhlbi-basic-events .view-content, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-together .view-nhlbi-basic-events .view-content {
  position: relative;
  color: #222;
}
/* line 1277, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-together .view-nhlbi-basic-events .view-content .views-row, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-together .view-nhlbi-basic-events .view-content .views-row {
  margin-bottom: 2em;
  padding-bottom: 2em;
  border-bottom: 2px solid #f4f4f4;
}
/* line 1285, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-together a.add-event, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-together a.add-event {
  background: #4D2D66;
  color: #fff;
  padding: .5em 2em;
  border-radius: 50px;
  display: inline-block;
  margin-right: 2em;
  font-size: 1rem;
  margin-bottom: 3em;
  text-decoration: none;
}
/* line 1296, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-together a.add-event:hover, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-together a.add-event:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-together a.add-event:hover, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-together a.add-event:focus {
  border: 0;
  transition: background 0.5s;
  font-weight: normal;
}
/* line 1302, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-together a.add-event:hover, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-together a.add-event:hover {
  background: #007A89;
}
/* line 1306, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-together a.add-event:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-together a.add-event:focus {
  outline: #BF0D2E dotted 3px !important;
}
/* line 1311, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-together a.calendar-button, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-together a.calendar-button {
  background: #4D2D66 url("../images/ourhearts/calendar-white-icon.svg") 2em 45% no-repeat;
  background-size: 20px;
  color: #fff;
  padding: .6em 1.75em .5em 3.5em;
  border-radius: 50px;
  display: inline-block;
  font-size: 1rem;
  float: right;
  margin-bottom: 3em;
  cursor: pointer;
  text-decoration: none;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  /* line 1311, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-together a.calendar-button, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-together a.calendar-button {
    background-image: url("../images/ourhearts/calendar-white-icon-png.png");
    background-repeat: no-repeat;
  }
}
/* line 1329, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-together a.calendar-button:after, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-together a.calendar-button:after {
  content: '\25BC';
  margin-left: 8px;
  font-size: 0.5em;
  top: -2px;
  position: relative;
}
/* line 1337, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-together a.calendar-button:hover, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-together a.calendar-button:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-together a.calendar-button:hover, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-together a.calendar-button:focus {
  border: 0;
  transition: background 0.5s;
  font-weight: normal;
}
/* line 1343, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-together a.calendar-button:hover, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-together a.calendar-button:hover {
  background: #007A89 url("../images/ourhearts/calendar-white-icon.svg") 2em 45% no-repeat;
  background-size: 20px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  /* line 1343, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-together a.calendar-button:hover, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-together a.calendar-button:hover {
    background-image: url("../images/ourhearts/calendar-white-icon-png.png");
    background-repeat: no-repeat;
  }
}
/* line 1353, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-together a.calendar-button:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-together a.calendar-button:focus {
  outline: #BF0D2E dotted 3px !important;
}
/* line 1358, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-together .calendar-container, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-together .calendar-container {
  position: absolute;
  background: #fff;
  border: 1px solid #4D2D66;
  padding: 1em;
  display: none;
  right: 0;
  z-index: 10;
}
/* line 1367, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-together .calendar-container .button, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-together .calendar-container .button {
  background: #4D2D66;
  color: #fff;
  padding: .5em 1.5em;
  border-radius: 50px;
  display: inline-block;
  margin-right: 2em;
  font-size: 1rem;
  line-height: 1.5;
  border: 0;
}
/* line 1378, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-together .calendar-container .button:hover, .node--type-our-hearts .social-share-container .responsive-container .ourhearts_get-together .calendar-container .button:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-together .calendar-container .button:hover, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .ourhearts_get-together .calendar-container .button:focus {
  text-decoration: none;
  background: #007A89;
  border: 0;
  transition: background 0.5s;
}
/* line 1388, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .social-share-container .responsive-container .js-pager__items a.button, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .js-pager__items a.button {
  background: #4D2D66;
  padding: 0.3em 3em 0.4em;
  font-size: 1.2em;
  color: #fff;
  border: 0px;
  border-radius: 30px;
}
/* line 1396, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .social-share-container .responsive-container .js-pager__items a.button:hover, .node--type-our-hearts .social-share-container .responsive-container .js-pager__items a.button:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .js-pager__items a.button:hover, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .js-pager__items a.button:focus {
  text-decoration: none;
  background-color: #007A89;
  border: 0;
  transition: background 0.5s;
}
@media all and (max-width: 767px) {
  /* line 815, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .social-share-container .responsive-container, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container {
    flex-direction: column;
  }
  /* line 1407, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .social-share-container .responsive-container .social-event-box, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .social-share-container .responsive-container .social-event-box {
    width: auto;
    margin: 0 0 2em 0;
  }
}
@media all and (min-width: 0em) and (max-width: 1024px) {
  /* line 1419, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .ourhearts-notes .responsive-container, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-notes .responsive-container {
    padding: 0 1.5em;
  }
}
/* line 1426, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts-notes .field--name-field-ourhearts-notes, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-notes .field--name-field-ourhearts-notes {
  padding: 3em 0 3em 7em;
  background: url("../images/ourhearts/Note-icon.svg") 0 50% no-repeat;
  background-size: 75px;
  color: #222;
  font-size: 1.125rem;
  width: 65%;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  /* line 1426, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .ourhearts-notes .field--name-field-ourhearts-notes, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-notes .field--name-field-ourhearts-notes {
    background-image: url("../images/ourhearts/note-icon-png.png");
    background-repeat: no-repeat;
  }
}
/* line 1442, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts-get-in-touch, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-get-in-touch {
  background-color: #f4f4f4;
  padding-top: 3em;
  padding-bottom: 3em;
}
@media all and (min-width: 0em) and (max-width: 1024px) {
  /* line 1447, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .ourhearts-get-in-touch .responsive-container, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-get-in-touch .responsive-container {
    padding: 0 1.5em;
  }
}
/* line 1453, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts-get-in-touch h3, .node--type-our-hearts .ourhearts-get-in-touch .field--name-field-social-phrase-group-title, .node--type-our-hearts .ourhearts-get-in-touch .field--name-field-image-gallery-title, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-get-in-touch h3, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-get-in-touch .field--name-field-social-phrase-group-title, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-get-in-touch .field--name-field-image-gallery-title {
  margin: 0 auto 0.25em;
  text-align: left;
  width: 70%;
}
/* line 1461, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts-get-in-touch .field--name-field-note p, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-get-in-touch .field--name-field-note p {
  font-size: 1.125rem;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 1em;
  width: 70%;
}
/* line 1470, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts-get-in-touch .field--name-field-ourhearts-get-in-touch, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-get-in-touch .field--name-field-ourhearts-get-in-touch {
  display: flex;
  justify-content: space-evenly;
  align-items: stretch;
}
/* line 1475, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts-get-in-touch .field--name-field-ourhearts-get-in-touch .field__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-get-in-touch .field--name-field-ourhearts-get-in-touch .field__item {
  background: #fff;
  padding: 2em;
  margin: 0 0.5em;
  text-align: left;
  width: 33%;
  position: relative;
}
/* line 1483, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts-get-in-touch .field--name-field-ourhearts-get-in-touch .field__item .field__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-get-in-touch .field--name-field-ourhearts-get-in-touch .field__item .field__item {
  background: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
/* line 1490, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts-get-in-touch .field--name-field-ourhearts-get-in-touch .field__item .field--name-field-title, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-get-in-touch .field--name-field-ourhearts-get-in-touch .field__item .field--name-field-title {
  font-size: 1.5rem;
  color: #222;
  padding-top: 0.4em;
  padding-bottom: 1em;
  margin-bottom: 1em;
  border-bottom: 1px solid #ddd;
  padding-left: 40px;
  width: auto;
}
@media all and (min-width: 1440px) {
  /* line 1490, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .ourhearts-get-in-touch .field--name-field-ourhearts-get-in-touch .field__item .field--name-field-title, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-get-in-touch .field--name-field-ourhearts-get-in-touch .field__item .field--name-field-title {
    font-size: 1.5rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1490, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .ourhearts-get-in-touch .field--name-field-ourhearts-get-in-touch .field__item .field--name-field-title, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-get-in-touch .field--name-field-ourhearts-get-in-touch .field__item .field--name-field-title {
    font-size: 1.5rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1490, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .ourhearts-get-in-touch .field--name-field-ourhearts-get-in-touch .field__item .field--name-field-title, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-get-in-touch .field--name-field-ourhearts-get-in-touch .field__item .field--name-field-title {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1490, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .ourhearts-get-in-touch .field--name-field-ourhearts-get-in-touch .field__item .field--name-field-title, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-get-in-touch .field--name-field-ourhearts-get-in-touch .field__item .field--name-field-title {
    font-size: 1.25rem;
  }
}
/* line 1503, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts-get-in-touch .field--name-field-ourhearts-get-in-touch .field__item .field--type-text-long p, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-get-in-touch .field--name-field-ourhearts-get-in-touch .field__item .field--type-text-long p {
  font-size: 1.25rem;
  margin: 0.25em 0;
}
@media all and (min-width: 1440px) {
  /* line 1503, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .ourhearts-get-in-touch .field--name-field-ourhearts-get-in-touch .field__item .field--type-text-long p, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-get-in-touch .field--name-field-ourhearts-get-in-touch .field__item .field--type-text-long p {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1503, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .ourhearts-get-in-touch .field--name-field-ourhearts-get-in-touch .field__item .field--type-text-long p, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-get-in-touch .field--name-field-ourhearts-get-in-touch .field__item .field--type-text-long p {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1503, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .ourhearts-get-in-touch .field--name-field-ourhearts-get-in-touch .field__item .field--type-text-long p, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-get-in-touch .field--name-field-ourhearts-get-in-touch .field__item .field--type-text-long p {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1503, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .ourhearts-get-in-touch .field--name-field-ourhearts-get-in-touch .field__item .field--type-text-long p, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-get-in-touch .field--name-field-ourhearts-get-in-touch .field__item .field--type-text-long p {
    font-size: 1rem;
  }
}
/* line 1510, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts-get-in-touch .field--name-field-ourhearts-get-in-touch .field__item:first-child .field--name-field-title, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-get-in-touch .field--name-field-ourhearts-get-in-touch .field__item:first-child .field--name-field-title {
  background: url("../images/ourhearts/Phone-icon.svg") 0 10% no-repeat;
  background-size: 20px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  /* line 1510, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .ourhearts-get-in-touch .field--name-field-ourhearts-get-in-touch .field__item:first-child .field--name-field-title, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-get-in-touch .field--name-field-ourhearts-get-in-touch .field__item:first-child .field--name-field-title {
    background-image: url("../images/ourhearts/phone-icon-png.png");
    background-repeat: no-repeat;
  }
}
/* line 1520, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts-get-in-touch .field--name-field-ourhearts-get-in-touch .field__item:nth-child(2) .field--name-field-title, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-get-in-touch .field--name-field-ourhearts-get-in-touch .field__item:nth-child(2) .field--name-field-title {
  background: url("../images/ourhearts/Email-icon.svg") 0 30% no-repeat;
  background-size: 50px;
  padding-left: 70px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  /* line 1520, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .ourhearts-get-in-touch .field--name-field-ourhearts-get-in-touch .field__item:nth-child(2) .field--name-field-title, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-get-in-touch .field--name-field-ourhearts-get-in-touch .field__item:nth-child(2) .field--name-field-title {
    background-image: url("../images/ourhearts/email-icon-png.png");
    background-repeat: no-repeat;
  }
}
/* line 1531, ../sass/layouts/_our_hearts.scss */
.node--type-our-hearts .ourhearts-get-in-touch .field--name-field-ourhearts-get-in-touch .field__item:last-child .field--name-field-title, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-get-in-touch .field--name-field-ourhearts-get-in-touch .field__item:last-child .field--name-field-title {
  background: url("../images/ourhearts/Mail-icon.svg") 0 0 no-repeat;
  background-size: 44px;
  padding-left: 64px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  /* line 1531, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .ourhearts-get-in-touch .field--name-field-ourhearts-get-in-touch .field__item:last-child .field--name-field-title, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-get-in-touch .field--name-field-ourhearts-get-in-touch .field__item:last-child .field--name-field-title {
    background-image: url("../images/ourhearts/mail-icon-png.png");
    background-repeat: no-repeat;
  }
}
@media all and (max-width: 767px) {
  /* line 1470, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .ourhearts-get-in-touch .field--name-field-ourhearts-get-in-touch, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-get-in-touch .field--name-field-ourhearts-get-in-touch {
    flex-direction: column;
  }
  /* line 1545, ../sass/layouts/_our_hearts.scss */
  .node--type-our-hearts .ourhearts-get-in-touch .field--name-field-ourhearts-get-in-touch .field__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .ourhearts-get-in-touch .field--name-field-ourhearts-get-in-touch .field__item {
    width: auto;
    margin: 0 0 2em 0;
  }
}

/* line 1560, ../sass/layouts/_our_hearts.scss */
.health-topics-education-and-awareness-heart-truth-our-hearts-our-hearts-submit-event h1 {
  color: #4D2D66;
}
/* line 1564, ../sass/layouts/_our_hearts.scss */
.health-topics-education-and-awareness-heart-truth-our-hearts-our-hearts-submit-event #edit-submit {
  background: #4D2D66;
  color: #fff;
  padding: .5em 2em;
  border-radius: 50px;
  display: inline-block;
  margin-right: 2em;
  font-size: 1rem;
  margin-bottom: 3em;
  height: auto;
}
/* line 1575, ../sass/layouts/_our_hearts.scss */
.health-topics-education-and-awareness-heart-truth-our-hearts-our-hearts-submit-event #edit-submit:hover, .health-topics-education-and-awareness-heart-truth-our-hearts-our-hearts-submit-event #edit-submit:focus {
  text-decoration: none;
  background: #007A89;
  border: 0;
  transition: background 0.5s;
}

/* line 1585, ../sass/layouts/_our_hearts.scss */
#heart-map-sidebar #sidebar-content {
  border: none;
}

/* line 1590, ../sass/layouts/_our_hearts.scss */
div#block-heartgmapblock {
  height: 100%;
}

/* line 1595, ../sass/layouts/_our_hearts.scss */
.side-panel-card .side-panel-posts-link {
  text-decoration: none;
  color: #222;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
}
/* line 1601, ../sass/layouts/_our_hearts.scss */
.side-panel-card .side-panel-posts-link:hover, .side-panel-card .side-panel-posts-link:focus, .side-panel-card .side-panel-posts-link:active {
  text-decoration: none;
  box-shadow: 3px 3px 5px #ccc;
  transition: box-shadow 0.5s;
  border: 0;
  text-decoration: none;
  color: #222;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-weight: normal;
}

/* line 1613, ../sass/layouts/_our_hearts.scss */
.side-panel-card .oh-social-source.twitter {
  background: url("../images/ourhearts/twitter-header-icon.svg") 100% 45% no-repeat;
  background-size: 16px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  /* line 1613, ../sass/layouts/_our_hearts.scss */
  .side-panel-card .oh-social-source.twitter {
    background-image: url("../images/ourhearts/twitter-header-icon-png.png");
    background-repeat: no-repeat;
  }
}

/* line 1623, ../sass/layouts/_our_hearts.scss */
.side-panel-card .oh-social-source.instagram {
  background: url("../images/ourhearts/instagram-header-icon.svg") 100% 45% no-repeat;
  background-size: 16px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  /* line 1623, ../sass/layouts/_our_hearts.scss */
  .side-panel-card .oh-social-source.instagram {
    background-image: url("../images/ourhearts/instagram-header-icon-png.png");
    background-repeat: no-repeat;
  }
}

/* line 1633, ../sass/layouts/_our_hearts.scss */
.side-panel-card .oh-social-source.facebook {
  background: url("../images/ourhearts/facebook-header-icon.svg") 100% 45% no-repeat;
  background-size: 16px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  /* line 1633, ../sass/layouts/_our_hearts.scss */
  .side-panel-card .oh-social-source.facebook {
    background-image: url("../images/ourhearts/facebook-header-icon-png.png");
    background-repeat: no-repeat;
  }
}

@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 177, ../sass/_mixins.scss */
  .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items {
    padding: 0;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 177, ../sass/_mixins.scss */
  .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items {
    padding-left: 0;
    padding-right: 15px;
  }
}
/* line 188, ../sass/_mixins.scss */
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .news-and-events--landing .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .pager__item, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .blueRoundButton, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .redRoundButton, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .standard-more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .news-and-events--landing .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .news-and-events--landing .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .news-and-events--landing .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .view-more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .view-more-link {
  display: inline-block;
  border: 1px solid #d7d7d7;
  background-color: #fff;
  padding: 0;
  margin: 0 -.13em;
  text-align: center;
  width: auto;
  height: auto;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 188, ../sass/_mixins.scss */
  .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .news-and-events--landing .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .pager__item, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .blueRoundButton, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .redRoundButton, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .standard-more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .news-and-events--landing .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .news-and-events--landing .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .news-and-events--landing .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .view-more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .view-more-link {
    width: 45px;
    height: 45px;
    display: none;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 188, ../sass/_mixins.scss */
  .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .news-and-events--landing .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .pager__item, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .blueRoundButton, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .redRoundButton, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .standard-more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .news-and-events--landing .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .news-and-events--landing .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .news-and-events--landing .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .view-more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .view-more-link {
    display: none;
  }
}
/* line 207, ../sass/_mixins.scss */
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .pager__item a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .blueRoundButton a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .redRoundButton a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .standard-more-link a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .news-and-events--landing .more-link a, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .more-link a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .view-more-link a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .pager__item a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .pager__item a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .pager__item a, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .pager__item a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .pager__item a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .blueRoundButton a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .blueRoundButton a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .blueRoundButton a, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .blueRoundButton a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .blueRoundButton a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .redRoundButton a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .redRoundButton a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .redRoundButton a, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .redRoundButton a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .redRoundButton a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .standard-more-link a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .standard-more-link a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .standard-more-link a, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .standard-more-link a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .standard-more-link a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .news-and-events--landing .more-link a, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .more-link a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .news-and-events--landing .more-link a, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .more-link a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .more-link a, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .more-link a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .news-and-events--landing .more-link a, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .more-link a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .view-more-link a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .view-more-link a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .view-more-link a, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .view-more-link a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .view-more-link a {
  display: block;
  padding: 1em 1.5em;
  color: #222;
  text-decoration: none;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 207, ../sass/_mixins.scss */
  .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .pager__item a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .blueRoundButton a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .redRoundButton a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .standard-more-link a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .news-and-events--landing .more-link a, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .more-link a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .view-more-link a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .pager__item a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .pager__item a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .pager__item a, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .pager__item a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .pager__item a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .blueRoundButton a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .blueRoundButton a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .blueRoundButton a, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .blueRoundButton a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .blueRoundButton a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .redRoundButton a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .redRoundButton a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .redRoundButton a, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .redRoundButton a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .redRoundButton a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .standard-more-link a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .standard-more-link a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .standard-more-link a, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .standard-more-link a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .standard-more-link a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .news-and-events--landing .more-link a, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .more-link a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .news-and-events--landing .more-link a, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .more-link a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .more-link a, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .more-link a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .news-and-events--landing .more-link a, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .more-link a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .view-more-link a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .view-more-link a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .view-more-link a, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .view-more-link a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .view-more-link a {
    padding: 0.6em 0.5em;
  }
}
/* line 217, ../sass/_mixins.scss */
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .pager__item a:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .blueRoundButton a:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .redRoundButton a:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .standard-more-link a:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .news-and-events--landing .more-link a:focus, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .more-link a:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .view-more-link a:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .pager__item a:active, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .blueRoundButton a:active, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .redRoundButton a:active, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .standard-more-link a:active, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .news-and-events--landing .more-link a:active, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .more-link a:active, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .view-more-link a:active, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .pager__item a:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .pager__item a:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .pager__item a:focus, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .pager__item a:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .pager__item a:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .blueRoundButton a:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .blueRoundButton a:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .blueRoundButton a:focus, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .blueRoundButton a:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .blueRoundButton a:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .redRoundButton a:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .redRoundButton a:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .redRoundButton a:focus, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .redRoundButton a:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .redRoundButton a:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .standard-more-link a:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .standard-more-link a:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .standard-more-link a:focus, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .standard-more-link a:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .standard-more-link a:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .news-and-events--landing .more-link a:focus, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .more-link a:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .news-and-events--landing .more-link a:focus, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .more-link a:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .more-link a:focus, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .more-link a:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .news-and-events--landing .more-link a:focus, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .more-link a:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .view-more-link a:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .view-more-link a:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .view-more-link a:focus, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .view-more-link a:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .view-more-link a:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .pager__item a:active, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .pager__item a:active, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .pager__item a:active, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .pager__item a:active, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .pager__item a:active, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .blueRoundButton a:active, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .blueRoundButton a:active, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .blueRoundButton a:active, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .blueRoundButton a:active, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .blueRoundButton a:active, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .redRoundButton a:active, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .redRoundButton a:active, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .redRoundButton a:active, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .redRoundButton a:active, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .redRoundButton a:active, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .standard-more-link a:active, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .standard-more-link a:active, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .standard-more-link a:active, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .standard-more-link a:active, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .standard-more-link a:active, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .news-and-events--landing .more-link a:active, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .more-link a:active, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .news-and-events--landing .more-link a:active, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .more-link a:active, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .more-link a:active, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .more-link a:active, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .news-and-events--landing .more-link a:active, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .more-link a:active, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .view-more-link a:active, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .view-more-link a:active, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .view-more-link a:active, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .view-more-link a:active, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .view-more-link a:active {
  position: relative;
  z-index: 1;
}
/* line 222, ../sass/_mixins.scss */
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .pager__item--first, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .pager__item--previous, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .pager__item--next, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .pager__item--last, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .pager__item--first, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .pager__item--first, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .pager__item--first, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .pager__item--first, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .pager__item--first, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .pager__item--previous, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .pager__item--previous, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .pager__item--previous, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .pager__item--previous, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .pager__item--previous, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .pager__item--next, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .pager__item--next, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .pager__item--next, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .pager__item--next, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .pager__item--next, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .pager__item--last, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .pager__item--last, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .pager__item--last, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .pager__item--last, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .pager__item--last {
  border: 1px solid #d7d7d7;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 222, ../sass/_mixins.scss */
  .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .pager__item--first, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .pager__item--previous, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .pager__item--next, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .pager__item--last, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .pager__item--first, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .pager__item--first, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .pager__item--first, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .pager__item--first, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .pager__item--first, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .pager__item--previous, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .pager__item--previous, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .pager__item--previous, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .pager__item--previous, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .pager__item--previous, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .pager__item--next, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .pager__item--next, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .pager__item--next, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .pager__item--next, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .pager__item--next, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .pager__item--last, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .pager__item--last, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .pager__item--last, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .pager__item--last, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .pager__item--last {
    display: inline-block;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 222, ../sass/_mixins.scss */
  .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .pager__item--first, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .pager__item--previous, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .pager__item--next, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .pager__item--last, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .pager__item--first, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .pager__item--first, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .pager__item--first, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .pager__item--first, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .pager__item--first, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .pager__item--previous, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .pager__item--previous, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .pager__item--previous, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .pager__item--previous, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .pager__item--previous, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .pager__item--next, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .pager__item--next, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .pager__item--next, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .pager__item--next, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .pager__item--next, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .pager__item--last, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .pager__item--last, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .pager__item--last, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .pager__item--last, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .pager__item--last {
    display: inline-block;
  }
}
/* line 231, ../sass/_mixins.scss */
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .pager__item--first, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .pager__item--last, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .pager__item--first, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .pager__item--first, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .pager__item--first, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .pager__item--first, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .pager__item--first, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .pager__item--last, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .pager__item--last, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .pager__item--last, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .pager__item--last, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .pager__item--last {
  margin: 0 -.14em;
}
/* line 234, ../sass/_mixins.scss */
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .pager__item--ellipsis, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .pager__item--ellipsis, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .pager__item--ellipsis, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .pager__item--ellipsis, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .pager__item--ellipsis, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .pager__item--ellipsis {
  display: none;
}
/* line 239, ../sass/_mixins.scss */
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .pager__item:hover, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .blueRoundButton:hover, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .redRoundButton:hover, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .standard-more-link:hover, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .news-and-events--landing .more-link:hover, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .more-link:hover, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .view-more-link:hover, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .pager__item:hover, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .pager__item:hover, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .pager__item:hover, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .pager__item:hover, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .pager__item:hover, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .blueRoundButton:hover, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .blueRoundButton:hover, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .blueRoundButton:hover, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .blueRoundButton:hover, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .blueRoundButton:hover, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .redRoundButton:hover, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .redRoundButton:hover, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .redRoundButton:hover, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .redRoundButton:hover, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .redRoundButton:hover, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .standard-more-link:hover, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .standard-more-link:hover, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .standard-more-link:hover, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .standard-more-link:hover, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .standard-more-link:hover, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .news-and-events--landing .more-link:hover, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .more-link:hover, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .news-and-events--landing .more-link:hover, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .more-link:hover, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .more-link:hover, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .more-link:hover, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .news-and-events--landing .more-link:hover, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .more-link:hover, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .view-more-link:hover, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .view-more-link:hover, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .view-more-link:hover, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .view-more-link:hover, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .view-more-link:hover {
  background-color: #4D2D66;
  color: #fff;
}
/* line 242, ../sass/_mixins.scss */
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .pager__item:hover a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .blueRoundButton:hover a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .redRoundButton:hover a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .standard-more-link:hover a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .news-and-events--landing .more-link:hover a, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .more-link:hover a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .view-more-link:hover a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .pager__item:hover a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .pager__item:hover a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .pager__item:hover a, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .pager__item:hover a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .pager__item:hover a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .blueRoundButton:hover a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .blueRoundButton:hover a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .blueRoundButton:hover a, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .blueRoundButton:hover a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .blueRoundButton:hover a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .redRoundButton:hover a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .redRoundButton:hover a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .redRoundButton:hover a, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .redRoundButton:hover a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .redRoundButton:hover a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .standard-more-link:hover a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .standard-more-link:hover a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .standard-more-link:hover a, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .standard-more-link:hover a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .standard-more-link:hover a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .news-and-events--landing .more-link:hover a, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .more-link:hover a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .news-and-events--landing .more-link:hover a, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .more-link:hover a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .more-link:hover a, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .more-link:hover a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .news-and-events--landing .more-link:hover a, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .more-link:hover a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .view-more-link:hover a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .view-more-link:hover a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .view-more-link:hover a, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .view-more-link:hover a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .view-more-link:hover a {
  color: #fff;
}
/* line 246, ../sass/_mixins.scss */
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .pager__item.is-active, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .news-and-events--landing .is-active.more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .pager__item.is-active, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .pager__item.is-active, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .pager__item.is-active, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .pager__item.is-active, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .pager__item.is-active, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.blueRoundButton, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.redRoundButton, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.standard-more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .news-and-events--landing .is-active.more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .news-and-events--landing .is-active.more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .news-and-events--landing .is-active.more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.view-more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.view-more-link {
  background-color: #4D2D66;
}
/* line 248, ../sass/_mixins.scss */
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .pager__item.is-active a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.blueRoundButton a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.redRoundButton a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.standard-more-link a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .news-and-events--landing .is-active.more-link a, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.more-link a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.view-more-link a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .pager__item.is-active a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .pager__item.is-active a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .pager__item.is-active a, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .pager__item.is-active a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .pager__item.is-active a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.blueRoundButton a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.blueRoundButton a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.blueRoundButton a, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.blueRoundButton a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.blueRoundButton a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.redRoundButton a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.redRoundButton a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.redRoundButton a, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.redRoundButton a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.redRoundButton a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.standard-more-link a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.standard-more-link a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.standard-more-link a, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.standard-more-link a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.standard-more-link a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .news-and-events--landing .is-active.more-link a, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.more-link a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .news-and-events--landing .is-active.more-link a, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.more-link a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.more-link a, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.more-link a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .news-and-events--landing .is-active.more-link a, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.more-link a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.view-more-link a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.view-more-link a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.view-more-link a, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.view-more-link a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.view-more-link a {
  color: #fff;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 246, ../sass/_mixins.scss */
  .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .pager__item.is-active, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .news-and-events--landing .is-active.more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .pager__item.is-active, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .pager__item.is-active, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .pager__item.is-active, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .pager__item.is-active, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .pager__item.is-active, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.blueRoundButton, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.redRoundButton, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.standard-more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .news-and-events--landing .is-active.more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .news-and-events--landing .is-active.more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .news-and-events--landing .is-active.more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.view-more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.view-more-link {
    display: inline-block;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 246, ../sass/_mixins.scss */
  .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .pager__item.is-active, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .news-and-events--landing .is-active.more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .pager__item.is-active, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .pager__item.is-active, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .pager__item.is-active, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .pager__item.is-active, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .pager__item.is-active, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.blueRoundButton, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.redRoundButton, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.standard-more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .news-and-events--landing .is-active.more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .news-and-events--landing .is-active.more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .news-and-events--landing .is-active.more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.view-more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.view-more-link {
    display: inline-block;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 258, ../sass/_mixins.scss */
  .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .pager__item.is-active + .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.blueRoundButton + .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.redRoundButton + .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.standard-more-link + .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .news-and-events--landing .is-active.more-link + .pager__item, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.more-link + .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.view-more-link + .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .pager__item.is-active + .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.blueRoundButton + .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.redRoundButton + .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.standard-more-link + .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .news-and-events--landing .is-active.more-link + .blueRoundButton, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.more-link + .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.view-more-link + .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .pager__item.is-active + .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.blueRoundButton + .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.redRoundButton + .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.standard-more-link + .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .news-and-events--landing .is-active.more-link + .redRoundButton, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.more-link + .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.view-more-link + .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .pager__item.is-active + .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.blueRoundButton + .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.redRoundButton + .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.standard-more-link + .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .news-and-events--landing .is-active.more-link + .standard-more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.more-link + .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.view-more-link + .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .news-and-events--landing .pager__item.is-active + .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .pager__item.is-active + .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .news-and-events--landing .is-active.blueRoundButton + .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.blueRoundButton + .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .news-and-events--landing .is-active.redRoundButton + .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.redRoundButton + .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .news-and-events--landing .is-active.standard-more-link + .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.standard-more-link + .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .news-and-events--landing .is-active.more-link + .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.more-link + .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .news-and-events--landing .is-active.view-more-link + .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.view-more-link + .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .pager__item.is-active + .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.blueRoundButton + .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.redRoundButton + .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.standard-more-link + .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .news-and-events--landing .is-active.more-link + .view-more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.more-link + .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.view-more-link + .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .pager__item.is-active + .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .pager__item.is-active + .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .pager__item.is-active + .pager__item, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .pager__item.is-active + .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .pager__item.is-active + .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.blueRoundButton + .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.blueRoundButton + .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.blueRoundButton + .pager__item, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.blueRoundButton + .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.blueRoundButton + .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.redRoundButton + .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.redRoundButton + .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.redRoundButton + .pager__item, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.redRoundButton + .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.redRoundButton + .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.standard-more-link + .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.standard-more-link + .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.standard-more-link + .pager__item, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.standard-more-link + .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.standard-more-link + .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .news-and-events--landing .is-active.more-link + .pager__item, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.more-link + .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .news-and-events--landing .is-active.more-link + .pager__item, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.more-link + .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.more-link + .pager__item, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.more-link + .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .news-and-events--landing .is-active.more-link + .pager__item, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.more-link + .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.view-more-link + .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.view-more-link + .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.view-more-link + .pager__item, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.view-more-link + .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.view-more-link + .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .pager__item.is-active + .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .pager__item.is-active + .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .pager__item.is-active + .blueRoundButton, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .pager__item.is-active + .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .pager__item.is-active + .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.blueRoundButton + .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.blueRoundButton + .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.blueRoundButton + .blueRoundButton, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.blueRoundButton + .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.blueRoundButton + .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.redRoundButton + .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.redRoundButton + .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.redRoundButton + .blueRoundButton, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.redRoundButton + .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.redRoundButton + .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.standard-more-link + .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.standard-more-link + .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.standard-more-link + .blueRoundButton, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.standard-more-link + .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.standard-more-link + .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .news-and-events--landing .is-active.more-link + .blueRoundButton, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.more-link + .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .news-and-events--landing .is-active.more-link + .blueRoundButton, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.more-link + .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.more-link + .blueRoundButton, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.more-link + .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .news-and-events--landing .is-active.more-link + .blueRoundButton, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.more-link + .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.view-more-link + .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.view-more-link + .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.view-more-link + .blueRoundButton, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.view-more-link + .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.view-more-link + .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .pager__item.is-active + .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .pager__item.is-active + .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .pager__item.is-active + .redRoundButton, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .pager__item.is-active + .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .pager__item.is-active + .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.blueRoundButton + .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.blueRoundButton + .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.blueRoundButton + .redRoundButton, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.blueRoundButton + .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.blueRoundButton + .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.redRoundButton + .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.redRoundButton + .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.redRoundButton + .redRoundButton, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.redRoundButton + .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.redRoundButton + .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.standard-more-link + .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.standard-more-link + .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.standard-more-link + .redRoundButton, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.standard-more-link + .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.standard-more-link + .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .news-and-events--landing .is-active.more-link + .redRoundButton, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.more-link + .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .news-and-events--landing .is-active.more-link + .redRoundButton, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.more-link + .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.more-link + .redRoundButton, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.more-link + .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .news-and-events--landing .is-active.more-link + .redRoundButton, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.more-link + .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.view-more-link + .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.view-more-link + .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.view-more-link + .redRoundButton, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.view-more-link + .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.view-more-link + .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .pager__item.is-active + .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .pager__item.is-active + .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .pager__item.is-active + .standard-more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .pager__item.is-active + .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .pager__item.is-active + .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.blueRoundButton + .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.blueRoundButton + .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.blueRoundButton + .standard-more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.blueRoundButton + .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.blueRoundButton + .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.redRoundButton + .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.redRoundButton + .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.redRoundButton + .standard-more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.redRoundButton + .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.redRoundButton + .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.standard-more-link + .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.standard-more-link + .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.standard-more-link + .standard-more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.standard-more-link + .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.standard-more-link + .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .news-and-events--landing .is-active.more-link + .standard-more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.more-link + .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .news-and-events--landing .is-active.more-link + .standard-more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.more-link + .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.more-link + .standard-more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.more-link + .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .news-and-events--landing .is-active.more-link + .standard-more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.more-link + .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.view-more-link + .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.view-more-link + .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.view-more-link + .standard-more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.view-more-link + .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.view-more-link + .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .news-and-events--landing .pager__item.is-active + .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .pager__item.is-active + .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .news-and-events--landing .pager__item.is-active + .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .pager__item.is-active + .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .pager__item.is-active + .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .pager__item.is-active + .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .news-and-events--landing .pager__item.is-active + .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .pager__item.is-active + .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .news-and-events--landing .is-active.blueRoundButton + .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.blueRoundButton + .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .news-and-events--landing .is-active.blueRoundButton + .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.blueRoundButton + .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.blueRoundButton + .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.blueRoundButton + .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .news-and-events--landing .is-active.blueRoundButton + .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.blueRoundButton + .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .news-and-events--landing .is-active.redRoundButton + .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.redRoundButton + .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .news-and-events--landing .is-active.redRoundButton + .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.redRoundButton + .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.redRoundButton + .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.redRoundButton + .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .news-and-events--landing .is-active.redRoundButton + .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.redRoundButton + .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .news-and-events--landing .is-active.standard-more-link + .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.standard-more-link + .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .news-and-events--landing .is-active.standard-more-link + .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.standard-more-link + .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.standard-more-link + .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.standard-more-link + .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .news-and-events--landing .is-active.standard-more-link + .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.standard-more-link + .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .news-and-events--landing .is-active.more-link + .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.more-link + .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .news-and-events--landing .is-active.more-link + .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.more-link + .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.more-link + .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.more-link + .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .news-and-events--landing .is-active.more-link + .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.more-link + .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .news-and-events--landing .is-active.view-more-link + .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.view-more-link + .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .news-and-events--landing .is-active.view-more-link + .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.view-more-link + .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.view-more-link + .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.view-more-link + .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .news-and-events--landing .is-active.view-more-link + .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.view-more-link + .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .pager__item.is-active + .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .pager__item.is-active + .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .pager__item.is-active + .view-more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .pager__item.is-active + .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .pager__item.is-active + .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.blueRoundButton + .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.blueRoundButton + .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.blueRoundButton + .view-more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.blueRoundButton + .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.blueRoundButton + .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.redRoundButton + .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.redRoundButton + .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.redRoundButton + .view-more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.redRoundButton + .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.redRoundButton + .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.standard-more-link + .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.standard-more-link + .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.standard-more-link + .view-more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.standard-more-link + .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.standard-more-link + .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .news-and-events--landing .is-active.more-link + .view-more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.more-link + .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .news-and-events--landing .is-active.more-link + .view-more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.more-link + .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.more-link + .view-more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.more-link + .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .news-and-events--landing .is-active.more-link + .view-more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.more-link + .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.view-more-link + .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.view-more-link + .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.view-more-link + .view-more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.view-more-link + .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.view-more-link + .view-more-link {
    display: inline-block;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 258, ../sass/_mixins.scss */
  .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .pager__item.is-active + .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.blueRoundButton + .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.redRoundButton + .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.standard-more-link + .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .news-and-events--landing .is-active.more-link + .pager__item, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.more-link + .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.view-more-link + .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .pager__item.is-active + .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.blueRoundButton + .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.redRoundButton + .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.standard-more-link + .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .news-and-events--landing .is-active.more-link + .blueRoundButton, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.more-link + .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.view-more-link + .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .pager__item.is-active + .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.blueRoundButton + .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.redRoundButton + .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.standard-more-link + .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .news-and-events--landing .is-active.more-link + .redRoundButton, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.more-link + .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.view-more-link + .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .pager__item.is-active + .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.blueRoundButton + .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.redRoundButton + .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.standard-more-link + .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .news-and-events--landing .is-active.more-link + .standard-more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.more-link + .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.view-more-link + .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .news-and-events--landing .pager__item.is-active + .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .pager__item.is-active + .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .news-and-events--landing .is-active.blueRoundButton + .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.blueRoundButton + .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .news-and-events--landing .is-active.redRoundButton + .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.redRoundButton + .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .news-and-events--landing .is-active.standard-more-link + .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.standard-more-link + .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .news-and-events--landing .is-active.more-link + .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.more-link + .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .news-and-events--landing .is-active.view-more-link + .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.view-more-link + .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .pager__item.is-active + .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.blueRoundButton + .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.redRoundButton + .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.standard-more-link + .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .news-and-events--landing .is-active.more-link + .view-more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.more-link + .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .is-active.view-more-link + .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .pager__item.is-active + .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .pager__item.is-active + .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .pager__item.is-active + .pager__item, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .pager__item.is-active + .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .pager__item.is-active + .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.blueRoundButton + .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.blueRoundButton + .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.blueRoundButton + .pager__item, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.blueRoundButton + .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.blueRoundButton + .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.redRoundButton + .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.redRoundButton + .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.redRoundButton + .pager__item, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.redRoundButton + .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.redRoundButton + .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.standard-more-link + .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.standard-more-link + .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.standard-more-link + .pager__item, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.standard-more-link + .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.standard-more-link + .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .news-and-events--landing .is-active.more-link + .pager__item, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.more-link + .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .news-and-events--landing .is-active.more-link + .pager__item, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.more-link + .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.more-link + .pager__item, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.more-link + .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .news-and-events--landing .is-active.more-link + .pager__item, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.more-link + .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.view-more-link + .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.view-more-link + .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.view-more-link + .pager__item, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.view-more-link + .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.view-more-link + .pager__item, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .pager__item.is-active + .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .pager__item.is-active + .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .pager__item.is-active + .blueRoundButton, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .pager__item.is-active + .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .pager__item.is-active + .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.blueRoundButton + .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.blueRoundButton + .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.blueRoundButton + .blueRoundButton, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.blueRoundButton + .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.blueRoundButton + .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.redRoundButton + .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.redRoundButton + .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.redRoundButton + .blueRoundButton, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.redRoundButton + .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.redRoundButton + .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.standard-more-link + .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.standard-more-link + .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.standard-more-link + .blueRoundButton, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.standard-more-link + .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.standard-more-link + .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .news-and-events--landing .is-active.more-link + .blueRoundButton, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.more-link + .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .news-and-events--landing .is-active.more-link + .blueRoundButton, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.more-link + .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.more-link + .blueRoundButton, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.more-link + .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .news-and-events--landing .is-active.more-link + .blueRoundButton, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.more-link + .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.view-more-link + .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.view-more-link + .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.view-more-link + .blueRoundButton, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.view-more-link + .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.view-more-link + .blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .pager__item.is-active + .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .pager__item.is-active + .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .pager__item.is-active + .redRoundButton, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .pager__item.is-active + .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .pager__item.is-active + .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.blueRoundButton + .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.blueRoundButton + .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.blueRoundButton + .redRoundButton, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.blueRoundButton + .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.blueRoundButton + .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.redRoundButton + .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.redRoundButton + .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.redRoundButton + .redRoundButton, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.redRoundButton + .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.redRoundButton + .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.standard-more-link + .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.standard-more-link + .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.standard-more-link + .redRoundButton, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.standard-more-link + .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.standard-more-link + .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .news-and-events--landing .is-active.more-link + .redRoundButton, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.more-link + .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .news-and-events--landing .is-active.more-link + .redRoundButton, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.more-link + .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.more-link + .redRoundButton, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.more-link + .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .news-and-events--landing .is-active.more-link + .redRoundButton, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.more-link + .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.view-more-link + .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.view-more-link + .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.view-more-link + .redRoundButton, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.view-more-link + .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.view-more-link + .redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .pager__item.is-active + .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .pager__item.is-active + .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .pager__item.is-active + .standard-more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .pager__item.is-active + .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .pager__item.is-active + .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.blueRoundButton + .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.blueRoundButton + .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.blueRoundButton + .standard-more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.blueRoundButton + .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.blueRoundButton + .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.redRoundButton + .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.redRoundButton + .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.redRoundButton + .standard-more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.redRoundButton + .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.redRoundButton + .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.standard-more-link + .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.standard-more-link + .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.standard-more-link + .standard-more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.standard-more-link + .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.standard-more-link + .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .news-and-events--landing .is-active.more-link + .standard-more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.more-link + .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .news-and-events--landing .is-active.more-link + .standard-more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.more-link + .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.more-link + .standard-more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.more-link + .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .news-and-events--landing .is-active.more-link + .standard-more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.more-link + .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.view-more-link + .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.view-more-link + .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.view-more-link + .standard-more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.view-more-link + .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.view-more-link + .standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .news-and-events--landing .pager__item.is-active + .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .pager__item.is-active + .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .news-and-events--landing .pager__item.is-active + .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .pager__item.is-active + .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .pager__item.is-active + .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .pager__item.is-active + .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .news-and-events--landing .pager__item.is-active + .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .pager__item.is-active + .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .news-and-events--landing .is-active.blueRoundButton + .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.blueRoundButton + .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .news-and-events--landing .is-active.blueRoundButton + .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.blueRoundButton + .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.blueRoundButton + .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.blueRoundButton + .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .news-and-events--landing .is-active.blueRoundButton + .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.blueRoundButton + .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .news-and-events--landing .is-active.redRoundButton + .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.redRoundButton + .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .news-and-events--landing .is-active.redRoundButton + .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.redRoundButton + .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.redRoundButton + .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.redRoundButton + .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .news-and-events--landing .is-active.redRoundButton + .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.redRoundButton + .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .news-and-events--landing .is-active.standard-more-link + .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.standard-more-link + .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .news-and-events--landing .is-active.standard-more-link + .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.standard-more-link + .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.standard-more-link + .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.standard-more-link + .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .news-and-events--landing .is-active.standard-more-link + .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.standard-more-link + .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .news-and-events--landing .is-active.more-link + .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.more-link + .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .news-and-events--landing .is-active.more-link + .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.more-link + .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.more-link + .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.more-link + .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .news-and-events--landing .is-active.more-link + .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.more-link + .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .news-and-events--landing .is-active.view-more-link + .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.view-more-link + .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .news-and-events--landing .is-active.view-more-link + .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.view-more-link + .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.view-more-link + .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.view-more-link + .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .news-and-events--landing .is-active.view-more-link + .more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.view-more-link + .more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .pager__item.is-active + .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .pager__item.is-active + .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .pager__item.is-active + .view-more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .pager__item.is-active + .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .pager__item.is-active + .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.blueRoundButton + .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.blueRoundButton + .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.blueRoundButton + .view-more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.blueRoundButton + .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.blueRoundButton + .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.redRoundButton + .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.redRoundButton + .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.redRoundButton + .view-more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.redRoundButton + .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.redRoundButton + .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.standard-more-link + .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.standard-more-link + .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.standard-more-link + .view-more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.standard-more-link + .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.standard-more-link + .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .news-and-events--landing .is-active.more-link + .view-more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.more-link + .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .news-and-events--landing .is-active.more-link + .view-more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.more-link + .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.more-link + .view-more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.more-link + .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .news-and-events--landing .is-active.more-link + .view-more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.more-link + .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .is-active.view-more-link + .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .is-active.view-more-link + .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .is-active.view-more-link + .view-more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .is-active.view-more-link + .view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .is-active.view-more-link + .view-more-link {
    display: inline-block;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 266, ../sass/_mixins.scss */
  .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .pager__item.pager-is-visible, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .pager-is-visible.blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .pager-is-visible.redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .pager-is-visible.standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .news-and-events--landing .pager-is-visible.more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .pager-is-visible.more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .pager-is-visible.view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .pager__item.pager-is-visible, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .pager__item.pager-is-visible, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .pager__item.pager-is-visible, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .pager__item.pager-is-visible, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .pager__item.pager-is-visible, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .pager-is-visible.blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .pager-is-visible.blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .pager-is-visible.blueRoundButton, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .pager-is-visible.blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .pager-is-visible.blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .pager-is-visible.redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .pager-is-visible.redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .pager-is-visible.redRoundButton, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .pager-is-visible.redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .pager-is-visible.redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .pager-is-visible.standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .pager-is-visible.standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .pager-is-visible.standard-more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .pager-is-visible.standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .pager-is-visible.standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .news-and-events--landing .pager-is-visible.more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .pager-is-visible.more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .news-and-events--landing .pager-is-visible.more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .pager-is-visible.more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .pager-is-visible.more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .pager-is-visible.more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .news-and-events--landing .pager-is-visible.more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .pager-is-visible.more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .pager-is-visible.view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .pager-is-visible.view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .pager-is-visible.view-more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .pager-is-visible.view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .pager-is-visible.view-more-link {
    display: inline-block;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 271, ../sass/_mixins.scss */
  .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .pager__item.before-is-active, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .before-is-active.blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .before-is-active.redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .before-is-active.standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .news-and-events--landing .before-is-active.more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .before-is-active.more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .before-is-active.view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .pager__item.before-is-active, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .pager__item.before-is-active, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .pager__item.before-is-active, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .pager__item.before-is-active, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .pager__item.before-is-active, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .before-is-active.blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .before-is-active.blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .before-is-active.blueRoundButton, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .before-is-active.blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .before-is-active.blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .before-is-active.redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .before-is-active.redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .before-is-active.redRoundButton, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .before-is-active.redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .before-is-active.redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .before-is-active.standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .before-is-active.standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .before-is-active.standard-more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .before-is-active.standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .before-is-active.standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .news-and-events--landing .before-is-active.more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .before-is-active.more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .news-and-events--landing .before-is-active.more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .before-is-active.more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .before-is-active.more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .before-is-active.more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .news-and-events--landing .before-is-active.more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .before-is-active.more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .before-is-active.view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .before-is-active.view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .before-is-active.view-more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .before-is-active.view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .before-is-active.view-more-link {
    display: inline-block;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 276, ../sass/_mixins.scss */
  .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .pager__item.before-is-active-last, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .before-is-active-last.blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .before-is-active-last.redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .before-is-active-last.standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .news-and-events--landing .before-is-active-last.more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .before-is-active-last.more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .before-is-active-last.view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .pager__item.before-is-active-last, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .pager__item.before-is-active-last, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .pager__item.before-is-active-last, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .pager__item.before-is-active-last, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .pager__item.before-is-active-last, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .before-is-active-last.blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .before-is-active-last.blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .before-is-active-last.blueRoundButton, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .before-is-active-last.blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .before-is-active-last.blueRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .before-is-active-last.redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .before-is-active-last.redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .before-is-active-last.redRoundButton, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .before-is-active-last.redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .before-is-active-last.redRoundButton, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .before-is-active-last.standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .before-is-active-last.standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .before-is-active-last.standard-more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .before-is-active-last.standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .before-is-active-last.standard-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .news-and-events--landing .before-is-active-last.more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .before-is-active-last.more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .news-and-events--landing .before-is-active-last.more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .before-is-active-last.more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .before-is-active-last.more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .before-is-active-last.more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .news-and-events--landing .before-is-active-last.more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .before-is-active-last.more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .before-is-active-last.view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .before-is-active-last.view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .before-is-active-last.view-more-link, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .before-is-active-last.view-more-link, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .before-is-active-last.view-more-link {
    display: inline-block;
  }
}
/* line 281, ../sass/_mixins.scss */
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .pager__item a:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .blueRoundButton a:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .redRoundButton a:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .standard-more-link a:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .news-and-events--landing .more-link a:focus, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .more-link a:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .view-more-link a:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .pager_item a:active, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .pager__item a:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .pager__item a:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .pager__item a:focus, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .pager__item a:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .pager__item a:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .blueRoundButton a:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .blueRoundButton a:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .blueRoundButton a:focus, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .blueRoundButton a:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .blueRoundButton a:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .redRoundButton a:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .redRoundButton a:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .redRoundButton a:focus, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .redRoundButton a:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .redRoundButton a:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .standard-more-link a:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .standard-more-link a:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .standard-more-link a:focus, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .standard-more-link a:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .standard-more-link a:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .news-and-events--landing .more-link a:focus, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .more-link a:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .news-and-events--landing .more-link a:focus, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .more-link a:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .more-link a:focus, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .more-link a:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .news-and-events--landing .more-link a:focus, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .more-link a:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .view-more-link a:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .view-more-link a:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .view-more-link a:focus, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .view-more-link a:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .view-more-link a:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .pager_item a:active, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .pager_item a:active, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .pager_item a:active, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .pager_item a:active, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .pager_item a:active {
  outline: #bf0d2e dotted 3px !important;
}
/* line 285, ../sass/_mixins.scss */
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .pager-first, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .pager-first, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .pager-first, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .pager-first, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .pager-first, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .pager-first {
  background-image: url("../images/Pagination Icons/png/dark-grey/angle-left-first solid.png");
  background-repeat: no-repeat;
  background-position: initial;
  background-position-x: center;
  background-position-y: center;
  background-size: contain;
  display: inline-block;
  width: 1em;
  height: 1em;
}
/* line 297, ../sass/_mixins.scss */
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .pager__item--first:hover .pager-first, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .pager__item--first:hover .pager-first, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .pager__item--first:hover .pager-first, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .pager__item--first:hover .pager-first, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .pager__item--first:hover .pager-first, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .pager__item--first:hover .pager-first {
  background-image: url("../images/Pagination Icons/png/white/angle-left-first solid.png");
}
/* line 301, ../sass/_mixins.scss */
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .pager-previous, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .pager-previous, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .pager-previous, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .pager-previous, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .pager-previous, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .pager-previous {
  background-image: url("../images/Pagination Icons/png/dark-grey/angle-left-prev solid.png");
  background-repeat: no-repeat;
  background-position: initial;
  background-position-x: center;
  background-position-y: center;
  background-size: contain;
  display: inline-block;
  width: 1em;
  height: 1em;
}
/* line 313, ../sass/_mixins.scss */
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .pager__item--previous:hover .pager-previous, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .pager__item--previous:hover .pager-previous, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .pager__item--previous:hover .pager-previous, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .pager__item--previous:hover .pager-previous, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .pager__item--previous:hover .pager-previous, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .pager__item--previous:hover .pager-previous {
  background-image: url("../images/Pagination Icons/png/white/angle-left-prev solid.png");
}
/* line 318, ../sass/_mixins.scss */
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .pager-next, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .pager-next, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .pager-next, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .pager-next, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .pager-next, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .pager-next {
  background-image: url("../images/Pagination Icons/png/dark-grey/angle-right-next solid.png");
  background-repeat: no-repeat;
  background-position: initial;
  background-position-x: center;
  background-position-y: center;
  background-size: contain;
  display: inline-block;
  width: 1em;
  height: 1em;
}
/* line 330, ../sass/_mixins.scss */
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .pager__item--next:hover .pager-next, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .pager__item--next:hover .pager-next, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .pager__item--next:hover .pager-next, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .pager__item--next:hover .pager-next, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .pager__item--next:hover .pager-next, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .pager__item--next:hover .pager-next {
  background-image: url("../images/Pagination Icons/png/white/angle-right-next solid.png");
}
/* line 335, ../sass/_mixins.scss */
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .pager-last, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .pager-last, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .pager-last, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .pager-last, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .pager-last, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .pager-last {
  background-image: url("../images/Pagination Icons/png/dark-grey/angle-right-last solid.png");
  background-repeat: no-repeat;
  background-position: initial;
  background-position-x: center;
  background-position-y: center;
  background-size: contain;
  display: inline-block;
  width: 1em;
  height: 1em;
}
/* line 347, ../sass/_mixins.scss */
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager__items .pager__item--last:hover .pager-last, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .pager .pager__item--last:hover .pager-last, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .standard-more-link .pager__item--last:hover .pager-last, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .news-and-events--landing .more-link .pager__item--last:hover .pager-last, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .more-link .pager__item--last:hover .pager-last, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-more-link .pager__item--last:hover .pager-last {
  background-image: url("../images/Pagination Icons/png/white/angle-right-last solid.png");
}
/* line 1648, ../sass/layouts/_our_hearts.scss */
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts main.row {
  overflow: hidden;
}
/* line 1651, ../sass/layouts/_our_hearts.scss */
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page {
  z-index: 1;
  background-color: #f4f4f4;
}
/* line 1654, ../sass/layouts/_our_hearts.scss */
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .ourhearts_get-social-all {
  padding-top: 2em;
}
@media all and (max-width: 767px) {
  /* line 1654, ../sass/layouts/_our_hearts.scss */
  .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .ourhearts_get-social-all {
    padding-top: 0;
  }
}
/* line 1660, ../sass/layouts/_our_hearts.scss */
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .social-background-top {
  width: 100%;
  height: 65px;
  background: #4D2D66;
  position: absolute;
}
@media all and (max-width: 767px) {
  /* line 1660, ../sass/layouts/_our_hearts.scss */
  .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .social-background-top {
    display: block;
    height: 55px;
  }
}
/* line 1670, ../sass/layouts/_our_hearts.scss */
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box {
  position: relative;
}
/* line 1672, ../sass/layouts/_our_hearts.scss */
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1 {
  color: #fff;
  padding-top: 16px;
  background: #4D2D66;
  margin: 0 !important;
}
@media all and (max-width: 767px) {
  /* line 1672, ../sass/layouts/_our_hearts.scss */
  .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1 {
    padding-bottom: 9px;
  }
}
/* line 1682, ../sass/layouts/_our_hearts.scss */
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1:after {
  background: url(../images/ourhearts/Heart-header-icon.svg) 100% 50% no-repeat;
  background-size: 30px;
  content: '';
  width: 30px;
  height: 30px;
  display: inline-block;
  margin-left: 20px;
  margin-bottom: -6px;
}
/* line 1694, ../sass/layouts/_our_hearts.scss */
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-nhlbi-basic-social-posts {
  max-width: 1400px;
  margin: 0 auto;
}
@media all and (max-width: 767px) {
  /* line 1694, ../sass/layouts/_our_hearts.scss */
  .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-nhlbi-basic-social-posts {
    padding-right: 1rem;
  }
}
/* line 1701, ../sass/layouts/_our_hearts.scss */
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-nhlbi-basic-social-posts .view-content .views-row {
  margin: 0 auto;
  width: 80%;
  display: block;
  float: none;
  position: relative;
  margin-bottom: 1%;
}
/* line 1709, ../sass/layouts/_our_hearts.scss */
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-nhlbi-basic-social-posts .view-content .views-row .oh-social-text-container {
  padding: 20px;
}
/* line 1712, ../sass/layouts/_our_hearts.scss */
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-nhlbi-basic-social-posts .view-content .views-row .oh-social-media {
  min-width: 250px;
  width: 250px;
}
@media all and (max-width: 768px) {
  /* line 1717, ../sass/layouts/_our_hearts.scss */
  .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-nhlbi-basic-social-posts .view-content .views-row .oh-social-text-container {
    padding: 10px;
  }
  /* line 1720, ../sass/layouts/_our_hearts.scss */
  .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-nhlbi-basic-social-posts .view-content .views-row .oh-social-media {
    min-width: 180px;
    width: 180px;
  }
}
@media all and (max-width: 767px) {
  /* line 1701, ../sass/layouts/_our_hearts.scss */
  .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-nhlbi-basic-social-posts .view-content .views-row {
    width: 100%;
  }
}

/* line 1733, ../sass/layouts/_our_hearts.scss */
.view-footer .basic-social-posts-view-all {
  font-size: 14px;
  display: block;
  position: relative;
  margin: 0 auto;
  text-align: center;
}
/* line 1739, ../sass/layouts/_our_hearts.scss */
.view-footer .basic-social-posts-view-all a {
  background: #4D2D66;
  padding: 0.3em 3em 0.4em;
  display: inline-block;
  text-align: center;
  margin: 0 auto;
  color: #fff;
  border: 0px;
  border-radius: 30px;
  font-weight: normal;
  text-decoration: none;
  font-size: 1rem;
}
/* line 1752, ../sass/layouts/_our_hearts.scss */
.view-footer .basic-social-posts-view-all a:hover {
  background: #007A89;
  border: 0;
  transition: background 0.5s;
  font-weight: normal;
}
/* line 1759, ../sass/layouts/_our_hearts.scss */
.view-footer .basic-social-posts-view-all a:focus {
  outline: #BF0D2E dotted 3px !important;
}

/*
 * The following is an example @font-face declaration. This font can then be
 * used in any ruleset using a property like this:  font-family: Example, serif;
 *
 * Since we're using Sass, you'll need to declare your font faces here, then you
 * can add them to the font variables in the _base.scss partial.
 */
/*
@font-face {
  font-family: 'Example';
  src: url('../fonts/example.eot');
  src: url('../fonts/example.eot?iefix') format('eot'),
    url('../fonts/example.woff') format('woff'),
    url('../fonts/example.ttf') format('truetype'),
    url('../fonts/example.svg#webfontOkOndcij') format('svg');
  font-weight: normal;
  font-style: normal;
}
*/
@font-face {
  font-family: 'NHLBI Glyphs';
  src: url("../fonts/nhlbi-glyphs/nhlbi-glyphs.eot");
  src: url("../fonts/nhlbi-glyphs/nhlbi-glyphs.eot?#iefix") format("embedded-opentype"), url("../fonts/nhlbi-glyphs/nhlbi-glyphs.ttf") format("truetype"), url("../fonts/nhlbi-glyphs/nhlbi-glyphs.woff") format("woff"), url("../fonts/nhlbi-glyphs/nhlbi-glyphs.svg#nhlbi-glyphs") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* line 175, ../sass/core/_fonts.scss */
[class^="icon-"], [class*=" icon-"] {
  font-family: 'NHLBI Glyphs';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* line 189, ../sass/core/_fonts.scss */
.icon-lightbulb:before {
  content: "\e600";
}

/* line 192, ../sass/core/_fonts.scss */
.icon-chat-bubble:before {
  content: "\e601";
}

/* line 195, ../sass/core/_fonts.scss */
.icon-closebox:before {
  content: "\e602";
}

/* line 198, ../sass/core/_fonts.scss */
.icon-arrow-left:before {
  content: "\e603";
}

/* line 201, ../sass/core/_fonts.scss */
.icon-arrow-right:before {
  content: "\e604";
}

/* line 204, ../sass/core/_fonts.scss */
.icon-file-phone:before {
  content: "\e605";
}

/* line 207, ../sass/core/_fonts.scss */
.icon-close:before {
  content: "\e606";
}

/* line 210, ../sass/core/_fonts.scss */
.icon-clock:before {
  content: "\e607";
}

/* line 213, ../sass/core/_fonts.scss */
.icon-enlarge:before {
  content: "\e608";
}

/* line 216, ../sass/core/_fonts.scss */
.icon-edit:before {
  content: "\e609";
}

/* line 219, ../sass/core/_fonts.scss */
.icon-calendar:before {
  content: "\e60a";
}

/* line 222, ../sass/core/_fonts.scss */
.icon-folder-open:before {
  content: "\e60b";
}

/* line 225, ../sass/core/_fonts.scss */
.icon-folder-closed:before {
  content: "\e60c";
}

/* line 228, ../sass/core/_fonts.scss */
.icon-notepad:before {
  content: "\e60d";
}

/* line 231, ../sass/core/_fonts.scss */
.icon-magnify:before {
  content: "\e60e";
}

/* line 234, ../sass/core/_fonts.scss */
.icon-star-outline:before {
  content: "\e60f";
}

/* line 237, ../sass/core/_fonts.scss */
.icon-star-inside:before {
  content: "\e610";
}

/* line 240, ../sass/core/_fonts.scss */
.icon-thought-bubble:before {
  content: "\e611";
}

/* line 243, ../sass/core/_fonts.scss */
.icon-file-text:before {
  content: "\e612";
}

/* line 246, ../sass/core/_fonts.scss */
.icon-camera:before {
  content: "\e620";
}

/* line 249, ../sass/core/_fonts.scss */
.icon-video3:before {
  content: "\e621";
}

/* line 252, ../sass/core/_fonts.scss */
.icon-page:before {
  content: "\e615";
}

/* line 255, ../sass/core/_fonts.scss */
.icon-checklist:before {
  content: "\e616";
}

/* line 258, ../sass/core/_fonts.scss */
.icon-org-chart:before {
  content: "\e617";
}

/* line 261, ../sass/core/_fonts.scss */
.icon-microscope:before {
  content: "\e618";
}

/* line 264, ../sass/core/_fonts.scss */
.icon-people:before {
  content: "\e61c";
}

/* line 267, ../sass/core/_fonts.scss */
.icon-working:before {
  content: "\e622";
}

/* line 270, ../sass/core/_fonts.scss */
.icon-nhlbi-heart:before {
  content: "\e623";
}

/* line 273, ../sass/core/_fonts.scss */
.icon-map:before {
  content: "\e626";
}

/* line 276, ../sass/core/_fonts.scss */
.icon-ext-link:before {
  content: "\e628";
}

/* line 279, ../sass/core/_fonts.scss */
.icon-page-right:before {
  content: "\e629";
}

/* line 282, ../sass/core/_fonts.scss */
.icon-page-left:before {
  content: "\e62a";
}

/* line 285, ../sass/core/_fonts.scss */
.icon-mail:before {
  content: "\e619";
}

/* line 288, ../sass/core/_fonts.scss */
.icon-minus2:before {
  content: "\e61a";
}

/* line 291, ../sass/core/_fonts.scss */
.icon-plus2:before {
  content: "\e61b";
}

/* line 294, ../sass/core/_fonts.scss */
.icon-ok:before {
  content: "\e61d";
}

/* line 297, ../sass/core/_fonts.scss */
.icon-remove:before {
  content: "\e61e";
}

/* line 300, ../sass/core/_fonts.scss */
.icon-print:before {
  content: "\e61f";
  position: relative;
  top: 1px;
}

/* line 305, ../sass/core/_fonts.scss */
.icon-sign-remove:before {
  content: "\e624";
}

/* line 308, ../sass/core/_fonts.scss */
.icon-sign-ok:before {
  content: "\e625";
}

/* line 311, ../sass/core/_fonts.scss */
.icon-sign-info:before {
  content: "\e627";
}

/* line 314, ../sass/core/_fonts.scss */
.icon-sign-exclamation:before {
  content: "\e62b";
}

/* line 317, ../sass/core/_fonts.scss */
.icon-sign-warning:before {
  content: "\e62c";
}

/* line 320, ../sass/core/_fonts.scss */
.icon-plus3:before {
  content: "\e62d";
}

/* line 323, ../sass/core/_fonts.scss */
.icon-minus3:before {
  content: "\e62e";
}

/* line 326, ../sass/core/_fonts.scss */
.icon-caret-down:before {
  content: "\e62f";
}

/* line 329, ../sass/core/_fonts.scss */
.icon-caret-up:before {
  content: "\e630";
}

/* line 332, ../sass/core/_fonts.scss */
.icon-info:before {
  content: "\e613";
}

/* line 335, ../sass/core/_fonts.scss */
.icon-list-ul:before {
  content: "\e614";
}

/* line 338, ../sass/core/_fonts.scss */
.icon-lock:before {
  content: "\e631";
}

/* line 342, ../sass/core/_fonts.scss */
i.icon-list-ul, i.icon-calendar {
  margin-right: 5px;
  margin-top: 1px;
  text-decoration: none;
}

/* line 349, ../sass/core/_fonts.scss */
.lt-ie9 i.icon-list-ul {
  margin-top: 3px;
}

/* line 354, ../sass/core/_fonts.scss */
.font-size-l {
  font-size: 0.875rem;
}
@media all and (min-width: 1440px) {
  /* line 354, ../sass/core/_fonts.scss */
  .font-size-l {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 354, ../sass/core/_fonts.scss */
  .font-size-l {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 354, ../sass/core/_fonts.scss */
  .font-size-l {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 354, ../sass/core/_fonts.scss */
  .font-size-l {
    font-size: 0.875rem;
  }
}

/* line 358, ../sass/core/_fonts.scss */
.font-size-xl {
  font-size: 1rem;
}
@media all and (min-width: 1440px) {
  /* line 358, ../sass/core/_fonts.scss */
  .font-size-xl {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 358, ../sass/core/_fonts.scss */
  .font-size-xl {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 358, ../sass/core/_fonts.scss */
  .font-size-xl {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 358, ../sass/core/_fonts.scss */
  .font-size-xl {
    font-size: 1rem;
  }
}

/* Component (SMACSS module) rules */
/* Image Sprites and Icons */
/* line 3, ../sass/components/_sprites.scss */
[class^="img-icon-"], [class*=" img-icon-"] {
  display: inline-block;
  position: relative;
  margin-right: 3px;
}

/* line 9, ../sass/components/_sprites.scss */
.img-icon-video, .img-icon-widget, .img-icon-quiz, .img-icon-video-large:before,
.img-icon-widget-large:before,
.img-icon-quiz-large:before {
  text-indent: 200%;
  white-space: nowrap;
  overflow: hidden;
}

/* line 15, ../sass/components/_sprites.scss */
.img-icon-video, .img-icon-widget, .img-icon-quiz {
  top: 2px;
  width: 14px;
  height: 14px;
  margin-right: 5px;
}

/* line 21, ../sass/components/_sprites.scss */
.img-icon-quiz-gray:before {
  top: 2px;
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

/* line 27, ../sass/components/_sprites.scss */
.img-icon-video-lg, .img-icon-video-large:before, .img-icon-widget-lg, .img-icon-widget-large:before, .img-icon-quiz-lg, .img-icon-quiz-large:before {
  top: 2px;
  width: 26px;
  height: 26px;
  margin-right: 5px;
}

/* line 34, ../sass/components/_sprites.scss */
.img-icon-video {
  background: url(../images/icon-video-sm.gif) left top no-repeat;
}

/* line 39, ../sass/components/_sprites.scss */
.img-icon-widget {
  background: url(../images/icon-widget-sm.gif) left top no-repeat;
}

/* line 44, ../sass/components/_sprites.scss */
.img-icon-quiz {
  background: url(../images/icon-quiz-sm.gif) left top no-repeat;
}

/* line 50, ../sass/components/_sprites.scss */
.img-icon-quiz-gray:before {
  content: ' ';
  display: inline-block;
  position: relative;
  background: url(../images/icon-quiz-gray.gif) left top no-repeat;
}

/* line 60, ../sass/components/_sprites.scss */
.img-icon-video-large:before,
.img-icon-widget-large:before,
.img-icon-quiz-large:before {
  content: '&nbsp;';
  position: relative;
  top: 11px;
  margin-top: -11px;
  display: inline-block;
}

/* line 68, ../sass/components/_sprites.scss */
.img-icon-video-large,
.img-icon-widget-large,
.img-icon-quiz-large {
  display: block;
  position: relative;
  padding-bottom: 8px;
  text-indent: 0;
  white-space: normal;
}

/* line 82, ../sass/components/_sprites.scss */
.img-icon-video-lg, .img-icon-video-large:before {
  background: url(../images/icon-video-lg.gif) left top no-repeat;
}

/* line 86, ../sass/components/_sprites.scss */
.img-icon-widget-lg, .img-icon-widget-large:before {
  background: url(../images/icon-widget-lg.gif) left top no-repeat;
}

/* line 90, ../sass/components/_sprites.scss */
.img-icon-quiz-lg, .img-icon-quiz-large:before {
  background: url(../images/icon-quiz-lg.gif) left top no-repeat;
}

/* line 106, ../sass/components/_sprites.scss */
.icon-rss {
  padding-left: 4px;
}

/* line 109, ../sass/components/_sprites.scss */
.video-icon {
  background: url(../images/icon-video-lg.gif) left top no-repeat;
  padding-left: 30px;
  height: 26px;
}

/**
 * @file
 * SMACSS Modules
 *
 * Adds modular sets of styles.
 *
 * Additional useful selectors can be found in Zen's online documentation.
 * https://drupal.org/node/1707736
 */
/**
 * Wireframes.
 */
/* line 14, ../sass/components/_misc.scss */
.with-wireframes #header,
.with-wireframes #main,
.with-wireframes #content,
.with-wireframes #navigation,
.with-wireframes .region-sidebar-first,
.with-wireframes .region-sidebar-second,
.with-wireframes .sidebar-first,
.with-wireframes .sidebar-second,
.with-wireframes #footer,
.with-wireframes .region-bottom {
  outline: 1px solid #ccc;
}

/**
 * Accessibility features.
 */
/* element-invisible as defined by http://snook.ca/archives/html_and_css/hiding-content-for-accessibility */
/* line 34, ../sass/components/_misc.scss */
.element-invisible,
.element-focusable,
#navigation .block-menu .block__title,
#navigation .block-menu-block .block__title {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

/* Turns off the element-invisible effect. */
/* line 40, ../sass/components/_misc.scss */
.element-focusable:active, .element-focusable:focus {
  position: static !important;
  clip: auto;
  height: auto;
  width: auto;
  overflow: auto;
}

/*
 * The skip-link link will be completely hidden until a user tabs to the link.
 */
/* line 57, ../sass/components/_misc.scss */
#skip-link, #skip-nav {
  margin: 0;
}
/* line 60, ../sass/components/_misc.scss */
#skip-link a,
#skip-link a:visited, #skip-nav a,
#skip-nav a:visited {
  display: block;
  width: 100%;
  padding: 2px 0 3px 0;
  text-align: center;
  background-color: #666;
  color: #fff;
}

/**
 * Branding header.
 */
/* Wrapping link for logo. */
/* line 75, ../sass/components/_misc.scss */
.header__logo {
  float: left;
  /* LTR */
  margin: 0;
  padding: 0;
}

/* Logo image. */
/* line 82, ../sass/components/_misc.scss */
.header__logo-image {
  height: 55px;
  vertical-align: bottom;
}
/* line 86, ../sass/components/_misc.scss */
.header__logo-image.icon-tablet-and-phone {
  height: 33px;
}

/* Wrapper for website name and slogan. */
/* line 93, ../sass/components/_misc.scss */
.header__name-and-slogan {
  float: left;
}

/* The name of the website. */
/* line 98, ../sass/components/_misc.scss */
.header__site-name {
  margin: 0;
  font-size: 2em;
  line-height: 1.5em;
}

/* The link around the name of the website. */
/* line 105, ../sass/components/_misc.scss */
.header__site-link:link, .header__site-link:visited {
  color: #222;
  text-decoration: none;
}
/* line 111, ../sass/components/_misc.scss */
.header__site-link:hover, .header__site-link:focus {
  text-decoration: underline;
}

/* The slogan (or tagline) of a website. */
/* line 118, ../sass/components/_misc.scss */
.header__site-slogan {
  margin: 0;
}

/* The secondary menu (login, etc.) */
/* line 123, ../sass/components/_misc.scss */
.header__secondary-menu {
  float: right;
  /* LTR */
}

/* Wrapper for any blocks placed in the header region. */
/* line 128, ../sass/components/_misc.scss */
.header__region {
  /* Clear the logo. */
  clear: both;
}

/* img icon styles */
/** 404 styles **/
/* line 149, ../sass/components/_misc.scss */
.notFound, .serverError {
  padding-top: 3em;
  display: flex;
  width: 100%;
  background-color: #1A558B;
  color: #fff;
}
@media all and (min-width: 1100px) {
  /* line 156, ../sass/components/_misc.scss */
  .notFound .notFoundText, .notFound .serverErrorText, .serverError .notFoundText, .serverError .serverErrorText {
    float: left;
    display: inline;
    width: auto;
    padding-right: 2em;
  }
}
/* line 163, ../sass/components/_misc.scss */
.notFound .notFoundText h1, .notFound .serverErrorText h1, .serverError .notFoundText h1, .serverError .serverErrorText h1 {
  width: 70%;
  margin-top: 0;
}
/* line 167, ../sass/components/_misc.scss */
.notFound .notFoundText h2, .notFound .notFoundText .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .notFound .notFoundText h1, .notFound .notFoundText .contact-method-label, .notFound .serverErrorText h2, .notFound .serverErrorText .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .notFound .serverErrorText h1, .notFound .serverErrorText .contact-method-label, .serverError .notFoundText h2, .serverError .notFoundText .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .serverError .notFoundText h1, .serverError .notFoundText .contact-method-label, .serverError .serverErrorText h2, .serverError .serverErrorText .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .serverError .serverErrorText h1, .serverError .serverErrorText .contact-method-label {
  padding: 0;
}
@media all and (min-width: 770px) and (max-width: 1099px) {
  /* line 170, ../sass/components/_misc.scss */
  .notFound .notFoundText ul, .notFound .serverErrorText ul, .serverError .notFoundText ul, .serverError .serverErrorText ul {
    padding-left: 4em;
  }
}
@media all and (min-width: 1100px) and (max-width: 1400px) {
  /* line 170, ../sass/components/_misc.scss */
  .notFound .notFoundText ul, .notFound .serverErrorText ul, .serverError .notFoundText ul, .serverError .serverErrorText ul {
    width: 610px;
  }
}
@media all and (min-width: 1100px) {
  /* line 180, ../sass/components/_misc.scss */
  .notFound .notFoundBackground, .serverError .notFoundBackground {
    background-image: url("../images/microscope-white-240x374.png");
    background-repeat: no-repeat;
    background-position: initial;
    display: inline-block;
    height: 374px;
    width: 240px;
    float: right;
    display: inline;
    position: absolute;
    left: 75%;
    top: 18%;
  }
}
@media all and (min-width: 1100px) and (min-width: 3001px) and (max-width: 4000px) {
  /* line 180, ../sass/components/_misc.scss */
  .notFound .notFoundBackground, .serverError .notFoundBackground {
    left: 40%;
  }
}
@media all and (min-width: 1100px) and (min-width: 1400px) and (max-width: 1500px) {
  /* line 180, ../sass/components/_misc.scss */
  .notFound .notFoundBackground, .serverError .notFoundBackground {
    left: 75%;
  }
}
@media all and (min-width: 1100px) and (min-width: 1501px) and (max-width: 1600px) {
  /* line 180, ../sass/components/_misc.scss */
  .notFound .notFoundBackground, .serverError .notFoundBackground {
    left: 70%;
  }
}
@media all and (min-width: 1100px) and (min-width: 1601px) and (max-width: 1700px) {
  /* line 180, ../sass/components/_misc.scss */
  .notFound .notFoundBackground, .serverError .notFoundBackground {
    left: 68%;
  }
}
@media all and (min-width: 1100px) and (min-width: 1701px) and (max-width: 1800px) {
  /* line 180, ../sass/components/_misc.scss */
  .notFound .notFoundBackground, .serverError .notFoundBackground {
    left: 64%;
  }
}
@media all and (min-width: 1100px) and (min-width: 1801px) and (max-width: 1900px) {
  /* line 180, ../sass/components/_misc.scss */
  .notFound .notFoundBackground, .serverError .notFoundBackground {
    left: 62%;
  }
}
@media all and (min-width: 1100px) and (min-width: 1901px) and (max-width: 2000px) {
  /* line 180, ../sass/components/_misc.scss */
  .notFound .notFoundBackground, .serverError .notFoundBackground {
    left: 60%;
  }
}
@media all and (min-width: 1100px) and (min-width: 2001px) and (max-width: 2500px) {
  /* line 180, ../sass/components/_misc.scss */
  .notFound .notFoundBackground, .serverError .notFoundBackground {
    left: 55%;
  }
}
@media all and (min-width: 1100px) and (min-width: 2501px) and (max-width: 3000px) {
  /* line 180, ../sass/components/_misc.scss */
  .notFound .notFoundBackground, .serverError .notFoundBackground {
    left: 46%;
  }
}

@media all and (min-width: 1100px) {
  /* line 229, ../sass/components/_misc.scss */
  .notFound .serverErrorBackground, .serverError .serverErrorBackground {
    background-image: url("../images/microscope-white-240x374.png");
    background-repeat: no-repeat;
    background-position: initial;
    display: inline-block;
    height: 374px;
    width: 240px;
    float: right;
    display: inline;
    position: absolute;
    left: 77%;
    top: 18%;
  }
}
@media all and (min-width: 1100px) and (min-width: 1650px) and (max-width: 2000px) {
  /* line 229, ../sass/components/_misc.scss */
  .notFound .serverErrorBackground, .serverError .serverErrorBackground {
    left: 65%;
  }
}
@media all and (min-width: 1100px) and (min-width: 1400px) and (max-width: 1649px) {
  /* line 229, ../sass/components/_misc.scss */
  .notFound .serverErrorBackground, .serverError .serverErrorBackground {
    left: 73%;
  }
}

/* line 251, ../sass/components/_misc.scss */
.notFound h1, .notFound h2, .notFound .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .notFound h1, .notFound .contact-method-label, .serverError h1, .serverError h2, .serverError .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .serverError h1, .serverError .contact-method-label {
  color: #fff;
}
/* line 255, ../sass/components/_misc.scss */
.notFound h4, .serverError h4 {
  font-size: 1.125rem;
  border-bottom: #fff 0.2em solid;
  padding-bottom: 0.5em;
  margin-bottom: .8em;
  font-weight: bold;
  width: 10em;
  font-style: normal;
  color: #fff;
}
@media all and (min-width: 1440px) {
  /* line 255, ../sass/components/_misc.scss */
  .notFound h4, .serverError h4 {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 255, ../sass/components/_misc.scss */
  .notFound h4, .serverError h4 {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 255, ../sass/components/_misc.scss */
  .notFound h4, .serverError h4 {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 255, ../sass/components/_misc.scss */
  .notFound h4, .serverError h4 {
    font-size: 1rem;
  }
}
/* line 260, ../sass/components/_misc.scss */
.notFound a, .serverError a {
  color: #fff;
}

/* line 265, ../sass/components/_misc.scss */
.error-page-search-content {
  background-color: #1A558B;
  color: white;
  margin-bottom: 0.5em;
}
/* line 271, ../sass/components/_misc.scss */
.error-page-search-content .error-page-search-block .scope-search {
  margin-top: 0px;
}
/* line 273, ../sass/components/_misc.scss */
.error-page-search-content .error-page-search-block .scope-search .nhlbi-searchbar-container {
  text-align: left;
  margin-left: 5.7em;
  width: auto;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 273, ../sass/components/_misc.scss */
  .error-page-search-content .error-page-search-block .scope-search .nhlbi-searchbar-container {
    margin-left: auto;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 273, ../sass/components/_misc.scss */
  .error-page-search-content .error-page-search-block .scope-search .nhlbi-searchbar-container {
    margin-left: 1.6em;
    padding: 0 0 0 3em;
  }
}
@media all and (min-width: 1100px) and (max-width: 1400px) {
  /* line 273, ../sass/components/_misc.scss */
  .error-page-search-content .error-page-search-block .scope-search .nhlbi-searchbar-container {
    width: 80%;
  }
}
/* line 287, ../sass/components/_misc.scss */
.error-page-search-content .error-page-search-block .scope-search .nhlbi-searchbar-container .nhlbi-searchbar {
  border: 0px;
  border-radius: 9px;
}
/* line 295, ../sass/components/_misc.scss */
.error-page-search-content .error-page-under-search-content {
  padding-bottom: 8em;
  display: flex;
  width: 100%;
}
/* line 299, ../sass/components/_misc.scss */
.error-page-search-content .error-page-under-search-content .content-container {
  margin-top: 0px;
}
/* line 301, ../sass/components/_misc.scss */
.error-page-search-content .error-page-under-search-content .content-container ul {
  text-align: left;
  margin-left: 2.6em;
  width: auto;
  margin-top: 0.5em;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 301, ../sass/components/_misc.scss */
  .error-page-search-content .error-page-under-search-content .content-container ul {
    margin-left: 0em;
  }
}
@media all and (min-width: 768em) and (max-width: 1099px) {
  /* line 301, ../sass/components/_misc.scss */
  .error-page-search-content .error-page-under-search-content .content-container ul {
    margin-left: 1.6em;
    padding: 0 0 0 3em;
  }
}
/* line 315, ../sass/components/_misc.scss */
.error-page-search-content .error-page-under-search-content .content-container ul li a {
  color: white;
  text-decoration: underline;
}

/* line 325, ../sass/components/_misc.scss */
.page-404 {
  background-color: #1A558B;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 327, ../sass/components/_misc.scss */
  .page-404 .notFoundBackground {
    display: none;
  }
}
/* line 332, ../sass/components/_misc.scss */
.page-404 ul {
  margin: 1em 0;
  padding: 0 0 0 3em;
}
/* line 335, ../sass/components/_misc.scss */
.page-404 ul li {
  font-size: 0.875rem;
}
/* line 337, ../sass/components/_misc.scss */
.page-404 ul li a:focus {
  outline: 2px dotted white;
}

/**
 * Navigation bar.
 */
/* line 347, ../sass/components/_misc.scss */
#navigation {
  /* Sometimes you want to prevent overlapping with main div. */
  /* overflow: hidden; */
  /* Main menu and secondary menu links and menu block links. */
}
/* line 351, ../sass/components/_misc.scss */
#navigation .block {
  margin-bottom: 0;
}
/* line 361, ../sass/components/_misc.scss */
#navigation .links,
#navigation .menu {
  margin: 0;
  padding: 0;
  text-align: left;
  /* LTR */
}
/* line 367, ../sass/components/_misc.scss */
#navigation .links li,
#navigation .menu li {
  /* A simple method to get navigation links to appear in one line. */
  float: left;
  /* LTR */
  padding: 0 10px 0 0;
  /* LTR */
  list-style-type: none;
  list-style-image: none;
}

/**
 * Titles.
 */
/* line 382, ../sass/components/_misc.scss */
.page__title,
.node__title,
.block__title,
.comments__title,
.comments__form-title,
.comment__title {
  /* Comment title. */
  margin: 0;
}

/**
 * Messages.
 */
/* line 394, ../sass/components/_misc.scss */
.messages, .messages--status, .messages--warning, .messages--error {
  margin: 1.5em 0;
  padding: 10px 10px 10px 50px;
  /* LTR */
  background-image: url("message-24-ok.png");
  background-position: 8px 8px;
  /* LTR */
  background-repeat: no-repeat;
  border: 1px solid #be7;
}

/* line 406, ../sass/components/_misc.scss */
.messages--warning {
  background-image: url("message-24-warning.png");
  border-color: #ed5;
}

/* line 412, ../sass/components/_misc.scss */
.messages--error {
  background-image: url("message-24-error.png");
  border-color: #ed541d;
}

/* line 419, ../sass/components/_misc.scss */
.messages__list {
  margin: 0;
}

/* line 422, ../sass/components/_misc.scss */
.messages__item {
  list-style-image: none;
}

/* Core/module installation error messages. */
/* line 427, ../sass/components/_misc.scss */
.messages--error p.error {
  color: #333;
}

/* System status report. */
/* line 432, ../sass/components/_misc.scss */
.ok,
.messages--status {
  background-color: #f8fff0;
  color: #234600;
}

/* line 437, ../sass/components/_misc.scss */
.warning,
.messages--warning {
  background-color: #fffce5;
  color: #840;
}

/* line 442, ../sass/components/_misc.scss */
.error,
.messages--error {
  background-color: #fef5f1;
  color: #8c2e0b;
}

/**
 * Tabs.
 */
/* Basic positioning styles shared by primary and secondary tabs. */
/* line 453, ../sass/components/_misc.scss */
.tabs-primary, .tabs-secondary {
  overflow: hidden;
  *zoom: 1;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjEuMCIgeDI9IjAuNSIgeTI9IjAuMCI+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjYmJiYmJiIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIiBzdG9wLW9wYWNpdHk9IjAuMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(100%, #bbbbbb), color-stop(100%, rgba(0, 0, 0, 0)));
  background-image: -moz-linear-gradient(bottom, #bbbbbb 1px, rgba(0, 0, 0, 0) 1px);
  background-image: -webkit-linear-gradient(bottom, #bbbbbb 1px, rgba(0, 0, 0, 0) 1px);
  background-image: linear-gradient(to top, #bbbbbb 1px, rgba(0, 0, 0, 0) 1px);
  /* IE 9 and earlier don't understand gradients. */
  list-style: none;
  border-bottom: 1px solid #bbb \0/ie;
  margin: 1.5em 0;
  padding: 0 2px;
  white-space: nowrap;
}

/* line 463, ../sass/components/_misc.scss */
.tabs-primary__tab, .tabs-primary__tab.is-active, .tabs-secondary__tab,
.tabs-secondary__tab.is-active {
  float: left;
  /* LTR */
  margin: 0 3px;
}

/* line 467, ../sass/components/_misc.scss */
a.tabs-primary__tab-link, a.tabs-primary__tab-link.is-active, a.tabs-secondary__tab-link, a.tabs-secondary__tab-link.is-active {
  border: 1px solid #e9e9e9;
  border-right: 0;
  border-bottom: 0;
  display: block;
  line-height: 1.5em;
  text-decoration: none;
}

/* Primary tabs. */
/* line 480, ../sass/components/_misc.scss */
.tabs-primary__tab, .tabs-primary__tab.is-active {
  -moz-border-radius-topleft: 4px;
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -moz-border-radius-topright: 4px;
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
  text-shadow: 1px 1px 0 #fff;
  border: 1px solid #bbb;
  border-bottom-color: transparent;
  /* IE 9 and earlier don't understand gradients. */
  border-bottom: 0 \0/ie;
}

/* line 489, ../sass/components/_misc.scss */
.tabs-primary__tab.is-active {
  border-bottom-color: #fff;
}

/* line 495, ../sass/components/_misc.scss */
a.tabs-primary__tab-link, a.tabs-primary__tab-link.is-active {
  -moz-border-radius-topleft: 4px;
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -moz-border-radius-topright: 4px;
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
  -moz-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  color: #333;
  background-color: #dedede;
  letter-spacing: 1px;
  padding: 0 1em;
  text-align: center;
}

/* line 505, ../sass/components/_misc.scss */
a.tabs-primary__tab-link:hover, a.tabs-primary__tab-link:focus {
  background-color: #e9e9e9;
  border-color: #f2f2f2;
}

/* line 509, ../sass/components/_misc.scss */
a.tabs-primary__tab-link:active, a.tabs-primary__tab-link.is-active {
  background-color: transparent;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2U5ZTllOSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2U5ZTllOSIgc3RvcC1vcGFjaXR5PSIwLjAiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e9e9e9), color-stop(100%, rgba(233, 233, 233, 0)));
  background-image: -moz-linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  background-image: -webkit-linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  background-image: linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FFE9E9E9', endColorstr='#00E9E9E9');
  border-color: #fff;
}

/* Secondary tabs. */
/* line 533, ../sass/components/_misc.scss */
.tabs-secondary {
  font-size: .9em;
  /* Collapse bottom margin of ul.primary. */
  margin-top: -1.5em;
}

/* line 539, ../sass/components/_misc.scss */
.tabs-secondary__tab,
.tabs-secondary__tab.is-active {
  margin: 0.75em 3px;
}

/* line 546, ../sass/components/_misc.scss */
a.tabs-secondary__tab-link, a.tabs-secondary__tab-link.is-active {
  -moz-border-radius: 0.75em;
  -webkit-border-radius: 0.75em;
  border-radius: 0.75em;
  -moz-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  text-shadow: 1px 1px 0 #fff;
  background-color: #f2f2f2;
  color: #666;
  padding: 0 .5em;
}

/* line 555, ../sass/components/_misc.scss */
a.tabs-secondary__tab-link:hover, a.tabs-secondary__tab-link:focus {
  background-color: #dedede;
  border-color: #999;
  color: #333;
}

/* line 560, ../sass/components/_misc.scss */
a.tabs-secondary__tab-link:active, a.tabs-secondary__tab-link.is-active {
  text-shadow: 1px 1px 0 #333;
  background-color: #666;
  border-color: #000;
  color: #fff;
}

/**
 * Inline styles.
 */
/* List of links generated by theme_links(). */
/* line 588, ../sass/components/_misc.scss */
.inline {
  display: inline;
  padding: 0;
}
/* line 592, ../sass/components/_misc.scss */
.inline li {
  display: inline;
  list-style-type: none;
  padding: 0 1em 0 0;
  /* LTR */
}

/* The inline field label used by the Fences module. */
/* line 600, ../sass/components/_misc.scss */
span.field-label {
  padding: 0 1em 0 0;
  /* LTR */
}

/**
 * "More" links.
 */
/* line 607, ../sass/components/_misc.scss */
.more-link {
  text-align: right;
  /* LTR */
}

/* line 610, ../sass/components/_misc.scss */
.more-help-link {
  text-align: right;
  /* LTR */
}

/* line 613, ../sass/components/_misc.scss */
.more-help-link a {
  background-image: url("help.png");
  background-position: 0 50%;
  /* LTR */
  background-repeat: no-repeat;
  padding: 1px 0 1px 20px;
  /* LTR */
}

/**
 * Pager.
 */
/* A list of page numbers when more than 1 page of content is available. */
/* line 625, ../sass/components/_misc.scss */
.pager, .standard-more-link, .news-and-events--landing .more-link, .view-more-link {
  clear: both;
  padding: 0;
  text-align: center;
}

/* line 630, ../sass/components/_misc.scss */
.pager-item,
.pager-first,
.pager-previous,
.pager-next,
.pager-last,
.pager-ellipsis, .pager-current {
  display: inline;
  padding: 0;
  list-style-type: none;
  background-image: none;
}

/* line 637, ../sass/components/_misc.scss */
.pager-item,
.pager-first,
.pager-previous,
.pager-next,
.pager-last,
.pager-ellipsis {
  /* A concatenation of several list items using an ellipsis. */
}

/* The current page's list item. */
/* line 647, ../sass/components/_misc.scss */
.pager-current {
  font-weight: bold;
}

/**
 * Blocks.
 */
/* Block wrapper. */
/* line 657, ../sass/components/_misc.scss */
.block {
  margin-bottom: 1.5em;
}

/**
 * Menus.
 */
/* line 664, ../sass/components/_misc.scss */
.menu__item.is-leaf {
  list-style-image: url("menu-leaf.png");
  list-style-type: square;
}

/* line 668, ../sass/components/_misc.scss */
.menu__item.is-expanded {
  list-style-image: url("menu-expanded.png");
  list-style-type: circle;
}

/* line 672, ../sass/components/_misc.scss */
.menu__item.is-collapsed {
  list-style-image: url("menu-collapsed.png");
  /* LTR */
  list-style-type: disc;
}

/* The active item in a Drupal menu. */
/* line 678, ../sass/components/_misc.scss */
.menu a.active {
  color: #222;
}

/**
 * Marker.
 */
/* The "new" or "updated" marker. */
/* line 687, ../sass/components/_misc.scss */
.new,
.update {
  color: #c00;
  /* Remove background highlighting from <mark> in normalize. */
  background-color: transparent;
}

/**
 * Unpublished note.
 */
/* The word "Unpublished" displayed underneath the content. */
/* line 699, ../sass/components/_misc.scss */
.unpublished {
  height: 0;
  overflow: visible;
  /* Remove background highlighting from <mark> in normalize. */
  background-color: transparent;
  color: #d8d8d8;
  font-size: 4.6875rem;
  font-family: Impact, "Arial Narrow", Helvetica, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  /* A very nice CSS3 property. */
  word-wrap: break-word;
}

/**
 * Comments.
 */
/* Wrapper for the list of comments and its title. */
/* line 721, ../sass/components/_misc.scss */
.comments {
  margin: 1.5em 0;
}

/* Preview of the comment before submitting new or updated comment. */
/* line 726, ../sass/components/_misc.scss */
.comment-preview {
  /* Drupal core will use a #ffffea background. See #1110842. */
  background-color: #ffffea;
}

/* Wrapper for a single comment. */
/* line 732, ../sass/components/_misc.scss */
.comment {
  /* Comment's permalink wrapper. */
}
/* line 735, ../sass/components/_misc.scss */
.comment .permalink {
  text-transform: uppercase;
  font-size: 75%;
}

/* Nested comments are indented. */
/* line 742, ../sass/components/_misc.scss */
.indented {
  /* Drupal core uses a 25px left margin. */
  margin-left: 1.8em;
  /* LTR */
}

/**
 * Forms.
 */
/* Wrapper for a form element (or group of form elements) and its label. */
/* line 752, ../sass/components/_misc.scss */
.form-item {
  margin: 1.5em 0;
  /* Pack groups of checkboxes and radio buttons closer together. */
  /* Form items in a table. */
  /* Highlight the form elements that caused a form submission error. */
  /* The descriptive help text (separate from the label). */
}
/* line 756, ../sass/components/_misc.scss */
.form-checkboxes .form-item, .form-radios .form-item {
  /* Drupal core uses "0.4em 0". */
  margin: 0;
}
/* line 763, ../sass/components/_misc.scss */
tr.odd .form-item, tr.even .form-item {
  margin: 0;
}
/* line 769, ../sass/components/_misc.scss */
.form-item input.error,
.form-item textarea.error,
.form-item select.error {
  border: 1px solid #c00;
}
/* line 776, ../sass/components/_misc.scss */
.form-item .description {
  font-size: 0.85em;
}

/* line 783, ../sass/components/_misc.scss */
.form-type-radio .description,
.form-type-checkbox .description {
  margin-left: 2.4em;
}

/* The part of the label that indicates a required field. */
/* line 789, ../sass/components/_misc.scss */
.form-required {
  color: #c00;
}

/* Labels for radios and checkboxes. */
/* line 794, ../sass/components/_misc.scss */
label.option {
  display: inline;
  font-weight: normal;
}

/* Buttons used by contrib modules like Media. */
/* line 800, ../sass/components/_misc.scss */
a.button {
  -moz-appearance: button;
  -webkit-appearance: button;
}

/* Password confirmation. */
/* line 805, ../sass/components/_misc.scss */
.password-parent,
.confirm-parent {
  margin: 0;
}

/* Drupal's default login form block. */
/* line 811, ../sass/components/_misc.scss */
.user-login-form-container {
  position: relative;
}
/* line 814, ../sass/components/_misc.scss */
.user-login-form-container h1 {
  padding-top: 1em;
  padding-bottom: 0.5em;
  text-align: center;
}
@media all and (min-width: 770px) and (max-width: 2000px) {
  /* line 819, ../sass/components/_misc.scss */
  .user-login-form-container .sso-button-container {
    padding-top: 60px;
    padding-bottom: 40px;
  }
}
/* line 826, ../sass/components/_misc.scss */
.user-login-form-container p.user-login-fields-title {
  padding-top: 1em;
  text-align: center;
}
/* line 830, ../sass/components/_misc.scss */
.user-login-form-container #user-login-form {
  margin: 0 auto;
  position: relative;
  padding-bottom: 10em;
  width: auto;
  max-width: 500px;
  display: block;
}
/* line 838, ../sass/components/_misc.scss */
.user-login-form-container #user-login-form #edit-simplesamlphp-auth-login-link {
  display: none;
}
/* line 843, ../sass/components/_misc.scss */
.user-login-form-container #user-login-form .form-item-name input {
  height: 40px;
  font-size: 1.25rem;
  background: white;
  background-color: white !important;
  display: block;
}
/* line 850, ../sass/components/_misc.scss */
.user-login-form-container #user-login-form .form-item-name span {
  visibility: hidden;
}
/* line 853, ../sass/components/_misc.scss */
.user-login-form-container #user-login-form .form-item-name label:before {
  content: 'Username';
  color: #222;
}
/* line 857, ../sass/components/_misc.scss */
.user-login-form-container #user-login-form .form-item-name label:after {
  display: none;
}
/* line 863, ../sass/components/_misc.scss */
.user-login-form-container #user-login-form .form-item-pass .simplesamlphp-auth-login-link {
  display: none;
}
/* line 866, ../sass/components/_misc.scss */
.user-login-form-container #user-login-form .form-item-pass input {
  height: 40px;
  font-size: 1.25rem;
  background: white;
  background-color: white !important;
  display: block;
}
/* line 873, ../sass/components/_misc.scss */
.user-login-form-container #user-login-form .form-item-pass span {
  visibility: hidden;
}
/* line 876, ../sass/components/_misc.scss */
.user-login-form-container #user-login-form .form-item-pass label:before {
  content: 'Password';
  color: #222;
}
/* line 880, ../sass/components/_misc.scss */
.user-login-form-container #user-login-form .form-item-pass label:after {
  display: none;
}
/* line 885, ../sass/components/_misc.scss */
.user-login-form-container #user-login-form #edit-submit {
  padding: 5px 15px;
}

/**
 * OpenID
 *
 * The default styling for the OpenID login link seems to assume Garland's
 * styling of list items.
 */
/* OpenID creates a new ul above the login form's links. */
/* line 901, ../sass/components/_misc.scss */
.openid-links {
  /* Position OpenID's ul next to the rest of the links. */
  margin-bottom: 0;
}

/* The "Log in using OpenID" and "Cancel OpenID login" links. */
/* line 907, ../sass/components/_misc.scss */
.openid-link,
.user-link {
  margin-top: 1.5em;
}

/* line 911, ../sass/components/_misc.scss */
html.js #user-login-form li.openid-link,
#user-login-form li.openid-link {
  /* Un-do some of the padding on the ul list. */
  margin-left: -20px;
  /* LTR */
}

/* line 916, ../sass/components/_misc.scss */
#user-login ul {
  margin: 1.5em 0;
}

/**
 * Tables styles.
 */
/* line 924, ../sass/components/_misc.scss */
.tabletxt, #tabletxt, .fbtab {
  width: 100%;
}
/* line 926, ../sass/components/_misc.scss */
.tabletxt th, .tabletxt td, #tabletxt th, #tabletxt td, .fbtab th, .fbtab td {
  padding: 3px;
  border: 1px solid #ccc;
}
/* line 930, ../sass/components/_misc.scss */
.tabletxt tr:hover td, #tabletxt tr:hover td, .fbtab tr:hover td {
  background-color: #f4faff !important;
}

/**
 * Drupal admin tables.
 */
/* line 940, ../sass/components/_misc.scss */
form th {
  text-align: left;
  /* LTR */
  padding-right: 1em;
  /* LTR */
  border-bottom: 3px solid #ccc;
}
/* line 948, ../sass/components/_misc.scss */
form table ul {
  margin: 0;
}

/* line 952, ../sass/components/_misc.scss */
tr.even,
tr.odd {
  background-color: #eee;
  border-bottom: 1px solid #ccc;
  padding: 0.1em 0.6em;
}

/* line 958, ../sass/components/_misc.scss */
tr.even {
  background-color: #fff;
}

/* Markup generated by theme_tablesort_indicator(). */
/* line 963, ../sass/components/_misc.scss */
td.active {
  background-color: #ddd;
}

/* Center checkboxes inside table cell. */
/* line 968, ../sass/components/_misc.scss */
td.checkbox,
th.checkbox {
  text-align: center;
}

/* Drupal core wrongly puts this in system.menus.css. Since we override that, add it back. */
/* line 974, ../sass/components/_misc.scss */
td.menu-disabled {
  background: #ccc;
}

/**
 * Autocomplete.
 *
 * @see autocomplete.js
 */
/* Suggestion list. */
/* line 985, ../sass/components/_misc.scss */
#autocomplete .selected {
  background: #0072b9;
  color: #fff;
}

/**
 * Collapsible fieldsets.
 *
 * @see collapse.js
 */
/* line 996, ../sass/components/_misc.scss */
html.js .collapsible .fieldset-legend {
  background-image: url("menu-expanded.png");
  background-position: 5px 65%;
  /* LTR */
  background-repeat: no-repeat;
  padding-left: 15px;
  /* LTR */
}
/* line 1002, ../sass/components/_misc.scss */
html.js .collapsed .fieldset-legend {
  background-image: url("menu-collapsed.png");
  /* LTR */
  background-position: 5px 50%;
  /* LTR */
}
/* line 1006, ../sass/components/_misc.scss */
.fieldset-legend .summary {
  color: #999;
  font-size: 0.9em;
  margin-left: 0.5em;
}

/**
 * TableDrag behavior.
 *
 * @see tabledrag.js
 */
/* line 1018, ../sass/components/_misc.scss */
tr.drag {
  background-color: #fffff0;
}

/* line 1021, ../sass/components/_misc.scss */
tr.drag-previous {
  background-color: #ffd;
}

/* line 1024, ../sass/components/_misc.scss */
.tabledrag-toggle-weight {
  font-size: 0.9em;
}

/**
 * TableSelect behavior.
 *
 * @see tableselect.js
 */
/* line 1033, ../sass/components/_misc.scss */
tr.selected td {
  background: #ffc;
}

/**
 * Progress bar.
 *
 * @see progress.js
 */
/* line 1042, ../sass/components/_misc.scss */
.progress {
  font-weight: bold;
}
/* line 1045, ../sass/components/_misc.scss */
.progress .bar {
  background: #ccc;
  border-color: #666;
  margin: 0 0.2em;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
/* line 1051, ../sass/components/_misc.scss */
.progress .filled {
  background-color: #0072b9;
  background-image: url("../images/progress.gif");
}

/**
 * Page Administration Toggle
 *
 *
 */
/* line 1063, ../sass/components/_misc.scss */
#main-wrap h4.page-admin-link {
  margin: 0 0 10px;
  padding: 5px 0;
  background-color: lightyellow;
  border: 1px solid #919191;
}

/* line 1072, ../sass/components/_misc.scss */
.page-counter {
  float: left;
  font-weight: bold;
  margin: -4px 0 15px 0;
  padding: 4px 0;
}
/* line 1078, ../sass/components/_misc.scss */
.page-counter ~ .view-content {
  clear: left;
  margin-top: 15px;
}
/* line 1082, ../sass/components/_misc.scss */
.page-counter ~ .item-list {
  position: relative;
  float: left;
  display: inline-block;
  width: 85%;
}
/* line 1088, ../sass/components/_misc.scss */
.page-counter ~ .item-list ul.pager, .page-counter ~ .item-list ul.standard-more-link, .page-counter ~ .item-list .news-and-events--landing ul.more-link, .news-and-events--landing .page-counter ~ .item-list ul.more-link, .page-counter ~ .item-list ul.view-more-link {
  display: block;
  margin: -4px 0 15px 10px;
  height: 24px;
}
/* line 1093, ../sass/components/_misc.scss */
.page-counter ~ .item-list ul.pager li, .page-counter ~ .item-list ul.standard-more-link li, .page-counter ~ .item-list .news-and-events--landing ul.more-link li, .news-and-events--landing .page-counter ~ .item-list ul.more-link li, .page-counter ~ .item-list ul.view-more-link li {
  display: inline-block;
  color: #222222;
}
/* line 1097, ../sass/components/_misc.scss */
.page-counter ~ .item-list ul.pager li a, .page-counter ~ .item-list ul.standard-more-link li a, .page-counter ~ .item-list .news-and-events--landing ul.more-link li a, .news-and-events--landing .page-counter ~ .item-list ul.more-link li a, .page-counter ~ .item-list ul.view-more-link li a {
  display: block;
  padding: 4px 6px;
  color: #999999;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
/* line 1103, ../sass/components/_misc.scss */
.page-counter ~ .item-list ul.pager li a:hover a, .page-counter ~ .item-list ul.standard-more-link li a:hover a, .page-counter ~ .item-list .news-and-events--landing ul.more-link li a:hover a, .news-and-events--landing .page-counter ~ .item-list ul.more-link li a:hover a, .page-counter ~ .item-list ul.view-more-link li a:hover a, .page-counter ~ .item-list ul.pager li a:focus, .page-counter ~ .item-list ul.standard-more-link li a:focus, .page-counter ~ .item-list .news-and-events--landing ul.more-link li a:focus, .news-and-events--landing .page-counter ~ .item-list ul.more-link li a:focus, .page-counter ~ .item-list ul.view-more-link li a:focus {
  background: #e6e6e6;
}
/* line 1108, ../sass/components/_misc.scss */
.page-counter ~ .item-list ul.pager li.pager-current, .page-counter ~ .item-list ul.standard-more-link li.pager-current, .page-counter ~ .item-list .news-and-events--landing ul.more-link li.pager-current, .news-and-events--landing .page-counter ~ .item-list ul.more-link li.pager-current, .page-counter ~ .item-list ul.view-more-link li.pager-current {
  background: #104b7d;
  color: white;
  font-weight: bold;
  cursor: default;
  padding: 4px 6px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
/* line 1116, ../sass/components/_misc.scss */
.page-counter ~ .item-list ul.pager li.pager-current:hover, .page-counter ~ .item-list ul.standard-more-link li.pager-current:hover, .page-counter ~ .item-list .news-and-events--landing ul.more-link li.pager-current:hover, .news-and-events--landing .page-counter ~ .item-list ul.more-link li.pager-current:hover, .page-counter ~ .item-list ul.view-more-link li.pager-current:hover, .page-counter ~ .item-list ul.pager li.pager-current:focus, .page-counter ~ .item-list ul.standard-more-link li.pager-current:focus, .page-counter ~ .item-list .news-and-events--landing ul.more-link li.pager-current:focus, .news-and-events--landing .page-counter ~ .item-list ul.more-link li.pager-current:focus, .page-counter ~ .item-list ul.view-more-link li.pager-current:focus {
  background: #104b7d;
}
/* line 1120, ../sass/components/_misc.scss */
.page-counter ~ .item-list ul.pager li.pager-first, .page-counter ~ .item-list ul.standard-more-link li.pager-first, .page-counter ~ .item-list .news-and-events--landing ul.more-link li.pager-first, .news-and-events--landing .page-counter ~ .item-list ul.more-link li.pager-first, .page-counter ~ .item-list ul.view-more-link li.pager-first, .page-counter ~ .item-list ul.pager li.pager-last, .page-counter ~ .item-list ul.standard-more-link li.pager-last, .page-counter ~ .item-list .news-and-events--landing ul.more-link li.pager-last, .news-and-events--landing .page-counter ~ .item-list ul.more-link li.pager-last, .page-counter ~ .item-list ul.view-more-link li.pager-last {
  display: none;
}
/* line 1124, ../sass/components/_misc.scss */
.page-counter ~ .item-list ul.pager .ajax-progress, .page-counter ~ .item-list ul.standard-more-link .ajax-progress, .page-counter ~ .item-list .news-and-events--landing ul.more-link .ajax-progress, .news-and-events--landing .page-counter ~ .item-list ul.more-link .ajax-progress, .page-counter ~ .item-list ul.view-more-link .ajax-progress {
  position: absolute;
  top: -3px;
  right: -20px;
}

/* Prev/Next Update Navigation */
/* line 1134, ../sass/components/_misc.scss */
.node--type-update .prev-next-item h2, .node--type-update .prev-next-item .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-update .prev-next-item h1, .node--type-update .prev-next-item .contact-method-label {
  font-size: 1.375rem;
  margin: 0 0 11px 0;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-weight: bold;
  font-style: normal;
  color: #222;
  font-size: 1.25rem;
}
@media all and (min-width: 1440px) {
  /* line 1134, ../sass/components/_misc.scss */
  .node--type-update .prev-next-item h2, .node--type-update .prev-next-item .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-update .prev-next-item h1, .node--type-update .prev-next-item .contact-method-label {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1134, ../sass/components/_misc.scss */
  .node--type-update .prev-next-item h2, .node--type-update .prev-next-item .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-update .prev-next-item h1, .node--type-update .prev-next-item .contact-method-label {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1134, ../sass/components/_misc.scss */
  .node--type-update .prev-next-item h2, .node--type-update .prev-next-item .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-update .prev-next-item h1, .node--type-update .prev-next-item .contact-method-label {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1134, ../sass/components/_misc.scss */
  .node--type-update .prev-next-item h2, .node--type-update .prev-next-item .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-update .prev-next-item h1, .node--type-update .prev-next-item .contact-method-label {
    font-size: 1rem;
  }
}
/* line 1136, ../sass/components/_misc.scss */
.node--type-update .prev-next-item h2 a, .node--type-update .prev-next-item .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1 a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-update .prev-next-item h1 a, .node--type-update .prev-next-item .contact-method-label a {
  color: #222;
}
/* line 1141, ../sass/components/_misc.scss */
.node--type-update h1 {
  margin-top: 0;
}

/* Prev/Next Book Navigation */
/* line 1146, ../sass/components/_misc.scss */
.prev-next-book-nav {
  float: right;
}
/* line 1148, ../sass/components/_misc.scss */
.prev-next-book-nav .page-next, .prev-next-book-nav .page-previous {
  display: table-cell;
  width: 102px;
  height: 32px;
  color: #41556e;
  background: transparent url(../images/btn_background.png) center center no-repeat;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
}

/* line 1169, ../sass/components/_misc.scss */
h1 a.feed-icon {
  margin-left: 5px;
}

/* line 1173, ../sass/components/_misc.scss */
#mailSent {
  font-size: 0.875rem;
  font-weight: bold;
  display: inline;
}

/* line 1179, ../sass/components/_misc.scss */
.gd_submit {
  background-color: #4f68a1;
  background-image: -moz-linear-gradient(0deg, #0c347e, #4f68a1);
  background-image: -ms-linear-gradient(0deg, #0c347e, #4f68a1);
  background-image: -o-linear-gradient(0deg, #0c347e, #4f68a1);
  background-image: -webkit-linear-gradient(0deg, #0c347e, #4f68a1);
  background-image: linear-gradient(0deg, #0c347e, #4f68a1);
  border: 1px solid #8191bb;
  color: #ffffff;
  display: inline-block;
  margin: auto;
  padding: 3px 20px;
  text-decoration: none;
  font-size: 0.75rem;
}

/* line 1197, ../sass/components/_misc.scss */
#makeUpdates {
  width: 200px;
  margin-bottom: -5px;
}

/* line 1202, ../sass/components/_misc.scss */
.showUpdates {
  display: inline-block;
}

/* line 1206, ../sass/components/_misc.scss */
#gd_make_updates {
  display: block;
}

/* line 1210, ../sass/components/_misc.scss */
#ipt_subscribe_email, #ipt_subscribe_email_modal {
  margin-right: 10px;
  width: 200px;
}

/* line 1215, ../sass/components/_misc.scss */
.successfulUpdate, .subscriptionHeader {
  font-weight: bold;
}

/* line 1218, ../sass/components/_misc.scss */
.successfulUpdate {
  width: 330px;
  font-size: 0.875rem;
}

/* line 1223, ../sass/components/_misc.scss */
.updateCheckbox {
  background-image: url("checkbox-red.png");
  background-repeat: no-repeat;
  background-size: 33px 30px;
  width: 33px;
  height: 30px;
  display: inline-block;
  margin-bottom: -4px;
}

/* line 1233, ../sass/components/_misc.scss */
.subscriptionHeader {
  margin-top: 8px;
  font-size: 0.875rem;
}

/* line 1238, ../sass/components/_misc.scss */
.gd_select_all {
  font-size: 0.875rem;
  margin-top: 24px;
  margin-bottom: 14px;
}

/* line 1244, ../sass/components/_misc.scss */
.gd_topic_description {
  margin-left: 22px;
}

/* line 1248, ../sass/components/_misc.scss */
#subscriptions ul {
  list-style: none;
  padding: 0px;
}
/* line 1252, ../sass/components/_misc.scss */
#subscriptions ul li {
  margin-bottom: 20px;
}
/* line 1254, ../sass/components/_misc.scss */
#subscriptions ul li :last-child {
  margin-bottom: 4px;
}
/* line 1258, ../sass/components/_misc.scss */
#subscriptions ul li ul {
  padding-left: 30px;
  margin-top: 12px;
}
/* line 1262, ../sass/components/_misc.scss */
#subscriptions ul li ul li {
  margin-bottom: 12px;
}
/* line 1265, ../sass/components/_misc.scss */
#subscriptions input {
  margin-right: 4px;
}
/* line 1268, ../sass/components/_misc.scss */
#subscriptions label {
  font-weight: bold;
}

/* line 1273, ../sass/components/_misc.scss */
a.collapsedLink {
  background-image: url("plus.png");
  background-repeat: no-repeat;
  background-size: 17px 17px;
  width: 17px;
  height: 17px;
  display: inline-block;
  margin-bottom: -4px;
}

/* line 1283, ../sass/components/_misc.scss */
a.openLink {
  background-image: url("minus.png");
  background-repeat: no-repeat;
  background-size: 17px 17px;
  width: 17px;
  height: 17px;
  display: inline-block;
  margin-bottom: -4px;
}

/* line 1293, ../sass/components/_misc.scss */
#subscribe-overlay {
  background-color: #000;
}

/* line 1297, ../sass/components/_misc.scss */
#subscribe-container {
  background-color: #fff;
  border: 2px solid #444;
  padding: 16px 12px 12px 24px;
}
/* line 1301, ../sass/components/_misc.scss */
#subscribe-container .message {
  margin: 0;
  padding: 12px 4px 12px 8px;
}
/* line 1305, ../sass/components/_misc.scss */
#subscribe-container a.modal-close, #subscribe-container a.modal-close:link, #subscribe-container a.modal-close:active, #subscribe-container a.modal-close:visited {
  text-decoration: none;
  font-weight: bold;
  position: absolute;
  right: 10px;
  top: 2px;
}
/* line 1315, ../sass/components/_misc.scss */
#subscribe-container ul {
  width: 300px;
}
/* line 1316, ../sass/components/_misc.scss */
#subscribe-container ul a {
  text-decoration: none;
}
/* line 1326, ../sass/components/_misc.scss */
#subscribe-container .modalLeft {
  float: left;
}
/* line 1329, ../sass/components/_misc.scss */
#subscribe-container .modalRight {
  float: right;
}

/* line 1336, ../sass/components/_misc.scss */
#p_submit {
  clear: both;
}
/* line 1338, ../sass/components/_misc.scss */
#p_submit label {
  display: inline;
}
/* line 1341, ../sass/components/_misc.scss */
#p_submit #ipt_subscribe_email, #p_submit #ipt_subscribe_email_modal {
  margin-left: 4px;
  margin-right: 4px;
}
/* line 1346, ../sass/components/_misc.scss */
#p_submit .spinner {
  display: none;
}

/* line 1350, ../sass/components/_misc.scss */
.archive {
  background: url(/sites/all/themes/nhlbi/images/archive_pink.jpg);
}

/* line 1354, ../sass/components/_misc.scss */
#maintenance-logo-title {
  width: 287px;
  height: 67px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 86px;
  margin-bottom: 14px;
}

/* line 1363, ../sass/components/_misc.scss */
.maintenance_text {
  background: url(/sites/all/themes/nhlbi/images/mainentance-images-nhlbi.png);
  text-align: center;
  line-height: 169px;
  height: 169px;
  width: 643px;
  margin-right: auto;
  margin-left: auto;
}
/* line 1372, ../sass/components/_misc.scss */
.maintenance_text .maintenance_message {
  vertical-align: middle;
  display: inline-block;
  font-size: 0.875rem;
  font-family: Verdana, Helvetica, sans-serif;
}
/* line 1377, ../sass/components/_misc.scss */
.maintenance_text .maintenance_message h2, .maintenance_text .maintenance_message .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .maintenance_text .maintenance_message h1, .maintenance_text .maintenance_message .contact-method-label {
  margin-top: 0px;
  font-size: 1.25rem;
  font-family: Verdana, Helvetica, sans-serif;
}

/* line 1385, ../sass/components/_misc.scss */
.tableBorder, .tableBorder th, .tableBorder td {
  border: 1px #000 solid;
}

/* line 1389, ../sass/components/_misc.scss */
.noEmbedResults {
  margin: 5px;
  padding: 3px;
}

/* line 1394, ../sass/components/_misc.scss */
.tableDivParent {
  display: table;
}
/* line 1396, ../sass/components/_misc.scss */
.tableDivParent .tableDivCell {
  vertical-align: top;
  display: table-cell;
  padding-top: 8px;
}
/* line 1400, ../sass/components/_misc.scss */
.tableDivParent .tableDivCell img {
  display: table-cell;
  margin-top: -10px;
}

/* line 1407, ../sass/components/_misc.scss */
.server-error-banner {
  font-family: Georgia,Verdana, Arial, sans-serif;
  font-size: 2.125rem;
  margin-top: 18px;
  margin-bottom: 20px;
}

/* line 1414, ../sass/components/_misc.scss */
.server-error-text {
  font-family: Georgia,Verdana, Arial, sans-serif;
  font-size: 1.125rem;
  margin-bottom: 14px;
}

/* line 1421, ../sass/components/_misc.scss */
.hide {
  display: none;
}

/* line 1425, ../sass/components/_misc.scss */
#social-container {
  background-color: #fff;
  border: 2px solid #444;
  padding: 30px 12px 30px 24px;
  font-size: 0.875rem;
}
/* line 1431, ../sass/components/_misc.scss */
#social-container input[type="checkbox"], #social-container input[type="radio"] {
  margin-right: 1em;
}
/* line 1434, ../sass/components/_misc.scss */
#social-container .socialButton {
  font-size: 0.8125rem;
  margin: 1em;
  clear: both;
}
/* line 1438, ../sass/components/_misc.scss */
#social-container .socialButton a {
  display: block;
  text-align: center;
}
/* line 1443, ../sass/components/_misc.scss */
#social-container .socialButton a#Print {
  width: 10em;
}
/* line 1447, ../sass/components/_misc.scss */
#social-container .socialButton a#Print.disabled.modbutton, #social-container .socialButton a#Share.disabled.modbutton {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  background-color: #bcbcbc;
  border: 1px solid #bcbcbc;
  cursor: arrow;
  width: 10em;
}
@media all and (min-width: 1440px) {
  /* line 1447, ../sass/components/_misc.scss */
  #social-container .socialButton a#Print.disabled.modbutton, #social-container .socialButton a#Share.disabled.modbutton {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1447, ../sass/components/_misc.scss */
  #social-container .socialButton a#Print.disabled.modbutton, #social-container .socialButton a#Share.disabled.modbutton {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1447, ../sass/components/_misc.scss */
  #social-container .socialButton a#Print.disabled.modbutton, #social-container .socialButton a#Share.disabled.modbutton {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1447, ../sass/components/_misc.scss */
  #social-container .socialButton a#Print.disabled.modbutton, #social-container .socialButton a#Share.disabled.modbutton {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
#social-container .socialButton a#Print.disabled.modbutton :hover, #social-container .socialButton a#Share.disabled.modbutton :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 1447, ../sass/components/_misc.scss */
  #social-container .socialButton a#Print.disabled.modbutton, #social-container .socialButton a#Share.disabled.modbutton {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1447, ../sass/components/_misc.scss */
  #social-container .socialButton a#Print.disabled.modbutton, #social-container .socialButton a#Share.disabled.modbutton {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1447, ../sass/components/_misc.scss */
  #social-container .socialButton a#Print.disabled.modbutton, #social-container .socialButton a#Share.disabled.modbutton {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1447, ../sass/components/_misc.scss */
  #social-container .socialButton a#Print.disabled.modbutton, #social-container .socialButton a#Share.disabled.modbutton {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1447, ../sass/components/_misc.scss */
  #social-container .socialButton a#Print.disabled.modbutton, #social-container .socialButton a#Share.disabled.modbutton {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
#social-container .socialButton a#Print.disabled.modbutton:hover, #social-container .socialButton a#Share.disabled.modbutton:hover {
  background-color: #144571;
  border-color: #144571;
  color: #fff;
  text-decoration: none;
}
/* line 1453, ../sass/components/_misc.scss */
#social-container .socialButton a#Print.modbutton, #social-container .socialButton a#Share.modbutton {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  background-color: #1a568c;
  border: 1px solid #1a568c;
  width: 10em;
}
@media all and (min-width: 1440px) {
  /* line 1453, ../sass/components/_misc.scss */
  #social-container .socialButton a#Print.modbutton, #social-container .socialButton a#Share.modbutton {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1453, ../sass/components/_misc.scss */
  #social-container .socialButton a#Print.modbutton, #social-container .socialButton a#Share.modbutton {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1453, ../sass/components/_misc.scss */
  #social-container .socialButton a#Print.modbutton, #social-container .socialButton a#Share.modbutton {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1453, ../sass/components/_misc.scss */
  #social-container .socialButton a#Print.modbutton, #social-container .socialButton a#Share.modbutton {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
#social-container .socialButton a#Print.modbutton :hover, #social-container .socialButton a#Share.modbutton :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 1453, ../sass/components/_misc.scss */
  #social-container .socialButton a#Print.modbutton, #social-container .socialButton a#Share.modbutton {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1453, ../sass/components/_misc.scss */
  #social-container .socialButton a#Print.modbutton, #social-container .socialButton a#Share.modbutton {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1453, ../sass/components/_misc.scss */
  #social-container .socialButton a#Print.modbutton, #social-container .socialButton a#Share.modbutton {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1453, ../sass/components/_misc.scss */
  #social-container .socialButton a#Print.modbutton, #social-container .socialButton a#Share.modbutton {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1453, ../sass/components/_misc.scss */
  #social-container .socialButton a#Print.modbutton, #social-container .socialButton a#Share.modbutton {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
#social-container .socialButton a#Print.modbutton:hover, #social-container .socialButton a#Share.modbutton:hover {
  background-color: #102d66;
  border-color: #102d66;
  color: #fff;
  text-decoration: none;
}
/* line 1458, ../sass/components/_misc.scss */
#social-container .socialButton a#Print-All, #social-container .socialButton a#Share-All {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  background-color: #1a568c;
  border: 1px solid #1a568c;
  width: 10em;
}
@media all and (min-width: 1440px) {
  /* line 1458, ../sass/components/_misc.scss */
  #social-container .socialButton a#Print-All, #social-container .socialButton a#Share-All {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1458, ../sass/components/_misc.scss */
  #social-container .socialButton a#Print-All, #social-container .socialButton a#Share-All {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1458, ../sass/components/_misc.scss */
  #social-container .socialButton a#Print-All, #social-container .socialButton a#Share-All {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1458, ../sass/components/_misc.scss */
  #social-container .socialButton a#Print-All, #social-container .socialButton a#Share-All {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
#social-container .socialButton a#Print-All :hover, #social-container .socialButton a#Share-All :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 1458, ../sass/components/_misc.scss */
  #social-container .socialButton a#Print-All, #social-container .socialButton a#Share-All {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1458, ../sass/components/_misc.scss */
  #social-container .socialButton a#Print-All, #social-container .socialButton a#Share-All {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1458, ../sass/components/_misc.scss */
  #social-container .socialButton a#Print-All, #social-container .socialButton a#Share-All {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1458, ../sass/components/_misc.scss */
  #social-container .socialButton a#Print-All, #social-container .socialButton a#Share-All {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1458, ../sass/components/_misc.scss */
  #social-container .socialButton a#Print-All, #social-container .socialButton a#Share-All {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
#social-container .socialButton a#Print-All:hover, #social-container .socialButton a#Share-All:hover {
  background-color: #102d66;
  border-color: #102d66;
  color: #fff;
  text-decoration: none;
}
/* line 1462, ../sass/components/_misc.scss */
#social-container .socialButton a#Cancel, #social-container .socialButton a#Print-Some-Sections, #social-container .socialButton a#Share-Some-Sections {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #222;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #222;
  width: 10em;
}
@media all and (min-width: 1440px) {
  /* line 1462, ../sass/components/_misc.scss */
  #social-container .socialButton a#Cancel, #social-container .socialButton a#Print-Some-Sections, #social-container .socialButton a#Share-Some-Sections {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1462, ../sass/components/_misc.scss */
  #social-container .socialButton a#Cancel, #social-container .socialButton a#Print-Some-Sections, #social-container .socialButton a#Share-Some-Sections {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1462, ../sass/components/_misc.scss */
  #social-container .socialButton a#Cancel, #social-container .socialButton a#Print-Some-Sections, #social-container .socialButton a#Share-Some-Sections {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1462, ../sass/components/_misc.scss */
  #social-container .socialButton a#Cancel, #social-container .socialButton a#Print-Some-Sections, #social-container .socialButton a#Share-Some-Sections {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
#social-container .socialButton a#Cancel :hover, #social-container .socialButton a#Print-Some-Sections :hover, #social-container .socialButton a#Share-Some-Sections :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 1462, ../sass/components/_misc.scss */
  #social-container .socialButton a#Cancel, #social-container .socialButton a#Print-Some-Sections, #social-container .socialButton a#Share-Some-Sections {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1462, ../sass/components/_misc.scss */
  #social-container .socialButton a#Cancel, #social-container .socialButton a#Print-Some-Sections, #social-container .socialButton a#Share-Some-Sections {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1462, ../sass/components/_misc.scss */
  #social-container .socialButton a#Cancel, #social-container .socialButton a#Print-Some-Sections, #social-container .socialButton a#Share-Some-Sections {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1462, ../sass/components/_misc.scss */
  #social-container .socialButton a#Cancel, #social-container .socialButton a#Print-Some-Sections, #social-container .socialButton a#Share-Some-Sections {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1462, ../sass/components/_misc.scss */
  #social-container .socialButton a#Cancel, #social-container .socialButton a#Print-Some-Sections, #social-container .socialButton a#Share-Some-Sections {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
#social-container .socialButton a#Cancel:hover, #social-container .socialButton a#Print-Some-Sections:hover, #social-container .socialButton a#Share-Some-Sections:hover {
  background-color: #144571;
  border-color: #144571;
  color: #fff;
  text-decoration: none;
}
/* line 1468, ../sass/components/_misc.scss */
#social-container .printButton.hide {
  display: none;
}
/* line 1472, ../sass/components/_misc.scss */
#social-container .socialModal {
  padding: 1em;
}

/* line 1480, ../sass/components/_misc.scss */
#searchBoxForm a.modal-close, #searchBoxForm a.modal-close:link, #searchBoxForm a.modal-close:active, #searchBoxForm a.modal-close:visited {
  position: absolute;
  float: right;
  right: 15px;
  top: 20px;
}

@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1489, ../sass/components/_misc.scss */
  .field--name-field-video, .field--name-field-related-video {
    padding-bottom: 0;
  }
}

/* line 1497, ../sass/components/_misc.scss */
.field--type-text-long figure img {
  margin: 5px;
}
/* line 1501, ../sass/components/_misc.scss */
.field--type-text-long figcaption {
  color: #222;
  padding: 0 1em 1em;
}

/* line 1510, ../sass/components/_misc.scss */
.simplebox {
  border: 3px solid #d7e7f4;
  margin: 10px;
  height: 230px;
  float: left;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1510, ../sass/components/_misc.scss */
  .simplebox {
    height: 150px;
  }
}

/* line 1519, ../sass/components/_misc.scss */
.simplebox-content > p {
  margin-bottom: .5em;
  margin-top: 0;
}

/* line 1524, ../sass/components/_misc.scss */
.simplebox-title {
  padding-top: 10px;
}

/* line 1527, ../sass/components/_misc.scss */
.simplebox-title, .simplebox-content {
  padding-left: 10px;
}

/* line 1533, ../sass/components/_misc.scss */
.simplebox {
  width: 30%;
  display: inline-block;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1533, ../sass/components/_misc.scss */
  .simplebox {
    width: 45%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1533, ../sass/components/_misc.scss */
  .simplebox {
    width: 90%;
  }
}

/* line 1545, ../sass/components/_misc.scss */
.entity-embed.card-link {
  display: inline-block;
  float: left;
}
@media all and (min-width: 1100px) {
  /* line 1545, ../sass/components/_misc.scss */
  .entity-embed.card-link {
    width: 30%;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1545, ../sass/components/_misc.scss */
  .entity-embed.card-link {
    width: 45%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1545, ../sass/components/_misc.scss */
  .entity-embed.card-link {
    width: 90%;
  }
}
/* line 2133, ../sass/_mixins.scss */
.entity-embed.card-link .file--application-pdf {
  background-image: url("../images/ico-pdf.png");
  background-size: 50px 50px;
  background-repeat: no-repeat;
  background-position: right center;
  display: inline-block;
  content: " ";
  height: inherit;
}
/* line 2137, ../sass/_mixins.scss */
.entity-embed.card-link .file--x-office-document {
  background-image: url("../images/ico-doc.png");
  background-size: 50px 50px;
  background-repeat: no-repeat;
  background-position: right center;
  display: inline-block;
  content: " ";
  height: inherit;
}
/* line 2141, ../sass/_mixins.scss */
.entity-embed.card-link .file--x-office-spreadsheet {
  background-image: url("../images/ico-xls.png");
  background-size: 50px 50px;
  background-repeat: no-repeat;
  background-position: right center;
  display: inline-block;
  content: " ";
  height: inherit;
}
/* line 2145, ../sass/_mixins.scss */
.entity-embed.card-link .file--x-office-presentation {
  background-image: url("../images/ico-ppt.png");
  background-size: 50px 50px;
  background-repeat: no-repeat;
  background-position: right center;
  display: inline-block;
  content: " ";
  height: inherit;
}
/* line 2149, ../sass/_mixins.scss */
.entity-embed.card-link .file-download-card {
  background-color: white;
  width: 100%;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2149, ../sass/_mixins.scss */
  .entity-embed.card-link .file-download-card {
    flex-direction: row;
  }
}
/* line 2160, ../sass/_mixins.scss */
.entity-embed.card-link .file-download-card .file-details {
  width: 100%;
}
/* line 2162, ../sass/_mixins.scss */
.entity-embed.card-link .file-download-card .file-details .file-link-text {
  padding-top: 25px;
  padding-left: 1em;
}
/* line 2166, ../sass/_mixins.scss */
.entity-embed.card-link .file-download-card .file-details .file-size {
  padding-top: 0.5em;
  padding-left: 1em;
}
/* line 2171, ../sass/_mixins.scss */
.entity-embed.card-link .file-download-card .file {
  width: 50px;
  margin-right: 10px;
}

/* line 1550, ../sass/components/_misc.scss */
.file-card-list {
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  width: 100%;
}
/* line 2087, ../sass/_mixins.scss */
.file-card-list .field__items {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -o-justify-content: flex-start;
  justify-content: flex-start;
  background-color: transparent;
  color: #222;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 10px;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2087, ../sass/_mixins.scss */
  .file-card-list .field__items {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    -ms-align-items: stretch;
    -o-align-items: stretch;
    align-items: stretch;
  }
}
/* line 2109, ../sass/_mixins.scss */
.file-card-list .field__item {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: inline-block;
}
@media all and (min-width: 1100px) {
  /* line 2109, ../sass/_mixins.scss */
  .file-card-list .field__item {
    width: 30%;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2109, ../sass/_mixins.scss */
  .file-card-list .field__item {
    width: 45%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2109, ../sass/_mixins.scss */
  .file-card-list .field__item {
    width: 90%;
  }
}
/* line 2133, ../sass/_mixins.scss */
.file-card-list .field__item .file--application-pdf {
  background-image: url("../images/ico-pdf.png");
  background-size: 50px 50px;
  background-repeat: no-repeat;
  background-position: right center;
  display: inline-block;
  content: " ";
  height: inherit;
}
/* line 2137, ../sass/_mixins.scss */
.file-card-list .field__item .file--x-office-document {
  background-image: url("../images/ico-doc.png");
  background-size: 50px 50px;
  background-repeat: no-repeat;
  background-position: right center;
  display: inline-block;
  content: " ";
  height: inherit;
}
/* line 2141, ../sass/_mixins.scss */
.file-card-list .field__item .file--x-office-spreadsheet {
  background-image: url("../images/ico-xls.png");
  background-size: 50px 50px;
  background-repeat: no-repeat;
  background-position: right center;
  display: inline-block;
  content: " ";
  height: inherit;
}
/* line 2145, ../sass/_mixins.scss */
.file-card-list .field__item .file--x-office-presentation {
  background-image: url("../images/ico-ppt.png");
  background-size: 50px 50px;
  background-repeat: no-repeat;
  background-position: right center;
  display: inline-block;
  content: " ";
  height: inherit;
}
/* line 2149, ../sass/_mixins.scss */
.file-card-list .field__item .file-download-card {
  background-color: white;
  width: 100%;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2149, ../sass/_mixins.scss */
  .file-card-list .field__item .file-download-card {
    flex-direction: row;
  }
}
/* line 2160, ../sass/_mixins.scss */
.file-card-list .field__item .file-download-card .file-details {
  width: 100%;
}
/* line 2162, ../sass/_mixins.scss */
.file-card-list .field__item .file-download-card .file-details .file-link-text {
  padding-top: 25px;
  padding-left: 1em;
}
/* line 2166, ../sass/_mixins.scss */
.file-card-list .field__item .file-download-card .file-details .file-size {
  padding-top: 0.5em;
  padding-left: 1em;
}
/* line 2171, ../sass/_mixins.scss */
.file-card-list .field__item .file-download-card .file {
  width: 50px;
  margin-right: 10px;
}
/* line 2113, ../sass/_mixins.scss */
.file-card-list .file {
  padding-left: 0;
}

/* line 1554, ../sass/components/_misc.scss */
.views-autocomplete {
  background-color: #e4e3e3;
  border-radius: 5px;
  margin: 10px auto;
  padding: 5px;
  text-align: center;
  width: 500px;
}
/* line 1562, ../sass/components/_misc.scss */
.views-autocomplete .ui-widget {
  background-color: #e4e3e3;
}
/* line 1566, ../sass/components/_misc.scss */
.views-autocomplete .autocomplete-box {
  border: medium none transparent;
  border-radius: 3px;
  height: 35px;
  text-align: left;
  width: 90%;
}
/* line 1574, ../sass/components/_misc.scss */
.views-autocomplete .submit {
  background: transparent none repeat scroll 0 0;
  border: medium none;
  outline: medium none;
}

/* line 1582, ../sass/components/_misc.scss */
h3.smaller-titled-cards, .smaller-titled-cards.field--name-field-social-phrase-group-title, .smaller-titled-cards.field--name-field-image-gallery-title {
  font-size: 1.125rem;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  margin: 0 0 11px 0;
  font-weight: bold;
  font-style: normal;
  color: #222;
  font-size: 1rem;
  font-size: 1rem;
}
@media all and (min-width: 1440px) {
  /* line 1582, ../sass/components/_misc.scss */
  h3.smaller-titled-cards, .smaller-titled-cards.field--name-field-social-phrase-group-title, .smaller-titled-cards.field--name-field-image-gallery-title {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1582, ../sass/components/_misc.scss */
  h3.smaller-titled-cards, .smaller-titled-cards.field--name-field-social-phrase-group-title, .smaller-titled-cards.field--name-field-image-gallery-title {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1582, ../sass/components/_misc.scss */
  h3.smaller-titled-cards, .smaller-titled-cards.field--name-field-social-phrase-group-title, .smaller-titled-cards.field--name-field-image-gallery-title {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1582, ../sass/components/_misc.scss */
  h3.smaller-titled-cards, .smaller-titled-cards.field--name-field-social-phrase-group-title, .smaller-titled-cards.field--name-field-image-gallery-title {
    font-size: 0.875rem;
  }
}
/* line 1585, ../sass/components/_misc.scss */
h3.smaller-titled-cards a:hover, .smaller-titled-cards.field--name-field-social-phrase-group-title a:hover, .smaller-titled-cards.field--name-field-image-gallery-title a:hover {
  text-shadow: .25px .25px;
}

/* line 1592, ../sass/components/_misc.scss */
.smaller-titled-cards .field--name-field-social-phrase-group-title, .smaller-titled-cards .field--name-field-image-gallery-title {
  font-size: 1rem;
}
@media all and (min-width: 1440px) {
  /* line 1592, ../sass/components/_misc.scss */
  .smaller-titled-cards .field--name-field-social-phrase-group-title, .smaller-titled-cards .field--name-field-image-gallery-title {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1592, ../sass/components/_misc.scss */
  .smaller-titled-cards .field--name-field-social-phrase-group-title, .smaller-titled-cards .field--name-field-image-gallery-title {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1592, ../sass/components/_misc.scss */
  .smaller-titled-cards .field--name-field-social-phrase-group-title, .smaller-titled-cards .field--name-field-image-gallery-title {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1592, ../sass/components/_misc.scss */
  .smaller-titled-cards .field--name-field-social-phrase-group-title, .smaller-titled-cards .field--name-field-image-gallery-title {
    font-size: 1rem;
  }
}

/* line 1601, ../sass/components/_misc.scss */
.breadcrumbs-container {
  padding: 0 25px;
  background-color: #f4f4f4;
  max-width: 100%;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1601, ../sass/components/_misc.scss */
  .breadcrumbs-container {
    padding: 0 17px;
  }
}

/* line 1611, ../sass/components/_misc.scss */
.breadcrumbs {
  font-size: 0.875rem;
  /*
  margin-left: 10px;
  @include bp-phone-and-tablet{
    padding-left: 50px;
  }
  */
}
/* line 1631, ../sass/components/_misc.scss */
.breadcrumbs ul {
  list-style: outside none none;
  padding: 1em 0 1em;
  margin: 0;
}
/* line 1637, ../sass/components/_misc.scss */
.breadcrumbs li {
  display: inline;
  padding: 5px;
  color: #222;
}
/* line 1643, ../sass/components/_misc.scss */
.breadcrumbs .breadcrumb-home {
  padding-left: 0px;
}
/* line 1647, ../sass/components/_misc.scss */
.breadcrumbs .breadcrumb-home-single {
  padding-left: 0px;
}
/* line 1651, ../sass/components/_misc.scss */
.breadcrumbs a {
  color: #222;
  font-size: 0.875rem;
}
/* line 1656, ../sass/components/_misc.scss */
.breadcrumbs .breadcrumb-current {
  color: #222;
  font-weight: 400;
  font-size: 0.875rem;
}
/* line 1661, ../sass/components/_misc.scss */
.breadcrumbs .back-to {
  display: none;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1666, ../sass/components/_misc.scss */
  .breadcrumbs .breacrumb-break, .breadcrumbs .breadcrumb-grandparent, .breadcrumbs .breadcrumb-home, .breadcrumbs .breadcrumb-current {
    display: none;
  }
  /* line 1669, ../sass/components/_misc.scss */
  .breadcrumbs .back-to {
    display: inline;
  }
  /* line 1673, ../sass/components/_misc.scss */
  .breadcrumbs li {
    padding: 0px;
  }
}

/* line 1681, ../sass/components/_misc.scss */
.ui-autocomplete a {
  display: block;
}

/* line 1688, ../sass/components/_misc.scss */
.all-foas-landing-top {
  display: flex;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1688, ../sass/components/_misc.scss */
  .all-foas-landing-top {
    display: block;
  }
}
/* line 1694, ../sass/components/_misc.scss */
.all-foas-landing-top .gov-delivery-foa-signup {
  margin-left: 20px;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1694, ../sass/components/_misc.scss */
  .all-foas-landing-top .gov-delivery-foa-signup {
    margin-top: 20px;
    margin-left: 0;
  }
}

/* line 1707, ../sass/components/_misc.scss */
.gov-delivery-foa-signup {
  margin: 0 1em;
  padding: 1em 1.5em;
  width: 50%;
  border: 1px solid #d7d7d7;
  border-radius: 8px;
  flex-shrink: 0;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1707, ../sass/components/_misc.scss */
  .gov-delivery-foa-signup {
    width: 100%;
  }
}
/* line 1718, ../sass/components/_misc.scss */
.gov-delivery-foa-signup .email-alert-text {
  font-size: 1.125rem;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  margin: 0 0 11px 0;
  font-weight: bold;
  font-style: normal;
  color: #222;
  font-size: 1rem;
  margin: 0;
  margin-bottom: 0.25em;
}
@media all and (min-width: 1440px) {
  /* line 1718, ../sass/components/_misc.scss */
  .gov-delivery-foa-signup .email-alert-text {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1718, ../sass/components/_misc.scss */
  .gov-delivery-foa-signup .email-alert-text {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1718, ../sass/components/_misc.scss */
  .gov-delivery-foa-signup .email-alert-text {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1718, ../sass/components/_misc.scss */
  .gov-delivery-foa-signup .email-alert-text {
    font-size: 0.875rem;
  }
}
/* line 1724, ../sass/components/_misc.scss */
.gov-delivery-foa-signup .form-type-email {
  float: left;
  margin: 0;
  max-width: 60%;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1724, ../sass/components/_misc.scss */
  .gov-delivery-foa-signup .form-type-email {
    max-width: 45%;
  }
}
/* line 1732, ../sass/components/_misc.scss */
.gov-delivery-foa-signup #edit-email {
  height: 32px;
  border: 1px solid #d7d7d7;
  border-radius: 4px;
  background-color: white;
}
/* line 1745, ../sass/components/_misc.scss */
.gov-delivery-foa-signup #edit-actions-submit {
  height: 32px;
  width: 119px;
  border-radius: 4px;
  background-color: #1A568C;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1745, ../sass/components/_misc.scss */
  .gov-delivery-foa-signup #edit-actions-submit {
    width: 75px;
  }
}
/* line 1754, ../sass/components/_misc.scss */
.gov-delivery-foa-signup #edit-sign-in {
  padding: 0;
  margin: 0;
}
/* line 1758, ../sass/components/_misc.scss */
.gov-delivery-foa-signup .form-type-email {
  padding: 0;
  margin: 0.5em 0;
}
/* line 1762, ../sass/components/_misc.scss */
.gov-delivery-foa-signup #edit-actions {
  display: inline-block;
  padding-left: 0.5em;
  margin: 0.5em 0;
}

/* line 1770, ../sass/components/_misc.scss */
.node--type-webform, .webform-submission-form {
  color: #222;
}
/* line 1772, ../sass/components/_misc.scss */
.node--type-webform .flexItemHalf, .webform-submission-form .flexItemHalf {
  width: 50%;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1772, ../sass/components/_misc.scss */
  .node--type-webform .flexItemHalf, .webform-submission-form .flexItemHalf {
    width: 100%;
  }
}
/* line 1779, ../sass/components/_misc.scss */
.node--type-webform .description, .webform-submission-form .description {
  font-size: 0.875rem;
}
/* line 1783, ../sass/components/_misc.scss */
.node--type-webform .flexItemHalf:first-child, .webform-submission-form .flexItemHalf:first-child {
  border-right: 1px solid #a5a5a5;
  padding-right: 20px;
}
/* line 1788, ../sass/components/_misc.scss */
.node--type-webform .gov-delivery-signup-main, .webform-submission-form .gov-delivery-signup-main {
  margin-bottom: 50px;
}
/* line 1790, ../sass/components/_misc.scss */
.node--type-webform .gov-delivery-signup-main .field--name-webform, .webform-submission-form .gov-delivery-signup-main .field--name-webform {
  padding-left: 60px;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1790, ../sass/components/_misc.scss */
  .node--type-webform .gov-delivery-signup-main .field--name-webform, .webform-submission-form .gov-delivery-signup-main .field--name-webform {
    padding-left: 0px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1797, ../sass/components/_misc.scss */
  .node--type-webform .gov-delivery-signup-main .form-item, .node--type-webform .gov-delivery-signup-main .form-actions, .webform-submission-form .gov-delivery-signup-main .form-item, .webform-submission-form .gov-delivery-signup-main .form-actions {
    text-align: center;
  }
}
/* line 1803, ../sass/components/_misc.scss */
.node--type-webform .gov-delivery-signup-main #edit-actions, .webform-submission-form .gov-delivery-signup-main #edit-actions {
  margin-bottom: 0;
}
/* line 1817, ../sass/components/_misc.scss */
.node--type-webform #edit-email--description, .webform-submission-form #edit-email--description {
  margin: 10px 0;
}
/* line 1821, ../sass/components/_misc.scss */
.node--type-webform .webform-button--submit, .webform-submission-form .webform-button--submit {
  background-color: #1a568c;
  border: medium none;
  border-radius: 25px;
  outline: medium none;
  margin-left: 0;
  margin-right: 0;
  padding: 0 15px;
  color: white;
  height: 50px;
  width: 230px;
}
/* line 1834, ../sass/components/_misc.scss */
.node--type-webform .form-email, .webform-submission-form .form-email {
  height: 50px;
  padding-left: 20px;
  border: 1px solid #ddd;
  border-radius: 2px;
}
/* line 1841, ../sass/components/_misc.scss */
.node--type-webform .field--name-field-status-message, .webform-submission-form .field--name-field-status-message {
  margin-bottom: 15px;
}
/* line 1846, ../sass/components/_misc.scss */
.node--type-webform input[type=checkbox], .webform-submission-form input[type=checkbox] {
  display: none;
}
/* line 1849, ../sass/components/_misc.scss */
.node--type-webform input[type=checkbox] + label, .webform-submission-form input[type=checkbox] + label {
  background-image: url("../images/uncheckedbox.png");
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: initial;
  display: inline-block;
  content: " ";
  height: 20px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1849, ../sass/components/_misc.scss */
  .node--type-webform input[type=checkbox] + label, .webform-submission-form input[type=checkbox] + label {
    background-size: 20px 20px;
    height: 20px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1849, ../sass/components/_misc.scss */
  .node--type-webform input[type=checkbox] + label, .webform-submission-form input[type=checkbox] + label {
    background-size: 20px 20px;
    height: 20px;
  }
}
/* line 1852, ../sass/components/_misc.scss */
.node--type-webform input[type=checkbox]:checked + label, .webform-submission-form input[type=checkbox]:checked + label {
  background-image: url("../images/checkedbox.png");
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: initial;
  display: inline-block;
  content: " ";
  height: 20px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1852, ../sass/components/_misc.scss */
  .node--type-webform input[type=checkbox]:checked + label, .webform-submission-form input[type=checkbox]:checked + label {
    background-size: 20px 20px;
    height: 20px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1852, ../sass/components/_misc.scss */
  .node--type-webform input[type=checkbox]:checked + label, .webform-submission-form input[type=checkbox]:checked + label {
    background-size: 20px 20px;
    height: 20px;
  }
}
/* line 1856, ../sass/components/_misc.scss */
.node--type-webform .form-type-checkbox, .webform-submission-form .form-type-checkbox {
  margin-bottom: 1.5em;
}
/* line 1859, ../sass/components/_misc.scss */
.node--type-webform .form-type-checkbox label, .webform-submission-form .form-type-checkbox label {
  padding-left: 30px;
}
/* line 1861, ../sass/components/_misc.scss */
.node--type-webform .form-type-checkbox label span, .webform-submission-form .form-type-checkbox label span {
  font-size: 0.875rem;
}
/* line 1865, ../sass/components/_misc.scss */
.node--type-webform .form-type-checkbox .description, .webform-submission-form .form-type-checkbox .description {
  margin: 0;
  padding-left: 30px;
}
/* line 1875, ../sass/components/_misc.scss */
.node--type-webform .form-type-textfield .required-message, .node--type-webform .form-type-textarea .required-message, .node--type-webform .form-type-email .required-message, .node--type-webform .form-type-select .required-message, .webform-submission-form .form-type-textfield .required-message, .webform-submission-form .form-type-textarea .required-message, .webform-submission-form .form-type-email .required-message, .webform-submission-form .form-type-select .required-message {
  color: red;
}
/* line 1881, ../sass/components/_misc.scss */
.node--type-webform .form-required span, .webform-submission-form .form-required span {
  color: #222;
}
/* line 1886, ../sass/components/_misc.scss */
.node--type-webform .form-required::after, .webform-submission-form .form-required::after {
  background-image: none;
}
/* line 1890, ../sass/components/_misc.scss */
.node--type-webform .form-text, .node--type-webform textarea, .webform-submission-form .form-text, .webform-submission-form textarea {
  border: 1px solid #D7D7D7;
  border-radius: 4px;
}
/* line 1895, ../sass/components/_misc.scss */
.node--type-webform .form-item input.error, .node--type-webform .form-item textarea.error, .node--type-webform .form-item select.error, .webform-submission-form .form-item input.error, .webform-submission-form .form-item textarea.error, .webform-submission-form .form-item select.error {
  border: 1px solid #D7D7D7;
}
/* line 1904, ../sass/components/_misc.scss */
.node--type-webform .required.error + div.description, .webform-submission-form .required.error + div.description {
  display: block;
}
/* line 1908, ../sass/components/_misc.scss */
.node--type-webform .form-email, .node--type-webform .form-text, .node--type-webform .form-type-select select, .webform-submission-form .form-email, .webform-submission-form .form-text, .webform-submission-form .form-type-select select {
  height: 32px;
  width: 300px;
}
/* line 1912, ../sass/components/_misc.scss */
.node--type-webform .form-item-type-of-request, .webform-submission-form .form-item-type-of-request {
  width: 300px;
}
/* line 1916, ../sass/components/_misc.scss */
.node--type-webform textarea, .webform-submission-form textarea {
  width: 500px;
}
/* line 1921, ../sass/components/_misc.scss */
.node--type-webform label span, .webform-submission-form label span {
  font-size: 1rem;
}
@media all and (min-width: 1440px) {
  /* line 1921, ../sass/components/_misc.scss */
  .node--type-webform label span, .webform-submission-form label span {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1921, ../sass/components/_misc.scss */
  .node--type-webform label span, .webform-submission-form label span {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1921, ../sass/components/_misc.scss */
  .node--type-webform label span, .webform-submission-form label span {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1921, ../sass/components/_misc.scss */
  .node--type-webform label span, .webform-submission-form label span {
    font-size: 1rem;
  }
}
/* line 1929, ../sass/components/_misc.scss */
.node--type-webform .messages--error, .webform-submission-form .messages--error {
  background-image: url("../images/ico-warningalert.png");
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: 20px 10px;
  display: block;
  content: " ";
  height: auto;
  box-shadow: none;
  border: none;
  background-color: #f2dedf;
}
/* line 1938, ../sass/components/_misc.scss */
.node--type-webform .messages__item, .webform-submission-form .messages__item {
  color: #222;
}
/* line 1942, ../sass/components/_misc.scss */
.node--type-webform #contact-webform-top, .node--type-webform #strategicvision-contact-webform-top, .webform-submission-form #contact-webform-top, .webform-submission-form #strategicvision-contact-webform-top {
  background-color: #f2f2f2;
  padding: 20px 0;
}
/* line 1947, ../sass/components/_misc.scss */
.node--type-webform .field--name-field-right-block, .webform-submission-form .field--name-field-right-block {
  margin-left: 20px;
  background-color: white;
  padding: 10px 15px;
  white-space: nowrap;
}
/* line 1954, ../sass/components/_misc.scss */
.node--type-webform #strategicvision-contact-webform-top .field--name-field-right-block, .webform-submission-form #strategicvision-contact-webform-top .field--name-field-right-block {
  height: 75px;
}
/* line 1962, ../sass/components/_misc.scss */
.node--type-webform .text-count-wrapper .text-count-message, .webform-submission-form .text-count-wrapper .text-count-message {
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.75rem;
  color: #222;
}
/* line 1966, ../sass/components/_misc.scss */
.node--type-webform .text-count-wrapper .text-count-message .text-count, .webform-submission-form .text-count-wrapper .text-count-message .text-count {
  color: #017A36;
}
/* line 1972, ../sass/components/_misc.scss */
.node--type-webform textarea.error, .node--type-webform input.error, .webform-submission-form textarea.error, .webform-submission-form input.error {
  background-color: white;
}
/* line 1976, ../sass/components/_misc.scss */
.node--type-webform .select2-selection, .webform-submission-form .select2-selection {
  border-color: #d7d7d7;
}
/* line 1979, ../sass/components/_misc.scss */
.node--type-webform .select2-selection:focus, .webform-submission-form .select2-selection:focus {
  outline: #bf0d2e 3px dotted;
}
/* line 1983, ../sass/components/_misc.scss */
.node--type-webform .select2-dropdown, .webform-submission-form .select2-dropdown {
  background: white;
  border: 1px solid #E6E8ED;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}
/* line 1990, ../sass/components/_misc.scss */
.node--type-webform .select2-results__option--highlighted, .webform-submission-form .select2-results__option--highlighted {
  background: #F1F7FB;
  color: #222;
}
/* line 1995, ../sass/components/_misc.scss */
.node--type-webform .select2-container--default .select2-results__option[aria-selected="true"], .webform-submission-form .select2-container--default .select2-results__option[aria-selected="true"] {
  background: white;
}
/* line 2001, ../sass/components/_misc.scss */
.node--type-webform .select2-container--default .select2-results__option--highlighted[aria-selected], .webform-submission-form .select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #F1F7FB;
  color: #222;
}
/* line 2006, ../sass/components/_misc.scss */
.node--type-webform .select2-search--dropdown, .webform-submission-form .select2-search--dropdown {
  display: none;
}
/* line 2011, ../sass/components/_misc.scss */
.node--type-webform .select2-selection__arrow, .webform-submission-form .select2-selection__arrow {
  background-image: url("../images/dropdownarrow.png");
  background-size: 10px 10px;
  background-repeat: no-repeat;
  background-position: center center;
  display: inline-block;
  content: " ";
  height: 10px;
}
/* line 2013, ../sass/components/_misc.scss */
.node--type-webform .select2-selection__arrow b, .webform-submission-form .select2-selection__arrow b {
  display: none;
}

/*.view-site-alerts{
  .warning{
    background-color: #F2DEDF;
    .views-field-title{
      @include background-icon-single('ico-warningalert.png', 20px, 20px, auto, block, 0 20px);
    }
  }
  .information{
    background-color: #FDF8E4;
    .views-field-title {
      @include background-icon-single('ico-infoalert.png', 20px, 20px, auto, block, 0 20px);
    }
  }
  .views-field-title {
    span{
      padding-left: 20px;
      @extend .alerttitle;
      color: $dark-grey;
    }
    padding: 20px 0 0 20px;
  }
  .views-field-body{
    padding: 0 0 0 40px;
    color: $dark-grey;
  }
  .readMoreAlertText{
    padding: 0 0 20px 40px;
    color: $dark-grey;
  }
  .readMoreAlertLink {
    border-radius: 2px;
    font-family: $sans;
    font-size: $font-size-num-7;
    margin: auto 0 auto 20px;
    padding: 2px 15px;
    cursor: pointer;
  }
  .readLessAlertLink {
    border-radius: 2px;
    font-family: $sans;
    font-size: $font-size-num-7;
    padding: 2px 15px;
    cursor: pointer;
  }
  .warning .readMoreAlertLink,.warning .readLessAlertLink {
    border: 1px solid #850920;

  }
  .information .readMoreAlertLink,.information .readLessAlertLink {
    border: 1px solid #F6A623;
  }
}

*/
/* line 2082, ../sass/components/_misc.scss */
.field--name-field-gallery-image-item {
  display: flex;
  flex-wrap: wrap;
  margin: 0.5em 0;
}

/* line 2088, ../sass/components/_misc.scss */
.field--name-field-gallery-image-item > .field__item {
  width: 30%;
  margin: 0 1em 1em 0;
}

/* line 2094, ../sass/components/_misc.scss */
.field--name-field-gallery-item-image > img {
  cursor: pointer;
  border: 0.5px solid #D7D7D7;
}

/* line 2099, ../sass/components/_misc.scss */
.image-gallery-item-modal-wrapper {
  display: none;
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 150%;
  text-align: center;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
}
/* line 2109, ../sass/components/_misc.scss */
.image-gallery-item-modal-wrapper .image-gallery-item-modal {
  margin: 120px auto;
  max-width: 80%;
  display: flex;
}
/* line 2114, ../sass/components/_misc.scss */
.image-gallery-item-modal-wrapper .image-gallery-item-modal .image-gallery-item-modal-first {
  background-color: white;
  width: 66%;
}
/* line 2118, ../sass/components/_misc.scss */
.image-gallery-item-modal-wrapper .image-gallery-item-modal .image-gallery-item-modal-second {
  background-color: white;
  padding: 20px;
  text-align: left;
  width: 34%;
  display: flex;
  flex-direction: column;
}
/* line 2127, ../sass/components/_misc.scss */
.image-gallery-item-modal-wrapper .image-gallery-item-modal .field--name-field-social-channels .field__item:not(:first-child) {
  padding-left: 5px;
}
/* line 2136, ../sass/components/_misc.scss */
.image-gallery-item-modal-wrapper .prev-item {
  background-image: url("../images/ico-previousarrowlightbox.png");
  background-size: 40px 40px;
  background-repeat: no-repeat;
  background-position: initial;
  display: inline-block;
  content: " ";
  height: 40px;
  width: 60px;
  margin: auto 40px;
  cursor: pointer;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2136, ../sass/components/_misc.scss */
  .image-gallery-item-modal-wrapper .prev-item {
    background-size: 40px 40px;
    height: 40px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2136, ../sass/components/_misc.scss */
  .image-gallery-item-modal-wrapper .prev-item {
    background-size: 40px 40px;
    height: 40px;
  }
}
/* line 2143, ../sass/components/_misc.scss */
.image-gallery-item-modal-wrapper .next-item {
  background-image: url("../images/ico-nextarrowlightbox.png");
  background-size: 40px 40px;
  background-repeat: no-repeat;
  background-position: initial;
  display: inline-block;
  content: " ";
  height: 40px;
  width: 60px;
  margin: auto 40px;
  cursor: pointer;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2143, ../sass/components/_misc.scss */
  .image-gallery-item-modal-wrapper .next-item {
    background-size: 40px 40px;
    height: 40px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2143, ../sass/components/_misc.scss */
  .image-gallery-item-modal-wrapper .next-item {
    background-size: 40px 40px;
    height: 40px;
  }
}
/* line 2150, ../sass/components/_misc.scss */
.image-gallery-item-modal-wrapper .image-dialog-close-button {
  cursor: pointer;
  background-image: url("../images/ico-cross-white.png");
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: initial;
  display: inline-block;
  content: " ";
  height: 20px;
  display: inline-block;
  width: 20px;
  height: 20px;
  padding: 5px 25px 0 0;
  background-position: right 10px center;
  float: right;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2150, ../sass/components/_misc.scss */
  .image-gallery-item-modal-wrapper .image-dialog-close-button {
    background-size: 20px 20px;
    height: 20px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2150, ../sass/components/_misc.scss */
  .image-gallery-item-modal-wrapper .image-dialog-close-button {
    background-size: 20px 20px;
    height: 20px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2150, ../sass/components/_misc.scss */
  .image-gallery-item-modal-wrapper .image-dialog-close-button {
    padding-right: 10px;
  }
}
/* line 2164, ../sass/components/_misc.scss */
.image-gallery-item-modal-wrapper h5, .image-gallery-item-modal-wrapper h1.image-gallery-item-image-title {
  padding-bottom: 0;
  margin-bottom: 0;
}
/* line 2169, ../sass/components/_misc.scss */
.image-gallery-item-modal-wrapper h1.image-gallery-item-image-title {
  padding-bottom: 0;
  margin-bottom: 0;
}
/* line 2175, ../sass/components/_misc.scss */
.image-gallery-item-modal-wrapper .image-dialog-close-image-button {
  margin-top: 0;
}

/* line 2181, ../sass/components/_misc.scss */
.field--name-field-social-phrase-group-title, .field--name-field-image-gallery-title {
  font-size: 1.25rem;
  margin: 1.5em 0 0.25em;
  padding: 0;
}
@media all and (min-width: 1440px) {
  /* line 2181, ../sass/components/_misc.scss */
  .field--name-field-social-phrase-group-title, .field--name-field-image-gallery-title {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2181, ../sass/components/_misc.scss */
  .field--name-field-social-phrase-group-title, .field--name-field-image-gallery-title {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2181, ../sass/components/_misc.scss */
  .field--name-field-social-phrase-group-title, .field--name-field-image-gallery-title {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2181, ../sass/components/_misc.scss */
  .field--name-field-social-phrase-group-title, .field--name-field-image-gallery-title {
    font-size: 1rem;
  }
}

/* line 2188, ../sass/components/_misc.scss */
h3.flataccordionheading, .flataccordionheading.field--name-field-social-phrase-group-title, .flataccordionheading.field--name-field-image-gallery-title {
  margin: 0.5em 0 0.25em;
  padding: 0;
}

/* line 2192, ../sass/components/_misc.scss */
.paragraph--type--social-phrase-item {
  margin: 1em 0;
  padding: 1em 1em 0;
  border: 1px solid #979797;
}

/* line 2200, ../sass/components/_misc.scss */
.field--name-field-social-phrase-item-channel .field__item, .field--name-field-social-channels .field__item {
  padding: .2em;
}
/* line 2204, ../sass/components/_misc.scss */
.field--name-field-social-phrase-item-channel .facebook, .field--name-field-social-channels .facebook {
  background-image: url("../images/ico-fb.png");
  background-size: 25px 25px;
  background-repeat: no-repeat;
  background-position: initial;
  display: inline-block;
  content: " ";
  height: 25px;
  width: auto;
  cursor: pointer;
  padding-left: 2em;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2204, ../sass/components/_misc.scss */
  .field--name-field-social-phrase-item-channel .facebook, .field--name-field-social-channels .facebook {
    background-size: 25px 25px;
    height: 25px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2204, ../sass/components/_misc.scss */
  .field--name-field-social-phrase-item-channel .facebook, .field--name-field-social-channels .facebook {
    background-size: 25px 25px;
    height: 25px;
  }
}
/* line 2210, ../sass/components/_misc.scss */
.field--name-field-social-phrase-item-channel .twitter, .field--name-field-social-channels .twitter {
  background-image: url("../images/ico-tw.png");
  background-size: 25px 25px;
  background-repeat: no-repeat;
  background-position: initial;
  display: inline-block;
  content: " ";
  height: 25px;
  width: auto;
  cursor: pointer;
  padding-left: 2em;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2210, ../sass/components/_misc.scss */
  .field--name-field-social-phrase-item-channel .twitter, .field--name-field-social-channels .twitter {
    background-size: 25px 25px;
    height: 25px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2210, ../sass/components/_misc.scss */
  .field--name-field-social-phrase-item-channel .twitter, .field--name-field-social-channels .twitter {
    background-size: 25px 25px;
    height: 25px;
  }
}
/* line 2216, ../sass/components/_misc.scss */
.field--name-field-social-phrase-item-channel .instagram, .field--name-field-social-channels .instagram {
  background-image: url("../images/ico-instagram.png");
  background-size: 25px 25px;
  background-repeat: no-repeat;
  background-position: initial;
  display: inline-block;
  content: " ";
  height: 25px;
  width: auto;
  cursor: pointer;
  padding-left: 2em;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2216, ../sass/components/_misc.scss */
  .field--name-field-social-phrase-item-channel .instagram, .field--name-field-social-channels .instagram {
    background-size: 25px 25px;
    height: 25px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2216, ../sass/components/_misc.scss */
  .field--name-field-social-phrase-item-channel .instagram, .field--name-field-social-channels .instagram {
    background-size: 25px 25px;
    height: 25px;
  }
}
/* line 2222, ../sass/components/_misc.scss */
.field--name-field-social-phrase-item-channel .linkedin, .field--name-field-social-channels .linkedin {
  background-image: url("../images/ico-linkedin-square.png");
  background-size: 25px 25px;
  background-repeat: no-repeat;
  background-position: initial;
  display: inline-block;
  content: " ";
  height: 25px;
  width: auto;
  cursor: pointer;
  padding-left: 2em;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2222, ../sass/components/_misc.scss */
  .field--name-field-social-phrase-item-channel .linkedin, .field--name-field-social-channels .linkedin {
    background-size: 25px 25px;
    height: 25px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2222, ../sass/components/_misc.scss */
  .field--name-field-social-phrase-item-channel .linkedin, .field--name-field-social-channels .linkedin {
    background-size: 25px 25px;
    height: 25px;
  }
}
/* line 2228, ../sass/components/_misc.scss */
.field--name-field-social-phrase-item-channel .mail, .field--name-field-social-channels .mail {
  background-image: url("../images/ico-email.png");
  background-size: 27.75px 18px;
  background-repeat: no-repeat;
  background-position: initial;
  display: inline-block;
  content: " ";
  height: 18px;
  width: auto;
  cursor: pointer;
  padding-left: 2em;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2228, ../sass/components/_misc.scss */
  .field--name-field-social-phrase-item-channel .mail, .field--name-field-social-channels .mail {
    background-size: 27.75px 18px;
    height: 18px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2228, ../sass/components/_misc.scss */
  .field--name-field-social-phrase-item-channel .mail, .field--name-field-social-channels .mail {
    background-size: 27.75px 18px;
    height: 18px;
  }
}

/* line 2236, ../sass/components/_misc.scss */
.field--name-field-social-phrase-item-channel {
  display: flex;
}

/* line 2243, ../sass/components/_misc.scss */
.field--name-field-social-phrase-item-channel .field__item:not(:first-child) {
  padding-left: 5px;
}

/* line 2248, ../sass/components/_misc.scss */
.field--name-field-social-phrase-item-text {
  font-size: 1rem;
}
@media all and (min-width: 1440px) {
  /* line 2248, ../sass/components/_misc.scss */
  .field--name-field-social-phrase-item-text {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2248, ../sass/components/_misc.scss */
  .field--name-field-social-phrase-item-text {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2248, ../sass/components/_misc.scss */
  .field--name-field-social-phrase-item-text {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2248, ../sass/components/_misc.scss */
  .field--name-field-social-phrase-item-text {
    font-size: 1rem;
  }
}

/* line 2254, ../sass/components/_misc.scss */
.paragraph--type--intro-text {
  margin: 3em 0 1.5em;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  /* line 2262, ../sass/components/_misc.scss */
  body figure.caption {
    display: block;
    max-width: inherit;
  }
  /* line 2265, ../sass/components/_misc.scss */
  body figure.caption img {
    display: block;
    max-width: 100%;
  }
  /* line 2269, ../sass/components/_misc.scss */
  body figure.caption figcaption {
    display: block;
  }
  /* line 2275, ../sass/components/_misc.scss */
  body figure.align-center img {
    margin-left: auto;
    margin-right: auto;
  }
  /* line 2279, ../sass/components/_misc.scss */
  body figure.align-center figcaption {
    margin-left: auto;
    margin-right: auto;
  }
  /* line 2286, ../sass/components/_misc.scss */
  body .embedded-image-and-photocredit-wrapper.align-center .embedded-image-and-photocredit-container img {
    margin-left: auto;
    margin-right: auto;
  }
  /* line 2291, ../sass/components/_misc.scss */
  body .embedded-image-and-photocredit-wrapper.align-center .embedded-image-caption {
    margin-left: auto;
    margin-right: auto;
  }
}
/* line 2300, ../sass/components/_misc.scss */
figcaption, .embedded-image-caption {
  font-size: 0.875rem;
}

/* line 2304, ../sass/components/_misc.scss */
input[type="submit"], input[type="reset"], input[type="button"] {
  font-size: 1rem;
}
@media all and (min-width: 1440px) {
  /* line 2304, ../sass/components/_misc.scss */
  input[type="submit"], input[type="reset"], input[type="button"] {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2304, ../sass/components/_misc.scss */
  input[type="submit"], input[type="reset"], input[type="button"] {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2304, ../sass/components/_misc.scss */
  input[type="submit"], input[type="reset"], input[type="button"] {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2304, ../sass/components/_misc.scss */
  input[type="submit"], input[type="reset"], input[type="button"] {
    font-size: 1rem;
  }
}

/* line 2309, ../sass/components/_misc.scss */
div.ui-accordion {
  line-height: 1.5;
  clear: both;
}

/* line 2315, ../sass/components/_misc.scss */
.ui-helper-reset, div.ui-helper-reset, h2.accordion-header, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.accordion-header, .accordion-header.contact-method-label {
  line-height: 1.5 !important;
}

/* line 2319, ../sass/components/_misc.scss */
.file-download-card.flexcontainer, .file-download-card.related-ht-ser-container, .file-download-card.field--name-field-sfa-card, .file-download-card.field--name-field-speaker,
.file-download-card.field--name-field-executives, .file-download-card.standard-card-field, .file-download-card.field--name-field-advisory-committees, .file-download-card.contact-nhlbi-titleblock, .file-download-card.field--name-field-contact-cards, .file-download-card.field--name-field-employment-opportunity-car, .file-download-card.all-grants-foa-container,
.file-download-card.field--name-field-program-officers,
.view-id-nhlbi_grants_foa.view-display-id-block_2 > .file-download-card.view-content,
.view-id-nhlbi_grants_foa.view-display-id-block_3 > .file-download-card.view-content, .node--type-individual-contact .file-download-card.field--name-field-contact-methods,
.node--type-division.node--view-mode-full .file-download-card.field--name-field-contact-methods,
.node--type-division.node--view-mode-subscribe .file-download-card.field--name-field-contact-methods,
.node--type-branch.node--view-mode-full .file-download-card.field--name-field-contact-methods,
.node--type-branch.node--view-mode-subscribe .file-download-card.field--name-field-contact-methods,
.node--type-general.node--view-mode-full .file-download-card.field--name-field-contact-methods,
.node--type-general.node--view-mode-subscribe .file-download-card.field--name-field-contact-methods,
.node--type-health-education-initiative.node--view-mode-full .file-download-card.field--name-field-contact-methods,
.node--type-health-education-initiative.node--view-mode-subscribe .file-download-card.field--name-field-contact-methods, .node--type-committee .file-download-card.field--name-field-card-text, .news-and-events--landing .file-download-card.landing-social, .file-download-card.field--name-field-sfa-cards, .file-download-card.locationMap.contact-location-map-container, .file-download-card.locationMap, .file-download-card.grants-and-training-card-wrapper, .file-download-card.about-nhlbi-division-card-wrapper, .file-download-card.hei-tools-icon-card-wrapper, .file-download-card.field--name-field-grants-and-training-card, .file-download-card.field--name-field-division-card, .file-download-card.field--name-field-tool-icon-card, .file-download-card.field--name-field-promotional-card, .file-download-card.field--name-field-sv-promotional-cards, .file-download-card.field--name-field-about-nhlbi-promotional-ca, .file-download-card.strategic-vision-titleblock, .file-download-card.ppg-titleblock-wrapper, .file-download-card.ppg-guidelines-card-wrapper, .file-download-card.field--name-field-human-subject-cards, .file-download-card.field--name-field-section-card, .file-download-card.field--name-field-highlight-card, .file-download-card.health-topic-teaser-container, .file-download-card.about-nhlbi-our-mission-wrapper, .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .file-download-card.director-bioCard, .nhlbi-publications-and-resources--landing .file-download-card.field--name-field-health-consumer-nhlbi-publ,
.nhlbi-publications-and-resources--landing .file-download-card.field--name-field-health-professionals-nhlbi, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .file-download-card.standard-teaser,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .file-download-card.standard-teaser, .publicationsBlock.view-nhlbi-publications > .file-download-card.view-content,
.file-download-card.field--name-field-related-publications, .healthEducationBlock .file-download-card.standard-teaser, .systematicEvidenceReviewsBlock .file-download-card.view-content,
.clinicalPracticeGuidelinesBlock .file-download-card.view-content,
.publicationsAndFactSheetsBlock .file-download-card.view-content, .file-download-card.rtFlexContainer, .node--type-research-topic .file-download-card.field--name-field-science-supplemental-page, .node--type-research-topic .file-download-card.researchTopicPublications, .node--type-research-topic .field--name-field-content > .field__item article.file-download-card.listTeaserCard, .node--type-research-topic .field--name-field-content > .field__item article.file-download-card.standard-teaser,
.node--type-research-topic .field--name-field-content > .field__item article.file-download-card.newsEventsCard, .file-download-card.esi-feature-card, .file-download-card.featured-science-instance-teaser-container, .file-download-card.sfa-teaser-container, .training-opportunity-card .file-download-card.field--name-field-associated-people, .file-download-card.field--name-field-featured-training-opportun, .file-download-card.field--name-field-career-stages, .file-download-card.field--name-field-workforce-development-card, .file-download-card.node--type-update.node--view-mode-executive-teaser, .file-download-card.news-and-events-titleblock, .contact-box > .file-download-card.field--name-field-contact-methods, .file-download-card.leadership-container, .leadership-container .leadership-deputy-director-container .file-download-card.field--name-field-additional-leadership, .file-download-card.branch-leadership-container, .branch-leadership-container .leadership-deputy-director-container .file-download-card.field--name-field-additional-leadership, .node--type-general .file-download-card.field--name-field-related-publications, .node--type-general .file-download-card.field--name-field-general-publications-rlt, .node--type-general .field--name-field-general-publications-rlt > .field__item .file-download-card.standard-teaser, .node--type-general .field--name-field-related-publications > .field__item .file-download-card.standard-teaser, .file-download-card.objective-text-container, .file-download-card.objective-list-container, .file-download-card.field--name-field-goal-card, .file-download-card.strategic-vision-landing-goals-wrapper, .node--type-principal-investigator .file-download-card.striped-container-wrapper, .node--type-principal-investigator .file-download-card.striped-container, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article.file-download-card,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article.file-download-card, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .file-download-card.standard-teaser.node--view-mode-short-teaser, .file-download-card.field--name-field-awards, .file-download-card.registerSocialContainer, .file-download-card.eventdatesLocationType, .file-download-card.news-article-container, .file-download-card.node--type-feature-article.node--view-mode-press-release-teaser,
.file-download-card.node--type-press-release.node--view-mode-press-release-teaser,
.file-download-card.node--type-events.node--view-mode-press-release-teaser,
.file-download-card.node--type-feature-article.node--view-mode-hp-press-release-teaser,
.file-download-card.node--type-press-release.node--view-mode-hp-press-release-teaser,
.file-download-card.node--type-events.node--view-mode-hp-press-release-teaser,
.file-download-card.node--type-news-mention.node--view-mode-hp-press-release-teaser, .file-download-card.news-header-container, .contacts-container .file-download-card.field--name-field-contacts, .publicationsBox .file-download-card.field--name-field-related-publications, .file-download-card.field--name-field-primary-featured-item, .file-download-card.field--name-field-additional-featured-items, .file-download-card.homepage-health-topics-container, .file-download-card.homepage-mission-areas-container, .file-download-card.homepage-location-container, .file-download-card.field--name-field-alumni, .node--type-nhlbi-publication.node--view-mode-full .file-download-card.nhlbi-publication-details-container,
.node--type-nhlbi-publication.node--view-mode-subscribe .file-download-card.nhlbi-publication-details-container, .node--type-nhlbi-publication.node--view-mode-full .file-download-card.field--name-field-related-nhlbi-publications,
.node--type-nhlbi-publication.node--view-mode-subscribe .file-download-card.field--name-field-related-nhlbi-publications, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .file-download-card.standard-teaser,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .file-download-card.standard-teaser {
  overflow: visible;
}

/* line 2325, ../sass/components/_misc.scss */
article .herobannertitle a, article .herobannertitle-grey a {
  display: block;
}
/* line 2328, ../sass/components/_misc.scss */
article .herobannertitle a:active > span, article .herobannertitle-grey a:active > span, article .herobannertitle a:focus > span, article .herobannertitle-grey a:focus > span {
  outline: none !important;
}

/* Overrides */
/* WYSIWYG Editor Overrides */
/* line 6, ../sass/components/_overrides.scss */
.sidebar-first .rxbodyfield[style] {
  max-width: 799px !important;
}

/* line 10, ../sass/components/_overrides.scss */
.sidebar-second .rxbodyfield[style] {
  max-width: 768px !important;
}

/* line 14, ../sass/components/_overrides.scss */
.two-sidebars .rxbodyfield[style] {
  max-width: 565px !important;
}

/* line 18, ../sass/components/_overrides.scss */
.rxbodyfield p:first-child, .field-name-body p:first-child {
  margin-top: 0;
}

/* TO REMOVE EXTRA MARGIN WHEN AN H3 IS INSIDE AN LI */
/* line 22, ../sass/components/_overrides.scss */
li h3, li .smaller-titled-cards .field--name-field-social-phrase-group-title, .smaller-titled-cards li .field--name-field-social-phrase-group-title, li .smaller-titled-cards .field--name-field-image-gallery-title, .smaller-titled-cards li .field--name-field-image-gallery-title, li .field--name-field-social-phrase-group-title, li .field--name-field-image-gallery-title {
  margin: 0;
}

/* TO REMOVE HOVER/FOCUS COLOR ON IMAGES */
/* line 27, ../sass/components/_overrides.scss */
a:hover img, a:focus img {
  background-color: transparent !important;
}

/* line 32, ../sass/components/_overrides.scss */
.float-right {
  float: right !important;
}

/* line 37, ../sass/components/_overrides.scss */
hr {
  border-color: #cccccc;
}

/* various chosen select elements */
/* line 42, ../sass/components/_overrides.scss */
.views-exposed-form .views-exposed-widget {
  padding-top: 1em;
}

/* line 51, ../sass/components/_overrides.scss */
.views-exposed-widget #edit-field-publish-date-value-min-year ~ .chosen-container,
.views-exposed-widget #edit-field-publish-date-value-max-year ~ .chosen-container,
.views-exposed-widget #edit-field-date-value-min-year ~ .chosen-container,
.views-exposed-widget #edit-field-date-value-max-year ~ .chosen-container {
  width: 100px !important;
  margin-right: 10px;
}
/* line 56, ../sass/components/_overrides.scss */
.views-exposed-widget .form-type-date-select .chosen-container {
  margin-top: -4px;
}

/* embedbed video overrides */
/* line 63, ../sass/components/_overrides.scss */
.video-embed-field-responsive-video {
  position: relative;
  width: 50%;
  height: 50%;
  margin-left: auto;
  margin-right: auto;
}

/* line 70, ../sass/components/_overrides.scss */
.field-video-title-container {
  margin-left: auto;
  margin-right: auto;
  width: 50%;
  -ms-word-break: break-word;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  word-break: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  -ms-hyphens: auto;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 70, ../sass/components/_overrides.scss */
  .field-video-title-container {
    width: 100%;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 70, ../sass/components/_overrides.scss */
  .field-video-title-container {
    width: 100%;
  }
}
/* line 89, ../sass/components/_overrides.scss */
.field-video-title-container .field--name-field-video-title {
  padding: 20px 25px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  color: #222222;
  font-size: 19px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  text-align: left;
  border: 1px solid #D7D7D7;
  border-radius: 0px 0px 8px 8px;
}

/* line 104, ../sass/components/_overrides.scss */
.field--name-field-video-description {
  margin-left: auto;
  margin-right: auto;
  width: 50%;
  -ms-word-break: break-word;
  font-size: 0.875rem;
  word-break: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  -ms-hyphens: auto;
}
/* line 119, ../sass/components/_overrides.scss */
.field--name-field-video-description p {
  font-size: 0.875rem;
}

/* line 127, ../sass/components/_overrides.scss */
.media-nhlbi-video .video-embed-field-responsive-video, .node--type-press-release .field--type-text-long
.video-embed-field-responsive-video, .node--type-press-release .field--name-body .video-embed-field-responsive-video {
  position: relative;
  width: 100%;
  height: 100%;
}
/* line 133, ../sass/components/_overrides.scss */
.media-nhlbi-video .field--name-field-video-description, .node--type-press-release .field--type-text-long
.field--name-field-video-description, .node--type-press-release .field--name-body .field--name-field-video-description {
  width: 100%;
}

/* line 139, ../sass/components/_overrides.scss */
.hei-partnering .video-embed-field-responsive-video, .hei-grants .video-embed-field-responsive-video, .hei-health-professionals .video-embed-field-responsive-video {
  position: relative;
  width: 100%;
  height: 100%;
}
/* line 145, ../sass/components/_overrides.scss */
.hei-partnering .field--name-field-video-description, .hei-grants .field--name-field-video-description, .hei-health-professionals .field--name-field-video-description {
  width: 100%;
}

@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 152, ../sass/components/_overrides.scss */
  .video-embed-field-responsive-video {
    position: relative;
    width: 100%;
    height: 100%;
  }

  /* line 158, ../sass/components/_overrides.scss */
  .field--name-field-video-description {
    width: 100%;
  }
}
/* line 164, ../sass/components/_overrides.scss */
.human-subject-contents h3, .human-subject-contents .field--name-field-social-phrase-group-title, .human-subject-contents .field--name-field-image-gallery-title, .human-subject-contents .field--name-field-social-phrase-group-title, .human-subject-contents .field--name-field-image-gallery-title {
  margin: 0;
  margin-top: 0.8em;
}

/* Menu */
/* Left Navigation */
/* line 78, ../sass/components/_menus.scss */
#main .sidebar * {
  max-width: 100%;
}
/* line 81, ../sass/components/_menus.scss */
#main .sidebar .pane-nhlbi-menus-nhlbi-menus-main-menu, #main .sidebar #submenu-block {
  margin-bottom: 1.25em;
}
/* line 83, ../sass/components/_menus.scss */
#main .sidebar .pane-nhlbi-menus-nhlbi-menus-main-menu a, #main .sidebar #submenu-block a {
  font-size: 0.75rem;
  text-decoration: none;
}
/* line 88, ../sass/components/_menus.scss */
#main .sidebar .pane-nhlbi-menus-nhlbi-menus-main-menu h2, #main .sidebar .pane-nhlbi-menus-nhlbi-menus-main-menu .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box #main .sidebar .pane-nhlbi-menus-nhlbi-menus-main-menu h1, #main .sidebar .pane-nhlbi-menus-nhlbi-menus-main-menu .contact-method-label, #main .sidebar #submenu-block h2, #main .sidebar #submenu-block .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box #main .sidebar #submenu-block h1, #main .sidebar #submenu-block .contact-method-label {
  font-size: 0.75rem;
  font-weight: bold;
  font-family: Verdana, Arial, sans-serif;
  border-bottom: 1px solid #cacad7;
  margin: 0;
  padding: 15px-13.125rem px-10.5rem px/2 0 15px-13.125rem px-10.5rem px/2 10px;
}
/* line 95, ../sass/components/_menus.scss */
#main .sidebar .pane-nhlbi-menus-nhlbi-menus-main-menu h2 a, #main .sidebar .pane-nhlbi-menus-nhlbi-menus-main-menu .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1 a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box #main .sidebar .pane-nhlbi-menus-nhlbi-menus-main-menu h1 a, #main .sidebar .pane-nhlbi-menus-nhlbi-menus-main-menu .contact-method-label a, #main .sidebar #submenu-block h2 a, #main .sidebar #submenu-block .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1 a, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box #main .sidebar #submenu-block h1 a, #main .sidebar #submenu-block .contact-method-label a {
  color: #104b7d;
}
/* line 100, ../sass/components/_menus.scss */
#main .sidebar .pane-nhlbi-menus-nhlbi-menus-main-menu ul.menu, #main .sidebar #submenu-block ul.menu {
  margin: 0;
  padding-left: 0;
  font-size: 0.6875rem;
}
/* line 104, ../sass/components/_menus.scss */
#main .sidebar .pane-nhlbi-menus-nhlbi-menus-main-menu ul.menu li, #main .sidebar #submenu-block ul.menu li {
  list-style-type: none;
  list-style-image: none;
}
/* line 107, ../sass/components/_menus.scss */
#main .sidebar .pane-nhlbi-menus-nhlbi-menus-main-menu ul.menu li a, #main .sidebar #submenu-block ul.menu li a {
  display: block;
  padding: 15px-13.125rem px-10.5rem px/2 10px;
  border-bottom: 1px solid #cacad7;
  text-transform: capitalize;
  color: #045d8d;
}
/* line 113, ../sass/components/_menus.scss */
#main .sidebar .pane-nhlbi-menus-nhlbi-menus-main-menu ul.menu li a:hover, #main .sidebar #submenu-block ul.menu li a:hover {
  font-weight: bold;
}
/* line 116, ../sass/components/_menus.scss */
#main .sidebar .pane-nhlbi-menus-nhlbi-menus-main-menu ul.menu li a.active-trail, #main .sidebar .pane-nhlbi-menus-nhlbi-menus-main-menu ul.menu li a.active-trail:visited, #main .sidebar .pane-nhlbi-menus-nhlbi-menus-main-menu ul.menu li a.active-trail:hover, #main .sidebar #submenu-block ul.menu li a.active-trail, #main .sidebar #submenu-block ul.menu li a.active-trail:visited, #main .sidebar #submenu-block ul.menu li a.active-trail:hover {
  font-weight: bold;
}
/* line 126, ../sass/components/_menus.scss */
#main .sidebar .pane-nhlbi-menus-nhlbi-menus-main-menu > ul.menu > li > a {
  color: #104b7d;
  text-transform: uppercase;
}
/* line 129, ../sass/components/_menus.scss */
#main .sidebar .pane-nhlbi-menus-nhlbi-menus-main-menu > ul.menu > li > a.active-trail, #main .sidebar .pane-nhlbi-menus-nhlbi-menus-main-menu > ul.menu > li > a.active-trail:visited, #main .sidebar .pane-nhlbi-menus-nhlbi-menus-main-menu > ul.menu > li > a.active-trail:hover {
  background: #104b7d;
  color: #ffffff;
  font-weight: normal;
}
/* line 134, ../sass/components/_menus.scss */
#main .sidebar .pane-nhlbi-menus-nhlbi-menus-main-menu > ul.menu > li > a:visited {
  color: #104b7d;
}
/* line 137, ../sass/components/_menus.scss */
#main .sidebar .pane-nhlbi-menus-nhlbi-menus-main-menu > ul.menu > li > a:hover {
  background: #104b7d;
  color: #ffffff;
  font-weight: normal;
}
/* line 145, ../sass/components/_menus.scss */
#main .sidebar .pane-nhlbi-menus-nhlbi-menus-main-menu > ul.menu > li ul li a {
  background: #e4e3e3;
}
/* line 150, ../sass/components/_menus.scss */
#main .sidebar .pane-nhlbi-menus-nhlbi-menus-main-menu > ul.menu > li ul li ul li a {
  background: #f4f4f4;
  padding-left: 20px;
}
/* line 156, ../sass/components/_menus.scss */
#main .sidebar .pane-nhlbi-menus-nhlbi-menus-main-menu > ul.menu > li ul li ul li ul li a {
  background: #ffffff;
  padding-left: 30px;
}
/* line 168, ../sass/components/_menus.scss */
#main .sidebar .pane-nhlbi-page-structure-nhlbi-book-navigation #submenu-block .healthTopicTitle {
  font-size: 0.75rem;
  font-weight: bold;
}
/* line 172, ../sass/components/_menus.scss */
#main .sidebar .pane-nhlbi-page-structure-nhlbi-book-navigation #submenu-block > ul.menu {
  padding-top: 10px;
}
/* line 177, ../sass/components/_menus.scss */
#main .sidebar .pane-nhlbi-page-structure-nhlbi-book-navigation #submenu-block > ul.menu > li > a, #main .sidebar .pane-nhlbi-page-structure-nhlbi-book-navigation #submenu-block > ul.menu > li > ul li > a {
  color: #104b7d;
  text-transform: uppercase;
}
/* line 180, ../sass/components/_menus.scss */
#main .sidebar .pane-nhlbi-page-structure-nhlbi-book-navigation #submenu-block > ul.menu > li > a.active-trail, #main .sidebar .pane-nhlbi-page-structure-nhlbi-book-navigation #submenu-block > ul.menu > li > a.active-trail:visited, #main .sidebar .pane-nhlbi-page-structure-nhlbi-book-navigation #submenu-block > ul.menu > li > a.active-trail:hover, #main .sidebar .pane-nhlbi-page-structure-nhlbi-book-navigation #submenu-block > ul.menu > li > ul li > a.active-trail, #main .sidebar .pane-nhlbi-page-structure-nhlbi-book-navigation #submenu-block > ul.menu > li > ul li > a.active-trail:visited, #main .sidebar .pane-nhlbi-page-structure-nhlbi-book-navigation #submenu-block > ul.menu > li > ul li > a.active-trail:hover {
  background: #104b7d;
  color: #ffffff;
  font-weight: normal;
}
/* line 185, ../sass/components/_menus.scss */
#main .sidebar .pane-nhlbi-page-structure-nhlbi-book-navigation #submenu-block > ul.menu > li > a:visited, #main .sidebar .pane-nhlbi-page-structure-nhlbi-book-navigation #submenu-block > ul.menu > li > ul li > a:visited {
  color: #104b7d;
}
/* line 188, ../sass/components/_menus.scss */
#main .sidebar .pane-nhlbi-page-structure-nhlbi-book-navigation #submenu-block > ul.menu > li > a:hover, #main .sidebar .pane-nhlbi-page-structure-nhlbi-book-navigation #submenu-block > ul.menu > li > a.active, #main .sidebar .pane-nhlbi-page-structure-nhlbi-book-navigation #submenu-block > ul.menu > li > ul li > a:hover, #main .sidebar .pane-nhlbi-page-structure-nhlbi-book-navigation #submenu-block > ul.menu > li > ul li > a.active {
  background: #104b7d;
  color: #ffffff;
  font-weight: normal;
}
/* line 201, ../sass/components/_menus.scss */
#main .sidebar .pane-nhlbi-page-structure-nhlbi-book-navigation #submenu-block > ul.menu > li ul li ul li a, #main .sidebar .pane-nhlbi-page-structure-nhlbi-book-navigation #submenu-block > ul.menu > li > ul li ul li ul li a {
  background: #e4e3e3;
  padding-left: 20px;
}
/* line 207, ../sass/components/_menus.scss */
#main .sidebar .pane-nhlbi-page-structure-nhlbi-book-navigation #submenu-block > ul.menu > li ul li ul li ul li a, #main .sidebar .pane-nhlbi-page-structure-nhlbi-book-navigation #submenu-block > ul.menu > li > ul li ul li ul li ul li a {
  background: #f4f4f4;
  padding-left: 30px;
}

/* line 220, ../sass/components/_menus.scss */
#content #submenu-block, #nhlbi-submenu-block {
  border-top: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
  margin: 1em 0;
}
/* line 225, ../sass/components/_menus.scss */
#content #submenu-block ul.menu, #nhlbi-submenu-block ul.menu {
  list-style: none;
  margin: 10px 0;
  padding: 0;
}
/* line 231, ../sass/components/_menus.scss */
#content #submenu-block ul.menu > li, #nhlbi-submenu-block ul.menu > li {
  float: left;
  list-style-image: none;
  list-style-type: none;
}
/* line 235, ../sass/components/_menus.scss */
#content #submenu-block ul.menu > li:after, #nhlbi-submenu-block ul.menu > li:after {
  content: "|";
  padding: 0 10px;
  display: inline;
  color: #999;
  font-weight: normal;
}
/* line 242, ../sass/components/_menus.scss */
#content #submenu-block ul.menu > li.active, #nhlbi-submenu-block ul.menu > li.active {
  font-weight: bold;
}
/* line 245, ../sass/components/_menus.scss */
#content #submenu-block ul.menu > li a.active, #content #submenu-block ul.menu > li a.active:hover, #content #submenu-block ul.menu > li a.active:link, #content #submenu-block ul.menu > li a.active:visited, #nhlbi-submenu-block ul.menu > li a.active, #nhlbi-submenu-block ul.menu > li a.active:hover, #nhlbi-submenu-block ul.menu > li a.active:link, #nhlbi-submenu-block ul.menu > li a.active:visited {
  text-decoration: none;
  color: #000;
  font-weight: bold;
  cursor: default;
  background-color: transparent;
}
/* line 253, ../sass/components/_menus.scss */
#content #submenu-block ul.menu > li.last:after, #nhlbi-submenu-block ul.menu > li.last:after {
  content: "";
  padding: 0;
}
/* line 257, ../sass/components/_menus.scss */
#content #submenu-block ul.menu li.expandMore, #nhlbi-submenu-block ul.menu li.expandMore {
  position: relative;
}
/* line 259, ../sass/components/_menus.scss */
#content #submenu-block ul.menu li.expandMore:after, #nhlbi-submenu-block ul.menu li.expandMore:after {
  content: "";
  padding: 0;
  display: none;
}
/* line 264, ../sass/components/_menus.scss */
#content #submenu-block ul.menu li.expandMore ul, #nhlbi-submenu-block ul.menu li.expandMore ul {
  display: block;
  z-index: 999;
  list-style: none;
  position: absolute;
  top: 25px;
  left: -14px;
  min-width: 300px;
  margin: 0;
  padding: 8px 8px 8px 13px;
  border-width: 0 2px 2px 2px;
  border-color: #999;
  border-style: solid;
  background-color: #fff;
  text-transform: none;
  -moz-box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.2);
  box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.2);
}
/* line 281, ../sass/components/_menus.scss */
#content #submenu-block ul.menu li.expandMore ul li, #nhlbi-submenu-block ul.menu li.expandMore ul li {
  padding: 5px 0;
  border-bottom: 1px solid #999;
  text-transform: none;
}
/* line 286, ../sass/components/_menus.scss */
#content #submenu-block ul.menu li.expandMore ul li.last, #nhlbi-submenu-block ul.menu li.expandMore ul li.last {
  border-bottom: none;
}

/* Header */
/* line 2, ../sass/components/_header.scss */
#header {
  padding-right: 0;
  overflow-x: visible;
}

/* line 8, ../sass/components/_header.scss */
#banner {
  font-size: 0.75rem;
  width: 100%;
  height: 25.5px;
  position: relative;
  background-color: #E8E8E8;
  vertical-align: middle;
}
@media all and (min-width: 1440px) {
  /* line 8, ../sass/components/_header.scss */
  #banner {
    font-size: 0.75rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 8, ../sass/components/_header.scss */
  #banner {
    font-size: 0.75rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 8, ../sass/components/_header.scss */
  #banner {
    font-size: 0.75rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 8, ../sass/components/_header.scss */
  #banner {
    font-size: 0.75rem;
  }
}
@media all and (min-width: 1100px) {
  /* line 8, ../sass/components/_header.scss */
  #banner {
    height: 25.5px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 8, ../sass/components/_header.scss */
  #banner {
    height: 25.5px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 8, ../sass/components/_header.scss */
  #banner {
    height: 25.5px;
  }
}
/* line 28, ../sass/components/_header.scss */
#banner span {
  vertical-align: middle;
  color: #676767;
  line-height: 1.5;
}

/* line 37, ../sass/components/_header.scss */
#block-sitebranding-2, #main-navbar {
  position: static;
}

/* line 41, ../sass/components/_header.scss */
#block-views-block-site-alerts-block-1.block,
#block-sitebranding-2.block {
  margin-bottom: 0;
}

/* line 46, ../sass/components/_header.scss */
#main-menu-header, #main-site-logo, #text-resize, #header-searchbox, #main-navbar {
  display: inline-block;
}

/* line 52, ../sass/components/_header.scss */
#main-menu-header {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  width: 95%;
  margin: 13px 0;
  padding: 0;
}
/* line 66, ../sass/components/_header.scss */
#main-menu-header #main-site-logo {
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
  margin-right: auto;
}
/* line 67, ../sass/components/_header.scss */
#main-menu-header #main-site-logo:focus-within {
  outline: #bf0d2e dotted 3px;
  outline-offset: 2px;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 66, ../sass/components/_header.scss */
  #main-menu-header #main-site-logo {
    -webkit-box-ordinal-group: 2;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
    width: 175px;
    padding-left: 10px;
  }
}
/* line 77, ../sass/components/_header.scss */
#main-menu-header #main-site-logo img {
  display: block;
  width: 250px;
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 77, ../sass/components/_header.scss */
  #main-menu-header #main-site-logo img {
    width: 200px;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 77, ../sass/components/_header.scss */
  #main-menu-header #main-site-logo img {
    width: 200px;
  }
}
/* line 94, ../sass/components/_header.scss */
#main-menu-header #header-searchbox {
  -webkit-box-ordinal-group: 3;
  -moz-box-ordinal-group: 3;
  -ms-flex-order: 3;
  -webkit-order: 3;
  order: 3;
  margin-left: auto;
}
/* line 102, ../sass/components/_header.scss */
#main-menu-header #main-navbar {
  margin: 0;
  padding: 0;
  -webkit-box-ordinal-group: 2;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
}
/* line 107, ../sass/components/_header.scss */
#main-menu-header #main-navbar #hamburger-nav-icon {
  display: none;
  cursor: pointer;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 114, ../sass/components/_header.scss */
  #main-menu-header #main-navbar .menu-level-0 {
    width: 100%;
  }
  /* line 117, ../sass/components/_header.scss */
  #main-menu-header #main-navbar .menu-level-0 > li > span {
    padding-left: 30px;
  }
  /* line 120, ../sass/components/_header.scss */
  #main-menu-header #main-navbar .menu-level-1 {
    padding-left: 35px;
  }
  /* line 122, ../sass/components/_header.scss */
  #main-menu-header #main-navbar .menu-level-1 a {
    font-size: 0.875rem;
  }
  /* line 127, ../sass/components/_header.scss */
  #main-menu-header #main-navbar .menu-level-2 a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 134, ../sass/components/_header.scss */
  #main-menu-header #main-navbar .menu-level-0 {
    width: 50%;
  }
  /* line 137, ../sass/components/_header.scss */
  #main-menu-header #main-navbar .menu-level-0 > li > span {
    padding-left: 55px;
  }
  /* line 140, ../sass/components/_header.scss */
  #main-menu-header #main-navbar .menu-level-1 {
    padding-left: 60px;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 102, ../sass/components/_header.scss */
  #main-menu-header #main-navbar {
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
  /* line 146, ../sass/components/_header.scss */
  #main-menu-header #main-navbar ol ol, #main-menu-header #main-navbar ol ul, #main-menu-header #main-navbar ul ol, #main-menu-header #main-navbar ul ul, #main-menu-header #main-navbar li {
    list-style: none;
    list-style-type: none;
  }
  /* line 151, ../sass/components/_header.scss */
  #main-menu-header #main-navbar .menu-level-0 {
    display: none;
    position: absolute;
    background-color: white;
    z-index: 1100;
    left: 0;
    top: 50px;
    height: 100vw;
    list-style: none;
    list-style-type: none;
  }
  /* line 164, ../sass/components/_header.scss */
  #main-menu-header #main-navbar .menu-level-0.menu-expanded {
    display: block;
  }
  /* line 169, ../sass/components/_header.scss */
  #main-menu-header #main-navbar .menu-level-0 {
    background-color: #fcfcfc;
    padding: 0;
    margin-top: 0;
  }
  /* line 174, ../sass/components/_header.scss */
  #main-menu-header #main-navbar .menu-level-0 > li.menu-item-link {
    padding: 15px 0;
    border-left: 5px solid #fcfcfc;
  }
  /* line 179, ../sass/components/_header.scss */
  #main-menu-header #main-navbar .menu-level-0 > li.menu-expanded {
    border-left: 5px solid #bf0d2e;
    background-color: #EFEFEF;
  }
  /* line 184, ../sass/components/_header.scss */
  #main-menu-header #main-navbar .menu-level-0 > li > span {
    background-image: url("../images/ico-globalnavclosedmenu.png");
    background-size: inherit;
    background-repeat: no-repeat;
    background-position: right;
    display: block;
    content: " ";
    height: 25px;
    margin-right: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-family: "Open Sans", Verdana, Arial, sans-serif;
  }
  /* line 201, ../sass/components/_header.scss */
  #main-menu-header #main-navbar .menu-level-0 > li.menu-expanded > span {
    background-image: url("../images/ico-globalnavopenmenu.png");
    background-size: inherit;
    background-repeat: no-repeat;
    background-position: right;
    display: block;
    content: " ";
    height: 25px;
    margin-right: 25px;
  }
  /* line 208, ../sass/components/_header.scss */
  #main-menu-header #main-navbar #hamburger-nav-icon {
    background-image: url("../images/ico-hamburgermenu.png");
    background-size: inherit;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
    content: " ";
    height: 25px;
    width: 25px;
    height: 25px;
  }
  /* line 213, ../sass/components/_header.scss */
  #main-menu-header #main-navbar #hamburger-nav-icon.menu-expanded-hamburger {
    background-image: url("../images/ico-hamburgerX.png");
    background-size: inherit;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
    content: " ";
    height: 25px;
    width: 25px;
    height: 25px;
  }
  /* line 219, ../sass/components/_header.scss */
  #main-menu-header #main-navbar .menu-level-1 {
    background-color: white;
  }
  /* line 221, ../sass/components/_header.scss */
  #main-menu-header #main-navbar .menu-level-1 a {
    display: block;
    color: #0051a8;
    font-size: 1rem;
  }
  /* line 225, ../sass/components/_header.scss */
  #main-menu-header #main-navbar .menu-level-1 a:visited {
    color: #6f57B5;
  }
  /* line 231, ../sass/components/_header.scss */
  #main-menu-header #main-navbar .menu-level-1 > li {
    padding-bottom: 20px;
  }
  /* line 234, ../sass/components/_header.scss */
  #main-menu-header #main-navbar .menu-level-1 > li:first-child {
    padding-top: 20px;
  }
  /* line 238, ../sass/components/_header.scss */
  #main-menu-header #main-navbar #main-menu-item-the-science_children > li {
    padding-bottom: 0;
  }
  /* line 243, ../sass/components/_header.scss */
  #main-menu-header #main-navbar .menu-level-1 > li > ul {
    padding-top: 20px;
  }
  /* line 248, ../sass/components/_header.scss */
  #main-menu-header #main-navbar .menu-level-1 > li > a {
    background-image: url("../images/ico-globalmenuchevron.svg");
    background-size: 10px 10px;
    background-repeat: no-repeat;
    background-position: right;
    display: block;
    content: " ";
    height: inherit;
    margin-right: 28px;
  }
  /* line 254, ../sass/components/_header.scss */
  #main-menu-header #main-navbar .menu-level-2 {
    padding-left: 0;
  }
  /* line 257, ../sass/components/_header.scss */
  #main-menu-header #main-navbar .menu-level-2 > li {
    padding-bottom: 20px;
  }
  /* line 260, ../sass/components/_header.scss */
  #main-menu-header #main-navbar .menu-level-2 > li:last-child {
    padding-bottom: 0;
  }
  /* line 265, ../sass/components/_header.scss */
  #main-menu-header #main-navbar .menu-level-2 > li > a {
    background-image: url("../images/ico-globalmenuchevron.svg");
    background-size: 10px 10px;
    background-repeat: no-repeat;
    background-position: right;
    display: block;
    content: " ";
    height: inherit;
    margin-right: 28px;
    color: #0051a8;
    font-size: 1rem;
  }
  /* line 270, ../sass/components/_header.scss */
  #main-menu-header #main-navbar .menu-level-2 > li > a:visited {
    color: #6f57B5;
  }
  /* line 275, ../sass/components/_header.scss */
  #main-menu-header #main-navbar .highlighted > a {
    color: #bf0d2e;
    font-weight: bold;
  }
  /* line 278, ../sass/components/_header.scss */
  #main-menu-header #main-navbar .highlighted > a:visited {
    color: #bf0d2e;
  }
}
@media all and (min-width: 1100px) {
  /* line 288, ../sass/components/_header.scss */
  #main-menu-header #main-navbar .menu-level-0 {
    list-style-type: none;
    overflow: hidden;
    margin: 0;
    padding: 0;
  }
  /* line 295, ../sass/components/_header.scss */
  #main-menu-header #main-navbar .menu-level-0 > li.menu-item-link {
    border-bottom: 5px solid white;
    float: left;
    text-align: center;
    padding: 20px 20px 27px 20px;
  }
  /* line 303, ../sass/components/_header.scss */
  #main-menu-header #main-navbar .menu-level-0 > li.menu-item-link > span {
    font-size: 1rem;
    font-family: "Open Sans", Verdana, Arial, sans-serif;
    color: #222;
  }
  /* line 311, ../sass/components/_header.scss */
  #main-menu-header #main-navbar .menu-level-0 > li.menu-item-link > span {
    color: #222;
    cursor: pointer;
  }
  /* line 316, ../sass/components/_header.scss */
  #main-menu-header #main-navbar .menu-level-0 > li.menu-item-link > span:hover {
    color: #bf0d2e;
  }
  /* line 320, ../sass/components/_header.scss */
  #main-menu-header #main-navbar .menu-level-0 li.menu-item-link.menu-expanded {
    border-bottom: 5px solid #bf0d2e;
  }
  /* line 324, ../sass/components/_header.scss */
  #main-menu-header #main-navbar .menu-level-0 li.menu-item-link.menu-expanded > span {
    color: #bf0d2e;
  }
  /* line 332, ../sass/components/_header.scss */
  #main-menu-header #main-navbar .menu-level-0 > li.menu-item-link:not(.menu-expanded):hover > span {
    color: #bf0d2e;
  }
  /* line 336, ../sass/components/_header.scss */
  #main-menu-header #main-navbar .highlighted > a {
    color: #bf0d2e;
    font-weight: bold;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 343, ../sass/components/_header.scss */
  #main-menu-header #main-navbar .menu-level-0 > li.menu-item-link > span {
    color: #222;
  }
}
@media all and (min-width: 1100px) {
  /* line 355, ../sass/components/_header.scss */
  #main-menu-header .main-menu-children-wrapper > div > ul {
    display: inline-block;
  }
  /* line 360, ../sass/components/_header.scss */
  #main-menu-header .main-menu-children-wrapper > div {
    width: 100%;
    margin: 0 auto;
    padding-bottom: 30px;
  }
  /* line 365, ../sass/components/_header.scss */
  #main-menu-header .main-menu-children-wrapper {
    position: absolute;
    background-color: #fcfcfc;
    z-index: 1000;
    width: 100%;
    margin: 75px 0;
    text-align: center;
    left: 0;
  }
  /* line 374, ../sass/components/_header.scss */
  #main-menu-header .main-menu-children-wrapper ol ol, #main-menu-header .main-menu-children-wrapper ol ul, #main-menu-header .main-menu-children-wrapper ul ol, #main-menu-header .main-menu-children-wrapper ul ul, #main-menu-header .main-menu-children-wrapper li {
    list-style: none;
    list-style-type: none;
  }
  /* line 379, ../sass/components/_header.scss */
  #main-menu-header .main-menu-children-wrapper ul.menu-level-1 {
    margin: 0;
    padding: 0;
    text-align: left;
  }
  /* line 386, ../sass/components/_header.scss */
  #main-menu-header .main-menu-children-wrapper ul.menu-level-1 > li {
    padding-top: 10px;
  }
  /* line 390, ../sass/components/_header.scss */
  #main-menu-header .main-menu-children-wrapper #main-menu-item-health-topics_children, #main-menu-header .main-menu-children-wrapper #main-menu-item-grants-and-training_children {
    padding-top: 10px;
  }
  /* line 395, ../sass/components/_header.scss */
  #main-menu-header .main-menu-children-wrapper #main-menu-item-health-topics_children ul.menu-level-1 > li, #main-menu-header .main-menu-children-wrapper #main-menu-item-grants-and-training_children ul.menu-level-1 > li {
    list-style-type: none;
    padding: 5px 20px;
    float: left;
  }
  /* line 401, ../sass/components/_header.scss */
  #main-menu-header .main-menu-children-wrapper #main-menu-item-health-topics_children ul.menu-level-1 > li:not(:first-child), #main-menu-header .main-menu-children-wrapper #main-menu-item-grants-and-training_children ul.menu-level-1 > li:not(:first-child) {
    border-left: 1px solid #ddd;
  }
  /* line 408, ../sass/components/_header.scss */
  #main-menu-header .main-menu-children-wrapper #main-menu-item-news-and-items_children ul.menu-level-1 > li {
    display: inline-block;
    padding: 0 20px;
    vertical-align: top;
  }
  /* line 413, ../sass/components/_header.scss */
  #main-menu-header .main-menu-children-wrapper #main-menu-item-news-and-items_children ul.menu-level-1 > li:not(:first-child) {
    border-left: 1px solid #ddd;
  }
  /* line 417, ../sass/components/_header.scss */
  #main-menu-header .main-menu-children-wrapper #main-menu-item-news-and-items_children ul.menu-level-1 > li:not(:first-child) {
    border-left: 1px solid #ddd;
  }
  /* line 421, ../sass/components/_header.scss */
  #main-menu-header .main-menu-children-wrapper #main-menu-item-news-and-items_children ul.menu-level-1:last-child {
    padding-top: 10px;
  }
  /* line 425, ../sass/components/_header.scss */
  #main-menu-header .main-menu-children-wrapper #main-menu-item-news-and-items_children ul.menu-level-1 > li > a {
    padding-left: 25px;
  }
  /* line 429, ../sass/components/_header.scss */
  #main-menu-header .main-menu-children-wrapper #main-menu-item-news-and-items_children ul.menu-level-2 {
    padding-top: 10px;
  }
  /* line 433, ../sass/components/_header.scss */
  #main-menu-header .main-menu-children-wrapper #main-menu-item-news-and-items_children ul.menu-level-2 li:not(:first-child) {
    padding-top: 10px;
  }
  /* line 440, ../sass/components/_header.scss */
  #main-menu-header .main-menu-children-wrapper #main-menu-item-the-science_children ul.menu-level-2, #main-menu-header .main-menu-children-wrapper #main-menu-item-about-nhlbi_children ul.menu-level-2 {
    display: inline-block;
    vertical-align: top;
  }
  /* line 445, ../sass/components/_header.scss */
  #main-menu-header .main-menu-children-wrapper #main-menu-item-the-science_children ul.menu-level-1 > li > ul.menu-level-2:not(:last-child), #main-menu-header .main-menu-children-wrapper #main-menu-item-about-nhlbi_children ul.menu-level-1 > li > ul.menu-level-2:not(:last-child) {
    border-right: 1px solid #ddd;
  }
  /* line 449, ../sass/components/_header.scss */
  #main-menu-header .main-menu-children-wrapper #main-menu-item-the-science_children ul.menu-level-2 > li, #main-menu-header .main-menu-children-wrapper #main-menu-item-about-nhlbi_children ul.menu-level-2 > li {
    padding: 5px 40px 5px 15px;
  }
  /* line 454, ../sass/components/_header.scss */
  #main-menu-header .main-menu-children-wrapper #main-menu-item-the-science_children > ul > li > a, #main-menu-header .main-menu-children-wrapper #main-menu-item-about-nhlbi_children > ul > li > a {
    display: block;
    padding-left: 40px;
    padding-bottom: 10px;
  }
}
/* line 472, ../sass/components/_header.scss */
#main-menu-header #block-mainnavigation a:hover {
  color: #990000;
}
/* line 475, ../sass/components/_header.scss */
#main-menu-header #block-mainnavigation a.is-active {
  color: #990000;
}
/* line 479, ../sass/components/_header.scss */
#main-menu-header #block-mainnavigation a, #main-menu-header #block-mainnavigation a:hover, #main-menu-header #block-mainnavigation a:active, #main-menu-header #block-mainnavigation a:visited, #main-menu-header #block-mainnavigation a:focus {
  border: none;
  box-shadow: none;
}
/* line 486, ../sass/components/_header.scss */
#main-menu-header #block-mainnavigation .menu-item.highlighted {
  margin-top: 10px;
}
/* line 492, ../sass/components/_header.scss */
#main-menu-header #text-resize {
  -webkit-box-ordinal-group: 3;
  -moz-box-ordinal-group: 3;
  -ms-flex-order: 3;
  -webkit-order: 3;
  order: 3;
  bottom: 20px;
}
/* line 497, ../sass/components/_header.scss */
#main-menu-header #text-resize > img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* line 510, ../sass/components/_header.scss */
#block-mainnavigation {
  margin-bottom: 0;
}

/* line 516, ../sass/components/_header.scss */
#main-menu-container {
  border-bottom: 2px solid #F4F4F4;
  position: relative;
}

/* line 522, ../sass/components/_header.scss */
#main-menu-blur-shadow, #search-bar-blur-shadow {
  display: none;
  position: absolute;
  z-index: 999;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.15);
}

/* line 531, ../sass/components/_header.scss */
#main-menu-blur-shadow-tablet-mobile {
  display: none;
  position: absolute;
  z-index: 999;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.15);
}

/* line 541, ../sass/components/_header.scss */
.main-menu-children-wrapper .hidden {
  display: none;
}

/* line 545, ../sass/components/_header.scss */
.main-menu-children-wrapper .visible {
  display: block;
}

/* IE8 does not support :not() and :last-child. */
/* line 560, ../sass/components/_header.scss */
.breadcrumb li:before {
  content: ' / ';
}

/**
 * Breadcrumb navigation.
 */
/* line 568, ../sass/components/_header.scss */
.breadcrumb ol {
  margin: 7px 0 7px;
  padding-left: 45px;
}
/* line 572, ../sass/components/_header.scss */
.breadcrumb li {
  display: inline;
  list-style-type: none;
  margin: 0;
  padding: 0;
  color: #104b7d;
  font-size: 1rem;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
}
/* line 581, ../sass/components/_header.scss */
.breadcrumb a:link, .breadcrumb a:visited {
  text-decoration: none;
  color: #111;
}

/* line 586, ../sass/components/_header.scss */
.block-nhlbi-gsa {
  margin: 0;
}

/* line 591, ../sass/components/_header.scss */
#searchBoxIcon, #searchBoxIconInner {
  background-position: right;
  width: 25px;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 591, ../sass/components/_header.scss */
  #searchBoxIcon, #searchBoxIconInner {
    margin-top: 6px;
  }
}

/* line 601, ../sass/components/_header.scss */
#searchBoxIcon {
  float: right;
  cursor: pointer;
}

/* line 605, ../sass/components/_header.scss */
#searchBoxIcon.search-bar-expanded {
  background-image: url("../images/ico-searchblackX.svg");
  background-size: inherit;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  content: " ";
  height: 25px;
  width: 25px;
  height: 25px;
}

/* line 611, ../sass/components/_header.scss */
#searchBoxIconInner {
  float: left;
  display: inline-block;
  margin-right: 10px;
}

/* line 617, ../sass/components/_header.scss */
#searchBoxForm {
  clear: both;
  float: left;
}

/* line 621, ../sass/components/_header.scss */
#srchbox_thin_box_modal {
  width: 100%;
  height: 50px;
  border: 1px solid #ddd;
  padding: 8px;
  z-index: 1;
  background-color: #fff;
  position: relative;
}

/* line 635, ../sass/components/_header.scss */
#srchbox_thin_box {
  display: none;
  height: 50px;
  border: 1px solid #ddd;
  padding: 8px;
  z-index: 1;
  background-color: #fff;
  position: relative;
  float: left;
}

@media all and (max-width: 1100px) {
  /* line 648, ../sass/components/_header.scss */
  #drop-down-nav {
    position: absolute;
    display: block;
    background-color: #f9f9f9;
    z-index: 1;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  }
}

/* line 658, ../sass/components/_header.scss */
#header-searchbox {
  position: relative;
}
@media all and (max-width: 1100px) {
  /* line 658, ../sass/components/_header.scss */
  #header-searchbox {
    float: right;
    padding-right: 10px;
  }
}

/* line 666, ../sass/components/_header.scss */
#global-search-bar-tablet-desktop, #global-search-bar-phone {
  display: none;
}

/* line 673, ../sass/components/_header.scss */
.global-search-bar {
  z-index: 1100;
  position: absolute;
  float: right;
  right: 0;
  top: 65px;
  background-color: #f4f4f4;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 673, ../sass/components/_header.scss */
  .global-search-bar {
    top: -5px;
    right: 60px;
  }
}
/* line 691, ../sass/components/_header.scss */
.global-search-bar form {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  padding: 8px;
}
/* line 696, ../sass/components/_header.scss */
.global-search-bar form #searchQueryText_tablet_desktop, .global-search-bar form #searchQueryText_phone {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  padding: 0 0 0 10px;
  height: 30px;
  width: 300px;
  box-shadow: none;
  border: 1px solid #f4f4f4;
}
/* line 706, ../sass/components/_header.scss */
.global-search-bar form .submit-button {
  background-color: #1a568c;
  border: medium none;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  outline: medium none;
  margin-left: 0;
  margin-right: 0;
  padding: 0 15px;
  color: white;
  height: 30px;
}

/* line 722, ../sass/components/_header.scss */
#global-search-bar-phone .global-search-bar {
  width: 100%;
  top: inherit;
}
/* line 725, ../sass/components/_header.scss */
#global-search-bar-phone .global-search-bar form {
  width: 95%;
}
/* line 727, ../sass/components/_header.scss */
#global-search-bar-phone .global-search-bar form #searchQueryText_phone {
  width: 100%;
}

/* Footer */
/*$research-topic-desktop-width: 384px;
$research-topic-desktop-height: 287px;
$research-topic-tablet-width: 384px;
$research-topic-tablet-height: 287px;
$research-topic-phone-width: 360px;
$research-topic-phone-height: 272px;*/
/*@mixin responsive-banner-promotion-text {
  @include responsive-font($banner-promotion-text-desktop-font-size, $banner-promotion-text-tablet-font-size, $banner-promotion-text-tablet-font-size, $banner-promotion-text-phone-font-size);
}*/
/*@mixin responsive-initiativehashtag {
  @include responsive-font($initiativehashtag-desktop-font-size, $initiativehashtag-desktop-font-size, $initiativehashtag-tablet-font-size, $initiativehashtag-phone-font-size);
}
@mixin responsive-initiativebuttonlabel {
  @include responsive-font($initiativebuttonlabel-desktop-font-size, $initiativebuttonlabel-desktop-font-size, $initiativebuttonlabel-tablet-font-size, $initiativebuttonlabel-phone-font-size);
}*/
/*
 * Sets the color and direction or featured related items section
 * @backgroundColor - the color of the full-width background
 * @contentContainer - the color of the inner content background
 * @headingColor - the color of the H tag
 * @textColor  - the color of the summary text
 * @flex-direction - the direction of orientation for the flexbox items
 */
/*
 * Sets the styles for files cards
 * @backgroundColor - the color of the full-width background
 *
 */
/*@mixin responsive-banner-promotion-text {
  @include responsive-font($banner-promotion-text-desktop-font-size, $banner-promotion-text-tablet-font-size, $banner-promotion-text-tablet-font-size, $banner-promotion-text-phone-font-size);
}*/
/*@mixin responsive-initiativehashtag {
  @include responsive-font($initiativehashtag-desktop-font-size, $initiativehashtag-desktop-font-size, $initiativehashtag-tablet-font-size, $initiativehashtag-phone-font-size);
}
@mixin responsive-initiativebuttonlabel {
  @include responsive-font($initiativebuttonlabel-desktop-font-size, $initiativebuttonlabel-desktop-font-size, $initiativebuttonlabel-tablet-font-size, $initiativebuttonlabel-phone-font-size);
}*/
/*
 * Sets the color and direction or featured related items section
 * @backgroundColor - the color of the full-width background
 * @contentContainer - the color of the inner content background
 * @headingColor - the color of the H tag
 * @textColor  - the color of the summary text
 * @flex-direction - the direction of orientation for the flexbox items
 */
/*
 * Sets the styles for files cards
 * @backgroundColor - the color of the full-width background
 *
 */
/* line 4, ../sass/components/_footer.scss */
#block-footer {
  margin-bottom: 0;
}
/* line 6, ../sass/components/_footer.scss */
#block-footer h2.visually-hidden, #block-footer .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.visually-hidden, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box #block-footer h1.visually-hidden, #block-footer .visually-hidden.contact-method-label {
  color: #fff;
}

/* line 11, ../sass/components/_footer.scss */
footer {
  background-color: #4a4a4a;
  color: #FFFFFF;
  font-size: 0.875rem;
}
@media all and (min-width: 1440px) {
  /* line 11, ../sass/components/_footer.scss */
  footer {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 11, ../sass/components/_footer.scss */
  footer {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 11, ../sass/components/_footer.scss */
  footer {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 11, ../sass/components/_footer.scss */
  footer {
    font-size: 0.875rem;
  }
}
/* line 18, ../sass/components/_footer.scss */
footer p {
  font-size: 0.875rem;
}
@media all and (min-width: 1440px) {
  /* line 18, ../sass/components/_footer.scss */
  footer p {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 18, ../sass/components/_footer.scss */
  footer p {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 18, ../sass/components/_footer.scss */
  footer p {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 18, ../sass/components/_footer.scss */
  footer p {
    font-size: 0.875rem;
  }
}

/* line 23, ../sass/components/_footer.scss */
.bold-for-load {
  font-family: "Merriweather", serif;
  font-weight: bold;
}

/* line 27, ../sass/components/_footer.scss */
main {
  min-height: 500px;
}

/* line 31, ../sass/components/_footer.scss */
#footer-bottom ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
/* line 38, ../sass/components/_footer.scss */
#footer-bottom .menu-item {
  padding: 0;
}
/* line 42, ../sass/components/_footer.scss */
#footer-bottom .footer__logo-image {
  width: 240px;
  display: block;
  padding-bottom: 20px;
}
/* line 46, ../sass/components/_footer.scss */
#footer-bottom .footer__logo-image .link-title {
  padding-left: 30px;
}
/* line 51, ../sass/components/_footer.scss */
#footer-bottom ul.id-footer-social {
  padding-left: 0px;
}
/* line 53, ../sass/components/_footer.scss */
#footer-bottom ul.id-footer-social li > a {
  display: inline-block;
}
/* line 57, ../sass/components/_footer.scss */
#footer-bottom ul.id-footer-social > li:first-child {
  padding-left: 0px;
}
/* line 62, ../sass/components/_footer.scss */
#footer-bottom ul.id-footer-social > li:last-child a {
  font-size: 25px;
  vertical-align: 1.7px;
  color: white !important;
}
/* line 67, ../sass/components/_footer.scss */
#footer-bottom ul.id-footer-social > li:last-child .ext-icon {
  background: transparent;
  visibility: hidden;
  display: none;
}
/* line 75, ../sass/components/_footer.scss */
#footer-bottom .id-footer-block-alerts form {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
}
/* line 79, ../sass/components/_footer.scss */
#footer-bottom .id-footer-block-alerts form .emailAddress {
  width: 100%;
  border-style: none;
}
/* line 86, ../sass/components/_footer.scss */
#footer-bottom .id-footer-block-alerts .sign-up {
  background-color: #1a568c;
  border: medium none;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  outline: medium none;
  margin-left: 0;
  margin-right: 0;
  padding: 0 15px;
  color: white;
  width: 100px;
}
/* line 99, ../sass/components/_footer.scss */
#footer-bottom #footer-bottom .id-footer-block-alerts .emailAddress {
  width: 100%;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  padding: 0 0 0 10px;
  border-style: none;
  color: #222;
  height: 30px;
}
/* line 109, ../sass/components/_footer.scss */
#footer-bottom .id-nhlbi-address {
  background-image: url("../images/ico-map_pin-white.png");
  background-size: 15px 20px;
  background-repeat: no-repeat;
  background-position: initial;
  display: inline-block;
  content: " ";
  height: 4.5em;
  padding-left: 30px;
}
/* line 115, ../sass/components/_footer.scss */
#footer-bottom .id-footer-block-social {
  padding-top: 30px;
}
/* line 119, ../sass/components/_footer.scss */
#footer-bottom .id-footer-block-policy li.menu-item a {
  font-size: 0.875rem;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  color: white;
  padding: 5px;
}
/* line 127, ../sass/components/_footer.scss */
#footer-bottom #footer-block-5 li.menu-item a {
  font-size: 0.875rem;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  color: white;
}
/* line 132, ../sass/components/_footer.scss */
#footer-bottom .footerbody, #footer-bottom a.footerbody, #footer-bottom div.footerbody {
  font-size: 0.875rem;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  color: white;
  margin: 0 0 1.25em;
}
@media all and (min-width: 1440px) {
  /* line 132, ../sass/components/_footer.scss */
  #footer-bottom .footerbody, #footer-bottom a.footerbody, #footer-bottom div.footerbody {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 132, ../sass/components/_footer.scss */
  #footer-bottom .footerbody, #footer-bottom a.footerbody, #footer-bottom div.footerbody {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 132, ../sass/components/_footer.scss */
  #footer-bottom .footerbody, #footer-bottom a.footerbody, #footer-bottom div.footerbody {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 132, ../sass/components/_footer.scss */
  #footer-bottom .footerbody, #footer-bottom a.footerbody, #footer-bottom div.footerbody {
    font-size: 0.875rem;
  }
}
/* line 138, ../sass/components/_footer.scss */
#footer-bottom a, #footer-bottom a:link, #footer-bottom h3, #footer-bottom .field--name-field-social-phrase-group-title, #footer-bottom .field--name-field-image-gallery-title {
  color: #FFFFFF;
}
/* line 141, ../sass/components/_footer.scss */
#footer-bottom a:visited {
  color: #D7E7F4 !important;
}
/* line 145, ../sass/components/_footer.scss */
#footer-bottom a:active, #footer-bottom a:focus {
  outline: #fff 3px dotted;
}
/* line 148, ../sass/components/_footer.scss */
#footer-bottom .bodytext, #footer-bottom .darkGrayBodyText, #footer-bottom .foa-expiration-date {
  color: #FFFFFF;
}
/* line 151, ../sass/components/_footer.scss */
#footer-bottom p {
  margin: 0;
  padding: 0;
}
/* line 156, ../sass/components/_footer.scss */
#footer-bottom h3, #footer-bottom .field--name-field-social-phrase-group-title, #footer-bottom .field--name-field-image-gallery-title {
  font-weight: bold;
  margin: 0 0 0.25em;
}
/* line 160, ../sass/components/_footer.scss */
#footer-bottom h3.bodytext, #footer-bottom h3.darkGrayBodyText, #footer-bottom .darkGrayBodyText.field--name-field-social-phrase-group-title, #footer-bottom .darkGrayBodyText.field--name-field-image-gallery-title, #footer-bottom .bodytext.field--name-field-social-phrase-group-title, #footer-bottom .field--name-field-social-phrase-group-title.foa-expiration-date, #footer-bottom .bodytext.field--name-field-image-gallery-title, #footer-bottom .field--name-field-image-gallery-title.foa-expiration-date, #footer-bottom h3.foa-expiration-date {
  margin: 0 0 0.25em;
}
/* line 164, ../sass/components/_footer.scss */
#footer-bottom .link-title {
  padding: 0 0 0 20px;
  margin: 10px 0;
  display: block;
  background-image: url("../images/viewmorewhite.png");
  background-size: 12px 12px;
  background-repeat: no-repeat;
  background-position: left center;
  display: block;
  content: " ";
  height: inherit;
}
/* line 172, ../sass/components/_footer.scss */
#footer-bottom .id-footer-block-logo .link-title {
  padding: 0 0 0 30px;
}
/* line 177, ../sass/components/_footer.scss */
#footer-bottom #footer-block-5 > div:first-child {
  padding-top: 20px;
}
/* line 180, ../sass/components/_footer.scss */
#footer-bottom #footer-block-5 > div:last-child {
  padding: 10px 0 20px 0;
}
/* line 185, ../sass/components/_footer.scss */
#footer-bottom #phone-1-col, #footer-bottom #desktop-3-col, #footer-bottom #tablet-2-col {
  display: none;
  padding: 40px 0 20px 0;
}
/* line 190, ../sass/components/_footer.scss */
#footer-bottom #desktop-3-col > div {
  width: 30%;
  padding-left: 40px;
}
/* line 194, ../sass/components/_footer.scss */
#footer-bottom #desktop-3-col > div:first-child {
  padding-left: 0;
}
/* line 197, ../sass/components/_footer.scss */
#footer-bottom #tablet-2-col > div {
  width: 45%;
}
/* line 201, ../sass/components/_footer.scss */
#footer-bottom #footer-wrapper-top {
  background-color: #575b5e;
}
/* line 204, ../sass/components/_footer.scss */
#footer-bottom #footer-wrapper-bottom {
  background-color: #4a4a4a;
}
/* line 206, ../sass/components/_footer.scss */
#footer-bottom #footer-wrapper-bottom ul {
  text-align: center;
}
/* line 212, ../sass/components/_footer.scss */
#footer-bottom .id-footer-social li, #footer-bottom #footer-block-5 li {
  display: inline;
  padding: 0 10px;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 218, ../sass/components/_footer.scss */
  #footer-bottom #phone-1-col {
    display: block;
  }
  /* line 222, ../sass/components/_footer.scss */
  #footer-bottom #footer-block-5 li {
    display: block;
    padding-left: 0px;
  }
  /* line 226, ../sass/components/_footer.scss */
  #footer-bottom #footer-wrapper-top, #footer-bottom #footer-wrapper-bottom {
    padding: 0 30px;
  }
  /* line 228, ../sass/components/_footer.scss */
  #footer-bottom #footer-wrapper-top ul, #footer-bottom #footer-wrapper-bottom ul {
    text-align: left;
  }
  /* line 233, ../sass/components/_footer.scss */
  #footer-bottom #footer-block-5 > div:last-child {
    padding: 0 0 20px 0;
  }
  /* line 237, ../sass/components/_footer.scss */
  #footer-bottom .id-footer-block-policy, #footer-bottom .id-footer-block-social, #footer-bottom .id-footer-block-alerts {
    padding-top: 30px;
  }
  /* line 240, ../sass/components/_footer.scss */
  #footer-bottom #footer-block-5 li.menu-item, #footer-bottom #footer-block-policy-phone li.menu-item {
    margin-bottom: 8px;
    padding: 5px;
  }
  /* line 244, ../sass/components/_footer.scss */
  #footer-bottom .ext-icon {
    padding: 6px 12px 6px 12px;
    margin-left: 8px;
  }
}
@media all and (min-width: 1100px) {
  /* line 250, ../sass/components/_footer.scss */
  #footer-bottom #desktop-3-col {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: left;
    -moz-justify-content: left;
    -ms-justify-content: left;
    -o-justify-content: left;
    justify-content: left;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 259, ../sass/components/_footer.scss */
  #footer-bottom #tablet-2-col {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: left;
    -moz-justify-content: left;
    -ms-justify-content: left;
    -o-justify-content: left;
    justify-content: left;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
  }
}

/* New Footer CSS */
/* line 279, ../sass/components/_footer.scss */
#block-footerblock {
  margin-bottom: 0px;
}
/* line 282, ../sass/components/_footer.scss */
#block-footerblock a:hover {
  text-decoration: underline !important;
}

/* line 286, ../sass/components/_footer.scss */
.region-footer {
  background-color: #EFF5F7 !important;
}

/* line 290, ../sass/components/_footer.scss */
.back-to-top-link {
  color: #BF0D2E !important;
  text-decoration: none;
  float: right;
  font-weight: 600;
}

/* line 297, ../sass/components/_footer.scss */
.back-to-top-link:after {
  content: "\f139";
  text-decoration: none;
  display: inline-block;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  margin-left: 0.5rem;
  color: #BF0D2E;
}

/* line 308, ../sass/components/_footer.scss */
.footer-top {
  background-color: #EFF5F7;
}
/* line 311, ../sass/components/_footer.scss */
.footer-top h2, .footer-top .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .footer-top h1, .footer-top .contact-method-label {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-size: 1.16rem;
  line-height: 1.25rem;
  color: #222222;
}
/* line 320, ../sass/components/_footer.scss */
.footer-top ul {
  list-style: none;
}
/* line 323, ../sass/components/_footer.scss */
.footer-top ul.menu {
  margin-left: 0 !important;
}
/* line 327, ../sass/components/_footer.scss */
.footer-top .menu a {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-size: .816rem;
  line-height: 1.25rem;
  color: #222222;
  text-decoration: none;
}
/* line 337, ../sass/components/_footer.scss */
.footer-top .menu a:after {
  content: "\2002 \203A";
  color: #222222;
}
/* line 342, ../sass/components/_footer.scss */
.footer-top .menu a.ext:after {
  content: '';
}
/* line 346, ../sass/components/_footer.scss */
.footer-top .menu a.ext-icon:after {
  content: '';
}
/* line 350, ../sass/components/_footer.scss */
.footer-top .ft-stay-connected {
  margin-left: 0 !important;
  padding-left: 0 !important;
}
/* line 354, ../sass/components/_footer.scss */
.footer-top .ft-stay-connected p {
  font-family: 'Open Sans';
  font-size: .823rem;
  font-weight: 400;
  line-height: 1.5rem;
  text-align: left;
  color: #222222;
  margin-left: 3.2em;
}
/* line 364, ../sass/components/_footer.scss */
.footer-top .ft-stay-connected li a {
  font-family: 'Open Sans';
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25rem;
  text-align: left;
  color: #222222;
  text-decoration: none;
}
/* line 373, ../sass/components/_footer.scss */
.footer-top .ft-stay-connected li a:after {
  content: "\2002 \203A";
  color: #222222;
}
/* line 377, ../sass/components/_footer.scss */
.footer-top .ft-stay-connected li a.ext:after {
  content: '';
}
/* line 381, ../sass/components/_footer.scss */
.footer-top .ft-stay-connected li a.ext-icon:after {
  content: '';
}
/* line 386, ../sass/components/_footer.scss */
.footer-top .ft-stay-connected .live-chat-link img {
  height: 1.875rem;
  width: 1.875rem;
  float: left;
  padding-right: 0.75rem;
}
/* line 395, ../sass/components/_footer.scss */
.footer-top .ft-stay-connected .emails-alert-link img {
  height: 1.875rem;
  width: 1.875rem;
  float: left;
  padding-right: 0.75rem;
}

/* line 408, ../sass/components/_footer.scss */
.menu--footer-bottom {
  background-color: #14284B;
  margin-bottom: 0px;
}
/* line 412, ../sass/components/_footer.scss */
.menu--footer-bottom ul {
  list-style: none;
  display: inline;
}
/* line 416, ../sass/components/_footer.scss */
.menu--footer-bottom ul li {
  display: inline-block;
  padding: 0 10px;
  position: relative;
}
/* line 421, ../sass/components/_footer.scss */
.menu--footer-bottom ul li a {
  font-family: 'Open Sans';
  font-size: .823rem;
  font-weight: 600;
  line-height: 1.25rem;
  text-align: left;
  color: #FFFFFF;
  text-decoration: none;
}

/* line 432, ../sass/components/_footer.scss */
#footer-bottom-container {
  min-height: 100px;
}
/* line 435, ../sass/components/_footer.scss */
#footer-bottom-container ul {
  list-style: none;
  display: inline;
}
/* line 439, ../sass/components/_footer.scss */
#footer-bottom-container .footer-bottom-logo {
  float: left;
  width: 25%;
  padding-top: 20px;
}
/* line 444, ../sass/components/_footer.scss */
#footer-bottom-container .footer-bottom-logo a img {
  max-height: 50px;
}
/* line 448, ../sass/components/_footer.scss */
#footer-bottom-container .footer-bottom-links {
  width: 50%;
  text-align: center;
  padding-top: 30px;
  display: inline-block;
}
/* line 454, ../sass/components/_footer.scss */
#footer-bottom-container .footer-bottom-links ul li:not(:last-child)::after {
  content: "\2002 \007C";
  position: absolute;
  line-height: 1.25rem;
  color: #FFFFFF;
}
/* line 461, ../sass/components/_footer.scss */
#footer-bottom-container .footer-bottom-links ul li a {
  font-family: 'Open Sans';
  font-size: .823rem;
  font-weight: 600;
  line-height: 1.25rem;
  text-align: left;
  color: #FFFFFF;
}
/* line 471, ../sass/components/_footer.scss */
#footer-bottom-container .footer-bottom-social {
  float: right;
  width: 25%;
  padding-top: 15px;
}
/* line 476, ../sass/components/_footer.scss */
#footer-bottom-container .footer-bottom-social ul {
  list-style: none;
  display: inline;
}
/* line 480, ../sass/components/_footer.scss */
#footer-bottom-container .footer-bottom-social ul li a {
  color: #FFFFFF;
}
/* line 484, ../sass/components/_footer.scss */
#footer-bottom-container .footer-bottom-social #footer-social {
  float: right;
}
/* line 488, ../sass/components/_footer.scss */
#footer-bottom-container .footer-bottom-social a img {
  height: 25px;
}
/* line 492, ../sass/components/_footer.scss */
#footer-bottom-container .footer-bottom-social #linkedinlink img {
  filter: brightness(0) invert(1);
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 499, ../sass/components/_footer.scss */
  #footer-bottom-container ul {
    padding-left: 0px !important;
    margin-left: 0px !important;
  }
  /* line 503, ../sass/components/_footer.scss */
  #footer-bottom-container .footer-bottom-logo {
    width: 100%;
  }
  /* line 506, ../sass/components/_footer.scss */
  #footer-bottom-container .footer-bottom-links {
    width: 100%;
    float: left;
    text-align: left;
  }
  /* line 511, ../sass/components/_footer.scss */
  #footer-bottom-container .footer-bottom-links ul li {
    display: block;
    padding-bottom: 10px;
  }
  /* line 516, ../sass/components/_footer.scss */
  #footer-bottom-container .footer-bottom-links ul li:after {
    content: "" !important;
  }
  /* line 521, ../sass/components/_footer.scss */
  #footer-bottom-container .footer-bottom-social {
    width: 100%;
    float: left;
  }
  /* line 525, ../sass/components/_footer.scss */
  #footer-bottom-container .footer-bottom-social #footer-social {
    float: left;
  }
  /* line 527, ../sass/components/_footer.scss */
  #footer-bottom-container .footer-bottom-social #footer-social li {
    padding: 0px;
    padding-right: 10px;
  }
}

/* line 539, ../sass/components/_footer.scss */
#footer-bottom-container:after {
  content: "";
  display: table;
  clear: both;
}

@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 547, ../sass/components/_footer.scss */
  #block-footerblock .layout--threecol-section > .layout__region--third {
    flex: 100% !important;
  }
  /* line 550, ../sass/components/_footer.scss */
  #block-footerblock .layout--threecol-section > .layout__region--second {
    flex: 100% !important;
  }
  /* line 553, ../sass/components/_footer.scss */
  #block-footerblock .layout--threecol-section > .layout__region--first {
    flex: 100% !important;
  }
}

/* line 4, ../sass/components/_accordions.scss */
#view-filter-accordion {
  overflow: auto;
}
/* line 7, ../sass/components/_accordions.scss */
#view-filter-accordion .form-item {
  margin: 0 0.5em 0.5em 0;
}
/* line 10, ../sass/components/_accordions.scss */
#view-filter-accordion [id^=edit-combine], #view-filter-accordion [id^=edit-title] {
  background-image: url("../images/ico-search.png");
  background-size: 22px 22px;
  background-repeat: no-repeat;
  background-position: initial;
  display: inline-block;
  content: " ";
  height: 22px;
  height: 2.2em;
  background-position: 97% center;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 10, ../sass/components/_accordions.scss */
  #view-filter-accordion [id^=edit-combine], #view-filter-accordion [id^=edit-title] {
    background-size: 22px 22px;
    height: 22px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 10, ../sass/components/_accordions.scss */
  #view-filter-accordion [id^=edit-combine], #view-filter-accordion [id^=edit-title] {
    background-size: 22px 22px;
    height: 22px;
  }
}
/* line 15, ../sass/components/_accordions.scss */
#view-filter-accordion [id^=edit-title] {
  width: 18.5em;
}
/* line 18, ../sass/components/_accordions.scss */
#view-filter-accordion .views-exposed-widget {
  padding-top: 0;
}
/* line 21, ../sass/components/_accordions.scss */
#view-filter-accordion .ui-accordion-header-icon.view-filter-ui-icon-up-first {
  position: relative;
  background-repeat: no-repeat;
  display: inline-block;
  float: right;
  margin-right: 1.2em;
  background-size: 20px 20px;
  width: 20px;
  height: 20px;
  margin-top: 6px;
  top: 0;
  background-image: url("../images/minus-sign-white.png");
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 21, ../sass/components/_accordions.scss */
  #view-filter-accordion .ui-accordion-header-icon.view-filter-ui-icon-up-first {
    background-size: 17px 17px;
    width: 17px;
    height: 17px;
    margin-top: 3px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 21, ../sass/components/_accordions.scss */
  #view-filter-accordion .ui-accordion-header-icon.view-filter-ui-icon-up-first {
    background-size: 13px 13px;
    width: 13px;
    height: 13px;
    margin-top: 3px;
  }
}
/* line 24, ../sass/components/_accordions.scss */
#view-filter-accordion .ui-accordion-header-icon.view-filter-ui-icon-up-second {
  position: relative;
  background-repeat: no-repeat;
  display: inline-block;
  float: right;
  margin-right: 1.2em;
  background-size: 1em 1em;
  width: 1em;
  height: 1em;
  margin-top: 0.5em;
  background-image: url("../images/minus-sign-white.png");
}
/* line 27, ../sass/components/_accordions.scss */
#view-filter-accordion .ui-accordion-header-icon.view-filter-ui-icon-down {
  position: relative;
  background-repeat: no-repeat;
  display: inline-block;
  float: right;
  margin-right: 1.2em;
  background-size: 20px 20px;
  width: 20px;
  height: 20px;
  margin-top: 6px;
  top: 0;
  background-image: url("../images/plus-sign.png");
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 27, ../sass/components/_accordions.scss */
  #view-filter-accordion .ui-accordion-header-icon.view-filter-ui-icon-down {
    background-size: 17px 17px;
    width: 17px;
    height: 17px;
    margin-top: 3px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 27, ../sass/components/_accordions.scss */
  #view-filter-accordion .ui-accordion-header-icon.view-filter-ui-icon-down {
    background-size: 13px 13px;
    width: 13px;
    height: 13px;
    margin-top: 3px;
  }
}
/* line 30, ../sass/components/_accordions.scss */
#view-filter-accordion .views-exposed-form {
  background-color: #e4e3e3;
  padding: 8px;
}
/* line 33, ../sass/components/_accordions.scss */
#view-filter-accordion .views-exposed-form label {
  display: inline-block;
}
/* line 37, ../sass/components/_accordions.scss */
#view-filter-accordion .views-widget {
  display: inline-block;
}
/* line 40, ../sass/components/_accordions.scss */
#view-filter-accordion .form-select, #view-filter-accordion .form-text {
  display: inline-block;
}
/* line 43, ../sass/components/_accordions.scss */
#view-filter-accordion .form-text {
  padding-left: 0.7em;
}
/* line 46, ../sass/components/_accordions.scss */
#view-filter-accordion .views-exposed-widgets, #view-filter-accordion .s {
  background-color: #fff;
  padding-bottom: 8px;
}
/* line 51, ../sass/components/_accordions.scss */
#view-filter-accordion #edit-field-expiration-date-value-2-value-year,
#view-filter-accordion #edit-field-release-date-value-min-year,
#view-filter-accordion #edit-field-release-date-value-max-year {
  width: 75px;
}
/* line 57, ../sass/components/_accordions.scss */
#view-filter-accordion .views-exposed-widget,
#view-filter-accordion #edit-field-publish-date-value-wrapper,
#view-filter-accordion #edit-field-expiration-date-value-2-wrapper,
#view-filter-accordion #edit-language-wrapper,
#view-filter-accordion #edit-combine-wrapper,
#view-filter-accordion #edit-field-document-type-tid-wrapper,
#view-filter-accordion #edit-field-release-date-value-wrapper,
#view-filter-accordion #edit-field-topic-value-wrapper,
#view-filter-accordion #edit-title-wrapper,
#view-filter-accordion div[class^='views-widget-filter'] {
  display: inline-block;
  margin-left: 8px;
  margin-top: 8px;
}
/* line 72, ../sass/components/_accordions.scss */
#view-filter-accordion #activeViewFilters {
  padding: 0 8px 8px 8px;
  background-color: #e6e6e6;
}
/* line 76, ../sass/components/_accordions.scss */
#view-filter-accordion #dateFilters {
  display: inline-block;
}
/* line 79, ../sass/components/_accordions.scss */
#view-filter-accordion #clearAllFilters {
  float: right;
  margin: 0.375em;
}
/* line 83, ../sass/components/_accordions.scss */
#view-filter-accordion .viewFilterButton {
  margin: 0.375em;
}
/* line 86, ../sass/components/_accordions.scss */
#view-filter-accordion .viewFilterButton .viewFilterCloseIcon {
  background-image: url("x_u19.png");
  background-repeat: no-repeat;
  background-size: 16px 16px;
  width: 16px;
  height: 16px;
  display: inline-block;
  float: right;
  margin-left: 0.375em;
  margin-top: 0.15em;
}

/* View filters */
/* line 102, ../sass/components/_accordions.scss */
input[id^="ui-multiselect-edit-field"] {
  margin-right: 6px;
}

/* line 106, ../sass/components/_accordions.scss */
.ui-multiselect-checkboxes span {
  font-weight: normal;
}

/* line 110, ../sass/components/_accordions.scss */
.ui-multiselect.viewFilterMultiselect, .ui-multiselect-menu.viewFilterMultiselect {
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  padding: 0.3em 0 0.5em 0.8em;
}
/* line 113, ../sass/components/_accordions.scss */
.ui-multiselect.viewFilterMultiselect span, .ui-multiselect-menu.viewFilterMultiselect span {
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.8em;
}

/* line 118, ../sass/components/_accordions.scss */
.selectedViewText {
  font-weight: bold;
  color: #900;
}

/* line 5, ../sass/components/_landing_pages.scss */
.node--type-landing-page h1 {
  display: block;
  position: relative;
  text-align: center;
  clear: both;
  width: 100%;
  margin-top: 0;
}
/* line 12, ../sass/components/_landing_pages.scss */
.node--type-landing-page h1.eventHT {
  text-align: left;
  margin-top: 0;
}
/* line 16, ../sass/components/_landing_pages.scss */
.node--type-landing-page .field--name-field-related-health-topics {
  display: inline-block;
}
/* line 19, ../sass/components/_landing_pages.scss */
.node--type-landing-page .flexItemText {
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-grow: 0;
  -o-flex-grow: 0;
  flex-grow: 0;
}
/* line 23, ../sass/components/_landing_pages.scss */
.node--type-landing-page .accordion-header h2, .node--type-landing-page .accordion-header .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-landing-page .accordion-header h1, .node--type-landing-page .accordion-header .contact-method-label {
  color: #222;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  margin: 0 0 0 0;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 23, ../sass/components/_landing_pages.scss */
  .node--type-landing-page .accordion-header h2, .node--type-landing-page .accordion-header .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-landing-page .accordion-header h1, .node--type-landing-page .accordion-header .contact-method-label {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 23, ../sass/components/_landing_pages.scss */
  .node--type-landing-page .accordion-header h2, .node--type-landing-page .accordion-header .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-landing-page .accordion-header h1, .node--type-landing-page .accordion-header .contact-method-label {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) {
  /* line 23, ../sass/components/_landing_pages.scss */
  .node--type-landing-page .accordion-header h2, .node--type-landing-page .accordion-header .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-landing-page .accordion-header h1, .node--type-landing-page .accordion-header .contact-method-label {
    font-size: 1.125rem;
  }
}
/* line 27, ../sass/components/_landing_pages.scss */
.node--type-landing-page .graydate, .node--type-landing-page .publicationCard .flexItemText .datetime, .publicationCard .flexItemText .node--type-landing-page .datetime {
  padding-bottom: 0.5em;
}

/* line 32, ../sass/components/_landing_pages.scss */
.all-health-topics--landing h2.health-topics-accordion-title, .all-health-topics--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.health-topics-accordion-title, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .all-health-topics--landing h1.health-topics-accordion-title, .all-health-topics--landing .health-topics-accordion-title.contact-method-label {
  margin: 0 0 11px 0;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-style: normal;
  display: inline;
  font-weight: normal;
  color: #333;
}
/* line 41, ../sass/components/_landing_pages.scss */
.all-health-topics--landing .accordion-header h3, .all-health-topics--landing .accordion-header .field--name-field-social-phrase-group-title, .all-health-topics--landing .accordion-header .field--name-field-image-gallery-title {
  font-weight: normal;
  color: #222;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  margin: 0 0 0 0;
}
/* line 47, ../sass/components/_landing_pages.scss */
.all-health-topics--landing .accordion-header .field--name-field-social-phrase-group-title, .all-health-topics--landing .accordion-header .field--name-field-image-gallery-title {
  font-size: 1.25rem;
}
@media all and (min-width: 1440px) {
  /* line 47, ../sass/components/_landing_pages.scss */
  .all-health-topics--landing .accordion-header .field--name-field-social-phrase-group-title, .all-health-topics--landing .accordion-header .field--name-field-image-gallery-title {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 47, ../sass/components/_landing_pages.scss */
  .all-health-topics--landing .accordion-header .field--name-field-social-phrase-group-title, .all-health-topics--landing .accordion-header .field--name-field-image-gallery-title {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 47, ../sass/components/_landing_pages.scss */
  .all-health-topics--landing .accordion-header .field--name-field-social-phrase-group-title, .all-health-topics--landing .accordion-header .field--name-field-image-gallery-title {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 47, ../sass/components/_landing_pages.scss */
  .all-health-topics--landing .accordion-header .field--name-field-social-phrase-group-title, .all-health-topics--landing .accordion-header .field--name-field-image-gallery-title {
    font-size: 1rem;
  }
}

/* line 53, ../sass/components/_landing_pages.scss */
.trendingHealthTopicsView a {
  color: #fff;
}
/* line 56, ../sass/components/_landing_pages.scss */
.trendingHealthTopicsView .view-content {
  text-align: center;
  margin: 1em;
}
/* line 59, ../sass/components/_landing_pages.scss */
.trendingHealthTopicsView .view-content .views-row {
  display: inline-block;
  margin-right: 0.5em;
  margin-bottom: 0;
}
/* line 63, ../sass/components/_landing_pages.scss */
.trendingHealthTopicsView .view-content .views-row .views-field-title {
  margin: 0.5em auto;
}

/* line 72, ../sass/components/_landing_pages.scss */
.field--name-field-content .view-nhlbi-featured-health-topic-news .view-content {
  width: 100%;
}

/* line 77, ../sass/components/_landing_pages.scss */
.node--type-feature-article.node--view-mode-landing-page-teaser,
.node--type-general.node--view-mode-landing-page-teaser,
.node--type-press-release.node--view-mode-landing-page-teaser {
  background-color: #990000;
}
/* line 82, ../sass/components/_landing_pages.scss */
.node--type-feature-article.node--view-mode-landing-page-teaser .flexItemText,
.node--type-general.node--view-mode-landing-page-teaser .flexItemText,
.node--type-press-release.node--view-mode-landing-page-teaser .flexItemText {
  color: #fff;
  background-color: transparent;
}
/* line 126, ../sass/_mixins.scss */
.node--type-feature-article.node--view-mode-landing-page-teaser .flexItemText a, .node--type-feature-article.node--view-mode-landing-page-teaser .flexItemText a:link,
.node--type-general.node--view-mode-landing-page-teaser .flexItemText a,
.node--type-general.node--view-mode-landing-page-teaser .flexItemText a:link,
.node--type-press-release.node--view-mode-landing-page-teaser .flexItemText a,
.node--type-press-release.node--view-mode-landing-page-teaser .flexItemText a:link {
  color: #fff;
  text-decoration: underline;
}
/* line 132, ../sass/_mixins.scss */
.node--type-feature-article.node--view-mode-landing-page-teaser .flexItemText a:visited,
.node--type-general.node--view-mode-landing-page-teaser .flexItemText a:visited,
.node--type-press-release.node--view-mode-landing-page-teaser .flexItemText a:visited {
  color: #D7E7F4;
}
/* line 145, ../sass/_mixins.scss */
.node--type-feature-article.node--view-mode-landing-page-teaser .flexItemText a:hover,
.node--type-general.node--view-mode-landing-page-teaser .flexItemText a:hover,
.node--type-press-release.node--view-mode-landing-page-teaser .flexItemText a:hover {
  font-weight: bold;
}
/* line 154, ../sass/_mixins.scss */
.node--type-feature-article.node--view-mode-landing-page-teaser .flexItemText h1, .node--type-feature-article.node--view-mode-landing-page-teaser .flexItemText .photocredit,
.node--type-general.node--view-mode-landing-page-teaser .flexItemText h1,
.node--type-general.node--view-mode-landing-page-teaser .flexItemText .photocredit,
.node--type-press-release.node--view-mode-landing-page-teaser .flexItemText h1,
.node--type-press-release.node--view-mode-landing-page-teaser .flexItemText .photocredit {
  color: #fff;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 85, ../sass/components/_landing_pages.scss */
  .node--type-feature-article.node--view-mode-landing-page-teaser .flexItemText .bodytext, .node--type-feature-article.node--view-mode-landing-page-teaser .flexItemText .darkGrayBodyText, .node--type-feature-article.node--view-mode-landing-page-teaser .flexItemText .foa-expiration-date, .node--type-feature-article.node--view-mode-landing-page-teaser .flexItemText hr,
  .node--type-general.node--view-mode-landing-page-teaser .flexItemText .bodytext,
  .node--type-general.node--view-mode-landing-page-teaser .flexItemText .darkGrayBodyText,
  .node--type-general.node--view-mode-landing-page-teaser .flexItemText .foa-expiration-date,
  .node--type-general.node--view-mode-landing-page-teaser .flexItemText hr,
  .node--type-press-release.node--view-mode-landing-page-teaser .flexItemText .bodytext,
  .node--type-press-release.node--view-mode-landing-page-teaser .flexItemText .darkGrayBodyText,
  .node--type-press-release.node--view-mode-landing-page-teaser .flexItemText .foa-expiration-date,
  .node--type-press-release.node--view-mode-landing-page-teaser .flexItemText hr {
    display: none;
  }
}
/* line 90, ../sass/components/_landing_pages.scss */
.node--type-feature-article.node--view-mode-landing-page-teaser .flexItemText .field--name-field-related-health-topics > .field__item,
.node--type-general.node--view-mode-landing-page-teaser .flexItemText .field--name-field-related-health-topics > .field__item,
.node--type-press-release.node--view-mode-landing-page-teaser .flexItemText .field--name-field-related-health-topics > .field__item {
  display: inline-block;
  margin-bottom: 0.2em;
}

/* line 98, ../sass/components/_landing_pages.scss */
.ht-featured-clinical-trial {
  background-color: #1e91d4;
}
/* line 100, ../sass/components/_landing_pages.scss */
.ht-featured-clinical-trial .flexItemText {
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
  color: #fff;
  background-color: transparent;
}
/* line 126, ../sass/_mixins.scss */
.ht-featured-clinical-trial .flexItemText a, .ht-featured-clinical-trial .flexItemText a:link {
  color: #fff;
  text-decoration: underline;
}
/* line 132, ../sass/_mixins.scss */
.ht-featured-clinical-trial .flexItemText a:visited {
  color: #D7E7F4;
}
/* line 145, ../sass/_mixins.scss */
.ht-featured-clinical-trial .flexItemText a:hover {
  font-weight: bold;
}
/* line 154, ../sass/_mixins.scss */
.ht-featured-clinical-trial .flexItemText h1, .ht-featured-clinical-trial .flexItemText .photocredit {
  color: #fff;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 100, ../sass/components/_landing_pages.scss */
  .ht-featured-clinical-trial .flexItemText {
    -webkit-box-ordinal-group: 2;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
}
/* line 108, ../sass/components/_landing_pages.scss */
.ht-featured-clinical-trial .flexItemImage, .ht-featured-clinical-trial .flexItemImageHalf, .ht-featured-clinical-trial .flexItemImageTenth, .ht-featured-clinical-trial .flexItemImageFourth, .ht-featured-clinical-trial .flexItemImageThird, .ht-featured-clinical-trial .flexItemImageThirdHalf, .ht-featured-clinical-trial .hero-image {
  -webkit-box-ordinal-group: 2;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 108, ../sass/components/_landing_pages.scss */
  .ht-featured-clinical-trial .flexItemImage, .ht-featured-clinical-trial .flexItemImageHalf, .ht-featured-clinical-trial .flexItemImageTenth, .ht-featured-clinical-trial .flexItemImageFourth, .ht-featured-clinical-trial .flexItemImageThird, .ht-featured-clinical-trial .flexItemImageThirdHalf, .ht-featured-clinical-trial .hero-image {
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
}

/* line 118, ../sass/components/_landing_pages.scss */
.clinical-trials--landing .secondary-accordion h2, .clinical-trials--landing .secondary-accordion .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .clinical-trials--landing .secondary-accordion h1, .clinical-trials--landing .secondary-accordion .contact-method-label {
  margin: 0 0 0 0;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 118, ../sass/components/_landing_pages.scss */
  .clinical-trials--landing .secondary-accordion h2, .clinical-trials--landing .secondary-accordion .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .clinical-trials--landing .secondary-accordion h1, .clinical-trials--landing .secondary-accordion .contact-method-label {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 118, ../sass/components/_landing_pages.scss */
  .clinical-trials--landing .secondary-accordion h2, .clinical-trials--landing .secondary-accordion .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .clinical-trials--landing .secondary-accordion h1, .clinical-trials--landing .secondary-accordion .contact-method-label {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 1100px) {
  /* line 118, ../sass/components/_landing_pages.scss */
  .clinical-trials--landing .secondary-accordion h2, .clinical-trials--landing .secondary-accordion .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .clinical-trials--landing .secondary-accordion h1, .clinical-trials--landing .secondary-accordion .contact-method-label {
    font-size: 1.5rem;
  }
}

/* line 126, ../sass/components/_landing_pages.scss */
.promoted-content-container {
  background-color: #1a568c;
}
/* line 128, ../sass/components/_landing_pages.scss */
.promoted-content-container .flexItemImage, .promoted-content-container .flexItemImageHalf, .promoted-content-container .flexItemImageTenth, .promoted-content-container .flexItemImageFourth, .promoted-content-container .flexItemImageThird, .promoted-content-container .flexItemImageThirdHalf, .promoted-content-container .hero-image {
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
}
/* line 131, ../sass/components/_landing_pages.scss */
.promoted-content-container .flexItemText {
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
  color: #fff;
  background-color: transparent;
}
/* line 126, ../sass/_mixins.scss */
.promoted-content-container .flexItemText a, .promoted-content-container .flexItemText a:link {
  color: #fff;
  text-decoration: underline;
}
/* line 132, ../sass/_mixins.scss */
.promoted-content-container .flexItemText a:visited {
  color: #D7E7F4;
}
/* line 145, ../sass/_mixins.scss */
.promoted-content-container .flexItemText a:hover {
  font-weight: bold;
}
/* line 154, ../sass/_mixins.scss */
.promoted-content-container .flexItemText h1, .promoted-content-container .flexItemText .photocredit {
  color: #fff;
}

/* line 145, ../sass/components/_landing_pages.scss */
.research-topics--landing .node--type-content-block .flexcontainer, .research-topics--landing .node--type-content-block .related-ht-ser-container, .research-topics--landing .node--type-content-block .field--name-field-sfa-card, .research-topics--landing .node--type-content-block .field--name-field-speaker,
.research-topics--landing .node--type-content-block .field--name-field-executives, .research-topics--landing .node--type-content-block .standard-card-field, .research-topics--landing .node--type-content-block .field--name-field-advisory-committees, .research-topics--landing .node--type-content-block .contact-nhlbi-titleblock, .research-topics--landing .node--type-content-block .field--name-field-contact-cards, .research-topics--landing .node--type-content-block .field--name-field-employment-opportunity-car, .research-topics--landing .node--type-content-block .all-grants-foa-container,
.research-topics--landing .node--type-content-block .field--name-field-program-officers,
.research-topics--landing .node--type-content-block .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content,
.research-topics--landing .node--type-content-block .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content, .research-topics--landing .node--type-content-block .node--type-individual-contact .field--name-field-contact-methods, .node--type-individual-contact .research-topics--landing .node--type-content-block .field--name-field-contact-methods,
.research-topics--landing .node--type-content-block .node--type-division.node--view-mode-full .field--name-field-contact-methods,
.node--type-division.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-contact-methods,
.research-topics--landing .node--type-content-block .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods,
.node--type-division.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-contact-methods,
.research-topics--landing .node--type-content-block .node--type-branch.node--view-mode-full .field--name-field-contact-methods,
.node--type-branch.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-contact-methods,
.research-topics--landing .node--type-content-block .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods,
.node--type-branch.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-contact-methods,
.research-topics--landing .node--type-content-block .node--type-general.node--view-mode-full .field--name-field-contact-methods,
.node--type-general.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-contact-methods,
.research-topics--landing .node--type-content-block .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods,
.node--type-general.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-contact-methods,
.research-topics--landing .node--type-content-block .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods,
.node--type-health-education-initiative.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-contact-methods,
.research-topics--landing .node--type-content-block .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods,
.node--type-health-education-initiative.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-contact-methods, .research-topics--landing .node--type-content-block .node--type-committee .field--name-field-card-text, .node--type-committee .research-topics--landing .node--type-content-block .field--name-field-card-text, .research-topics--landing .node--type-content-block .news-and-events--landing .landing-social, .news-and-events--landing .research-topics--landing .node--type-content-block .landing-social, .research-topics--landing .node--type-content-block .field--name-field-sfa-cards, .research-topics--landing .node--type-content-block .locationMap.contact-location-map-container, .research-topics--landing .node--type-content-block .locationMap, .research-topics--landing .node--type-content-block .grants-and-training-card-wrapper, .research-topics--landing .node--type-content-block .about-nhlbi-division-card-wrapper, .research-topics--landing .node--type-content-block .hei-tools-icon-card-wrapper, .research-topics--landing .node--type-content-block .field--name-field-grants-and-training-card, .research-topics--landing .node--type-content-block .field--name-field-division-card, .research-topics--landing .node--type-content-block .field--name-field-tool-icon-card, .research-topics--landing .node--type-content-block .field--name-field-promotional-card, .research-topics--landing .node--type-content-block .field--name-field-sv-promotional-cards, .research-topics--landing .node--type-content-block .field--name-field-about-nhlbi-promotional-ca, .research-topics--landing .node--type-content-block .strategic-vision-titleblock, .research-topics--landing .node--type-content-block .ppg-titleblock-wrapper, .research-topics--landing .node--type-content-block .ppg-guidelines-card-wrapper, .research-topics--landing .node--type-content-block .field--name-field-human-subject-cards, .research-topics--landing .node--type-content-block .field--name-field-section-card, .research-topics--landing .node--type-content-block .field--name-field-highlight-card, .research-topics--landing .node--type-content-block .health-topic-teaser-container, .research-topics--landing .node--type-content-block .about-nhlbi-our-mission-wrapper, .research-topics--landing .node--type-content-block .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard, .about-nhlbi-our-mission-wrapper .research-topics--landing .node--type-content-block .field--name-field-leadership > .director-bioCard, .research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ, .nhlbi-publications-and-resources--landing .research-topics--landing .node--type-content-block .field--name-field-health-consumer-nhlbi-publ,
.research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi,
.nhlbi-publications-and-resources--landing .research-topics--landing .node--type-content-block .field--name-field-health-professionals-nhlbi, .research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .research-topics--landing .node--type-content-block .standard-teaser,
.research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .research-topics--landing .node--type-content-block .standard-teaser, .research-topics--landing .node--type-content-block .publicationsBlock.view-nhlbi-publications > .view-content,
.research-topics--landing .node--type-content-block .field--name-field-related-publications, .research-topics--landing .node--type-content-block .healthEducationBlock .standard-teaser, .healthEducationBlock .research-topics--landing .node--type-content-block .standard-teaser, .research-topics--landing .node--type-content-block .systematicEvidenceReviewsBlock .view-content, .systematicEvidenceReviewsBlock .research-topics--landing .node--type-content-block .view-content,
.research-topics--landing .node--type-content-block .clinicalPracticeGuidelinesBlock .view-content,
.clinicalPracticeGuidelinesBlock .research-topics--landing .node--type-content-block .view-content,
.research-topics--landing .node--type-content-block .publicationsAndFactSheetsBlock .view-content,
.publicationsAndFactSheetsBlock .research-topics--landing .node--type-content-block .view-content, .research-topics--landing .node--type-content-block .rtFlexContainer, .research-topics--landing .node--type-content-block .node--type-research-topic .field--name-field-science-supplemental-page, .node--type-research-topic .research-topics--landing .node--type-content-block .field--name-field-science-supplemental-page, .research-topics--landing .node--type-content-block .node--type-research-topic .researchTopicPublications, .node--type-research-topic .research-topics--landing .node--type-content-block .researchTopicPublications, .research-topics--landing .node--type-content-block .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard, .node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block article.listTeaserCard, .research-topics--landing .node--type-content-block .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser, .node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block article.standard-teaser,
.research-topics--landing .node--type-content-block .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard,
.node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block article.newsEventsCard, .research-topics--landing .node--type-content-block .esi-feature-card, .research-topics--landing .node--type-content-block .featured-science-instance-teaser-container, .research-topics--landing .node--type-content-block .sfa-teaser-container, .research-topics--landing .node--type-content-block .training-opportunity-card .field--name-field-associated-people, .training-opportunity-card .research-topics--landing .node--type-content-block .field--name-field-associated-people, .research-topics--landing .node--type-content-block .field--name-field-featured-training-opportun, .research-topics--landing .node--type-content-block .field--name-field-career-stages, .research-topics--landing .node--type-content-block .field--name-field-workforce-development-card, .research-topics--landing .node--type-content-block .node--type-update.node--view-mode-executive-teaser, .research-topics--landing .node--type-content-block .news-and-events-titleblock, .research-topics--landing .node--type-content-block .contact-box > .field--name-field-contact-methods, .research-topics--landing .node--type-content-block .leadership-container, .research-topics--landing .node--type-content-block .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership, .leadership-container .leadership-deputy-director-container .research-topics--landing .node--type-content-block .field--name-field-additional-leadership, .research-topics--landing .node--type-content-block .branch-leadership-container, .research-topics--landing .node--type-content-block .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership, .branch-leadership-container .leadership-deputy-director-container .research-topics--landing .node--type-content-block .field--name-field-additional-leadership, .research-topics--landing .node--type-content-block .node--type-general .field--name-field-related-publications, .node--type-general .research-topics--landing .node--type-content-block .field--name-field-related-publications, .research-topics--landing .node--type-content-block .node--type-general .field--name-field-general-publications-rlt, .node--type-general .research-topics--landing .node--type-content-block .field--name-field-general-publications-rlt, .research-topics--landing .node--type-content-block .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser, .node--type-general .field--name-field-general-publications-rlt > .field__item .research-topics--landing .node--type-content-block .standard-teaser, .research-topics--landing .node--type-content-block .node--type-general .field--name-field-related-publications > .field__item .standard-teaser, .node--type-general .field--name-field-related-publications > .field__item .research-topics--landing .node--type-content-block .standard-teaser, .research-topics--landing .node--type-content-block .objective-text-container, .research-topics--landing .node--type-content-block .objective-list-container, .research-topics--landing .node--type-content-block .field--name-field-goal-card, .research-topics--landing .node--type-content-block .strategic-vision-landing-goals-wrapper, .research-topics--landing .node--type-content-block .node--type-principal-investigator .striped-container-wrapper, .node--type-principal-investigator .research-topics--landing .node--type-content-block .striped-container-wrapper, .research-topics--landing .node--type-content-block .node--type-principal-investigator .striped-container, .node--type-principal-investigator .research-topics--landing .node--type-content-block .striped-container, .research-topics--landing .node--type-content-block .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .research-topics--landing .node--type-content-block article,
.research-topics--landing .node--type-content-block .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .research-topics--landing .node--type-content-block article, .research-topics--landing .node--type-content-block .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .research-topics--landing .node--type-content-block .standard-teaser.node--view-mode-short-teaser, .research-topics--landing .node--type-content-block .field--name-field-awards, .research-topics--landing .node--type-content-block .registerSocialContainer, .research-topics--landing .node--type-content-block .eventdatesLocationType, .research-topics--landing .node--type-content-block .news-article-container, .research-topics--landing .node--type-content-block .node--type-feature-article.node--view-mode-press-release-teaser,
.research-topics--landing .node--type-content-block .node--type-press-release.node--view-mode-press-release-teaser,
.research-topics--landing .node--type-content-block .node--type-events.node--view-mode-press-release-teaser,
.research-topics--landing .node--type-content-block .node--type-feature-article.node--view-mode-hp-press-release-teaser,
.research-topics--landing .node--type-content-block .node--type-press-release.node--view-mode-hp-press-release-teaser,
.research-topics--landing .node--type-content-block .node--type-events.node--view-mode-hp-press-release-teaser,
.research-topics--landing .node--type-content-block .node--type-news-mention.node--view-mode-hp-press-release-teaser, .research-topics--landing .node--type-content-block .news-header-container, .research-topics--landing .node--type-content-block .contacts-container .field--name-field-contacts, .contacts-container .research-topics--landing .node--type-content-block .field--name-field-contacts, .research-topics--landing .node--type-content-block .publicationsBox .field--name-field-related-publications, .publicationsBox .research-topics--landing .node--type-content-block .field--name-field-related-publications, .research-topics--landing .node--type-content-block .field--name-field-primary-featured-item, .research-topics--landing .node--type-content-block .field--name-field-additional-featured-items, .research-topics--landing .node--type-content-block .homepage-health-topics-container, .research-topics--landing .node--type-content-block .homepage-mission-areas-container, .research-topics--landing .node--type-content-block .homepage-location-container, .research-topics--landing .node--type-content-block .field--name-field-alumni, .research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container, .node--type-nhlbi-publication.node--view-mode-full .research-topics--landing .node--type-content-block .nhlbi-publication-details-container,
.research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container,
.node--type-nhlbi-publication.node--view-mode-subscribe .research-topics--landing .node--type-content-block .nhlbi-publication-details-container, .research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications, .node--type-nhlbi-publication.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-related-nhlbi-publications,
.research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications,
.node--type-nhlbi-publication.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-related-nhlbi-publications, .research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .research-topics--landing .node--type-content-block .standard-teaser,
.research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .research-topics--landing .node--type-content-block .standard-teaser {
  background-color: #102d66;
}
/* line 147, ../sass/components/_landing_pages.scss */
.research-topics--landing .node--type-content-block .flexcontainer .flexItemImage, .research-topics--landing .node--type-content-block .related-ht-ser-container .flexItemImage, .research-topics--landing .node--type-content-block .field--name-field-sfa-card .flexItemImage, .research-topics--landing .node--type-content-block .field--name-field-speaker .flexItemImage,
.research-topics--landing .node--type-content-block .field--name-field-executives .flexItemImage, .research-topics--landing .node--type-content-block .standard-card-field .flexItemImage, .research-topics--landing .node--type-content-block .field--name-field-advisory-committees .flexItemImage, .research-topics--landing .node--type-content-block .contact-nhlbi-titleblock .flexItemImage, .research-topics--landing .node--type-content-block .field--name-field-contact-cards .flexItemImage, .research-topics--landing .node--type-content-block .field--name-field-employment-opportunity-car .flexItemImage, .research-topics--landing .node--type-content-block .all-grants-foa-container .flexItemImage,
.research-topics--landing .node--type-content-block .field--name-field-program-officers .flexItemImage,
.research-topics--landing .node--type-content-block .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImage,
.research-topics--landing .node--type-content-block .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImage, .research-topics--landing .node--type-content-block .node--type-individual-contact .field--name-field-contact-methods .flexItemImage, .node--type-individual-contact .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemImage,
.research-topics--landing .node--type-content-block .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemImage,
.node--type-division.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemImage,
.research-topics--landing .node--type-content-block .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImage,
.node--type-division.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemImage,
.research-topics--landing .node--type-content-block .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemImage,
.node--type-branch.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemImage,
.research-topics--landing .node--type-content-block .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImage,
.node--type-branch.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemImage,
.research-topics--landing .node--type-content-block .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemImage,
.node--type-general.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemImage,
.research-topics--landing .node--type-content-block .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImage,
.node--type-general.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemImage,
.research-topics--landing .node--type-content-block .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemImage,
.node--type-health-education-initiative.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemImage,
.research-topics--landing .node--type-content-block .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImage,
.node--type-health-education-initiative.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemImage, .research-topics--landing .node--type-content-block .node--type-committee .field--name-field-card-text .flexItemImage, .node--type-committee .research-topics--landing .node--type-content-block .field--name-field-card-text .flexItemImage, .research-topics--landing .node--type-content-block .news-and-events--landing .landing-social .flexItemImage, .news-and-events--landing .research-topics--landing .node--type-content-block .landing-social .flexItemImage, .research-topics--landing .node--type-content-block .field--name-field-sfa-cards .flexItemImage, .research-topics--landing .node--type-content-block .locationMap.contact-location-map-container .flexItemImage, .research-topics--landing .node--type-content-block .locationMap .flexItemImage, .research-topics--landing .node--type-content-block .grants-and-training-card-wrapper .flexItemImage, .research-topics--landing .node--type-content-block .about-nhlbi-division-card-wrapper .flexItemImage, .research-topics--landing .node--type-content-block .hei-tools-icon-card-wrapper .flexItemImage, .research-topics--landing .node--type-content-block .field--name-field-grants-and-training-card .flexItemImage, .research-topics--landing .node--type-content-block .field--name-field-division-card .flexItemImage, .research-topics--landing .node--type-content-block .field--name-field-tool-icon-card .flexItemImage, .research-topics--landing .node--type-content-block .field--name-field-promotional-card .flexItemImage, .research-topics--landing .node--type-content-block .field--name-field-sv-promotional-cards .flexItemImage, .research-topics--landing .node--type-content-block .field--name-field-about-nhlbi-promotional-ca .flexItemImage, .research-topics--landing .node--type-content-block .strategic-vision-titleblock .flexItemImage, .research-topics--landing .node--type-content-block .ppg-titleblock-wrapper .flexItemImage, .research-topics--landing .node--type-content-block .ppg-guidelines-card-wrapper .flexItemImage, .research-topics--landing .node--type-content-block .field--name-field-human-subject-cards .flexItemImage, .research-topics--landing .node--type-content-block .field--name-field-section-card .flexItemImage, .research-topics--landing .node--type-content-block .field--name-field-highlight-card .flexItemImage, .research-topics--landing .node--type-content-block .health-topic-teaser-container .flexItemImage, .research-topics--landing .node--type-content-block .about-nhlbi-our-mission-wrapper .flexItemImage, .research-topics--landing .node--type-content-block .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImage, .about-nhlbi-our-mission-wrapper .research-topics--landing .node--type-content-block .field--name-field-leadership > .director-bioCard .flexItemImage, .research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImage, .nhlbi-publications-and-resources--landing .research-topics--landing .node--type-content-block .field--name-field-health-consumer-nhlbi-publ .flexItemImage,
.research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImage,
.nhlbi-publications-and-resources--landing .research-topics--landing .node--type-content-block .field--name-field-health-professionals-nhlbi .flexItemImage, .research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImage, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemImage,
.research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImage,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemImage, .research-topics--landing .node--type-content-block .publicationsBlock.view-nhlbi-publications > .view-content .flexItemImage,
.research-topics--landing .node--type-content-block .field--name-field-related-publications .flexItemImage, .research-topics--landing .node--type-content-block .healthEducationBlock .standard-teaser .flexItemImage, .healthEducationBlock .research-topics--landing .node--type-content-block .standard-teaser .flexItemImage, .research-topics--landing .node--type-content-block .systematicEvidenceReviewsBlock .view-content .flexItemImage, .systematicEvidenceReviewsBlock .research-topics--landing .node--type-content-block .view-content .flexItemImage,
.research-topics--landing .node--type-content-block .clinicalPracticeGuidelinesBlock .view-content .flexItemImage,
.clinicalPracticeGuidelinesBlock .research-topics--landing .node--type-content-block .view-content .flexItemImage,
.research-topics--landing .node--type-content-block .publicationsAndFactSheetsBlock .view-content .flexItemImage,
.publicationsAndFactSheetsBlock .research-topics--landing .node--type-content-block .view-content .flexItemImage, .research-topics--landing .node--type-content-block .rtFlexContainer .flexItemImage, .research-topics--landing .node--type-content-block .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImage, .node--type-research-topic .research-topics--landing .node--type-content-block .field--name-field-science-supplemental-page .flexItemImage, .research-topics--landing .node--type-content-block .node--type-research-topic .researchTopicPublications .flexItemImage, .node--type-research-topic .research-topics--landing .node--type-content-block .researchTopicPublications .flexItemImage, .research-topics--landing .node--type-content-block .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemImage, .node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block article.listTeaserCard .flexItemImage, .research-topics--landing .node--type-content-block .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImage, .node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block article.standard-teaser .flexItemImage,
.research-topics--landing .node--type-content-block .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImage,
.node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block article.newsEventsCard .flexItemImage, .research-topics--landing .node--type-content-block .esi-feature-card .flexItemImage, .research-topics--landing .node--type-content-block .featured-science-instance-teaser-container .flexItemImage, .research-topics--landing .node--type-content-block .sfa-teaser-container .flexItemImage, .research-topics--landing .node--type-content-block .training-opportunity-card .field--name-field-associated-people .flexItemImage, .training-opportunity-card .research-topics--landing .node--type-content-block .field--name-field-associated-people .flexItemImage, .research-topics--landing .node--type-content-block .field--name-field-featured-training-opportun .flexItemImage, .research-topics--landing .node--type-content-block .field--name-field-career-stages .flexItemImage, .research-topics--landing .node--type-content-block .field--name-field-workforce-development-card .flexItemImage, .research-topics--landing .node--type-content-block .node--type-update.node--view-mode-executive-teaser .flexItemImage, .research-topics--landing .node--type-content-block .news-and-events-titleblock .flexItemImage, .research-topics--landing .node--type-content-block .contact-box > .field--name-field-contact-methods .flexItemImage, .research-topics--landing .node--type-content-block .leadership-container .flexItemImage, .research-topics--landing .node--type-content-block .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImage, .leadership-container .leadership-deputy-director-container .research-topics--landing .node--type-content-block .field--name-field-additional-leadership .flexItemImage, .research-topics--landing .node--type-content-block .branch-leadership-container .flexItemImage, .research-topics--landing .node--type-content-block .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImage, .branch-leadership-container .leadership-deputy-director-container .research-topics--landing .node--type-content-block .field--name-field-additional-leadership .flexItemImage, .research-topics--landing .node--type-content-block .node--type-general .field--name-field-related-publications .flexItemImage, .node--type-general .research-topics--landing .node--type-content-block .field--name-field-related-publications .flexItemImage, .research-topics--landing .node--type-content-block .node--type-general .field--name-field-general-publications-rlt .flexItemImage, .node--type-general .research-topics--landing .node--type-content-block .field--name-field-general-publications-rlt .flexItemImage, .research-topics--landing .node--type-content-block .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImage, .node--type-general .field--name-field-general-publications-rlt > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemImage, .research-topics--landing .node--type-content-block .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImage, .node--type-general .field--name-field-related-publications > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemImage, .research-topics--landing .node--type-content-block .objective-text-container .flexItemImage, .research-topics--landing .node--type-content-block .objective-list-container .flexItemImage, .research-topics--landing .node--type-content-block .field--name-field-goal-card .flexItemImage, .research-topics--landing .node--type-content-block .strategic-vision-landing-goals-wrapper .flexItemImage, .research-topics--landing .node--type-content-block .node--type-principal-investigator .striped-container-wrapper .flexItemImage, .node--type-principal-investigator .research-topics--landing .node--type-content-block .striped-container-wrapper .flexItemImage, .research-topics--landing .node--type-content-block .node--type-principal-investigator .striped-container .flexItemImage, .node--type-principal-investigator .research-topics--landing .node--type-content-block .striped-container .flexItemImage, .research-topics--landing .node--type-content-block .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImage, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .research-topics--landing .node--type-content-block article .flexItemImage,
.research-topics--landing .node--type-content-block .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemImage,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .research-topics--landing .node--type-content-block article .flexItemImage, .research-topics--landing .node--type-content-block .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImage, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .research-topics--landing .node--type-content-block .standard-teaser.node--view-mode-short-teaser .flexItemImage, .research-topics--landing .node--type-content-block .field--name-field-awards .flexItemImage, .research-topics--landing .node--type-content-block .registerSocialContainer .flexItemImage, .research-topics--landing .node--type-content-block .eventdatesLocationType .flexItemImage, .research-topics--landing .node--type-content-block .news-article-container .flexItemImage, .research-topics--landing .node--type-content-block .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImage,
.research-topics--landing .node--type-content-block .node--type-press-release.node--view-mode-press-release-teaser .flexItemImage,
.research-topics--landing .node--type-content-block .node--type-events.node--view-mode-press-release-teaser .flexItemImage,
.research-topics--landing .node--type-content-block .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImage,
.research-topics--landing .node--type-content-block .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImage,
.research-topics--landing .node--type-content-block .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImage,
.research-topics--landing .node--type-content-block .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImage, .research-topics--landing .node--type-content-block .news-header-container .flexItemImage, .research-topics--landing .node--type-content-block .contacts-container .field--name-field-contacts .flexItemImage, .contacts-container .research-topics--landing .node--type-content-block .field--name-field-contacts .flexItemImage, .research-topics--landing .node--type-content-block .publicationsBox .field--name-field-related-publications .flexItemImage, .publicationsBox .research-topics--landing .node--type-content-block .field--name-field-related-publications .flexItemImage, .research-topics--landing .node--type-content-block .field--name-field-primary-featured-item .flexItemImage, .research-topics--landing .node--type-content-block .field--name-field-additional-featured-items .flexItemImage, .research-topics--landing .node--type-content-block .homepage-health-topics-container .flexItemImage, .research-topics--landing .node--type-content-block .homepage-mission-areas-container .flexItemImage, .research-topics--landing .node--type-content-block .homepage-location-container .flexItemImage, .research-topics--landing .node--type-content-block .field--name-field-alumni .flexItemImage, .research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemImage, .node--type-nhlbi-publication.node--view-mode-full .research-topics--landing .node--type-content-block .nhlbi-publication-details-container .flexItemImage,
.research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemImage,
.node--type-nhlbi-publication.node--view-mode-subscribe .research-topics--landing .node--type-content-block .nhlbi-publication-details-container .flexItemImage, .research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemImage, .node--type-nhlbi-publication.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-related-nhlbi-publications .flexItemImage,
.research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemImage,
.node--type-nhlbi-publication.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-related-nhlbi-publications .flexItemImage, .research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImage, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemImage,
.research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImage,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemImage, .research-topics--landing .node--type-content-block .flexcontainer .flexItemImageHalf, .research-topics--landing .node--type-content-block .related-ht-ser-container .flexItemImageHalf, .research-topics--landing .node--type-content-block .field--name-field-sfa-card .flexItemImageHalf, .research-topics--landing .node--type-content-block .field--name-field-speaker .flexItemImageHalf,
.research-topics--landing .node--type-content-block .field--name-field-executives .flexItemImageHalf, .research-topics--landing .node--type-content-block .standard-card-field .flexItemImageHalf, .research-topics--landing .node--type-content-block .field--name-field-advisory-committees .flexItemImageHalf, .research-topics--landing .node--type-content-block .contact-nhlbi-titleblock .flexItemImageHalf, .research-topics--landing .node--type-content-block .field--name-field-contact-cards .flexItemImageHalf, .research-topics--landing .node--type-content-block .field--name-field-employment-opportunity-car .flexItemImageHalf, .research-topics--landing .node--type-content-block .all-grants-foa-container .flexItemImageHalf,
.research-topics--landing .node--type-content-block .field--name-field-program-officers .flexItemImageHalf,
.research-topics--landing .node--type-content-block .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageHalf,
.research-topics--landing .node--type-content-block .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageHalf, .research-topics--landing .node--type-content-block .node--type-individual-contact .field--name-field-contact-methods .flexItemImageHalf, .node--type-individual-contact .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemImageHalf,
.research-topics--landing .node--type-content-block .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemImageHalf,
.node--type-division.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemImageHalf,
.research-topics--landing .node--type-content-block .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageHalf,
.node--type-division.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemImageHalf,
.research-topics--landing .node--type-content-block .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemImageHalf,
.node--type-branch.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemImageHalf,
.research-topics--landing .node--type-content-block .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageHalf,
.node--type-branch.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemImageHalf,
.research-topics--landing .node--type-content-block .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemImageHalf,
.node--type-general.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemImageHalf,
.research-topics--landing .node--type-content-block .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageHalf,
.node--type-general.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemImageHalf,
.research-topics--landing .node--type-content-block .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemImageHalf,
.node--type-health-education-initiative.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemImageHalf,
.research-topics--landing .node--type-content-block .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageHalf,
.node--type-health-education-initiative.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemImageHalf, .research-topics--landing .node--type-content-block .node--type-committee .field--name-field-card-text .flexItemImageHalf, .node--type-committee .research-topics--landing .node--type-content-block .field--name-field-card-text .flexItemImageHalf, .research-topics--landing .node--type-content-block .news-and-events--landing .landing-social .flexItemImageHalf, .news-and-events--landing .research-topics--landing .node--type-content-block .landing-social .flexItemImageHalf, .research-topics--landing .node--type-content-block .field--name-field-sfa-cards .flexItemImageHalf, .research-topics--landing .node--type-content-block .locationMap.contact-location-map-container .flexItemImageHalf, .research-topics--landing .node--type-content-block .locationMap .flexItemImageHalf, .research-topics--landing .node--type-content-block .grants-and-training-card-wrapper .flexItemImageHalf, .research-topics--landing .node--type-content-block .about-nhlbi-division-card-wrapper .flexItemImageHalf, .research-topics--landing .node--type-content-block .hei-tools-icon-card-wrapper .flexItemImageHalf, .research-topics--landing .node--type-content-block .field--name-field-grants-and-training-card .flexItemImageHalf, .research-topics--landing .node--type-content-block .field--name-field-division-card .flexItemImageHalf, .research-topics--landing .node--type-content-block .field--name-field-tool-icon-card .flexItemImageHalf, .research-topics--landing .node--type-content-block .field--name-field-promotional-card .flexItemImageHalf, .research-topics--landing .node--type-content-block .field--name-field-sv-promotional-cards .flexItemImageHalf, .research-topics--landing .node--type-content-block .field--name-field-about-nhlbi-promotional-ca .flexItemImageHalf, .research-topics--landing .node--type-content-block .strategic-vision-titleblock .flexItemImageHalf, .research-topics--landing .node--type-content-block .ppg-titleblock-wrapper .flexItemImageHalf, .research-topics--landing .node--type-content-block .ppg-guidelines-card-wrapper .flexItemImageHalf, .research-topics--landing .node--type-content-block .field--name-field-human-subject-cards .flexItemImageHalf, .research-topics--landing .node--type-content-block .field--name-field-section-card .flexItemImageHalf, .research-topics--landing .node--type-content-block .field--name-field-highlight-card .flexItemImageHalf, .research-topics--landing .node--type-content-block .health-topic-teaser-container .flexItemImageHalf, .research-topics--landing .node--type-content-block .about-nhlbi-our-mission-wrapper .flexItemImageHalf, .research-topics--landing .node--type-content-block .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageHalf, .about-nhlbi-our-mission-wrapper .research-topics--landing .node--type-content-block .field--name-field-leadership > .director-bioCard .flexItemImageHalf, .research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageHalf, .nhlbi-publications-and-resources--landing .research-topics--landing .node--type-content-block .field--name-field-health-consumer-nhlbi-publ .flexItemImageHalf,
.research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageHalf,
.nhlbi-publications-and-resources--landing .research-topics--landing .node--type-content-block .field--name-field-health-professionals-nhlbi .flexItemImageHalf, .research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageHalf, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemImageHalf,
.research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageHalf,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemImageHalf, .research-topics--landing .node--type-content-block .publicationsBlock.view-nhlbi-publications > .view-content .flexItemImageHalf,
.research-topics--landing .node--type-content-block .field--name-field-related-publications .flexItemImageHalf, .research-topics--landing .node--type-content-block .healthEducationBlock .standard-teaser .flexItemImageHalf, .healthEducationBlock .research-topics--landing .node--type-content-block .standard-teaser .flexItemImageHalf, .research-topics--landing .node--type-content-block .systematicEvidenceReviewsBlock .view-content .flexItemImageHalf, .systematicEvidenceReviewsBlock .research-topics--landing .node--type-content-block .view-content .flexItemImageHalf,
.research-topics--landing .node--type-content-block .clinicalPracticeGuidelinesBlock .view-content .flexItemImageHalf,
.clinicalPracticeGuidelinesBlock .research-topics--landing .node--type-content-block .view-content .flexItemImageHalf,
.research-topics--landing .node--type-content-block .publicationsAndFactSheetsBlock .view-content .flexItemImageHalf,
.publicationsAndFactSheetsBlock .research-topics--landing .node--type-content-block .view-content .flexItemImageHalf, .research-topics--landing .node--type-content-block .rtFlexContainer .flexItemImageHalf, .research-topics--landing .node--type-content-block .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageHalf, .node--type-research-topic .research-topics--landing .node--type-content-block .field--name-field-science-supplemental-page .flexItemImageHalf, .research-topics--landing .node--type-content-block .node--type-research-topic .researchTopicPublications .flexItemImageHalf, .node--type-research-topic .research-topics--landing .node--type-content-block .researchTopicPublications .flexItemImageHalf, .research-topics--landing .node--type-content-block .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemImageHalf, .node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block article.listTeaserCard .flexItemImageHalf, .research-topics--landing .node--type-content-block .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageHalf, .node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block article.standard-teaser .flexItemImageHalf,
.research-topics--landing .node--type-content-block .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageHalf,
.node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block article.newsEventsCard .flexItemImageHalf, .research-topics--landing .node--type-content-block .esi-feature-card .flexItemImageHalf, .research-topics--landing .node--type-content-block .featured-science-instance-teaser-container .flexItemImageHalf, .research-topics--landing .node--type-content-block .sfa-teaser-container .flexItemImageHalf, .research-topics--landing .node--type-content-block .training-opportunity-card .field--name-field-associated-people .flexItemImageHalf, .training-opportunity-card .research-topics--landing .node--type-content-block .field--name-field-associated-people .flexItemImageHalf, .research-topics--landing .node--type-content-block .field--name-field-featured-training-opportun .flexItemImageHalf, .research-topics--landing .node--type-content-block .field--name-field-career-stages .flexItemImageHalf, .research-topics--landing .node--type-content-block .field--name-field-workforce-development-card .flexItemImageHalf, .research-topics--landing .node--type-content-block .node--type-update.node--view-mode-executive-teaser .flexItemImageHalf, .research-topics--landing .node--type-content-block .news-and-events-titleblock .flexItemImageHalf, .research-topics--landing .node--type-content-block .contact-box > .field--name-field-contact-methods .flexItemImageHalf, .research-topics--landing .node--type-content-block .leadership-container .flexItemImageHalf, .research-topics--landing .node--type-content-block .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageHalf, .leadership-container .leadership-deputy-director-container .research-topics--landing .node--type-content-block .field--name-field-additional-leadership .flexItemImageHalf, .research-topics--landing .node--type-content-block .branch-leadership-container .flexItemImageHalf, .research-topics--landing .node--type-content-block .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageHalf, .branch-leadership-container .leadership-deputy-director-container .research-topics--landing .node--type-content-block .field--name-field-additional-leadership .flexItemImageHalf, .research-topics--landing .node--type-content-block .node--type-general .field--name-field-related-publications .flexItemImageHalf, .node--type-general .research-topics--landing .node--type-content-block .field--name-field-related-publications .flexItemImageHalf, .research-topics--landing .node--type-content-block .node--type-general .field--name-field-general-publications-rlt .flexItemImageHalf, .node--type-general .research-topics--landing .node--type-content-block .field--name-field-general-publications-rlt .flexItemImageHalf, .research-topics--landing .node--type-content-block .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageHalf, .node--type-general .field--name-field-general-publications-rlt > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemImageHalf, .research-topics--landing .node--type-content-block .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageHalf, .node--type-general .field--name-field-related-publications > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemImageHalf, .research-topics--landing .node--type-content-block .objective-text-container .flexItemImageHalf, .research-topics--landing .node--type-content-block .objective-list-container .flexItemImageHalf, .research-topics--landing .node--type-content-block .field--name-field-goal-card .flexItemImageHalf, .research-topics--landing .node--type-content-block .strategic-vision-landing-goals-wrapper .flexItemImageHalf, .research-topics--landing .node--type-content-block .node--type-principal-investigator .striped-container-wrapper .flexItemImageHalf, .node--type-principal-investigator .research-topics--landing .node--type-content-block .striped-container-wrapper .flexItemImageHalf, .research-topics--landing .node--type-content-block .node--type-principal-investigator .striped-container .flexItemImageHalf, .node--type-principal-investigator .research-topics--landing .node--type-content-block .striped-container .flexItemImageHalf, .research-topics--landing .node--type-content-block .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImageHalf, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .research-topics--landing .node--type-content-block article .flexItemImageHalf,
.research-topics--landing .node--type-content-block .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemImageHalf,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .research-topics--landing .node--type-content-block article .flexItemImageHalf, .research-topics--landing .node--type-content-block .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageHalf, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .research-topics--landing .node--type-content-block .standard-teaser.node--view-mode-short-teaser .flexItemImageHalf, .research-topics--landing .node--type-content-block .field--name-field-awards .flexItemImageHalf, .research-topics--landing .node--type-content-block .registerSocialContainer .flexItemImageHalf, .research-topics--landing .node--type-content-block .eventdatesLocationType .flexItemImageHalf, .research-topics--landing .node--type-content-block .news-article-container .flexItemImageHalf, .research-topics--landing .node--type-content-block .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageHalf,
.research-topics--landing .node--type-content-block .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageHalf,
.research-topics--landing .node--type-content-block .node--type-events.node--view-mode-press-release-teaser .flexItemImageHalf,
.research-topics--landing .node--type-content-block .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageHalf,
.research-topics--landing .node--type-content-block .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageHalf,
.research-topics--landing .node--type-content-block .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageHalf,
.research-topics--landing .node--type-content-block .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageHalf, .research-topics--landing .node--type-content-block .news-header-container .flexItemImageHalf, .research-topics--landing .node--type-content-block .contacts-container .field--name-field-contacts .flexItemImageHalf, .contacts-container .research-topics--landing .node--type-content-block .field--name-field-contacts .flexItemImageHalf, .research-topics--landing .node--type-content-block .publicationsBox .field--name-field-related-publications .flexItemImageHalf, .publicationsBox .research-topics--landing .node--type-content-block .field--name-field-related-publications .flexItemImageHalf, .research-topics--landing .node--type-content-block .field--name-field-primary-featured-item .flexItemImageHalf, .research-topics--landing .node--type-content-block .field--name-field-additional-featured-items .flexItemImageHalf, .research-topics--landing .node--type-content-block .homepage-health-topics-container .flexItemImageHalf, .research-topics--landing .node--type-content-block .homepage-mission-areas-container .flexItemImageHalf, .research-topics--landing .node--type-content-block .homepage-location-container .flexItemImageHalf, .research-topics--landing .node--type-content-block .field--name-field-alumni .flexItemImageHalf, .research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemImageHalf, .node--type-nhlbi-publication.node--view-mode-full .research-topics--landing .node--type-content-block .nhlbi-publication-details-container .flexItemImageHalf,
.research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemImageHalf,
.node--type-nhlbi-publication.node--view-mode-subscribe .research-topics--landing .node--type-content-block .nhlbi-publication-details-container .flexItemImageHalf, .research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemImageHalf, .node--type-nhlbi-publication.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-related-nhlbi-publications .flexItemImageHalf,
.research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemImageHalf,
.node--type-nhlbi-publication.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-related-nhlbi-publications .flexItemImageHalf, .research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageHalf, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemImageHalf,
.research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageHalf,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemImageHalf, .research-topics--landing .node--type-content-block .flexcontainer .flexItemImageTenth, .research-topics--landing .node--type-content-block .related-ht-ser-container .flexItemImageTenth, .research-topics--landing .node--type-content-block .field--name-field-sfa-card .flexItemImageTenth, .research-topics--landing .node--type-content-block .field--name-field-speaker .flexItemImageTenth,
.research-topics--landing .node--type-content-block .field--name-field-executives .flexItemImageTenth, .research-topics--landing .node--type-content-block .standard-card-field .flexItemImageTenth, .research-topics--landing .node--type-content-block .field--name-field-advisory-committees .flexItemImageTenth, .research-topics--landing .node--type-content-block .contact-nhlbi-titleblock .flexItemImageTenth, .research-topics--landing .node--type-content-block .field--name-field-contact-cards .flexItemImageTenth, .research-topics--landing .node--type-content-block .field--name-field-employment-opportunity-car .flexItemImageTenth, .research-topics--landing .node--type-content-block .all-grants-foa-container .flexItemImageTenth,
.research-topics--landing .node--type-content-block .field--name-field-program-officers .flexItemImageTenth,
.research-topics--landing .node--type-content-block .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageTenth,
.research-topics--landing .node--type-content-block .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageTenth, .research-topics--landing .node--type-content-block .node--type-individual-contact .field--name-field-contact-methods .flexItemImageTenth, .node--type-individual-contact .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemImageTenth,
.research-topics--landing .node--type-content-block .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemImageTenth,
.node--type-division.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemImageTenth,
.research-topics--landing .node--type-content-block .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageTenth,
.node--type-division.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemImageTenth,
.research-topics--landing .node--type-content-block .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemImageTenth,
.node--type-branch.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemImageTenth,
.research-topics--landing .node--type-content-block .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageTenth,
.node--type-branch.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemImageTenth,
.research-topics--landing .node--type-content-block .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemImageTenth,
.node--type-general.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemImageTenth,
.research-topics--landing .node--type-content-block .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageTenth,
.node--type-general.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemImageTenth,
.research-topics--landing .node--type-content-block .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemImageTenth,
.node--type-health-education-initiative.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemImageTenth,
.research-topics--landing .node--type-content-block .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageTenth,
.node--type-health-education-initiative.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemImageTenth, .research-topics--landing .node--type-content-block .node--type-committee .field--name-field-card-text .flexItemImageTenth, .node--type-committee .research-topics--landing .node--type-content-block .field--name-field-card-text .flexItemImageTenth, .research-topics--landing .node--type-content-block .news-and-events--landing .landing-social .flexItemImageTenth, .news-and-events--landing .research-topics--landing .node--type-content-block .landing-social .flexItemImageTenth, .research-topics--landing .node--type-content-block .field--name-field-sfa-cards .flexItemImageTenth, .research-topics--landing .node--type-content-block .locationMap.contact-location-map-container .flexItemImageTenth, .research-topics--landing .node--type-content-block .locationMap .flexItemImageTenth, .research-topics--landing .node--type-content-block .grants-and-training-card-wrapper .flexItemImageTenth, .research-topics--landing .node--type-content-block .about-nhlbi-division-card-wrapper .flexItemImageTenth, .research-topics--landing .node--type-content-block .hei-tools-icon-card-wrapper .flexItemImageTenth, .research-topics--landing .node--type-content-block .field--name-field-grants-and-training-card .flexItemImageTenth, .research-topics--landing .node--type-content-block .field--name-field-division-card .flexItemImageTenth, .research-topics--landing .node--type-content-block .field--name-field-tool-icon-card .flexItemImageTenth, .research-topics--landing .node--type-content-block .field--name-field-promotional-card .flexItemImageTenth, .research-topics--landing .node--type-content-block .field--name-field-sv-promotional-cards .flexItemImageTenth, .research-topics--landing .node--type-content-block .field--name-field-about-nhlbi-promotional-ca .flexItemImageTenth, .research-topics--landing .node--type-content-block .strategic-vision-titleblock .flexItemImageTenth, .research-topics--landing .node--type-content-block .ppg-titleblock-wrapper .flexItemImageTenth, .research-topics--landing .node--type-content-block .ppg-guidelines-card-wrapper .flexItemImageTenth, .research-topics--landing .node--type-content-block .field--name-field-human-subject-cards .flexItemImageTenth, .research-topics--landing .node--type-content-block .field--name-field-section-card .flexItemImageTenth, .research-topics--landing .node--type-content-block .field--name-field-highlight-card .flexItemImageTenth, .research-topics--landing .node--type-content-block .health-topic-teaser-container .flexItemImageTenth, .research-topics--landing .node--type-content-block .about-nhlbi-our-mission-wrapper .flexItemImageTenth, .research-topics--landing .node--type-content-block .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageTenth, .about-nhlbi-our-mission-wrapper .research-topics--landing .node--type-content-block .field--name-field-leadership > .director-bioCard .flexItemImageTenth, .research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageTenth, .nhlbi-publications-and-resources--landing .research-topics--landing .node--type-content-block .field--name-field-health-consumer-nhlbi-publ .flexItemImageTenth,
.research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageTenth,
.nhlbi-publications-and-resources--landing .research-topics--landing .node--type-content-block .field--name-field-health-professionals-nhlbi .flexItemImageTenth, .research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageTenth, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemImageTenth,
.research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageTenth,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemImageTenth, .research-topics--landing .node--type-content-block .publicationsBlock.view-nhlbi-publications > .view-content .flexItemImageTenth,
.research-topics--landing .node--type-content-block .field--name-field-related-publications .flexItemImageTenth, .research-topics--landing .node--type-content-block .healthEducationBlock .standard-teaser .flexItemImageTenth, .healthEducationBlock .research-topics--landing .node--type-content-block .standard-teaser .flexItemImageTenth, .research-topics--landing .node--type-content-block .systematicEvidenceReviewsBlock .view-content .flexItemImageTenth, .systematicEvidenceReviewsBlock .research-topics--landing .node--type-content-block .view-content .flexItemImageTenth,
.research-topics--landing .node--type-content-block .clinicalPracticeGuidelinesBlock .view-content .flexItemImageTenth,
.clinicalPracticeGuidelinesBlock .research-topics--landing .node--type-content-block .view-content .flexItemImageTenth,
.research-topics--landing .node--type-content-block .publicationsAndFactSheetsBlock .view-content .flexItemImageTenth,
.publicationsAndFactSheetsBlock .research-topics--landing .node--type-content-block .view-content .flexItemImageTenth, .research-topics--landing .node--type-content-block .rtFlexContainer .flexItemImageTenth, .research-topics--landing .node--type-content-block .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageTenth, .node--type-research-topic .research-topics--landing .node--type-content-block .field--name-field-science-supplemental-page .flexItemImageTenth, .research-topics--landing .node--type-content-block .node--type-research-topic .researchTopicPublications .flexItemImageTenth, .node--type-research-topic .research-topics--landing .node--type-content-block .researchTopicPublications .flexItemImageTenth, .research-topics--landing .node--type-content-block .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemImageTenth, .node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block article.listTeaserCard .flexItemImageTenth, .research-topics--landing .node--type-content-block .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageTenth, .node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block article.standard-teaser .flexItemImageTenth,
.research-topics--landing .node--type-content-block .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageTenth,
.node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block article.newsEventsCard .flexItemImageTenth, .research-topics--landing .node--type-content-block .esi-feature-card .flexItemImageTenth, .research-topics--landing .node--type-content-block .featured-science-instance-teaser-container .flexItemImageTenth, .research-topics--landing .node--type-content-block .sfa-teaser-container .flexItemImageTenth, .research-topics--landing .node--type-content-block .training-opportunity-card .field--name-field-associated-people .flexItemImageTenth, .training-opportunity-card .research-topics--landing .node--type-content-block .field--name-field-associated-people .flexItemImageTenth, .research-topics--landing .node--type-content-block .field--name-field-featured-training-opportun .flexItemImageTenth, .research-topics--landing .node--type-content-block .field--name-field-career-stages .flexItemImageTenth, .research-topics--landing .node--type-content-block .field--name-field-workforce-development-card .flexItemImageTenth, .research-topics--landing .node--type-content-block .node--type-update.node--view-mode-executive-teaser .flexItemImageTenth, .research-topics--landing .node--type-content-block .news-and-events-titleblock .flexItemImageTenth, .research-topics--landing .node--type-content-block .contact-box > .field--name-field-contact-methods .flexItemImageTenth, .research-topics--landing .node--type-content-block .leadership-container .flexItemImageTenth, .research-topics--landing .node--type-content-block .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageTenth, .leadership-container .leadership-deputy-director-container .research-topics--landing .node--type-content-block .field--name-field-additional-leadership .flexItemImageTenth, .research-topics--landing .node--type-content-block .branch-leadership-container .flexItemImageTenth, .research-topics--landing .node--type-content-block .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageTenth, .branch-leadership-container .leadership-deputy-director-container .research-topics--landing .node--type-content-block .field--name-field-additional-leadership .flexItemImageTenth, .research-topics--landing .node--type-content-block .node--type-general .field--name-field-related-publications .flexItemImageTenth, .node--type-general .research-topics--landing .node--type-content-block .field--name-field-related-publications .flexItemImageTenth, .research-topics--landing .node--type-content-block .node--type-general .field--name-field-general-publications-rlt .flexItemImageTenth, .node--type-general .research-topics--landing .node--type-content-block .field--name-field-general-publications-rlt .flexItemImageTenth, .research-topics--landing .node--type-content-block .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageTenth, .node--type-general .field--name-field-general-publications-rlt > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemImageTenth, .research-topics--landing .node--type-content-block .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageTenth, .node--type-general .field--name-field-related-publications > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemImageTenth, .research-topics--landing .node--type-content-block .objective-text-container .flexItemImageTenth, .research-topics--landing .node--type-content-block .objective-list-container .flexItemImageTenth, .research-topics--landing .node--type-content-block .field--name-field-goal-card .flexItemImageTenth, .research-topics--landing .node--type-content-block .strategic-vision-landing-goals-wrapper .flexItemImageTenth, .research-topics--landing .node--type-content-block .node--type-principal-investigator .striped-container-wrapper .flexItemImageTenth, .node--type-principal-investigator .research-topics--landing .node--type-content-block .striped-container-wrapper .flexItemImageTenth, .research-topics--landing .node--type-content-block .node--type-principal-investigator .striped-container .flexItemImageTenth, .node--type-principal-investigator .research-topics--landing .node--type-content-block .striped-container .flexItemImageTenth, .research-topics--landing .node--type-content-block .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImageTenth, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .research-topics--landing .node--type-content-block article .flexItemImageTenth,
.research-topics--landing .node--type-content-block .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemImageTenth,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .research-topics--landing .node--type-content-block article .flexItemImageTenth, .research-topics--landing .node--type-content-block .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageTenth, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .research-topics--landing .node--type-content-block .standard-teaser.node--view-mode-short-teaser .flexItemImageTenth, .research-topics--landing .node--type-content-block .field--name-field-awards .flexItemImageTenth, .research-topics--landing .node--type-content-block .registerSocialContainer .flexItemImageTenth, .research-topics--landing .node--type-content-block .eventdatesLocationType .flexItemImageTenth, .research-topics--landing .node--type-content-block .news-article-container .flexItemImageTenth, .research-topics--landing .node--type-content-block .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageTenth,
.research-topics--landing .node--type-content-block .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageTenth,
.research-topics--landing .node--type-content-block .node--type-events.node--view-mode-press-release-teaser .flexItemImageTenth,
.research-topics--landing .node--type-content-block .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageTenth,
.research-topics--landing .node--type-content-block .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageTenth,
.research-topics--landing .node--type-content-block .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageTenth,
.research-topics--landing .node--type-content-block .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageTenth, .research-topics--landing .node--type-content-block .news-header-container .flexItemImageTenth, .research-topics--landing .node--type-content-block .contacts-container .field--name-field-contacts .flexItemImageTenth, .contacts-container .research-topics--landing .node--type-content-block .field--name-field-contacts .flexItemImageTenth, .research-topics--landing .node--type-content-block .publicationsBox .field--name-field-related-publications .flexItemImageTenth, .publicationsBox .research-topics--landing .node--type-content-block .field--name-field-related-publications .flexItemImageTenth, .research-topics--landing .node--type-content-block .field--name-field-primary-featured-item .flexItemImageTenth, .research-topics--landing .node--type-content-block .field--name-field-additional-featured-items .flexItemImageTenth, .research-topics--landing .node--type-content-block .homepage-health-topics-container .flexItemImageTenth, .research-topics--landing .node--type-content-block .homepage-mission-areas-container .flexItemImageTenth, .research-topics--landing .node--type-content-block .homepage-location-container .flexItemImageTenth, .research-topics--landing .node--type-content-block .field--name-field-alumni .flexItemImageTenth, .research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemImageTenth, .node--type-nhlbi-publication.node--view-mode-full .research-topics--landing .node--type-content-block .nhlbi-publication-details-container .flexItemImageTenth,
.research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemImageTenth,
.node--type-nhlbi-publication.node--view-mode-subscribe .research-topics--landing .node--type-content-block .nhlbi-publication-details-container .flexItemImageTenth, .research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemImageTenth, .node--type-nhlbi-publication.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-related-nhlbi-publications .flexItemImageTenth,
.research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemImageTenth,
.node--type-nhlbi-publication.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-related-nhlbi-publications .flexItemImageTenth, .research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageTenth, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemImageTenth,
.research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageTenth,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemImageTenth, .research-topics--landing .node--type-content-block .flexcontainer .flexItemImageFourth, .research-topics--landing .node--type-content-block .related-ht-ser-container .flexItemImageFourth, .research-topics--landing .node--type-content-block .field--name-field-sfa-card .flexItemImageFourth, .research-topics--landing .node--type-content-block .field--name-field-speaker .flexItemImageFourth,
.research-topics--landing .node--type-content-block .field--name-field-executives .flexItemImageFourth, .research-topics--landing .node--type-content-block .standard-card-field .flexItemImageFourth, .research-topics--landing .node--type-content-block .field--name-field-advisory-committees .flexItemImageFourth, .research-topics--landing .node--type-content-block .contact-nhlbi-titleblock .flexItemImageFourth, .research-topics--landing .node--type-content-block .field--name-field-contact-cards .flexItemImageFourth, .research-topics--landing .node--type-content-block .field--name-field-employment-opportunity-car .flexItemImageFourth, .research-topics--landing .node--type-content-block .all-grants-foa-container .flexItemImageFourth,
.research-topics--landing .node--type-content-block .field--name-field-program-officers .flexItemImageFourth,
.research-topics--landing .node--type-content-block .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageFourth,
.research-topics--landing .node--type-content-block .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageFourth, .research-topics--landing .node--type-content-block .node--type-individual-contact .field--name-field-contact-methods .flexItemImageFourth, .node--type-individual-contact .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemImageFourth,
.research-topics--landing .node--type-content-block .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemImageFourth,
.node--type-division.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemImageFourth,
.research-topics--landing .node--type-content-block .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageFourth,
.node--type-division.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemImageFourth,
.research-topics--landing .node--type-content-block .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemImageFourth,
.node--type-branch.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemImageFourth,
.research-topics--landing .node--type-content-block .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageFourth,
.node--type-branch.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemImageFourth,
.research-topics--landing .node--type-content-block .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemImageFourth,
.node--type-general.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemImageFourth,
.research-topics--landing .node--type-content-block .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageFourth,
.node--type-general.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemImageFourth,
.research-topics--landing .node--type-content-block .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemImageFourth,
.node--type-health-education-initiative.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemImageFourth,
.research-topics--landing .node--type-content-block .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageFourth,
.node--type-health-education-initiative.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemImageFourth, .research-topics--landing .node--type-content-block .node--type-committee .field--name-field-card-text .flexItemImageFourth, .node--type-committee .research-topics--landing .node--type-content-block .field--name-field-card-text .flexItemImageFourth, .research-topics--landing .node--type-content-block .news-and-events--landing .landing-social .flexItemImageFourth, .news-and-events--landing .research-topics--landing .node--type-content-block .landing-social .flexItemImageFourth, .research-topics--landing .node--type-content-block .field--name-field-sfa-cards .flexItemImageFourth, .research-topics--landing .node--type-content-block .locationMap.contact-location-map-container .flexItemImageFourth, .research-topics--landing .node--type-content-block .locationMap .flexItemImageFourth, .research-topics--landing .node--type-content-block .grants-and-training-card-wrapper .flexItemImageFourth, .research-topics--landing .node--type-content-block .about-nhlbi-division-card-wrapper .flexItemImageFourth, .research-topics--landing .node--type-content-block .hei-tools-icon-card-wrapper .flexItemImageFourth, .research-topics--landing .node--type-content-block .field--name-field-grants-and-training-card .flexItemImageFourth, .research-topics--landing .node--type-content-block .field--name-field-division-card .flexItemImageFourth, .research-topics--landing .node--type-content-block .field--name-field-tool-icon-card .flexItemImageFourth, .research-topics--landing .node--type-content-block .field--name-field-promotional-card .flexItemImageFourth, .research-topics--landing .node--type-content-block .field--name-field-sv-promotional-cards .flexItemImageFourth, .research-topics--landing .node--type-content-block .field--name-field-about-nhlbi-promotional-ca .flexItemImageFourth, .research-topics--landing .node--type-content-block .strategic-vision-titleblock .flexItemImageFourth, .research-topics--landing .node--type-content-block .ppg-titleblock-wrapper .flexItemImageFourth, .research-topics--landing .node--type-content-block .ppg-guidelines-card-wrapper .flexItemImageFourth, .research-topics--landing .node--type-content-block .field--name-field-human-subject-cards .flexItemImageFourth, .research-topics--landing .node--type-content-block .field--name-field-section-card .flexItemImageFourth, .research-topics--landing .node--type-content-block .field--name-field-highlight-card .flexItemImageFourth, .research-topics--landing .node--type-content-block .health-topic-teaser-container .flexItemImageFourth, .research-topics--landing .node--type-content-block .about-nhlbi-our-mission-wrapper .flexItemImageFourth, .research-topics--landing .node--type-content-block .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageFourth, .about-nhlbi-our-mission-wrapper .research-topics--landing .node--type-content-block .field--name-field-leadership > .director-bioCard .flexItemImageFourth, .research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageFourth, .nhlbi-publications-and-resources--landing .research-topics--landing .node--type-content-block .field--name-field-health-consumer-nhlbi-publ .flexItemImageFourth,
.research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageFourth,
.nhlbi-publications-and-resources--landing .research-topics--landing .node--type-content-block .field--name-field-health-professionals-nhlbi .flexItemImageFourth, .research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageFourth, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemImageFourth,
.research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageFourth,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemImageFourth, .research-topics--landing .node--type-content-block .publicationsBlock.view-nhlbi-publications > .view-content .flexItemImageFourth,
.research-topics--landing .node--type-content-block .field--name-field-related-publications .flexItemImageFourth, .research-topics--landing .node--type-content-block .healthEducationBlock .standard-teaser .flexItemImageFourth, .healthEducationBlock .research-topics--landing .node--type-content-block .standard-teaser .flexItemImageFourth, .research-topics--landing .node--type-content-block .systematicEvidenceReviewsBlock .view-content .flexItemImageFourth, .systematicEvidenceReviewsBlock .research-topics--landing .node--type-content-block .view-content .flexItemImageFourth,
.research-topics--landing .node--type-content-block .clinicalPracticeGuidelinesBlock .view-content .flexItemImageFourth,
.clinicalPracticeGuidelinesBlock .research-topics--landing .node--type-content-block .view-content .flexItemImageFourth,
.research-topics--landing .node--type-content-block .publicationsAndFactSheetsBlock .view-content .flexItemImageFourth,
.publicationsAndFactSheetsBlock .research-topics--landing .node--type-content-block .view-content .flexItemImageFourth, .research-topics--landing .node--type-content-block .rtFlexContainer .flexItemImageFourth, .research-topics--landing .node--type-content-block .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageFourth, .node--type-research-topic .research-topics--landing .node--type-content-block .field--name-field-science-supplemental-page .flexItemImageFourth, .research-topics--landing .node--type-content-block .node--type-research-topic .researchTopicPublications .flexItemImageFourth, .node--type-research-topic .research-topics--landing .node--type-content-block .researchTopicPublications .flexItemImageFourth, .research-topics--landing .node--type-content-block .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemImageFourth, .node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block article.listTeaserCard .flexItemImageFourth, .research-topics--landing .node--type-content-block .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageFourth, .node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block article.standard-teaser .flexItemImageFourth,
.research-topics--landing .node--type-content-block .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageFourth,
.node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block article.newsEventsCard .flexItemImageFourth, .research-topics--landing .node--type-content-block .esi-feature-card .flexItemImageFourth, .research-topics--landing .node--type-content-block .featured-science-instance-teaser-container .flexItemImageFourth, .research-topics--landing .node--type-content-block .sfa-teaser-container .flexItemImageFourth, .research-topics--landing .node--type-content-block .training-opportunity-card .field--name-field-associated-people .flexItemImageFourth, .training-opportunity-card .research-topics--landing .node--type-content-block .field--name-field-associated-people .flexItemImageFourth, .research-topics--landing .node--type-content-block .field--name-field-featured-training-opportun .flexItemImageFourth, .research-topics--landing .node--type-content-block .field--name-field-career-stages .flexItemImageFourth, .research-topics--landing .node--type-content-block .field--name-field-workforce-development-card .flexItemImageFourth, .research-topics--landing .node--type-content-block .node--type-update.node--view-mode-executive-teaser .flexItemImageFourth, .research-topics--landing .node--type-content-block .news-and-events-titleblock .flexItemImageFourth, .research-topics--landing .node--type-content-block .contact-box > .field--name-field-contact-methods .flexItemImageFourth, .research-topics--landing .node--type-content-block .leadership-container .flexItemImageFourth, .research-topics--landing .node--type-content-block .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageFourth, .leadership-container .leadership-deputy-director-container .research-topics--landing .node--type-content-block .field--name-field-additional-leadership .flexItemImageFourth, .research-topics--landing .node--type-content-block .branch-leadership-container .flexItemImageFourth, .research-topics--landing .node--type-content-block .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageFourth, .branch-leadership-container .leadership-deputy-director-container .research-topics--landing .node--type-content-block .field--name-field-additional-leadership .flexItemImageFourth, .research-topics--landing .node--type-content-block .node--type-general .field--name-field-related-publications .flexItemImageFourth, .node--type-general .research-topics--landing .node--type-content-block .field--name-field-related-publications .flexItemImageFourth, .research-topics--landing .node--type-content-block .node--type-general .field--name-field-general-publications-rlt .flexItemImageFourth, .node--type-general .research-topics--landing .node--type-content-block .field--name-field-general-publications-rlt .flexItemImageFourth, .research-topics--landing .node--type-content-block .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageFourth, .node--type-general .field--name-field-general-publications-rlt > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemImageFourth, .research-topics--landing .node--type-content-block .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageFourth, .node--type-general .field--name-field-related-publications > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemImageFourth, .research-topics--landing .node--type-content-block .objective-text-container .flexItemImageFourth, .research-topics--landing .node--type-content-block .objective-list-container .flexItemImageFourth, .research-topics--landing .node--type-content-block .field--name-field-goal-card .flexItemImageFourth, .research-topics--landing .node--type-content-block .strategic-vision-landing-goals-wrapper .flexItemImageFourth, .research-topics--landing .node--type-content-block .node--type-principal-investigator .striped-container-wrapper .flexItemImageFourth, .node--type-principal-investigator .research-topics--landing .node--type-content-block .striped-container-wrapper .flexItemImageFourth, .research-topics--landing .node--type-content-block .node--type-principal-investigator .striped-container .flexItemImageFourth, .node--type-principal-investigator .research-topics--landing .node--type-content-block .striped-container .flexItemImageFourth, .research-topics--landing .node--type-content-block .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImageFourth, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .research-topics--landing .node--type-content-block article .flexItemImageFourth,
.research-topics--landing .node--type-content-block .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemImageFourth,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .research-topics--landing .node--type-content-block article .flexItemImageFourth, .research-topics--landing .node--type-content-block .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageFourth, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .research-topics--landing .node--type-content-block .standard-teaser.node--view-mode-short-teaser .flexItemImageFourth, .research-topics--landing .node--type-content-block .field--name-field-awards .flexItemImageFourth, .research-topics--landing .node--type-content-block .registerSocialContainer .flexItemImageFourth, .research-topics--landing .node--type-content-block .eventdatesLocationType .flexItemImageFourth, .research-topics--landing .node--type-content-block .news-article-container .flexItemImageFourth, .research-topics--landing .node--type-content-block .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageFourth,
.research-topics--landing .node--type-content-block .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageFourth,
.research-topics--landing .node--type-content-block .node--type-events.node--view-mode-press-release-teaser .flexItemImageFourth,
.research-topics--landing .node--type-content-block .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageFourth,
.research-topics--landing .node--type-content-block .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageFourth,
.research-topics--landing .node--type-content-block .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageFourth,
.research-topics--landing .node--type-content-block .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageFourth, .research-topics--landing .node--type-content-block .news-header-container .flexItemImageFourth, .research-topics--landing .node--type-content-block .contacts-container .field--name-field-contacts .flexItemImageFourth, .contacts-container .research-topics--landing .node--type-content-block .field--name-field-contacts .flexItemImageFourth, .research-topics--landing .node--type-content-block .publicationsBox .field--name-field-related-publications .flexItemImageFourth, .publicationsBox .research-topics--landing .node--type-content-block .field--name-field-related-publications .flexItemImageFourth, .research-topics--landing .node--type-content-block .field--name-field-primary-featured-item .flexItemImageFourth, .research-topics--landing .node--type-content-block .field--name-field-additional-featured-items .flexItemImageFourth, .research-topics--landing .node--type-content-block .homepage-health-topics-container .flexItemImageFourth, .research-topics--landing .node--type-content-block .homepage-mission-areas-container .flexItemImageFourth, .research-topics--landing .node--type-content-block .homepage-location-container .flexItemImageFourth, .research-topics--landing .node--type-content-block .field--name-field-alumni .flexItemImageFourth, .research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemImageFourth, .node--type-nhlbi-publication.node--view-mode-full .research-topics--landing .node--type-content-block .nhlbi-publication-details-container .flexItemImageFourth,
.research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemImageFourth,
.node--type-nhlbi-publication.node--view-mode-subscribe .research-topics--landing .node--type-content-block .nhlbi-publication-details-container .flexItemImageFourth, .research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemImageFourth, .node--type-nhlbi-publication.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-related-nhlbi-publications .flexItemImageFourth,
.research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemImageFourth,
.node--type-nhlbi-publication.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-related-nhlbi-publications .flexItemImageFourth, .research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageFourth, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemImageFourth,
.research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageFourth,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemImageFourth, .research-topics--landing .node--type-content-block .flexcontainer .flexItemImageThird, .research-topics--landing .node--type-content-block .related-ht-ser-container .flexItemImageThird, .research-topics--landing .node--type-content-block .field--name-field-sfa-card .flexItemImageThird, .research-topics--landing .node--type-content-block .field--name-field-speaker .flexItemImageThird,
.research-topics--landing .node--type-content-block .field--name-field-executives .flexItemImageThird, .research-topics--landing .node--type-content-block .standard-card-field .flexItemImageThird, .research-topics--landing .node--type-content-block .field--name-field-advisory-committees .flexItemImageThird, .research-topics--landing .node--type-content-block .contact-nhlbi-titleblock .flexItemImageThird, .research-topics--landing .node--type-content-block .field--name-field-contact-cards .flexItemImageThird, .research-topics--landing .node--type-content-block .field--name-field-employment-opportunity-car .flexItemImageThird, .research-topics--landing .node--type-content-block .all-grants-foa-container .flexItemImageThird,
.research-topics--landing .node--type-content-block .field--name-field-program-officers .flexItemImageThird,
.research-topics--landing .node--type-content-block .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageThird,
.research-topics--landing .node--type-content-block .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageThird, .research-topics--landing .node--type-content-block .node--type-individual-contact .field--name-field-contact-methods .flexItemImageThird, .node--type-individual-contact .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemImageThird,
.research-topics--landing .node--type-content-block .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemImageThird,
.node--type-division.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemImageThird,
.research-topics--landing .node--type-content-block .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThird,
.node--type-division.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemImageThird,
.research-topics--landing .node--type-content-block .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemImageThird,
.node--type-branch.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemImageThird,
.research-topics--landing .node--type-content-block .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThird,
.node--type-branch.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemImageThird,
.research-topics--landing .node--type-content-block .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemImageThird,
.node--type-general.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemImageThird,
.research-topics--landing .node--type-content-block .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThird,
.node--type-general.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemImageThird,
.research-topics--landing .node--type-content-block .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemImageThird,
.node--type-health-education-initiative.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemImageThird,
.research-topics--landing .node--type-content-block .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThird,
.node--type-health-education-initiative.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemImageThird, .research-topics--landing .node--type-content-block .node--type-committee .field--name-field-card-text .flexItemImageThird, .node--type-committee .research-topics--landing .node--type-content-block .field--name-field-card-text .flexItemImageThird, .research-topics--landing .node--type-content-block .news-and-events--landing .landing-social .flexItemImageThird, .news-and-events--landing .research-topics--landing .node--type-content-block .landing-social .flexItemImageThird, .research-topics--landing .node--type-content-block .field--name-field-sfa-cards .flexItemImageThird, .research-topics--landing .node--type-content-block .locationMap.contact-location-map-container .flexItemImageThird, .research-topics--landing .node--type-content-block .locationMap .flexItemImageThird, .research-topics--landing .node--type-content-block .grants-and-training-card-wrapper .flexItemImageThird, .research-topics--landing .node--type-content-block .about-nhlbi-division-card-wrapper .flexItemImageThird, .research-topics--landing .node--type-content-block .hei-tools-icon-card-wrapper .flexItemImageThird, .research-topics--landing .node--type-content-block .field--name-field-grants-and-training-card .flexItemImageThird, .research-topics--landing .node--type-content-block .field--name-field-division-card .flexItemImageThird, .research-topics--landing .node--type-content-block .field--name-field-tool-icon-card .flexItemImageThird, .research-topics--landing .node--type-content-block .field--name-field-promotional-card .flexItemImageThird, .research-topics--landing .node--type-content-block .field--name-field-sv-promotional-cards .flexItemImageThird, .research-topics--landing .node--type-content-block .field--name-field-about-nhlbi-promotional-ca .flexItemImageThird, .research-topics--landing .node--type-content-block .strategic-vision-titleblock .flexItemImageThird, .research-topics--landing .node--type-content-block .ppg-titleblock-wrapper .flexItemImageThird, .research-topics--landing .node--type-content-block .ppg-guidelines-card-wrapper .flexItemImageThird, .research-topics--landing .node--type-content-block .field--name-field-human-subject-cards .flexItemImageThird, .research-topics--landing .node--type-content-block .field--name-field-section-card .flexItemImageThird, .research-topics--landing .node--type-content-block .field--name-field-highlight-card .flexItemImageThird, .research-topics--landing .node--type-content-block .health-topic-teaser-container .flexItemImageThird, .research-topics--landing .node--type-content-block .about-nhlbi-our-mission-wrapper .flexItemImageThird, .research-topics--landing .node--type-content-block .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageThird, .about-nhlbi-our-mission-wrapper .research-topics--landing .node--type-content-block .field--name-field-leadership > .director-bioCard .flexItemImageThird, .research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageThird, .nhlbi-publications-and-resources--landing .research-topics--landing .node--type-content-block .field--name-field-health-consumer-nhlbi-publ .flexItemImageThird,
.research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageThird,
.nhlbi-publications-and-resources--landing .research-topics--landing .node--type-content-block .field--name-field-health-professionals-nhlbi .flexItemImageThird, .research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageThird, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemImageThird,
.research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageThird,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemImageThird, .research-topics--landing .node--type-content-block .publicationsBlock.view-nhlbi-publications > .view-content .flexItemImageThird,
.research-topics--landing .node--type-content-block .field--name-field-related-publications .flexItemImageThird, .research-topics--landing .node--type-content-block .healthEducationBlock .standard-teaser .flexItemImageThird, .healthEducationBlock .research-topics--landing .node--type-content-block .standard-teaser .flexItemImageThird, .research-topics--landing .node--type-content-block .systematicEvidenceReviewsBlock .view-content .flexItemImageThird, .systematicEvidenceReviewsBlock .research-topics--landing .node--type-content-block .view-content .flexItemImageThird,
.research-topics--landing .node--type-content-block .clinicalPracticeGuidelinesBlock .view-content .flexItemImageThird,
.clinicalPracticeGuidelinesBlock .research-topics--landing .node--type-content-block .view-content .flexItemImageThird,
.research-topics--landing .node--type-content-block .publicationsAndFactSheetsBlock .view-content .flexItemImageThird,
.publicationsAndFactSheetsBlock .research-topics--landing .node--type-content-block .view-content .flexItemImageThird, .research-topics--landing .node--type-content-block .rtFlexContainer .flexItemImageThird, .research-topics--landing .node--type-content-block .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageThird, .node--type-research-topic .research-topics--landing .node--type-content-block .field--name-field-science-supplemental-page .flexItemImageThird, .research-topics--landing .node--type-content-block .node--type-research-topic .researchTopicPublications .flexItemImageThird, .node--type-research-topic .research-topics--landing .node--type-content-block .researchTopicPublications .flexItemImageThird, .research-topics--landing .node--type-content-block .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemImageThird, .node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block article.listTeaserCard .flexItemImageThird, .research-topics--landing .node--type-content-block .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageThird, .node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block article.standard-teaser .flexItemImageThird,
.research-topics--landing .node--type-content-block .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageThird,
.node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block article.newsEventsCard .flexItemImageThird, .research-topics--landing .node--type-content-block .esi-feature-card .flexItemImageThird, .research-topics--landing .node--type-content-block .featured-science-instance-teaser-container .flexItemImageThird, .research-topics--landing .node--type-content-block .sfa-teaser-container .flexItemImageThird, .research-topics--landing .node--type-content-block .training-opportunity-card .field--name-field-associated-people .flexItemImageThird, .training-opportunity-card .research-topics--landing .node--type-content-block .field--name-field-associated-people .flexItemImageThird, .research-topics--landing .node--type-content-block .field--name-field-featured-training-opportun .flexItemImageThird, .research-topics--landing .node--type-content-block .field--name-field-career-stages .flexItemImageThird, .research-topics--landing .node--type-content-block .field--name-field-workforce-development-card .flexItemImageThird, .research-topics--landing .node--type-content-block .node--type-update.node--view-mode-executive-teaser .flexItemImageThird, .research-topics--landing .node--type-content-block .news-and-events-titleblock .flexItemImageThird, .research-topics--landing .node--type-content-block .contact-box > .field--name-field-contact-methods .flexItemImageThird, .research-topics--landing .node--type-content-block .leadership-container .flexItemImageThird, .research-topics--landing .node--type-content-block .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageThird, .leadership-container .leadership-deputy-director-container .research-topics--landing .node--type-content-block .field--name-field-additional-leadership .flexItemImageThird, .research-topics--landing .node--type-content-block .branch-leadership-container .flexItemImageThird, .research-topics--landing .node--type-content-block .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageThird, .branch-leadership-container .leadership-deputy-director-container .research-topics--landing .node--type-content-block .field--name-field-additional-leadership .flexItemImageThird, .research-topics--landing .node--type-content-block .node--type-general .field--name-field-related-publications .flexItemImageThird, .node--type-general .research-topics--landing .node--type-content-block .field--name-field-related-publications .flexItemImageThird, .research-topics--landing .node--type-content-block .node--type-general .field--name-field-general-publications-rlt .flexItemImageThird, .node--type-general .research-topics--landing .node--type-content-block .field--name-field-general-publications-rlt .flexItemImageThird, .research-topics--landing .node--type-content-block .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageThird, .node--type-general .field--name-field-general-publications-rlt > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemImageThird, .research-topics--landing .node--type-content-block .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageThird, .node--type-general .field--name-field-related-publications > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemImageThird, .research-topics--landing .node--type-content-block .objective-text-container .flexItemImageThird, .research-topics--landing .node--type-content-block .objective-list-container .flexItemImageThird, .research-topics--landing .node--type-content-block .field--name-field-goal-card .flexItemImageThird, .research-topics--landing .node--type-content-block .strategic-vision-landing-goals-wrapper .flexItemImageThird, .research-topics--landing .node--type-content-block .node--type-principal-investigator .striped-container-wrapper .flexItemImageThird, .node--type-principal-investigator .research-topics--landing .node--type-content-block .striped-container-wrapper .flexItemImageThird, .research-topics--landing .node--type-content-block .node--type-principal-investigator .striped-container .flexItemImageThird, .node--type-principal-investigator .research-topics--landing .node--type-content-block .striped-container .flexItemImageThird, .research-topics--landing .node--type-content-block .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImageThird, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .research-topics--landing .node--type-content-block article .flexItemImageThird,
.research-topics--landing .node--type-content-block .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemImageThird,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .research-topics--landing .node--type-content-block article .flexItemImageThird, .research-topics--landing .node--type-content-block .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageThird, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .research-topics--landing .node--type-content-block .standard-teaser.node--view-mode-short-teaser .flexItemImageThird, .research-topics--landing .node--type-content-block .field--name-field-awards .flexItemImageThird, .research-topics--landing .node--type-content-block .registerSocialContainer .flexItemImageThird, .research-topics--landing .node--type-content-block .eventdatesLocationType .flexItemImageThird, .research-topics--landing .node--type-content-block .news-article-container .flexItemImageThird, .research-topics--landing .node--type-content-block .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageThird,
.research-topics--landing .node--type-content-block .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageThird,
.research-topics--landing .node--type-content-block .node--type-events.node--view-mode-press-release-teaser .flexItemImageThird,
.research-topics--landing .node--type-content-block .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageThird,
.research-topics--landing .node--type-content-block .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageThird,
.research-topics--landing .node--type-content-block .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageThird,
.research-topics--landing .node--type-content-block .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageThird, .research-topics--landing .node--type-content-block .news-header-container .flexItemImageThird, .research-topics--landing .node--type-content-block .contacts-container .field--name-field-contacts .flexItemImageThird, .contacts-container .research-topics--landing .node--type-content-block .field--name-field-contacts .flexItemImageThird, .research-topics--landing .node--type-content-block .publicationsBox .field--name-field-related-publications .flexItemImageThird, .publicationsBox .research-topics--landing .node--type-content-block .field--name-field-related-publications .flexItemImageThird, .research-topics--landing .node--type-content-block .field--name-field-primary-featured-item .flexItemImageThird, .research-topics--landing .node--type-content-block .field--name-field-additional-featured-items .flexItemImageThird, .research-topics--landing .node--type-content-block .homepage-health-topics-container .flexItemImageThird, .research-topics--landing .node--type-content-block .homepage-mission-areas-container .flexItemImageThird, .research-topics--landing .node--type-content-block .homepage-location-container .flexItemImageThird, .research-topics--landing .node--type-content-block .field--name-field-alumni .flexItemImageThird, .research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemImageThird, .node--type-nhlbi-publication.node--view-mode-full .research-topics--landing .node--type-content-block .nhlbi-publication-details-container .flexItemImageThird,
.research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemImageThird,
.node--type-nhlbi-publication.node--view-mode-subscribe .research-topics--landing .node--type-content-block .nhlbi-publication-details-container .flexItemImageThird, .research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemImageThird, .node--type-nhlbi-publication.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-related-nhlbi-publications .flexItemImageThird,
.research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemImageThird,
.node--type-nhlbi-publication.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-related-nhlbi-publications .flexItemImageThird, .research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageThird, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemImageThird,
.research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageThird,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemImageThird, .research-topics--landing .node--type-content-block .flexcontainer .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .related-ht-ser-container .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .field--name-field-sfa-card .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .field--name-field-speaker .flexItemImageThirdHalf,
.research-topics--landing .node--type-content-block .field--name-field-executives .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .standard-card-field .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .field--name-field-advisory-committees .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .contact-nhlbi-titleblock .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .field--name-field-contact-cards .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .field--name-field-employment-opportunity-car .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .all-grants-foa-container .flexItemImageThirdHalf,
.research-topics--landing .node--type-content-block .field--name-field-program-officers .flexItemImageThirdHalf,
.research-topics--landing .node--type-content-block .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageThirdHalf,
.research-topics--landing .node--type-content-block .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .node--type-individual-contact .field--name-field-contact-methods .flexItemImageThirdHalf, .node--type-individual-contact .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemImageThirdHalf,
.research-topics--landing .node--type-content-block .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-division.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemImageThirdHalf,
.research-topics--landing .node--type-content-block .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-division.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemImageThirdHalf,
.research-topics--landing .node--type-content-block .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-branch.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemImageThirdHalf,
.research-topics--landing .node--type-content-block .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-branch.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemImageThirdHalf,
.research-topics--landing .node--type-content-block .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-general.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemImageThirdHalf,
.research-topics--landing .node--type-content-block .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-general.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemImageThirdHalf,
.research-topics--landing .node--type-content-block .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-health-education-initiative.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemImageThirdHalf,
.research-topics--landing .node--type-content-block .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-health-education-initiative.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .node--type-committee .field--name-field-card-text .flexItemImageThirdHalf, .node--type-committee .research-topics--landing .node--type-content-block .field--name-field-card-text .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .news-and-events--landing .landing-social .flexItemImageThirdHalf, .news-and-events--landing .research-topics--landing .node--type-content-block .landing-social .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .field--name-field-sfa-cards .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .locationMap.contact-location-map-container .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .locationMap .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .grants-and-training-card-wrapper .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .about-nhlbi-division-card-wrapper .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .hei-tools-icon-card-wrapper .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .field--name-field-grants-and-training-card .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .field--name-field-division-card .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .field--name-field-tool-icon-card .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .field--name-field-promotional-card .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .field--name-field-sv-promotional-cards .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .field--name-field-about-nhlbi-promotional-ca .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .strategic-vision-titleblock .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .ppg-titleblock-wrapper .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .ppg-guidelines-card-wrapper .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .field--name-field-human-subject-cards .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .field--name-field-section-card .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .field--name-field-highlight-card .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .health-topic-teaser-container .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .about-nhlbi-our-mission-wrapper .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageThirdHalf, .about-nhlbi-our-mission-wrapper .research-topics--landing .node--type-content-block .field--name-field-leadership > .director-bioCard .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageThirdHalf, .nhlbi-publications-and-resources--landing .research-topics--landing .node--type-content-block .field--name-field-health-consumer-nhlbi-publ .flexItemImageThirdHalf,
.research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageThirdHalf,
.nhlbi-publications-and-resources--landing .research-topics--landing .node--type-content-block .field--name-field-health-professionals-nhlbi .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageThirdHalf, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemImageThirdHalf,
.research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageThirdHalf,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .publicationsBlock.view-nhlbi-publications > .view-content .flexItemImageThirdHalf,
.research-topics--landing .node--type-content-block .field--name-field-related-publications .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .healthEducationBlock .standard-teaser .flexItemImageThirdHalf, .healthEducationBlock .research-topics--landing .node--type-content-block .standard-teaser .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .systematicEvidenceReviewsBlock .view-content .flexItemImageThirdHalf, .systematicEvidenceReviewsBlock .research-topics--landing .node--type-content-block .view-content .flexItemImageThirdHalf,
.research-topics--landing .node--type-content-block .clinicalPracticeGuidelinesBlock .view-content .flexItemImageThirdHalf,
.clinicalPracticeGuidelinesBlock .research-topics--landing .node--type-content-block .view-content .flexItemImageThirdHalf,
.research-topics--landing .node--type-content-block .publicationsAndFactSheetsBlock .view-content .flexItemImageThirdHalf,
.publicationsAndFactSheetsBlock .research-topics--landing .node--type-content-block .view-content .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .rtFlexContainer .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageThirdHalf, .node--type-research-topic .research-topics--landing .node--type-content-block .field--name-field-science-supplemental-page .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .node--type-research-topic .researchTopicPublications .flexItemImageThirdHalf, .node--type-research-topic .research-topics--landing .node--type-content-block .researchTopicPublications .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemImageThirdHalf, .node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block article.listTeaserCard .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageThirdHalf, .node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block article.standard-teaser .flexItemImageThirdHalf,
.research-topics--landing .node--type-content-block .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageThirdHalf,
.node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block article.newsEventsCard .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .esi-feature-card .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .featured-science-instance-teaser-container .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .sfa-teaser-container .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .training-opportunity-card .field--name-field-associated-people .flexItemImageThirdHalf, .training-opportunity-card .research-topics--landing .node--type-content-block .field--name-field-associated-people .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .field--name-field-featured-training-opportun .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .field--name-field-career-stages .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .field--name-field-workforce-development-card .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .node--type-update.node--view-mode-executive-teaser .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .news-and-events-titleblock .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .contact-box > .field--name-field-contact-methods .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .leadership-container .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageThirdHalf, .leadership-container .leadership-deputy-director-container .research-topics--landing .node--type-content-block .field--name-field-additional-leadership .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .branch-leadership-container .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageThirdHalf, .branch-leadership-container .leadership-deputy-director-container .research-topics--landing .node--type-content-block .field--name-field-additional-leadership .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .node--type-general .field--name-field-related-publications .flexItemImageThirdHalf, .node--type-general .research-topics--landing .node--type-content-block .field--name-field-related-publications .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .node--type-general .field--name-field-general-publications-rlt .flexItemImageThirdHalf, .node--type-general .research-topics--landing .node--type-content-block .field--name-field-general-publications-rlt .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageThirdHalf, .node--type-general .field--name-field-general-publications-rlt > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageThirdHalf, .node--type-general .field--name-field-related-publications > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .objective-text-container .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .objective-list-container .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .field--name-field-goal-card .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .strategic-vision-landing-goals-wrapper .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .node--type-principal-investigator .striped-container-wrapper .flexItemImageThirdHalf, .node--type-principal-investigator .research-topics--landing .node--type-content-block .striped-container-wrapper .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .node--type-principal-investigator .striped-container .flexItemImageThirdHalf, .node--type-principal-investigator .research-topics--landing .node--type-content-block .striped-container .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImageThirdHalf, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .research-topics--landing .node--type-content-block article .flexItemImageThirdHalf,
.research-topics--landing .node--type-content-block .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemImageThirdHalf,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .research-topics--landing .node--type-content-block article .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageThirdHalf, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .research-topics--landing .node--type-content-block .standard-teaser.node--view-mode-short-teaser .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .field--name-field-awards .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .registerSocialContainer .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .eventdatesLocationType .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .news-article-container .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageThirdHalf,
.research-topics--landing .node--type-content-block .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageThirdHalf,
.research-topics--landing .node--type-content-block .node--type-events.node--view-mode-press-release-teaser .flexItemImageThirdHalf,
.research-topics--landing .node--type-content-block .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf,
.research-topics--landing .node--type-content-block .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf,
.research-topics--landing .node--type-content-block .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf,
.research-topics--landing .node--type-content-block .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .news-header-container .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .contacts-container .field--name-field-contacts .flexItemImageThirdHalf, .contacts-container .research-topics--landing .node--type-content-block .field--name-field-contacts .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .publicationsBox .field--name-field-related-publications .flexItemImageThirdHalf, .publicationsBox .research-topics--landing .node--type-content-block .field--name-field-related-publications .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .field--name-field-primary-featured-item .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .field--name-field-additional-featured-items .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .homepage-health-topics-container .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .homepage-mission-areas-container .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .homepage-location-container .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .field--name-field-alumni .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemImageThirdHalf, .node--type-nhlbi-publication.node--view-mode-full .research-topics--landing .node--type-content-block .nhlbi-publication-details-container .flexItemImageThirdHalf,
.research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemImageThirdHalf,
.node--type-nhlbi-publication.node--view-mode-subscribe .research-topics--landing .node--type-content-block .nhlbi-publication-details-container .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemImageThirdHalf, .node--type-nhlbi-publication.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-related-nhlbi-publications .flexItemImageThirdHalf,
.research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemImageThirdHalf,
.node--type-nhlbi-publication.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-related-nhlbi-publications .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageThirdHalf, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemImageThirdHalf,
.research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageThirdHalf,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .flexcontainer .hero-image, .research-topics--landing .node--type-content-block .related-ht-ser-container .hero-image, .research-topics--landing .node--type-content-block .field--name-field-sfa-card .hero-image, .research-topics--landing .node--type-content-block .field--name-field-speaker .hero-image,
.research-topics--landing .node--type-content-block .field--name-field-executives .hero-image, .research-topics--landing .node--type-content-block .standard-card-field .hero-image, .research-topics--landing .node--type-content-block .field--name-field-advisory-committees .hero-image, .research-topics--landing .node--type-content-block .contact-nhlbi-titleblock .hero-image, .research-topics--landing .node--type-content-block .field--name-field-contact-cards .hero-image, .research-topics--landing .node--type-content-block .field--name-field-employment-opportunity-car .hero-image, .research-topics--landing .node--type-content-block .all-grants-foa-container .hero-image,
.research-topics--landing .node--type-content-block .field--name-field-program-officers .hero-image,
.research-topics--landing .node--type-content-block .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .hero-image,
.research-topics--landing .node--type-content-block .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .hero-image, .research-topics--landing .node--type-content-block .node--type-individual-contact .field--name-field-contact-methods .hero-image, .node--type-individual-contact .research-topics--landing .node--type-content-block .field--name-field-contact-methods .hero-image,
.research-topics--landing .node--type-content-block .node--type-division.node--view-mode-full .field--name-field-contact-methods .hero-image,
.node--type-division.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-contact-methods .hero-image,
.research-topics--landing .node--type-content-block .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .hero-image,
.node--type-division.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-contact-methods .hero-image,
.research-topics--landing .node--type-content-block .node--type-branch.node--view-mode-full .field--name-field-contact-methods .hero-image,
.node--type-branch.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-contact-methods .hero-image,
.research-topics--landing .node--type-content-block .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .hero-image,
.node--type-branch.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-contact-methods .hero-image,
.research-topics--landing .node--type-content-block .node--type-general.node--view-mode-full .field--name-field-contact-methods .hero-image,
.node--type-general.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-contact-methods .hero-image,
.research-topics--landing .node--type-content-block .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .hero-image,
.node--type-general.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-contact-methods .hero-image,
.research-topics--landing .node--type-content-block .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .hero-image,
.node--type-health-education-initiative.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-contact-methods .hero-image,
.research-topics--landing .node--type-content-block .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .hero-image,
.node--type-health-education-initiative.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-contact-methods .hero-image, .research-topics--landing .node--type-content-block .node--type-committee .field--name-field-card-text .hero-image, .node--type-committee .research-topics--landing .node--type-content-block .field--name-field-card-text .hero-image, .research-topics--landing .node--type-content-block .news-and-events--landing .landing-social .hero-image, .news-and-events--landing .research-topics--landing .node--type-content-block .landing-social .hero-image, .research-topics--landing .node--type-content-block .field--name-field-sfa-cards .hero-image, .research-topics--landing .node--type-content-block .locationMap.contact-location-map-container .hero-image, .research-topics--landing .node--type-content-block .locationMap .hero-image, .research-topics--landing .node--type-content-block .grants-and-training-card-wrapper .hero-image, .research-topics--landing .node--type-content-block .about-nhlbi-division-card-wrapper .hero-image, .research-topics--landing .node--type-content-block .hei-tools-icon-card-wrapper .hero-image, .research-topics--landing .node--type-content-block .field--name-field-grants-and-training-card .hero-image, .research-topics--landing .node--type-content-block .field--name-field-division-card .hero-image, .research-topics--landing .node--type-content-block .field--name-field-tool-icon-card .hero-image, .research-topics--landing .node--type-content-block .field--name-field-promotional-card .hero-image, .research-topics--landing .node--type-content-block .field--name-field-sv-promotional-cards .hero-image, .research-topics--landing .node--type-content-block .field--name-field-about-nhlbi-promotional-ca .hero-image, .research-topics--landing .node--type-content-block .strategic-vision-titleblock .hero-image, .research-topics--landing .node--type-content-block .ppg-titleblock-wrapper .hero-image, .research-topics--landing .node--type-content-block .ppg-guidelines-card-wrapper .hero-image, .research-topics--landing .node--type-content-block .field--name-field-human-subject-cards .hero-image, .research-topics--landing .node--type-content-block .field--name-field-section-card .hero-image, .research-topics--landing .node--type-content-block .field--name-field-highlight-card .hero-image, .research-topics--landing .node--type-content-block .health-topic-teaser-container .hero-image, .research-topics--landing .node--type-content-block .about-nhlbi-our-mission-wrapper .hero-image, .research-topics--landing .node--type-content-block .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .hero-image, .about-nhlbi-our-mission-wrapper .research-topics--landing .node--type-content-block .field--name-field-leadership > .director-bioCard .hero-image, .research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .hero-image, .nhlbi-publications-and-resources--landing .research-topics--landing .node--type-content-block .field--name-field-health-consumer-nhlbi-publ .hero-image,
.research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .hero-image,
.nhlbi-publications-and-resources--landing .research-topics--landing .node--type-content-block .field--name-field-health-professionals-nhlbi .hero-image, .research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .hero-image, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .research-topics--landing .node--type-content-block .standard-teaser .hero-image,
.research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .hero-image,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .research-topics--landing .node--type-content-block .standard-teaser .hero-image, .research-topics--landing .node--type-content-block .publicationsBlock.view-nhlbi-publications > .view-content .hero-image,
.research-topics--landing .node--type-content-block .field--name-field-related-publications .hero-image, .research-topics--landing .node--type-content-block .healthEducationBlock .standard-teaser .hero-image, .healthEducationBlock .research-topics--landing .node--type-content-block .standard-teaser .hero-image, .research-topics--landing .node--type-content-block .systematicEvidenceReviewsBlock .view-content .hero-image, .systematicEvidenceReviewsBlock .research-topics--landing .node--type-content-block .view-content .hero-image,
.research-topics--landing .node--type-content-block .clinicalPracticeGuidelinesBlock .view-content .hero-image,
.clinicalPracticeGuidelinesBlock .research-topics--landing .node--type-content-block .view-content .hero-image,
.research-topics--landing .node--type-content-block .publicationsAndFactSheetsBlock .view-content .hero-image,
.publicationsAndFactSheetsBlock .research-topics--landing .node--type-content-block .view-content .hero-image, .research-topics--landing .node--type-content-block .rtFlexContainer .hero-image, .research-topics--landing .node--type-content-block .node--type-research-topic .field--name-field-science-supplemental-page .hero-image, .node--type-research-topic .research-topics--landing .node--type-content-block .field--name-field-science-supplemental-page .hero-image, .research-topics--landing .node--type-content-block .node--type-research-topic .researchTopicPublications .hero-image, .node--type-research-topic .research-topics--landing .node--type-content-block .researchTopicPublications .hero-image, .research-topics--landing .node--type-content-block .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .hero-image, .node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block article.listTeaserCard .hero-image, .research-topics--landing .node--type-content-block .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .hero-image, .node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block article.standard-teaser .hero-image,
.research-topics--landing .node--type-content-block .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .hero-image,
.node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block article.newsEventsCard .hero-image, .research-topics--landing .node--type-content-block .esi-feature-card .hero-image, .research-topics--landing .node--type-content-block .featured-science-instance-teaser-container .hero-image, .research-topics--landing .node--type-content-block .sfa-teaser-container .hero-image, .research-topics--landing .node--type-content-block .training-opportunity-card .field--name-field-associated-people .hero-image, .training-opportunity-card .research-topics--landing .node--type-content-block .field--name-field-associated-people .hero-image, .research-topics--landing .node--type-content-block .field--name-field-featured-training-opportun .hero-image, .research-topics--landing .node--type-content-block .field--name-field-career-stages .hero-image, .research-topics--landing .node--type-content-block .field--name-field-workforce-development-card .hero-image, .research-topics--landing .node--type-content-block .node--type-update.node--view-mode-executive-teaser .hero-image, .research-topics--landing .node--type-content-block .news-and-events-titleblock .hero-image, .research-topics--landing .node--type-content-block .contact-box > .field--name-field-contact-methods .hero-image, .research-topics--landing .node--type-content-block .leadership-container .hero-image, .research-topics--landing .node--type-content-block .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .hero-image, .leadership-container .leadership-deputy-director-container .research-topics--landing .node--type-content-block .field--name-field-additional-leadership .hero-image, .research-topics--landing .node--type-content-block .branch-leadership-container .hero-image, .research-topics--landing .node--type-content-block .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .hero-image, .branch-leadership-container .leadership-deputy-director-container .research-topics--landing .node--type-content-block .field--name-field-additional-leadership .hero-image, .research-topics--landing .node--type-content-block .node--type-general .field--name-field-related-publications .hero-image, .node--type-general .research-topics--landing .node--type-content-block .field--name-field-related-publications .hero-image, .research-topics--landing .node--type-content-block .node--type-general .field--name-field-general-publications-rlt .hero-image, .node--type-general .research-topics--landing .node--type-content-block .field--name-field-general-publications-rlt .hero-image, .research-topics--landing .node--type-content-block .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .hero-image, .node--type-general .field--name-field-general-publications-rlt > .field__item .research-topics--landing .node--type-content-block .standard-teaser .hero-image, .research-topics--landing .node--type-content-block .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .hero-image, .node--type-general .field--name-field-related-publications > .field__item .research-topics--landing .node--type-content-block .standard-teaser .hero-image, .research-topics--landing .node--type-content-block .objective-text-container .hero-image, .research-topics--landing .node--type-content-block .objective-list-container .hero-image, .research-topics--landing .node--type-content-block .field--name-field-goal-card .hero-image, .research-topics--landing .node--type-content-block .strategic-vision-landing-goals-wrapper .hero-image, .research-topics--landing .node--type-content-block .node--type-principal-investigator .striped-container-wrapper .hero-image, .node--type-principal-investigator .research-topics--landing .node--type-content-block .striped-container-wrapper .hero-image, .research-topics--landing .node--type-content-block .node--type-principal-investigator .striped-container .hero-image, .node--type-principal-investigator .research-topics--landing .node--type-content-block .striped-container .hero-image, .research-topics--landing .node--type-content-block .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .hero-image, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .research-topics--landing .node--type-content-block article .hero-image,
.research-topics--landing .node--type-content-block .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .hero-image,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .research-topics--landing .node--type-content-block article .hero-image, .research-topics--landing .node--type-content-block .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .hero-image, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .research-topics--landing .node--type-content-block .standard-teaser.node--view-mode-short-teaser .hero-image, .research-topics--landing .node--type-content-block .field--name-field-awards .hero-image, .research-topics--landing .node--type-content-block .registerSocialContainer .hero-image, .research-topics--landing .node--type-content-block .eventdatesLocationType .hero-image, .research-topics--landing .node--type-content-block .news-article-container .hero-image, .research-topics--landing .node--type-content-block .node--type-feature-article.node--view-mode-press-release-teaser .hero-image,
.research-topics--landing .node--type-content-block .node--type-press-release.node--view-mode-press-release-teaser .hero-image,
.research-topics--landing .node--type-content-block .node--type-events.node--view-mode-press-release-teaser .hero-image,
.research-topics--landing .node--type-content-block .node--type-feature-article.node--view-mode-hp-press-release-teaser .hero-image,
.research-topics--landing .node--type-content-block .node--type-press-release.node--view-mode-hp-press-release-teaser .hero-image,
.research-topics--landing .node--type-content-block .node--type-events.node--view-mode-hp-press-release-teaser .hero-image,
.research-topics--landing .node--type-content-block .node--type-news-mention.node--view-mode-hp-press-release-teaser .hero-image, .research-topics--landing .node--type-content-block .news-header-container .hero-image, .research-topics--landing .node--type-content-block .contacts-container .field--name-field-contacts .hero-image, .contacts-container .research-topics--landing .node--type-content-block .field--name-field-contacts .hero-image, .research-topics--landing .node--type-content-block .publicationsBox .field--name-field-related-publications .hero-image, .publicationsBox .research-topics--landing .node--type-content-block .field--name-field-related-publications .hero-image, .research-topics--landing .node--type-content-block .field--name-field-primary-featured-item .hero-image, .research-topics--landing .node--type-content-block .field--name-field-additional-featured-items .hero-image, .research-topics--landing .node--type-content-block .homepage-health-topics-container .hero-image, .research-topics--landing .node--type-content-block .homepage-mission-areas-container .hero-image, .research-topics--landing .node--type-content-block .homepage-location-container .hero-image, .research-topics--landing .node--type-content-block .field--name-field-alumni .hero-image, .research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .hero-image, .node--type-nhlbi-publication.node--view-mode-full .research-topics--landing .node--type-content-block .nhlbi-publication-details-container .hero-image,
.research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .hero-image,
.node--type-nhlbi-publication.node--view-mode-subscribe .research-topics--landing .node--type-content-block .nhlbi-publication-details-container .hero-image, .research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .hero-image, .node--type-nhlbi-publication.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-related-nhlbi-publications .hero-image,
.research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .hero-image,
.node--type-nhlbi-publication.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-related-nhlbi-publications .hero-image, .research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .hero-image, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .research-topics--landing .node--type-content-block .standard-teaser .hero-image,
.research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .hero-image,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .research-topics--landing .node--type-content-block .standard-teaser .hero-image {
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
}
/* line 150, ../sass/components/_landing_pages.scss */
.research-topics--landing .node--type-content-block .flexcontainer .flexItemText, .research-topics--landing .node--type-content-block .related-ht-ser-container .flexItemText, .research-topics--landing .node--type-content-block .field--name-field-sfa-card .flexItemText, .research-topics--landing .node--type-content-block .field--name-field-speaker .flexItemText,
.research-topics--landing .node--type-content-block .field--name-field-executives .flexItemText, .research-topics--landing .node--type-content-block .standard-card-field .flexItemText, .research-topics--landing .node--type-content-block .field--name-field-advisory-committees .flexItemText, .research-topics--landing .node--type-content-block .contact-nhlbi-titleblock .flexItemText, .research-topics--landing .node--type-content-block .field--name-field-contact-cards .flexItemText, .research-topics--landing .node--type-content-block .field--name-field-employment-opportunity-car .flexItemText, .research-topics--landing .node--type-content-block .all-grants-foa-container .flexItemText,
.research-topics--landing .node--type-content-block .field--name-field-program-officers .flexItemText,
.research-topics--landing .node--type-content-block .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText,
.research-topics--landing .node--type-content-block .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText, .research-topics--landing .node--type-content-block .node--type-individual-contact .field--name-field-contact-methods .flexItemText, .node--type-individual-contact .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText,
.research-topics--landing .node--type-content-block .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemText,
.node--type-division.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText,
.research-topics--landing .node--type-content-block .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText,
.node--type-division.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText,
.research-topics--landing .node--type-content-block .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemText,
.node--type-branch.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText,
.research-topics--landing .node--type-content-block .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText,
.node--type-branch.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText,
.research-topics--landing .node--type-content-block .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemText,
.node--type-general.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText,
.research-topics--landing .node--type-content-block .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText,
.node--type-general.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText,
.research-topics--landing .node--type-content-block .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemText,
.node--type-health-education-initiative.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText,
.research-topics--landing .node--type-content-block .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText,
.node--type-health-education-initiative.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText, .research-topics--landing .node--type-content-block .node--type-committee .field--name-field-card-text .flexItemText, .node--type-committee .research-topics--landing .node--type-content-block .field--name-field-card-text .flexItemText, .research-topics--landing .node--type-content-block .news-and-events--landing .landing-social .flexItemText, .news-and-events--landing .research-topics--landing .node--type-content-block .landing-social .flexItemText, .research-topics--landing .node--type-content-block .field--name-field-sfa-cards .flexItemText, .research-topics--landing .node--type-content-block .locationMap.contact-location-map-container .flexItemText, .research-topics--landing .node--type-content-block .locationMap .flexItemText, .research-topics--landing .node--type-content-block .grants-and-training-card-wrapper .flexItemText, .research-topics--landing .node--type-content-block .about-nhlbi-division-card-wrapper .flexItemText, .research-topics--landing .node--type-content-block .hei-tools-icon-card-wrapper .flexItemText, .research-topics--landing .node--type-content-block .field--name-field-grants-and-training-card .flexItemText, .research-topics--landing .node--type-content-block .field--name-field-division-card .flexItemText, .research-topics--landing .node--type-content-block .field--name-field-tool-icon-card .flexItemText, .research-topics--landing .node--type-content-block .field--name-field-promotional-card .flexItemText, .research-topics--landing .node--type-content-block .field--name-field-sv-promotional-cards .flexItemText, .research-topics--landing .node--type-content-block .field--name-field-about-nhlbi-promotional-ca .flexItemText, .research-topics--landing .node--type-content-block .strategic-vision-titleblock .flexItemText, .research-topics--landing .node--type-content-block .ppg-titleblock-wrapper .flexItemText, .research-topics--landing .node--type-content-block .ppg-guidelines-card-wrapper .flexItemText, .research-topics--landing .node--type-content-block .field--name-field-human-subject-cards .flexItemText, .research-topics--landing .node--type-content-block .field--name-field-section-card .flexItemText, .research-topics--landing .node--type-content-block .field--name-field-highlight-card .flexItemText, .research-topics--landing .node--type-content-block .health-topic-teaser-container .flexItemText, .research-topics--landing .node--type-content-block .about-nhlbi-our-mission-wrapper .flexItemText, .research-topics--landing .node--type-content-block .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText, .about-nhlbi-our-mission-wrapper .research-topics--landing .node--type-content-block .field--name-field-leadership > .director-bioCard .flexItemText, .research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemText, .nhlbi-publications-and-resources--landing .research-topics--landing .node--type-content-block .field--name-field-health-consumer-nhlbi-publ .flexItemText,
.research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemText,
.nhlbi-publications-and-resources--landing .research-topics--landing .node--type-content-block .field--name-field-health-professionals-nhlbi .flexItemText, .research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemText, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemText,
.research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemText,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemText, .research-topics--landing .node--type-content-block .publicationsBlock.view-nhlbi-publications > .view-content .flexItemText,
.research-topics--landing .node--type-content-block .field--name-field-related-publications .flexItemText, .research-topics--landing .node--type-content-block .healthEducationBlock .standard-teaser .flexItemText, .healthEducationBlock .research-topics--landing .node--type-content-block .standard-teaser .flexItemText, .research-topics--landing .node--type-content-block .systematicEvidenceReviewsBlock .view-content .flexItemText, .systematicEvidenceReviewsBlock .research-topics--landing .node--type-content-block .view-content .flexItemText,
.research-topics--landing .node--type-content-block .clinicalPracticeGuidelinesBlock .view-content .flexItemText,
.clinicalPracticeGuidelinesBlock .research-topics--landing .node--type-content-block .view-content .flexItemText,
.research-topics--landing .node--type-content-block .publicationsAndFactSheetsBlock .view-content .flexItemText,
.publicationsAndFactSheetsBlock .research-topics--landing .node--type-content-block .view-content .flexItemText, .research-topics--landing .node--type-content-block .rtFlexContainer .flexItemText, .research-topics--landing .node--type-content-block .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText, .node--type-research-topic .research-topics--landing .node--type-content-block .field--name-field-science-supplemental-page .flexItemText, .research-topics--landing .node--type-content-block .node--type-research-topic .researchTopicPublications .flexItemText, .node--type-research-topic .research-topics--landing .node--type-content-block .researchTopicPublications .flexItemText, .research-topics--landing .node--type-content-block .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemText, .node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block article.listTeaserCard .flexItemText, .research-topics--landing .node--type-content-block .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemText, .node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block article.standard-teaser .flexItemText,
.research-topics--landing .node--type-content-block .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemText,
.node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block article.newsEventsCard .flexItemText, .research-topics--landing .node--type-content-block .esi-feature-card .flexItemText, .research-topics--landing .node--type-content-block .featured-science-instance-teaser-container .flexItemText, .research-topics--landing .node--type-content-block .sfa-teaser-container .flexItemText, .research-topics--landing .node--type-content-block .training-opportunity-card .field--name-field-associated-people .flexItemText, .training-opportunity-card .research-topics--landing .node--type-content-block .field--name-field-associated-people .flexItemText, .research-topics--landing .node--type-content-block .field--name-field-featured-training-opportun .flexItemText, .research-topics--landing .node--type-content-block .field--name-field-career-stages .flexItemText, .research-topics--landing .node--type-content-block .field--name-field-workforce-development-card .flexItemText, .research-topics--landing .node--type-content-block .node--type-update.node--view-mode-executive-teaser .flexItemText, .research-topics--landing .node--type-content-block .news-and-events-titleblock .flexItemText, .research-topics--landing .node--type-content-block .contact-box > .field--name-field-contact-methods .flexItemText, .research-topics--landing .node--type-content-block .leadership-container .flexItemText, .research-topics--landing .node--type-content-block .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText, .leadership-container .leadership-deputy-director-container .research-topics--landing .node--type-content-block .field--name-field-additional-leadership .flexItemText, .research-topics--landing .node--type-content-block .branch-leadership-container .flexItemText, .research-topics--landing .node--type-content-block .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText, .branch-leadership-container .leadership-deputy-director-container .research-topics--landing .node--type-content-block .field--name-field-additional-leadership .flexItemText, .research-topics--landing .node--type-content-block .node--type-general .field--name-field-related-publications .flexItemText, .node--type-general .research-topics--landing .node--type-content-block .field--name-field-related-publications .flexItemText, .research-topics--landing .node--type-content-block .node--type-general .field--name-field-general-publications-rlt .flexItemText, .node--type-general .research-topics--landing .node--type-content-block .field--name-field-general-publications-rlt .flexItemText, .research-topics--landing .node--type-content-block .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemText, .node--type-general .field--name-field-general-publications-rlt > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemText, .research-topics--landing .node--type-content-block .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemText, .node--type-general .field--name-field-related-publications > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemText, .research-topics--landing .node--type-content-block .objective-text-container .flexItemText, .research-topics--landing .node--type-content-block .objective-list-container .flexItemText, .research-topics--landing .node--type-content-block .field--name-field-goal-card .flexItemText, .research-topics--landing .node--type-content-block .strategic-vision-landing-goals-wrapper .flexItemText, .research-topics--landing .node--type-content-block .node--type-principal-investigator .striped-container-wrapper .flexItemText, .node--type-principal-investigator .research-topics--landing .node--type-content-block .striped-container-wrapper .flexItemText, .research-topics--landing .node--type-content-block .node--type-principal-investigator .striped-container .flexItemText, .node--type-principal-investigator .research-topics--landing .node--type-content-block .striped-container .flexItemText, .research-topics--landing .node--type-content-block .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemText, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .research-topics--landing .node--type-content-block article .flexItemText,
.research-topics--landing .node--type-content-block .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemText,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .research-topics--landing .node--type-content-block article .flexItemText, .research-topics--landing .node--type-content-block .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemText, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .research-topics--landing .node--type-content-block .standard-teaser.node--view-mode-short-teaser .flexItemText, .research-topics--landing .node--type-content-block .field--name-field-awards .flexItemText, .research-topics--landing .node--type-content-block .registerSocialContainer .flexItemText, .research-topics--landing .node--type-content-block .eventdatesLocationType .flexItemText, .research-topics--landing .node--type-content-block .news-article-container .flexItemText, .research-topics--landing .node--type-content-block .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText,
.research-topics--landing .node--type-content-block .node--type-press-release.node--view-mode-press-release-teaser .flexItemText,
.research-topics--landing .node--type-content-block .node--type-events.node--view-mode-press-release-teaser .flexItemText,
.research-topics--landing .node--type-content-block .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText,
.research-topics--landing .node--type-content-block .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText,
.research-topics--landing .node--type-content-block .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText,
.research-topics--landing .node--type-content-block .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText, .research-topics--landing .node--type-content-block .news-header-container .flexItemText, .research-topics--landing .node--type-content-block .contacts-container .field--name-field-contacts .flexItemText, .contacts-container .research-topics--landing .node--type-content-block .field--name-field-contacts .flexItemText, .research-topics--landing .node--type-content-block .publicationsBox .field--name-field-related-publications .flexItemText, .publicationsBox .research-topics--landing .node--type-content-block .field--name-field-related-publications .flexItemText, .research-topics--landing .node--type-content-block .field--name-field-primary-featured-item .flexItemText, .research-topics--landing .node--type-content-block .field--name-field-additional-featured-items .flexItemText, .research-topics--landing .node--type-content-block .homepage-health-topics-container .flexItemText, .research-topics--landing .node--type-content-block .homepage-mission-areas-container .flexItemText, .research-topics--landing .node--type-content-block .homepage-location-container .flexItemText, .research-topics--landing .node--type-content-block .field--name-field-alumni .flexItemText, .research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemText, .node--type-nhlbi-publication.node--view-mode-full .research-topics--landing .node--type-content-block .nhlbi-publication-details-container .flexItemText,
.research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemText,
.node--type-nhlbi-publication.node--view-mode-subscribe .research-topics--landing .node--type-content-block .nhlbi-publication-details-container .flexItemText, .research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemText, .node--type-nhlbi-publication.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-related-nhlbi-publications .flexItemText,
.research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemText,
.node--type-nhlbi-publication.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-related-nhlbi-publications .flexItemText, .research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemText,
.research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemText {
  -webkit-box-ordinal-group: 2;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
  color: #222;
  background-color: transparent;
}
/* line 126, ../sass/_mixins.scss */
.research-topics--landing .node--type-content-block .flexcontainer .flexItemText a, .research-topics--landing .node--type-content-block .related-ht-ser-container .flexItemText a, .research-topics--landing .node--type-content-block .field--name-field-sfa-card .flexItemText a, .research-topics--landing .node--type-content-block .field--name-field-speaker .flexItemText a,
.research-topics--landing .node--type-content-block .field--name-field-executives .flexItemText a, .research-topics--landing .node--type-content-block .standard-card-field .flexItemText a, .research-topics--landing .node--type-content-block .field--name-field-advisory-committees .flexItemText a, .research-topics--landing .node--type-content-block .contact-nhlbi-titleblock .flexItemText a, .research-topics--landing .node--type-content-block .field--name-field-contact-cards .flexItemText a, .research-topics--landing .node--type-content-block .field--name-field-employment-opportunity-car .flexItemText a, .research-topics--landing .node--type-content-block .all-grants-foa-container .flexItemText a,
.research-topics--landing .node--type-content-block .field--name-field-program-officers .flexItemText a,
.research-topics--landing .node--type-content-block .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText a,
.research-topics--landing .node--type-content-block .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText a, .research-topics--landing .node--type-content-block .node--type-individual-contact .field--name-field-contact-methods .flexItemText a, .node--type-individual-contact .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText a,
.research-topics--landing .node--type-content-block .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemText a,
.node--type-division.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText a,
.research-topics--landing .node--type-content-block .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText a,
.node--type-division.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText a,
.research-topics--landing .node--type-content-block .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemText a,
.node--type-branch.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText a,
.research-topics--landing .node--type-content-block .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText a,
.node--type-branch.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText a,
.research-topics--landing .node--type-content-block .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemText a,
.node--type-general.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText a,
.research-topics--landing .node--type-content-block .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText a,
.node--type-general.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText a,
.research-topics--landing .node--type-content-block .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemText a,
.node--type-health-education-initiative.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText a,
.research-topics--landing .node--type-content-block .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText a,
.node--type-health-education-initiative.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText a, .research-topics--landing .node--type-content-block .node--type-committee .field--name-field-card-text .flexItemText a, .node--type-committee .research-topics--landing .node--type-content-block .field--name-field-card-text .flexItemText a, .research-topics--landing .node--type-content-block .news-and-events--landing .landing-social .flexItemText a, .news-and-events--landing .research-topics--landing .node--type-content-block .landing-social .flexItemText a, .research-topics--landing .node--type-content-block .field--name-field-sfa-cards .flexItemText a, .research-topics--landing .node--type-content-block .locationMap.contact-location-map-container .flexItemText a, .research-topics--landing .node--type-content-block .locationMap .flexItemText a, .research-topics--landing .node--type-content-block .grants-and-training-card-wrapper .flexItemText a, .research-topics--landing .node--type-content-block .about-nhlbi-division-card-wrapper .flexItemText a, .research-topics--landing .node--type-content-block .hei-tools-icon-card-wrapper .flexItemText a, .research-topics--landing .node--type-content-block .field--name-field-grants-and-training-card .flexItemText a, .research-topics--landing .node--type-content-block .field--name-field-division-card .flexItemText a, .research-topics--landing .node--type-content-block .field--name-field-tool-icon-card .flexItemText a, .research-topics--landing .node--type-content-block .field--name-field-promotional-card .flexItemText a, .research-topics--landing .node--type-content-block .field--name-field-sv-promotional-cards .flexItemText a, .research-topics--landing .node--type-content-block .field--name-field-about-nhlbi-promotional-ca .flexItemText a, .research-topics--landing .node--type-content-block .strategic-vision-titleblock .flexItemText a, .research-topics--landing .node--type-content-block .ppg-titleblock-wrapper .flexItemText a, .research-topics--landing .node--type-content-block .ppg-guidelines-card-wrapper .flexItemText a, .research-topics--landing .node--type-content-block .field--name-field-human-subject-cards .flexItemText a, .research-topics--landing .node--type-content-block .field--name-field-section-card .flexItemText a, .research-topics--landing .node--type-content-block .field--name-field-highlight-card .flexItemText a, .research-topics--landing .node--type-content-block .health-topic-teaser-container .flexItemText a, .research-topics--landing .node--type-content-block .about-nhlbi-our-mission-wrapper .flexItemText a, .research-topics--landing .node--type-content-block .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText a, .about-nhlbi-our-mission-wrapper .research-topics--landing .node--type-content-block .field--name-field-leadership > .director-bioCard .flexItemText a, .research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemText a, .nhlbi-publications-and-resources--landing .research-topics--landing .node--type-content-block .field--name-field-health-consumer-nhlbi-publ .flexItemText a,
.research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemText a,
.nhlbi-publications-and-resources--landing .research-topics--landing .node--type-content-block .field--name-field-health-professionals-nhlbi .flexItemText a, .research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemText a, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemText a,
.research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemText a,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemText a, .research-topics--landing .node--type-content-block .publicationsBlock.view-nhlbi-publications > .view-content .flexItemText a,
.research-topics--landing .node--type-content-block .field--name-field-related-publications .flexItemText a, .research-topics--landing .node--type-content-block .healthEducationBlock .standard-teaser .flexItemText a, .healthEducationBlock .research-topics--landing .node--type-content-block .standard-teaser .flexItemText a, .research-topics--landing .node--type-content-block .systematicEvidenceReviewsBlock .view-content .flexItemText a, .systematicEvidenceReviewsBlock .research-topics--landing .node--type-content-block .view-content .flexItemText a,
.research-topics--landing .node--type-content-block .clinicalPracticeGuidelinesBlock .view-content .flexItemText a,
.clinicalPracticeGuidelinesBlock .research-topics--landing .node--type-content-block .view-content .flexItemText a,
.research-topics--landing .node--type-content-block .publicationsAndFactSheetsBlock .view-content .flexItemText a,
.publicationsAndFactSheetsBlock .research-topics--landing .node--type-content-block .view-content .flexItemText a, .research-topics--landing .node--type-content-block .rtFlexContainer .flexItemText a, .research-topics--landing .node--type-content-block .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText a, .node--type-research-topic .research-topics--landing .node--type-content-block .field--name-field-science-supplemental-page .flexItemText a, .research-topics--landing .node--type-content-block .node--type-research-topic .researchTopicPublications .flexItemText a, .node--type-research-topic .research-topics--landing .node--type-content-block .researchTopicPublications .flexItemText a, .research-topics--landing .node--type-content-block .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemText a, .node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block article.listTeaserCard .flexItemText a, .research-topics--landing .node--type-content-block .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemText a, .node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block article.standard-teaser .flexItemText a,
.research-topics--landing .node--type-content-block .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemText a,
.node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block article.newsEventsCard .flexItemText a, .research-topics--landing .node--type-content-block .esi-feature-card .flexItemText a, .research-topics--landing .node--type-content-block .featured-science-instance-teaser-container .flexItemText a, .research-topics--landing .node--type-content-block .sfa-teaser-container .flexItemText a, .research-topics--landing .node--type-content-block .training-opportunity-card .field--name-field-associated-people .flexItemText a, .training-opportunity-card .research-topics--landing .node--type-content-block .field--name-field-associated-people .flexItemText a, .research-topics--landing .node--type-content-block .field--name-field-featured-training-opportun .flexItemText a, .research-topics--landing .node--type-content-block .field--name-field-career-stages .flexItemText a, .research-topics--landing .node--type-content-block .field--name-field-workforce-development-card .flexItemText a, .research-topics--landing .node--type-content-block .node--type-update.node--view-mode-executive-teaser .flexItemText a, .research-topics--landing .node--type-content-block .news-and-events-titleblock .flexItemText a, .research-topics--landing .node--type-content-block .contact-box > .field--name-field-contact-methods .flexItemText a, .research-topics--landing .node--type-content-block .leadership-container .flexItemText a, .research-topics--landing .node--type-content-block .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText a, .leadership-container .leadership-deputy-director-container .research-topics--landing .node--type-content-block .field--name-field-additional-leadership .flexItemText a, .research-topics--landing .node--type-content-block .branch-leadership-container .flexItemText a, .research-topics--landing .node--type-content-block .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText a, .branch-leadership-container .leadership-deputy-director-container .research-topics--landing .node--type-content-block .field--name-field-additional-leadership .flexItemText a, .research-topics--landing .node--type-content-block .node--type-general .field--name-field-related-publications .flexItemText a, .node--type-general .research-topics--landing .node--type-content-block .field--name-field-related-publications .flexItemText a, .research-topics--landing .node--type-content-block .node--type-general .field--name-field-general-publications-rlt .flexItemText a, .node--type-general .research-topics--landing .node--type-content-block .field--name-field-general-publications-rlt .flexItemText a, .research-topics--landing .node--type-content-block .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemText a, .node--type-general .field--name-field-general-publications-rlt > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemText a, .research-topics--landing .node--type-content-block .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemText a, .node--type-general .field--name-field-related-publications > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemText a, .research-topics--landing .node--type-content-block .objective-text-container .flexItemText a, .research-topics--landing .node--type-content-block .objective-list-container .flexItemText a, .research-topics--landing .node--type-content-block .field--name-field-goal-card .flexItemText a, .research-topics--landing .node--type-content-block .strategic-vision-landing-goals-wrapper .flexItemText a, .research-topics--landing .node--type-content-block .node--type-principal-investigator .striped-container-wrapper .flexItemText a, .node--type-principal-investigator .research-topics--landing .node--type-content-block .striped-container-wrapper .flexItemText a, .research-topics--landing .node--type-content-block .node--type-principal-investigator .striped-container .flexItemText a, .node--type-principal-investigator .research-topics--landing .node--type-content-block .striped-container .flexItemText a, .research-topics--landing .node--type-content-block .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemText a, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .research-topics--landing .node--type-content-block article .flexItemText a,
.research-topics--landing .node--type-content-block .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemText a,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .research-topics--landing .node--type-content-block article .flexItemText a, .research-topics--landing .node--type-content-block .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemText a, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .research-topics--landing .node--type-content-block .standard-teaser.node--view-mode-short-teaser .flexItemText a, .research-topics--landing .node--type-content-block .field--name-field-awards .flexItemText a, .research-topics--landing .node--type-content-block .registerSocialContainer .flexItemText a, .research-topics--landing .node--type-content-block .eventdatesLocationType .flexItemText a, .research-topics--landing .node--type-content-block .news-article-container .flexItemText a, .research-topics--landing .node--type-content-block .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText a,
.research-topics--landing .node--type-content-block .node--type-press-release.node--view-mode-press-release-teaser .flexItemText a,
.research-topics--landing .node--type-content-block .node--type-events.node--view-mode-press-release-teaser .flexItemText a,
.research-topics--landing .node--type-content-block .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText a,
.research-topics--landing .node--type-content-block .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText a,
.research-topics--landing .node--type-content-block .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText a,
.research-topics--landing .node--type-content-block .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText a, .research-topics--landing .node--type-content-block .news-header-container .flexItemText a, .research-topics--landing .node--type-content-block .contacts-container .field--name-field-contacts .flexItemText a, .contacts-container .research-topics--landing .node--type-content-block .field--name-field-contacts .flexItemText a, .research-topics--landing .node--type-content-block .publicationsBox .field--name-field-related-publications .flexItemText a, .publicationsBox .research-topics--landing .node--type-content-block .field--name-field-related-publications .flexItemText a, .research-topics--landing .node--type-content-block .field--name-field-primary-featured-item .flexItemText a, .research-topics--landing .node--type-content-block .field--name-field-additional-featured-items .flexItemText a, .research-topics--landing .node--type-content-block .homepage-health-topics-container .flexItemText a, .research-topics--landing .node--type-content-block .homepage-mission-areas-container .flexItemText a, .research-topics--landing .node--type-content-block .homepage-location-container .flexItemText a, .research-topics--landing .node--type-content-block .field--name-field-alumni .flexItemText a, .research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemText a, .node--type-nhlbi-publication.node--view-mode-full .research-topics--landing .node--type-content-block .nhlbi-publication-details-container .flexItemText a,
.research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemText a,
.node--type-nhlbi-publication.node--view-mode-subscribe .research-topics--landing .node--type-content-block .nhlbi-publication-details-container .flexItemText a, .research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemText a, .node--type-nhlbi-publication.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-related-nhlbi-publications .flexItemText a,
.research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemText a,
.node--type-nhlbi-publication.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-related-nhlbi-publications .flexItemText a, .research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText a, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemText a,
.research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText a,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemText a, .research-topics--landing .node--type-content-block .flexcontainer .flexItemText a:link, .research-topics--landing .node--type-content-block .related-ht-ser-container .flexItemText a:link, .research-topics--landing .node--type-content-block .field--name-field-sfa-card .flexItemText a:link, .research-topics--landing .node--type-content-block .field--name-field-speaker .flexItemText a:link,
.research-topics--landing .node--type-content-block .field--name-field-executives .flexItemText a:link, .research-topics--landing .node--type-content-block .standard-card-field .flexItemText a:link, .research-topics--landing .node--type-content-block .field--name-field-advisory-committees .flexItemText a:link, .research-topics--landing .node--type-content-block .contact-nhlbi-titleblock .flexItemText a:link, .research-topics--landing .node--type-content-block .field--name-field-contact-cards .flexItemText a:link, .research-topics--landing .node--type-content-block .field--name-field-employment-opportunity-car .flexItemText a:link, .research-topics--landing .node--type-content-block .all-grants-foa-container .flexItemText a:link,
.research-topics--landing .node--type-content-block .field--name-field-program-officers .flexItemText a:link,
.research-topics--landing .node--type-content-block .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText a:link,
.research-topics--landing .node--type-content-block .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText a:link, .research-topics--landing .node--type-content-block .node--type-individual-contact .field--name-field-contact-methods .flexItemText a:link, .node--type-individual-contact .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText a:link,
.research-topics--landing .node--type-content-block .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemText a:link,
.node--type-division.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText a:link,
.research-topics--landing .node--type-content-block .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText a:link,
.node--type-division.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText a:link,
.research-topics--landing .node--type-content-block .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemText a:link,
.node--type-branch.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText a:link,
.research-topics--landing .node--type-content-block .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText a:link,
.node--type-branch.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText a:link,
.research-topics--landing .node--type-content-block .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemText a:link,
.node--type-general.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText a:link,
.research-topics--landing .node--type-content-block .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText a:link,
.node--type-general.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText a:link,
.research-topics--landing .node--type-content-block .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemText a:link,
.node--type-health-education-initiative.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText a:link,
.research-topics--landing .node--type-content-block .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText a:link,
.node--type-health-education-initiative.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText a:link, .research-topics--landing .node--type-content-block .node--type-committee .field--name-field-card-text .flexItemText a:link, .node--type-committee .research-topics--landing .node--type-content-block .field--name-field-card-text .flexItemText a:link, .research-topics--landing .node--type-content-block .news-and-events--landing .landing-social .flexItemText a:link, .news-and-events--landing .research-topics--landing .node--type-content-block .landing-social .flexItemText a:link, .research-topics--landing .node--type-content-block .field--name-field-sfa-cards .flexItemText a:link, .research-topics--landing .node--type-content-block .locationMap.contact-location-map-container .flexItemText a:link, .research-topics--landing .node--type-content-block .locationMap .flexItemText a:link, .research-topics--landing .node--type-content-block .grants-and-training-card-wrapper .flexItemText a:link, .research-topics--landing .node--type-content-block .about-nhlbi-division-card-wrapper .flexItemText a:link, .research-topics--landing .node--type-content-block .hei-tools-icon-card-wrapper .flexItemText a:link, .research-topics--landing .node--type-content-block .field--name-field-grants-and-training-card .flexItemText a:link, .research-topics--landing .node--type-content-block .field--name-field-division-card .flexItemText a:link, .research-topics--landing .node--type-content-block .field--name-field-tool-icon-card .flexItemText a:link, .research-topics--landing .node--type-content-block .field--name-field-promotional-card .flexItemText a:link, .research-topics--landing .node--type-content-block .field--name-field-sv-promotional-cards .flexItemText a:link, .research-topics--landing .node--type-content-block .field--name-field-about-nhlbi-promotional-ca .flexItemText a:link, .research-topics--landing .node--type-content-block .strategic-vision-titleblock .flexItemText a:link, .research-topics--landing .node--type-content-block .ppg-titleblock-wrapper .flexItemText a:link, .research-topics--landing .node--type-content-block .ppg-guidelines-card-wrapper .flexItemText a:link, .research-topics--landing .node--type-content-block .field--name-field-human-subject-cards .flexItemText a:link, .research-topics--landing .node--type-content-block .field--name-field-section-card .flexItemText a:link, .research-topics--landing .node--type-content-block .field--name-field-highlight-card .flexItemText a:link, .research-topics--landing .node--type-content-block .health-topic-teaser-container .flexItemText a:link, .research-topics--landing .node--type-content-block .about-nhlbi-our-mission-wrapper .flexItemText a:link, .research-topics--landing .node--type-content-block .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText a:link, .about-nhlbi-our-mission-wrapper .research-topics--landing .node--type-content-block .field--name-field-leadership > .director-bioCard .flexItemText a:link, .research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemText a:link, .nhlbi-publications-and-resources--landing .research-topics--landing .node--type-content-block .field--name-field-health-consumer-nhlbi-publ .flexItemText a:link,
.research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemText a:link,
.nhlbi-publications-and-resources--landing .research-topics--landing .node--type-content-block .field--name-field-health-professionals-nhlbi .flexItemText a:link, .research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemText a:link, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemText a:link,
.research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemText a:link,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemText a:link, .research-topics--landing .node--type-content-block .publicationsBlock.view-nhlbi-publications > .view-content .flexItemText a:link,
.research-topics--landing .node--type-content-block .field--name-field-related-publications .flexItemText a:link, .research-topics--landing .node--type-content-block .healthEducationBlock .standard-teaser .flexItemText a:link, .healthEducationBlock .research-topics--landing .node--type-content-block .standard-teaser .flexItemText a:link, .research-topics--landing .node--type-content-block .systematicEvidenceReviewsBlock .view-content .flexItemText a:link, .systematicEvidenceReviewsBlock .research-topics--landing .node--type-content-block .view-content .flexItemText a:link,
.research-topics--landing .node--type-content-block .clinicalPracticeGuidelinesBlock .view-content .flexItemText a:link,
.clinicalPracticeGuidelinesBlock .research-topics--landing .node--type-content-block .view-content .flexItemText a:link,
.research-topics--landing .node--type-content-block .publicationsAndFactSheetsBlock .view-content .flexItemText a:link,
.publicationsAndFactSheetsBlock .research-topics--landing .node--type-content-block .view-content .flexItemText a:link, .research-topics--landing .node--type-content-block .rtFlexContainer .flexItemText a:link, .research-topics--landing .node--type-content-block .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText a:link, .node--type-research-topic .research-topics--landing .node--type-content-block .field--name-field-science-supplemental-page .flexItemText a:link, .research-topics--landing .node--type-content-block .node--type-research-topic .researchTopicPublications .flexItemText a:link, .node--type-research-topic .research-topics--landing .node--type-content-block .researchTopicPublications .flexItemText a:link, .research-topics--landing .node--type-content-block .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemText a:link, .node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block article.listTeaserCard .flexItemText a:link, .research-topics--landing .node--type-content-block .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemText a:link, .node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block article.standard-teaser .flexItemText a:link,
.research-topics--landing .node--type-content-block .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemText a:link,
.node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block article.newsEventsCard .flexItemText a:link, .research-topics--landing .node--type-content-block .esi-feature-card .flexItemText a:link, .research-topics--landing .node--type-content-block .featured-science-instance-teaser-container .flexItemText a:link, .research-topics--landing .node--type-content-block .sfa-teaser-container .flexItemText a:link, .research-topics--landing .node--type-content-block .training-opportunity-card .field--name-field-associated-people .flexItemText a:link, .training-opportunity-card .research-topics--landing .node--type-content-block .field--name-field-associated-people .flexItemText a:link, .research-topics--landing .node--type-content-block .field--name-field-featured-training-opportun .flexItemText a:link, .research-topics--landing .node--type-content-block .field--name-field-career-stages .flexItemText a:link, .research-topics--landing .node--type-content-block .field--name-field-workforce-development-card .flexItemText a:link, .research-topics--landing .node--type-content-block .node--type-update.node--view-mode-executive-teaser .flexItemText a:link, .research-topics--landing .node--type-content-block .news-and-events-titleblock .flexItemText a:link, .research-topics--landing .node--type-content-block .contact-box > .field--name-field-contact-methods .flexItemText a:link, .research-topics--landing .node--type-content-block .leadership-container .flexItemText a:link, .research-topics--landing .node--type-content-block .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText a:link, .leadership-container .leadership-deputy-director-container .research-topics--landing .node--type-content-block .field--name-field-additional-leadership .flexItemText a:link, .research-topics--landing .node--type-content-block .branch-leadership-container .flexItemText a:link, .research-topics--landing .node--type-content-block .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText a:link, .branch-leadership-container .leadership-deputy-director-container .research-topics--landing .node--type-content-block .field--name-field-additional-leadership .flexItemText a:link, .research-topics--landing .node--type-content-block .node--type-general .field--name-field-related-publications .flexItemText a:link, .node--type-general .research-topics--landing .node--type-content-block .field--name-field-related-publications .flexItemText a:link, .research-topics--landing .node--type-content-block .node--type-general .field--name-field-general-publications-rlt .flexItemText a:link, .node--type-general .research-topics--landing .node--type-content-block .field--name-field-general-publications-rlt .flexItemText a:link, .research-topics--landing .node--type-content-block .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemText a:link, .node--type-general .field--name-field-general-publications-rlt > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemText a:link, .research-topics--landing .node--type-content-block .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemText a:link, .node--type-general .field--name-field-related-publications > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemText a:link, .research-topics--landing .node--type-content-block .objective-text-container .flexItemText a:link, .research-topics--landing .node--type-content-block .objective-list-container .flexItemText a:link, .research-topics--landing .node--type-content-block .field--name-field-goal-card .flexItemText a:link, .research-topics--landing .node--type-content-block .strategic-vision-landing-goals-wrapper .flexItemText a:link, .research-topics--landing .node--type-content-block .node--type-principal-investigator .striped-container-wrapper .flexItemText a:link, .node--type-principal-investigator .research-topics--landing .node--type-content-block .striped-container-wrapper .flexItemText a:link, .research-topics--landing .node--type-content-block .node--type-principal-investigator .striped-container .flexItemText a:link, .node--type-principal-investigator .research-topics--landing .node--type-content-block .striped-container .flexItemText a:link, .research-topics--landing .node--type-content-block .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemText a:link, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .research-topics--landing .node--type-content-block article .flexItemText a:link,
.research-topics--landing .node--type-content-block .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemText a:link,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .research-topics--landing .node--type-content-block article .flexItemText a:link, .research-topics--landing .node--type-content-block .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemText a:link, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .research-topics--landing .node--type-content-block .standard-teaser.node--view-mode-short-teaser .flexItemText a:link, .research-topics--landing .node--type-content-block .field--name-field-awards .flexItemText a:link, .research-topics--landing .node--type-content-block .registerSocialContainer .flexItemText a:link, .research-topics--landing .node--type-content-block .eventdatesLocationType .flexItemText a:link, .research-topics--landing .node--type-content-block .news-article-container .flexItemText a:link, .research-topics--landing .node--type-content-block .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText a:link,
.research-topics--landing .node--type-content-block .node--type-press-release.node--view-mode-press-release-teaser .flexItemText a:link,
.research-topics--landing .node--type-content-block .node--type-events.node--view-mode-press-release-teaser .flexItemText a:link,
.research-topics--landing .node--type-content-block .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText a:link,
.research-topics--landing .node--type-content-block .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText a:link,
.research-topics--landing .node--type-content-block .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText a:link,
.research-topics--landing .node--type-content-block .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText a:link, .research-topics--landing .node--type-content-block .news-header-container .flexItemText a:link, .research-topics--landing .node--type-content-block .contacts-container .field--name-field-contacts .flexItemText a:link, .contacts-container .research-topics--landing .node--type-content-block .field--name-field-contacts .flexItemText a:link, .research-topics--landing .node--type-content-block .publicationsBox .field--name-field-related-publications .flexItemText a:link, .publicationsBox .research-topics--landing .node--type-content-block .field--name-field-related-publications .flexItemText a:link, .research-topics--landing .node--type-content-block .field--name-field-primary-featured-item .flexItemText a:link, .research-topics--landing .node--type-content-block .field--name-field-additional-featured-items .flexItemText a:link, .research-topics--landing .node--type-content-block .homepage-health-topics-container .flexItemText a:link, .research-topics--landing .node--type-content-block .homepage-mission-areas-container .flexItemText a:link, .research-topics--landing .node--type-content-block .homepage-location-container .flexItemText a:link, .research-topics--landing .node--type-content-block .field--name-field-alumni .flexItemText a:link, .research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemText a:link, .node--type-nhlbi-publication.node--view-mode-full .research-topics--landing .node--type-content-block .nhlbi-publication-details-container .flexItemText a:link,
.research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemText a:link,
.node--type-nhlbi-publication.node--view-mode-subscribe .research-topics--landing .node--type-content-block .nhlbi-publication-details-container .flexItemText a:link, .research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemText a:link, .node--type-nhlbi-publication.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-related-nhlbi-publications .flexItemText a:link,
.research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemText a:link,
.node--type-nhlbi-publication.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-related-nhlbi-publications .flexItemText a:link, .research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText a:link, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemText a:link,
.research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText a:link,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemText a:link {
  color: #222;
  text-decoration: underline;
}
/* line 136, ../sass/_mixins.scss */
.research-topics--landing .node--type-content-block .flexcontainer .flexItemText a:visited, .research-topics--landing .node--type-content-block .related-ht-ser-container .flexItemText a:visited, .research-topics--landing .node--type-content-block .field--name-field-sfa-card .flexItemText a:visited, .research-topics--landing .node--type-content-block .field--name-field-speaker .flexItemText a:visited,
.research-topics--landing .node--type-content-block .field--name-field-executives .flexItemText a:visited, .research-topics--landing .node--type-content-block .standard-card-field .flexItemText a:visited, .research-topics--landing .node--type-content-block .field--name-field-advisory-committees .flexItemText a:visited, .research-topics--landing .node--type-content-block .contact-nhlbi-titleblock .flexItemText a:visited, .research-topics--landing .node--type-content-block .field--name-field-contact-cards .flexItemText a:visited, .research-topics--landing .node--type-content-block .field--name-field-employment-opportunity-car .flexItemText a:visited, .research-topics--landing .node--type-content-block .all-grants-foa-container .flexItemText a:visited,
.research-topics--landing .node--type-content-block .field--name-field-program-officers .flexItemText a:visited,
.research-topics--landing .node--type-content-block .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText a:visited,
.research-topics--landing .node--type-content-block .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText a:visited, .research-topics--landing .node--type-content-block .node--type-individual-contact .field--name-field-contact-methods .flexItemText a:visited, .node--type-individual-contact .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText a:visited,
.research-topics--landing .node--type-content-block .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemText a:visited,
.node--type-division.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText a:visited,
.research-topics--landing .node--type-content-block .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText a:visited,
.node--type-division.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText a:visited,
.research-topics--landing .node--type-content-block .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemText a:visited,
.node--type-branch.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText a:visited,
.research-topics--landing .node--type-content-block .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText a:visited,
.node--type-branch.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText a:visited,
.research-topics--landing .node--type-content-block .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemText a:visited,
.node--type-general.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText a:visited,
.research-topics--landing .node--type-content-block .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText a:visited,
.node--type-general.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText a:visited,
.research-topics--landing .node--type-content-block .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemText a:visited,
.node--type-health-education-initiative.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText a:visited,
.research-topics--landing .node--type-content-block .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText a:visited,
.node--type-health-education-initiative.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText a:visited, .research-topics--landing .node--type-content-block .node--type-committee .field--name-field-card-text .flexItemText a:visited, .node--type-committee .research-topics--landing .node--type-content-block .field--name-field-card-text .flexItemText a:visited, .research-topics--landing .node--type-content-block .news-and-events--landing .landing-social .flexItemText a:visited, .news-and-events--landing .research-topics--landing .node--type-content-block .landing-social .flexItemText a:visited, .research-topics--landing .node--type-content-block .field--name-field-sfa-cards .flexItemText a:visited, .research-topics--landing .node--type-content-block .locationMap.contact-location-map-container .flexItemText a:visited, .research-topics--landing .node--type-content-block .locationMap .flexItemText a:visited, .research-topics--landing .node--type-content-block .grants-and-training-card-wrapper .flexItemText a:visited, .research-topics--landing .node--type-content-block .about-nhlbi-division-card-wrapper .flexItemText a:visited, .research-topics--landing .node--type-content-block .hei-tools-icon-card-wrapper .flexItemText a:visited, .research-topics--landing .node--type-content-block .field--name-field-grants-and-training-card .flexItemText a:visited, .research-topics--landing .node--type-content-block .field--name-field-division-card .flexItemText a:visited, .research-topics--landing .node--type-content-block .field--name-field-tool-icon-card .flexItemText a:visited, .research-topics--landing .node--type-content-block .field--name-field-promotional-card .flexItemText a:visited, .research-topics--landing .node--type-content-block .field--name-field-sv-promotional-cards .flexItemText a:visited, .research-topics--landing .node--type-content-block .field--name-field-about-nhlbi-promotional-ca .flexItemText a:visited, .research-topics--landing .node--type-content-block .strategic-vision-titleblock .flexItemText a:visited, .research-topics--landing .node--type-content-block .ppg-titleblock-wrapper .flexItemText a:visited, .research-topics--landing .node--type-content-block .ppg-guidelines-card-wrapper .flexItemText a:visited, .research-topics--landing .node--type-content-block .field--name-field-human-subject-cards .flexItemText a:visited, .research-topics--landing .node--type-content-block .field--name-field-section-card .flexItemText a:visited, .research-topics--landing .node--type-content-block .field--name-field-highlight-card .flexItemText a:visited, .research-topics--landing .node--type-content-block .health-topic-teaser-container .flexItemText a:visited, .research-topics--landing .node--type-content-block .about-nhlbi-our-mission-wrapper .flexItemText a:visited, .research-topics--landing .node--type-content-block .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText a:visited, .about-nhlbi-our-mission-wrapper .research-topics--landing .node--type-content-block .field--name-field-leadership > .director-bioCard .flexItemText a:visited, .research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemText a:visited, .nhlbi-publications-and-resources--landing .research-topics--landing .node--type-content-block .field--name-field-health-consumer-nhlbi-publ .flexItemText a:visited,
.research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemText a:visited,
.nhlbi-publications-and-resources--landing .research-topics--landing .node--type-content-block .field--name-field-health-professionals-nhlbi .flexItemText a:visited, .research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemText a:visited, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemText a:visited,
.research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemText a:visited,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemText a:visited, .research-topics--landing .node--type-content-block .publicationsBlock.view-nhlbi-publications > .view-content .flexItemText a:visited,
.research-topics--landing .node--type-content-block .field--name-field-related-publications .flexItemText a:visited, .research-topics--landing .node--type-content-block .healthEducationBlock .standard-teaser .flexItemText a:visited, .healthEducationBlock .research-topics--landing .node--type-content-block .standard-teaser .flexItemText a:visited, .research-topics--landing .node--type-content-block .systematicEvidenceReviewsBlock .view-content .flexItemText a:visited, .systematicEvidenceReviewsBlock .research-topics--landing .node--type-content-block .view-content .flexItemText a:visited,
.research-topics--landing .node--type-content-block .clinicalPracticeGuidelinesBlock .view-content .flexItemText a:visited,
.clinicalPracticeGuidelinesBlock .research-topics--landing .node--type-content-block .view-content .flexItemText a:visited,
.research-topics--landing .node--type-content-block .publicationsAndFactSheetsBlock .view-content .flexItemText a:visited,
.publicationsAndFactSheetsBlock .research-topics--landing .node--type-content-block .view-content .flexItemText a:visited, .research-topics--landing .node--type-content-block .rtFlexContainer .flexItemText a:visited, .research-topics--landing .node--type-content-block .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText a:visited, .node--type-research-topic .research-topics--landing .node--type-content-block .field--name-field-science-supplemental-page .flexItemText a:visited, .research-topics--landing .node--type-content-block .node--type-research-topic .researchTopicPublications .flexItemText a:visited, .node--type-research-topic .research-topics--landing .node--type-content-block .researchTopicPublications .flexItemText a:visited, .research-topics--landing .node--type-content-block .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemText a:visited, .node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block article.listTeaserCard .flexItemText a:visited, .research-topics--landing .node--type-content-block .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemText a:visited, .node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block article.standard-teaser .flexItemText a:visited,
.research-topics--landing .node--type-content-block .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemText a:visited,
.node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block article.newsEventsCard .flexItemText a:visited, .research-topics--landing .node--type-content-block .esi-feature-card .flexItemText a:visited, .research-topics--landing .node--type-content-block .featured-science-instance-teaser-container .flexItemText a:visited, .research-topics--landing .node--type-content-block .sfa-teaser-container .flexItemText a:visited, .research-topics--landing .node--type-content-block .training-opportunity-card .field--name-field-associated-people .flexItemText a:visited, .training-opportunity-card .research-topics--landing .node--type-content-block .field--name-field-associated-people .flexItemText a:visited, .research-topics--landing .node--type-content-block .field--name-field-featured-training-opportun .flexItemText a:visited, .research-topics--landing .node--type-content-block .field--name-field-career-stages .flexItemText a:visited, .research-topics--landing .node--type-content-block .field--name-field-workforce-development-card .flexItemText a:visited, .research-topics--landing .node--type-content-block .node--type-update.node--view-mode-executive-teaser .flexItemText a:visited, .research-topics--landing .node--type-content-block .news-and-events-titleblock .flexItemText a:visited, .research-topics--landing .node--type-content-block .contact-box > .field--name-field-contact-methods .flexItemText a:visited, .research-topics--landing .node--type-content-block .leadership-container .flexItemText a:visited, .research-topics--landing .node--type-content-block .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText a:visited, .leadership-container .leadership-deputy-director-container .research-topics--landing .node--type-content-block .field--name-field-additional-leadership .flexItemText a:visited, .research-topics--landing .node--type-content-block .branch-leadership-container .flexItemText a:visited, .research-topics--landing .node--type-content-block .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText a:visited, .branch-leadership-container .leadership-deputy-director-container .research-topics--landing .node--type-content-block .field--name-field-additional-leadership .flexItemText a:visited, .research-topics--landing .node--type-content-block .node--type-general .field--name-field-related-publications .flexItemText a:visited, .node--type-general .research-topics--landing .node--type-content-block .field--name-field-related-publications .flexItemText a:visited, .research-topics--landing .node--type-content-block .node--type-general .field--name-field-general-publications-rlt .flexItemText a:visited, .node--type-general .research-topics--landing .node--type-content-block .field--name-field-general-publications-rlt .flexItemText a:visited, .research-topics--landing .node--type-content-block .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemText a:visited, .node--type-general .field--name-field-general-publications-rlt > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemText a:visited, .research-topics--landing .node--type-content-block .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemText a:visited, .node--type-general .field--name-field-related-publications > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemText a:visited, .research-topics--landing .node--type-content-block .objective-text-container .flexItemText a:visited, .research-topics--landing .node--type-content-block .objective-list-container .flexItemText a:visited, .research-topics--landing .node--type-content-block .field--name-field-goal-card .flexItemText a:visited, .research-topics--landing .node--type-content-block .strategic-vision-landing-goals-wrapper .flexItemText a:visited, .research-topics--landing .node--type-content-block .node--type-principal-investigator .striped-container-wrapper .flexItemText a:visited, .node--type-principal-investigator .research-topics--landing .node--type-content-block .striped-container-wrapper .flexItemText a:visited, .research-topics--landing .node--type-content-block .node--type-principal-investigator .striped-container .flexItemText a:visited, .node--type-principal-investigator .research-topics--landing .node--type-content-block .striped-container .flexItemText a:visited, .research-topics--landing .node--type-content-block .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemText a:visited, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .research-topics--landing .node--type-content-block article .flexItemText a:visited,
.research-topics--landing .node--type-content-block .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemText a:visited,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .research-topics--landing .node--type-content-block article .flexItemText a:visited, .research-topics--landing .node--type-content-block .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemText a:visited, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .research-topics--landing .node--type-content-block .standard-teaser.node--view-mode-short-teaser .flexItemText a:visited, .research-topics--landing .node--type-content-block .field--name-field-awards .flexItemText a:visited, .research-topics--landing .node--type-content-block .registerSocialContainer .flexItemText a:visited, .research-topics--landing .node--type-content-block .eventdatesLocationType .flexItemText a:visited, .research-topics--landing .node--type-content-block .news-article-container .flexItemText a:visited, .research-topics--landing .node--type-content-block .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText a:visited,
.research-topics--landing .node--type-content-block .node--type-press-release.node--view-mode-press-release-teaser .flexItemText a:visited,
.research-topics--landing .node--type-content-block .node--type-events.node--view-mode-press-release-teaser .flexItemText a:visited,
.research-topics--landing .node--type-content-block .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText a:visited,
.research-topics--landing .node--type-content-block .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText a:visited,
.research-topics--landing .node--type-content-block .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText a:visited,
.research-topics--landing .node--type-content-block .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText a:visited, .research-topics--landing .node--type-content-block .news-header-container .flexItemText a:visited, .research-topics--landing .node--type-content-block .contacts-container .field--name-field-contacts .flexItemText a:visited, .contacts-container .research-topics--landing .node--type-content-block .field--name-field-contacts .flexItemText a:visited, .research-topics--landing .node--type-content-block .publicationsBox .field--name-field-related-publications .flexItemText a:visited, .publicationsBox .research-topics--landing .node--type-content-block .field--name-field-related-publications .flexItemText a:visited, .research-topics--landing .node--type-content-block .field--name-field-primary-featured-item .flexItemText a:visited, .research-topics--landing .node--type-content-block .field--name-field-additional-featured-items .flexItemText a:visited, .research-topics--landing .node--type-content-block .homepage-health-topics-container .flexItemText a:visited, .research-topics--landing .node--type-content-block .homepage-mission-areas-container .flexItemText a:visited, .research-topics--landing .node--type-content-block .homepage-location-container .flexItemText a:visited, .research-topics--landing .node--type-content-block .field--name-field-alumni .flexItemText a:visited, .research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemText a:visited, .node--type-nhlbi-publication.node--view-mode-full .research-topics--landing .node--type-content-block .nhlbi-publication-details-container .flexItemText a:visited,
.research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemText a:visited,
.node--type-nhlbi-publication.node--view-mode-subscribe .research-topics--landing .node--type-content-block .nhlbi-publication-details-container .flexItemText a:visited, .research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemText a:visited, .node--type-nhlbi-publication.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-related-nhlbi-publications .flexItemText a:visited,
.research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemText a:visited,
.node--type-nhlbi-publication.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-related-nhlbi-publications .flexItemText a:visited, .research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText a:visited, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemText a:visited,
.research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText a:visited,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemText a:visited {
  color: #6f57B5;
}
/* line 145, ../sass/_mixins.scss */
.research-topics--landing .node--type-content-block .flexcontainer .flexItemText a:hover, .research-topics--landing .node--type-content-block .related-ht-ser-container .flexItemText a:hover, .research-topics--landing .node--type-content-block .field--name-field-sfa-card .flexItemText a:hover, .research-topics--landing .node--type-content-block .field--name-field-speaker .flexItemText a:hover,
.research-topics--landing .node--type-content-block .field--name-field-executives .flexItemText a:hover, .research-topics--landing .node--type-content-block .standard-card-field .flexItemText a:hover, .research-topics--landing .node--type-content-block .field--name-field-advisory-committees .flexItemText a:hover, .research-topics--landing .node--type-content-block .contact-nhlbi-titleblock .flexItemText a:hover, .research-topics--landing .node--type-content-block .field--name-field-contact-cards .flexItemText a:hover, .research-topics--landing .node--type-content-block .field--name-field-employment-opportunity-car .flexItemText a:hover, .research-topics--landing .node--type-content-block .all-grants-foa-container .flexItemText a:hover,
.research-topics--landing .node--type-content-block .field--name-field-program-officers .flexItemText a:hover,
.research-topics--landing .node--type-content-block .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText a:hover,
.research-topics--landing .node--type-content-block .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText a:hover, .research-topics--landing .node--type-content-block .node--type-individual-contact .field--name-field-contact-methods .flexItemText a:hover, .node--type-individual-contact .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText a:hover,
.research-topics--landing .node--type-content-block .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemText a:hover,
.node--type-division.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText a:hover,
.research-topics--landing .node--type-content-block .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText a:hover,
.node--type-division.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText a:hover,
.research-topics--landing .node--type-content-block .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemText a:hover,
.node--type-branch.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText a:hover,
.research-topics--landing .node--type-content-block .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText a:hover,
.node--type-branch.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText a:hover,
.research-topics--landing .node--type-content-block .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemText a:hover,
.node--type-general.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText a:hover,
.research-topics--landing .node--type-content-block .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText a:hover,
.node--type-general.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText a:hover,
.research-topics--landing .node--type-content-block .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemText a:hover,
.node--type-health-education-initiative.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText a:hover,
.research-topics--landing .node--type-content-block .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText a:hover,
.node--type-health-education-initiative.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText a:hover, .research-topics--landing .node--type-content-block .node--type-committee .field--name-field-card-text .flexItemText a:hover, .node--type-committee .research-topics--landing .node--type-content-block .field--name-field-card-text .flexItemText a:hover, .research-topics--landing .node--type-content-block .news-and-events--landing .landing-social .flexItemText a:hover, .news-and-events--landing .research-topics--landing .node--type-content-block .landing-social .flexItemText a:hover, .research-topics--landing .node--type-content-block .field--name-field-sfa-cards .flexItemText a:hover, .research-topics--landing .node--type-content-block .locationMap.contact-location-map-container .flexItemText a:hover, .research-topics--landing .node--type-content-block .locationMap .flexItemText a:hover, .research-topics--landing .node--type-content-block .grants-and-training-card-wrapper .flexItemText a:hover, .research-topics--landing .node--type-content-block .about-nhlbi-division-card-wrapper .flexItemText a:hover, .research-topics--landing .node--type-content-block .hei-tools-icon-card-wrapper .flexItemText a:hover, .research-topics--landing .node--type-content-block .field--name-field-grants-and-training-card .flexItemText a:hover, .research-topics--landing .node--type-content-block .field--name-field-division-card .flexItemText a:hover, .research-topics--landing .node--type-content-block .field--name-field-tool-icon-card .flexItemText a:hover, .research-topics--landing .node--type-content-block .field--name-field-promotional-card .flexItemText a:hover, .research-topics--landing .node--type-content-block .field--name-field-sv-promotional-cards .flexItemText a:hover, .research-topics--landing .node--type-content-block .field--name-field-about-nhlbi-promotional-ca .flexItemText a:hover, .research-topics--landing .node--type-content-block .strategic-vision-titleblock .flexItemText a:hover, .research-topics--landing .node--type-content-block .ppg-titleblock-wrapper .flexItemText a:hover, .research-topics--landing .node--type-content-block .ppg-guidelines-card-wrapper .flexItemText a:hover, .research-topics--landing .node--type-content-block .field--name-field-human-subject-cards .flexItemText a:hover, .research-topics--landing .node--type-content-block .field--name-field-section-card .flexItemText a:hover, .research-topics--landing .node--type-content-block .field--name-field-highlight-card .flexItemText a:hover, .research-topics--landing .node--type-content-block .health-topic-teaser-container .flexItemText a:hover, .research-topics--landing .node--type-content-block .about-nhlbi-our-mission-wrapper .flexItemText a:hover, .research-topics--landing .node--type-content-block .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText a:hover, .about-nhlbi-our-mission-wrapper .research-topics--landing .node--type-content-block .field--name-field-leadership > .director-bioCard .flexItemText a:hover, .research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemText a:hover, .nhlbi-publications-and-resources--landing .research-topics--landing .node--type-content-block .field--name-field-health-consumer-nhlbi-publ .flexItemText a:hover,
.research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemText a:hover,
.nhlbi-publications-and-resources--landing .research-topics--landing .node--type-content-block .field--name-field-health-professionals-nhlbi .flexItemText a:hover, .research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemText a:hover, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemText a:hover,
.research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemText a:hover,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemText a:hover, .research-topics--landing .node--type-content-block .publicationsBlock.view-nhlbi-publications > .view-content .flexItemText a:hover,
.research-topics--landing .node--type-content-block .field--name-field-related-publications .flexItemText a:hover, .research-topics--landing .node--type-content-block .healthEducationBlock .standard-teaser .flexItemText a:hover, .healthEducationBlock .research-topics--landing .node--type-content-block .standard-teaser .flexItemText a:hover, .research-topics--landing .node--type-content-block .systematicEvidenceReviewsBlock .view-content .flexItemText a:hover, .systematicEvidenceReviewsBlock .research-topics--landing .node--type-content-block .view-content .flexItemText a:hover,
.research-topics--landing .node--type-content-block .clinicalPracticeGuidelinesBlock .view-content .flexItemText a:hover,
.clinicalPracticeGuidelinesBlock .research-topics--landing .node--type-content-block .view-content .flexItemText a:hover,
.research-topics--landing .node--type-content-block .publicationsAndFactSheetsBlock .view-content .flexItemText a:hover,
.publicationsAndFactSheetsBlock .research-topics--landing .node--type-content-block .view-content .flexItemText a:hover, .research-topics--landing .node--type-content-block .rtFlexContainer .flexItemText a:hover, .research-topics--landing .node--type-content-block .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText a:hover, .node--type-research-topic .research-topics--landing .node--type-content-block .field--name-field-science-supplemental-page .flexItemText a:hover, .research-topics--landing .node--type-content-block .node--type-research-topic .researchTopicPublications .flexItemText a:hover, .node--type-research-topic .research-topics--landing .node--type-content-block .researchTopicPublications .flexItemText a:hover, .research-topics--landing .node--type-content-block .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemText a:hover, .node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block article.listTeaserCard .flexItemText a:hover, .research-topics--landing .node--type-content-block .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemText a:hover, .node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block article.standard-teaser .flexItemText a:hover,
.research-topics--landing .node--type-content-block .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemText a:hover,
.node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block article.newsEventsCard .flexItemText a:hover, .research-topics--landing .node--type-content-block .esi-feature-card .flexItemText a:hover, .research-topics--landing .node--type-content-block .featured-science-instance-teaser-container .flexItemText a:hover, .research-topics--landing .node--type-content-block .sfa-teaser-container .flexItemText a:hover, .research-topics--landing .node--type-content-block .training-opportunity-card .field--name-field-associated-people .flexItemText a:hover, .training-opportunity-card .research-topics--landing .node--type-content-block .field--name-field-associated-people .flexItemText a:hover, .research-topics--landing .node--type-content-block .field--name-field-featured-training-opportun .flexItemText a:hover, .research-topics--landing .node--type-content-block .field--name-field-career-stages .flexItemText a:hover, .research-topics--landing .node--type-content-block .field--name-field-workforce-development-card .flexItemText a:hover, .research-topics--landing .node--type-content-block .node--type-update.node--view-mode-executive-teaser .flexItemText a:hover, .research-topics--landing .node--type-content-block .news-and-events-titleblock .flexItemText a:hover, .research-topics--landing .node--type-content-block .contact-box > .field--name-field-contact-methods .flexItemText a:hover, .research-topics--landing .node--type-content-block .leadership-container .flexItemText a:hover, .research-topics--landing .node--type-content-block .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText a:hover, .leadership-container .leadership-deputy-director-container .research-topics--landing .node--type-content-block .field--name-field-additional-leadership .flexItemText a:hover, .research-topics--landing .node--type-content-block .branch-leadership-container .flexItemText a:hover, .research-topics--landing .node--type-content-block .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText a:hover, .branch-leadership-container .leadership-deputy-director-container .research-topics--landing .node--type-content-block .field--name-field-additional-leadership .flexItemText a:hover, .research-topics--landing .node--type-content-block .node--type-general .field--name-field-related-publications .flexItemText a:hover, .node--type-general .research-topics--landing .node--type-content-block .field--name-field-related-publications .flexItemText a:hover, .research-topics--landing .node--type-content-block .node--type-general .field--name-field-general-publications-rlt .flexItemText a:hover, .node--type-general .research-topics--landing .node--type-content-block .field--name-field-general-publications-rlt .flexItemText a:hover, .research-topics--landing .node--type-content-block .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemText a:hover, .node--type-general .field--name-field-general-publications-rlt > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemText a:hover, .research-topics--landing .node--type-content-block .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemText a:hover, .node--type-general .field--name-field-related-publications > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemText a:hover, .research-topics--landing .node--type-content-block .objective-text-container .flexItemText a:hover, .research-topics--landing .node--type-content-block .objective-list-container .flexItemText a:hover, .research-topics--landing .node--type-content-block .field--name-field-goal-card .flexItemText a:hover, .research-topics--landing .node--type-content-block .strategic-vision-landing-goals-wrapper .flexItemText a:hover, .research-topics--landing .node--type-content-block .node--type-principal-investigator .striped-container-wrapper .flexItemText a:hover, .node--type-principal-investigator .research-topics--landing .node--type-content-block .striped-container-wrapper .flexItemText a:hover, .research-topics--landing .node--type-content-block .node--type-principal-investigator .striped-container .flexItemText a:hover, .node--type-principal-investigator .research-topics--landing .node--type-content-block .striped-container .flexItemText a:hover, .research-topics--landing .node--type-content-block .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemText a:hover, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .research-topics--landing .node--type-content-block article .flexItemText a:hover,
.research-topics--landing .node--type-content-block .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemText a:hover,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .research-topics--landing .node--type-content-block article .flexItemText a:hover, .research-topics--landing .node--type-content-block .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemText a:hover, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .research-topics--landing .node--type-content-block .standard-teaser.node--view-mode-short-teaser .flexItemText a:hover, .research-topics--landing .node--type-content-block .field--name-field-awards .flexItemText a:hover, .research-topics--landing .node--type-content-block .registerSocialContainer .flexItemText a:hover, .research-topics--landing .node--type-content-block .eventdatesLocationType .flexItemText a:hover, .research-topics--landing .node--type-content-block .news-article-container .flexItemText a:hover, .research-topics--landing .node--type-content-block .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText a:hover,
.research-topics--landing .node--type-content-block .node--type-press-release.node--view-mode-press-release-teaser .flexItemText a:hover,
.research-topics--landing .node--type-content-block .node--type-events.node--view-mode-press-release-teaser .flexItemText a:hover,
.research-topics--landing .node--type-content-block .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText a:hover,
.research-topics--landing .node--type-content-block .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText a:hover,
.research-topics--landing .node--type-content-block .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText a:hover,
.research-topics--landing .node--type-content-block .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText a:hover, .research-topics--landing .node--type-content-block .news-header-container .flexItemText a:hover, .research-topics--landing .node--type-content-block .contacts-container .field--name-field-contacts .flexItemText a:hover, .contacts-container .research-topics--landing .node--type-content-block .field--name-field-contacts .flexItemText a:hover, .research-topics--landing .node--type-content-block .publicationsBox .field--name-field-related-publications .flexItemText a:hover, .publicationsBox .research-topics--landing .node--type-content-block .field--name-field-related-publications .flexItemText a:hover, .research-topics--landing .node--type-content-block .field--name-field-primary-featured-item .flexItemText a:hover, .research-topics--landing .node--type-content-block .field--name-field-additional-featured-items .flexItemText a:hover, .research-topics--landing .node--type-content-block .homepage-health-topics-container .flexItemText a:hover, .research-topics--landing .node--type-content-block .homepage-mission-areas-container .flexItemText a:hover, .research-topics--landing .node--type-content-block .homepage-location-container .flexItemText a:hover, .research-topics--landing .node--type-content-block .field--name-field-alumni .flexItemText a:hover, .research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemText a:hover, .node--type-nhlbi-publication.node--view-mode-full .research-topics--landing .node--type-content-block .nhlbi-publication-details-container .flexItemText a:hover,
.research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemText a:hover,
.node--type-nhlbi-publication.node--view-mode-subscribe .research-topics--landing .node--type-content-block .nhlbi-publication-details-container .flexItemText a:hover, .research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemText a:hover, .node--type-nhlbi-publication.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-related-nhlbi-publications .flexItemText a:hover,
.research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemText a:hover,
.node--type-nhlbi-publication.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-related-nhlbi-publications .flexItemText a:hover, .research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText a:hover, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemText a:hover,
.research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText a:hover,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemText a:hover {
  font-weight: bold;
}
/* line 154, ../sass/_mixins.scss */
.research-topics--landing .node--type-content-block .flexcontainer .flexItemText h1, .research-topics--landing .node--type-content-block .related-ht-ser-container .flexItemText h1, .research-topics--landing .node--type-content-block .field--name-field-sfa-card .flexItemText h1, .research-topics--landing .node--type-content-block .field--name-field-speaker .flexItemText h1,
.research-topics--landing .node--type-content-block .field--name-field-executives .flexItemText h1, .research-topics--landing .node--type-content-block .standard-card-field .flexItemText h1, .research-topics--landing .node--type-content-block .field--name-field-advisory-committees .flexItemText h1, .research-topics--landing .node--type-content-block .contact-nhlbi-titleblock .flexItemText h1, .research-topics--landing .node--type-content-block .field--name-field-contact-cards .flexItemText h1, .research-topics--landing .node--type-content-block .field--name-field-employment-opportunity-car .flexItemText h1, .research-topics--landing .node--type-content-block .all-grants-foa-container .flexItemText h1,
.research-topics--landing .node--type-content-block .field--name-field-program-officers .flexItemText h1,
.research-topics--landing .node--type-content-block .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText h1,
.research-topics--landing .node--type-content-block .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText h1, .research-topics--landing .node--type-content-block .node--type-individual-contact .field--name-field-contact-methods .flexItemText h1, .node--type-individual-contact .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText h1,
.research-topics--landing .node--type-content-block .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemText h1,
.node--type-division.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText h1,
.research-topics--landing .node--type-content-block .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText h1,
.node--type-division.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText h1,
.research-topics--landing .node--type-content-block .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemText h1,
.node--type-branch.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText h1,
.research-topics--landing .node--type-content-block .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText h1,
.node--type-branch.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText h1,
.research-topics--landing .node--type-content-block .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemText h1,
.node--type-general.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText h1,
.research-topics--landing .node--type-content-block .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText h1,
.node--type-general.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText h1,
.research-topics--landing .node--type-content-block .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemText h1,
.node--type-health-education-initiative.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText h1,
.research-topics--landing .node--type-content-block .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText h1,
.node--type-health-education-initiative.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText h1, .research-topics--landing .node--type-content-block .node--type-committee .field--name-field-card-text .flexItemText h1, .node--type-committee .research-topics--landing .node--type-content-block .field--name-field-card-text .flexItemText h1, .research-topics--landing .node--type-content-block .news-and-events--landing .landing-social .flexItemText h1, .news-and-events--landing .research-topics--landing .node--type-content-block .landing-social .flexItemText h1, .research-topics--landing .node--type-content-block .field--name-field-sfa-cards .flexItemText h1, .research-topics--landing .node--type-content-block .locationMap.contact-location-map-container .flexItemText h1, .research-topics--landing .node--type-content-block .locationMap .flexItemText h1, .research-topics--landing .node--type-content-block .grants-and-training-card-wrapper .flexItemText h1, .research-topics--landing .node--type-content-block .about-nhlbi-division-card-wrapper .flexItemText h1, .research-topics--landing .node--type-content-block .hei-tools-icon-card-wrapper .flexItemText h1, .research-topics--landing .node--type-content-block .field--name-field-grants-and-training-card .flexItemText h1, .research-topics--landing .node--type-content-block .field--name-field-division-card .flexItemText h1, .research-topics--landing .node--type-content-block .field--name-field-tool-icon-card .flexItemText h1, .research-topics--landing .node--type-content-block .field--name-field-promotional-card .flexItemText h1, .research-topics--landing .node--type-content-block .field--name-field-sv-promotional-cards .flexItemText h1, .research-topics--landing .node--type-content-block .field--name-field-about-nhlbi-promotional-ca .flexItemText h1, .research-topics--landing .node--type-content-block .strategic-vision-titleblock .flexItemText h1, .research-topics--landing .node--type-content-block .ppg-titleblock-wrapper .flexItemText h1, .research-topics--landing .node--type-content-block .ppg-guidelines-card-wrapper .flexItemText h1, .research-topics--landing .node--type-content-block .field--name-field-human-subject-cards .flexItemText h1, .research-topics--landing .node--type-content-block .field--name-field-section-card .flexItemText h1, .research-topics--landing .node--type-content-block .field--name-field-highlight-card .flexItemText h1, .research-topics--landing .node--type-content-block .health-topic-teaser-container .flexItemText h1, .research-topics--landing .node--type-content-block .about-nhlbi-our-mission-wrapper .flexItemText h1, .research-topics--landing .node--type-content-block .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText h1, .about-nhlbi-our-mission-wrapper .research-topics--landing .node--type-content-block .field--name-field-leadership > .director-bioCard .flexItemText h1, .research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemText h1, .nhlbi-publications-and-resources--landing .research-topics--landing .node--type-content-block .field--name-field-health-consumer-nhlbi-publ .flexItemText h1,
.research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemText h1,
.nhlbi-publications-and-resources--landing .research-topics--landing .node--type-content-block .field--name-field-health-professionals-nhlbi .flexItemText h1, .research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemText h1, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemText h1,
.research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemText h1,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemText h1, .research-topics--landing .node--type-content-block .publicationsBlock.view-nhlbi-publications > .view-content .flexItemText h1,
.research-topics--landing .node--type-content-block .field--name-field-related-publications .flexItemText h1, .research-topics--landing .node--type-content-block .healthEducationBlock .standard-teaser .flexItemText h1, .healthEducationBlock .research-topics--landing .node--type-content-block .standard-teaser .flexItemText h1, .research-topics--landing .node--type-content-block .systematicEvidenceReviewsBlock .view-content .flexItemText h1, .systematicEvidenceReviewsBlock .research-topics--landing .node--type-content-block .view-content .flexItemText h1,
.research-topics--landing .node--type-content-block .clinicalPracticeGuidelinesBlock .view-content .flexItemText h1,
.clinicalPracticeGuidelinesBlock .research-topics--landing .node--type-content-block .view-content .flexItemText h1,
.research-topics--landing .node--type-content-block .publicationsAndFactSheetsBlock .view-content .flexItemText h1,
.publicationsAndFactSheetsBlock .research-topics--landing .node--type-content-block .view-content .flexItemText h1, .research-topics--landing .node--type-content-block .rtFlexContainer .flexItemText h1, .research-topics--landing .node--type-content-block .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText h1, .node--type-research-topic .research-topics--landing .node--type-content-block .field--name-field-science-supplemental-page .flexItemText h1, .research-topics--landing .node--type-content-block .node--type-research-topic .researchTopicPublications .flexItemText h1, .node--type-research-topic .research-topics--landing .node--type-content-block .researchTopicPublications .flexItemText h1, .research-topics--landing .node--type-content-block .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemText h1, .node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block article.listTeaserCard .flexItemText h1, .research-topics--landing .node--type-content-block .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemText h1, .node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block article.standard-teaser .flexItemText h1,
.research-topics--landing .node--type-content-block .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemText h1,
.node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block article.newsEventsCard .flexItemText h1, .research-topics--landing .node--type-content-block .esi-feature-card .flexItemText h1, .research-topics--landing .node--type-content-block .featured-science-instance-teaser-container .flexItemText h1, .research-topics--landing .node--type-content-block .sfa-teaser-container .flexItemText h1, .research-topics--landing .node--type-content-block .training-opportunity-card .field--name-field-associated-people .flexItemText h1, .training-opportunity-card .research-topics--landing .node--type-content-block .field--name-field-associated-people .flexItemText h1, .research-topics--landing .node--type-content-block .field--name-field-featured-training-opportun .flexItemText h1, .research-topics--landing .node--type-content-block .field--name-field-career-stages .flexItemText h1, .research-topics--landing .node--type-content-block .field--name-field-workforce-development-card .flexItemText h1, .research-topics--landing .node--type-content-block .node--type-update.node--view-mode-executive-teaser .flexItemText h1, .research-topics--landing .node--type-content-block .news-and-events-titleblock .flexItemText h1, .research-topics--landing .node--type-content-block .contact-box > .field--name-field-contact-methods .flexItemText h1, .research-topics--landing .node--type-content-block .leadership-container .flexItemText h1, .research-topics--landing .node--type-content-block .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText h1, .leadership-container .leadership-deputy-director-container .research-topics--landing .node--type-content-block .field--name-field-additional-leadership .flexItemText h1, .research-topics--landing .node--type-content-block .branch-leadership-container .flexItemText h1, .research-topics--landing .node--type-content-block .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText h1, .branch-leadership-container .leadership-deputy-director-container .research-topics--landing .node--type-content-block .field--name-field-additional-leadership .flexItemText h1, .research-topics--landing .node--type-content-block .node--type-general .field--name-field-related-publications .flexItemText h1, .node--type-general .research-topics--landing .node--type-content-block .field--name-field-related-publications .flexItemText h1, .research-topics--landing .node--type-content-block .node--type-general .field--name-field-general-publications-rlt .flexItemText h1, .node--type-general .research-topics--landing .node--type-content-block .field--name-field-general-publications-rlt .flexItemText h1, .research-topics--landing .node--type-content-block .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemText h1, .node--type-general .field--name-field-general-publications-rlt > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemText h1, .research-topics--landing .node--type-content-block .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemText h1, .node--type-general .field--name-field-related-publications > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemText h1, .research-topics--landing .node--type-content-block .objective-text-container .flexItemText h1, .research-topics--landing .node--type-content-block .objective-list-container .flexItemText h1, .research-topics--landing .node--type-content-block .field--name-field-goal-card .flexItemText h1, .research-topics--landing .node--type-content-block .strategic-vision-landing-goals-wrapper .flexItemText h1, .research-topics--landing .node--type-content-block .node--type-principal-investigator .striped-container-wrapper .flexItemText h1, .node--type-principal-investigator .research-topics--landing .node--type-content-block .striped-container-wrapper .flexItemText h1, .research-topics--landing .node--type-content-block .node--type-principal-investigator .striped-container .flexItemText h1, .node--type-principal-investigator .research-topics--landing .node--type-content-block .striped-container .flexItemText h1, .research-topics--landing .node--type-content-block .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemText h1, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .research-topics--landing .node--type-content-block article .flexItemText h1,
.research-topics--landing .node--type-content-block .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemText h1,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .research-topics--landing .node--type-content-block article .flexItemText h1, .research-topics--landing .node--type-content-block .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemText h1, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .research-topics--landing .node--type-content-block .standard-teaser.node--view-mode-short-teaser .flexItemText h1, .research-topics--landing .node--type-content-block .field--name-field-awards .flexItemText h1, .research-topics--landing .node--type-content-block .registerSocialContainer .flexItemText h1, .research-topics--landing .node--type-content-block .eventdatesLocationType .flexItemText h1, .research-topics--landing .node--type-content-block .news-article-container .flexItemText h1, .research-topics--landing .node--type-content-block .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText h1,
.research-topics--landing .node--type-content-block .node--type-press-release.node--view-mode-press-release-teaser .flexItemText h1,
.research-topics--landing .node--type-content-block .node--type-events.node--view-mode-press-release-teaser .flexItemText h1,
.research-topics--landing .node--type-content-block .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText h1,
.research-topics--landing .node--type-content-block .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText h1,
.research-topics--landing .node--type-content-block .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText h1,
.research-topics--landing .node--type-content-block .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText h1, .research-topics--landing .node--type-content-block .news-header-container .flexItemText h1, .research-topics--landing .node--type-content-block .contacts-container .field--name-field-contacts .flexItemText h1, .contacts-container .research-topics--landing .node--type-content-block .field--name-field-contacts .flexItemText h1, .research-topics--landing .node--type-content-block .publicationsBox .field--name-field-related-publications .flexItemText h1, .publicationsBox .research-topics--landing .node--type-content-block .field--name-field-related-publications .flexItemText h1, .research-topics--landing .node--type-content-block .field--name-field-primary-featured-item .flexItemText h1, .research-topics--landing .node--type-content-block .field--name-field-additional-featured-items .flexItemText h1, .research-topics--landing .node--type-content-block .homepage-health-topics-container .flexItemText h1, .research-topics--landing .node--type-content-block .homepage-mission-areas-container .flexItemText h1, .research-topics--landing .node--type-content-block .homepage-location-container .flexItemText h1, .research-topics--landing .node--type-content-block .field--name-field-alumni .flexItemText h1, .research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemText h1, .node--type-nhlbi-publication.node--view-mode-full .research-topics--landing .node--type-content-block .nhlbi-publication-details-container .flexItemText h1,
.research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemText h1,
.node--type-nhlbi-publication.node--view-mode-subscribe .research-topics--landing .node--type-content-block .nhlbi-publication-details-container .flexItemText h1, .research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemText h1, .node--type-nhlbi-publication.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-related-nhlbi-publications .flexItemText h1,
.research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemText h1,
.node--type-nhlbi-publication.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-related-nhlbi-publications .flexItemText h1, .research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText h1, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemText h1,
.research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText h1,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemText h1, .research-topics--landing .node--type-content-block .flexcontainer .flexItemText .photocredit, .research-topics--landing .node--type-content-block .related-ht-ser-container .flexItemText .photocredit, .research-topics--landing .node--type-content-block .field--name-field-sfa-card .flexItemText .photocredit, .research-topics--landing .node--type-content-block .field--name-field-speaker .flexItemText .photocredit,
.research-topics--landing .node--type-content-block .field--name-field-executives .flexItemText .photocredit, .research-topics--landing .node--type-content-block .standard-card-field .flexItemText .photocredit, .research-topics--landing .node--type-content-block .field--name-field-advisory-committees .flexItemText .photocredit, .research-topics--landing .node--type-content-block .contact-nhlbi-titleblock .flexItemText .photocredit, .research-topics--landing .node--type-content-block .field--name-field-contact-cards .flexItemText .photocredit, .research-topics--landing .node--type-content-block .field--name-field-employment-opportunity-car .flexItemText .photocredit, .research-topics--landing .node--type-content-block .all-grants-foa-container .flexItemText .photocredit,
.research-topics--landing .node--type-content-block .field--name-field-program-officers .flexItemText .photocredit,
.research-topics--landing .node--type-content-block .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText .photocredit,
.research-topics--landing .node--type-content-block .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText .photocredit, .research-topics--landing .node--type-content-block .node--type-individual-contact .field--name-field-contact-methods .flexItemText .photocredit, .node--type-individual-contact .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText .photocredit,
.research-topics--landing .node--type-content-block .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemText .photocredit,
.node--type-division.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText .photocredit,
.research-topics--landing .node--type-content-block .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .photocredit,
.node--type-division.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText .photocredit,
.research-topics--landing .node--type-content-block .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemText .photocredit,
.node--type-branch.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText .photocredit,
.research-topics--landing .node--type-content-block .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .photocredit,
.node--type-branch.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText .photocredit,
.research-topics--landing .node--type-content-block .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemText .photocredit,
.node--type-general.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText .photocredit,
.research-topics--landing .node--type-content-block .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .photocredit,
.node--type-general.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText .photocredit,
.research-topics--landing .node--type-content-block .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemText .photocredit,
.node--type-health-education-initiative.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText .photocredit,
.research-topics--landing .node--type-content-block .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .photocredit,
.node--type-health-education-initiative.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText .photocredit, .research-topics--landing .node--type-content-block .node--type-committee .field--name-field-card-text .flexItemText .photocredit, .node--type-committee .research-topics--landing .node--type-content-block .field--name-field-card-text .flexItemText .photocredit, .research-topics--landing .node--type-content-block .news-and-events--landing .landing-social .flexItemText .photocredit, .news-and-events--landing .research-topics--landing .node--type-content-block .landing-social .flexItemText .photocredit, .research-topics--landing .node--type-content-block .field--name-field-sfa-cards .flexItemText .photocredit, .research-topics--landing .node--type-content-block .locationMap.contact-location-map-container .flexItemText .photocredit, .research-topics--landing .node--type-content-block .locationMap .flexItemText .photocredit, .research-topics--landing .node--type-content-block .grants-and-training-card-wrapper .flexItemText .photocredit, .research-topics--landing .node--type-content-block .about-nhlbi-division-card-wrapper .flexItemText .photocredit, .research-topics--landing .node--type-content-block .hei-tools-icon-card-wrapper .flexItemText .photocredit, .research-topics--landing .node--type-content-block .field--name-field-grants-and-training-card .flexItemText .photocredit, .research-topics--landing .node--type-content-block .field--name-field-division-card .flexItemText .photocredit, .research-topics--landing .node--type-content-block .field--name-field-tool-icon-card .flexItemText .photocredit, .research-topics--landing .node--type-content-block .field--name-field-promotional-card .flexItemText .photocredit, .research-topics--landing .node--type-content-block .field--name-field-sv-promotional-cards .flexItemText .photocredit, .research-topics--landing .node--type-content-block .field--name-field-about-nhlbi-promotional-ca .flexItemText .photocredit, .research-topics--landing .node--type-content-block .strategic-vision-titleblock .flexItemText .photocredit, .research-topics--landing .node--type-content-block .ppg-titleblock-wrapper .flexItemText .photocredit, .research-topics--landing .node--type-content-block .ppg-guidelines-card-wrapper .flexItemText .photocredit, .research-topics--landing .node--type-content-block .field--name-field-human-subject-cards .flexItemText .photocredit, .research-topics--landing .node--type-content-block .field--name-field-section-card .flexItemText .photocredit, .research-topics--landing .node--type-content-block .field--name-field-highlight-card .flexItemText .photocredit, .research-topics--landing .node--type-content-block .health-topic-teaser-container .flexItemText .photocredit, .research-topics--landing .node--type-content-block .about-nhlbi-our-mission-wrapper .flexItemText .photocredit, .research-topics--landing .node--type-content-block .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText .photocredit, .about-nhlbi-our-mission-wrapper .research-topics--landing .node--type-content-block .field--name-field-leadership > .director-bioCard .flexItemText .photocredit, .research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemText .photocredit, .nhlbi-publications-and-resources--landing .research-topics--landing .node--type-content-block .field--name-field-health-consumer-nhlbi-publ .flexItemText .photocredit,
.research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemText .photocredit,
.nhlbi-publications-and-resources--landing .research-topics--landing .node--type-content-block .field--name-field-health-professionals-nhlbi .flexItemText .photocredit, .research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemText .photocredit, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemText .photocredit,
.research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemText .photocredit,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemText .photocredit, .research-topics--landing .node--type-content-block .publicationsBlock.view-nhlbi-publications > .view-content .flexItemText .photocredit,
.research-topics--landing .node--type-content-block .field--name-field-related-publications .flexItemText .photocredit, .research-topics--landing .node--type-content-block .healthEducationBlock .standard-teaser .flexItemText .photocredit, .healthEducationBlock .research-topics--landing .node--type-content-block .standard-teaser .flexItemText .photocredit, .research-topics--landing .node--type-content-block .systematicEvidenceReviewsBlock .view-content .flexItemText .photocredit, .systematicEvidenceReviewsBlock .research-topics--landing .node--type-content-block .view-content .flexItemText .photocredit,
.research-topics--landing .node--type-content-block .clinicalPracticeGuidelinesBlock .view-content .flexItemText .photocredit,
.clinicalPracticeGuidelinesBlock .research-topics--landing .node--type-content-block .view-content .flexItemText .photocredit,
.research-topics--landing .node--type-content-block .publicationsAndFactSheetsBlock .view-content .flexItemText .photocredit,
.publicationsAndFactSheetsBlock .research-topics--landing .node--type-content-block .view-content .flexItemText .photocredit, .research-topics--landing .node--type-content-block .rtFlexContainer .flexItemText .photocredit, .research-topics--landing .node--type-content-block .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText .photocredit, .node--type-research-topic .research-topics--landing .node--type-content-block .field--name-field-science-supplemental-page .flexItemText .photocredit, .research-topics--landing .node--type-content-block .node--type-research-topic .researchTopicPublications .flexItemText .photocredit, .node--type-research-topic .research-topics--landing .node--type-content-block .researchTopicPublications .flexItemText .photocredit, .research-topics--landing .node--type-content-block .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemText .photocredit, .node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block article.listTeaserCard .flexItemText .photocredit, .research-topics--landing .node--type-content-block .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemText .photocredit, .node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block article.standard-teaser .flexItemText .photocredit,
.research-topics--landing .node--type-content-block .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemText .photocredit,
.node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block article.newsEventsCard .flexItemText .photocredit, .research-topics--landing .node--type-content-block .esi-feature-card .flexItemText .photocredit, .research-topics--landing .node--type-content-block .featured-science-instance-teaser-container .flexItemText .photocredit, .research-topics--landing .node--type-content-block .sfa-teaser-container .flexItemText .photocredit, .research-topics--landing .node--type-content-block .training-opportunity-card .field--name-field-associated-people .flexItemText .photocredit, .training-opportunity-card .research-topics--landing .node--type-content-block .field--name-field-associated-people .flexItemText .photocredit, .research-topics--landing .node--type-content-block .field--name-field-featured-training-opportun .flexItemText .photocredit, .research-topics--landing .node--type-content-block .field--name-field-career-stages .flexItemText .photocredit, .research-topics--landing .node--type-content-block .field--name-field-workforce-development-card .flexItemText .photocredit, .research-topics--landing .node--type-content-block .node--type-update.node--view-mode-executive-teaser .flexItemText .photocredit, .research-topics--landing .node--type-content-block .news-and-events-titleblock .flexItemText .photocredit, .research-topics--landing .node--type-content-block .contact-box > .field--name-field-contact-methods .flexItemText .photocredit, .research-topics--landing .node--type-content-block .leadership-container .flexItemText .photocredit, .research-topics--landing .node--type-content-block .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .photocredit, .leadership-container .leadership-deputy-director-container .research-topics--landing .node--type-content-block .field--name-field-additional-leadership .flexItemText .photocredit, .research-topics--landing .node--type-content-block .branch-leadership-container .flexItemText .photocredit, .research-topics--landing .node--type-content-block .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .photocredit, .branch-leadership-container .leadership-deputy-director-container .research-topics--landing .node--type-content-block .field--name-field-additional-leadership .flexItemText .photocredit, .research-topics--landing .node--type-content-block .node--type-general .field--name-field-related-publications .flexItemText .photocredit, .node--type-general .research-topics--landing .node--type-content-block .field--name-field-related-publications .flexItemText .photocredit, .research-topics--landing .node--type-content-block .node--type-general .field--name-field-general-publications-rlt .flexItemText .photocredit, .node--type-general .research-topics--landing .node--type-content-block .field--name-field-general-publications-rlt .flexItemText .photocredit, .research-topics--landing .node--type-content-block .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemText .photocredit, .node--type-general .field--name-field-general-publications-rlt > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemText .photocredit, .research-topics--landing .node--type-content-block .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemText .photocredit, .node--type-general .field--name-field-related-publications > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemText .photocredit, .research-topics--landing .node--type-content-block .objective-text-container .flexItemText .photocredit, .research-topics--landing .node--type-content-block .objective-list-container .flexItemText .photocredit, .research-topics--landing .node--type-content-block .field--name-field-goal-card .flexItemText .photocredit, .research-topics--landing .node--type-content-block .strategic-vision-landing-goals-wrapper .flexItemText .photocredit, .research-topics--landing .node--type-content-block .node--type-principal-investigator .striped-container-wrapper .flexItemText .photocredit, .node--type-principal-investigator .research-topics--landing .node--type-content-block .striped-container-wrapper .flexItemText .photocredit, .research-topics--landing .node--type-content-block .node--type-principal-investigator .striped-container .flexItemText .photocredit, .node--type-principal-investigator .research-topics--landing .node--type-content-block .striped-container .flexItemText .photocredit, .research-topics--landing .node--type-content-block .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemText .photocredit, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .research-topics--landing .node--type-content-block article .flexItemText .photocredit,
.research-topics--landing .node--type-content-block .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemText .photocredit,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .research-topics--landing .node--type-content-block article .flexItemText .photocredit, .research-topics--landing .node--type-content-block .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemText .photocredit, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .research-topics--landing .node--type-content-block .standard-teaser.node--view-mode-short-teaser .flexItemText .photocredit, .research-topics--landing .node--type-content-block .field--name-field-awards .flexItemText .photocredit, .research-topics--landing .node--type-content-block .registerSocialContainer .flexItemText .photocredit, .research-topics--landing .node--type-content-block .eventdatesLocationType .flexItemText .photocredit, .research-topics--landing .node--type-content-block .news-article-container .flexItemText .photocredit, .research-topics--landing .node--type-content-block .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText .photocredit,
.research-topics--landing .node--type-content-block .node--type-press-release.node--view-mode-press-release-teaser .flexItemText .photocredit,
.research-topics--landing .node--type-content-block .node--type-events.node--view-mode-press-release-teaser .flexItemText .photocredit,
.research-topics--landing .node--type-content-block .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText .photocredit,
.research-topics--landing .node--type-content-block .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText .photocredit,
.research-topics--landing .node--type-content-block .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText .photocredit,
.research-topics--landing .node--type-content-block .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText .photocredit, .research-topics--landing .node--type-content-block .news-header-container .flexItemText .photocredit, .research-topics--landing .node--type-content-block .contacts-container .field--name-field-contacts .flexItemText .photocredit, .contacts-container .research-topics--landing .node--type-content-block .field--name-field-contacts .flexItemText .photocredit, .research-topics--landing .node--type-content-block .publicationsBox .field--name-field-related-publications .flexItemText .photocredit, .publicationsBox .research-topics--landing .node--type-content-block .field--name-field-related-publications .flexItemText .photocredit, .research-topics--landing .node--type-content-block .field--name-field-primary-featured-item .flexItemText .photocredit, .research-topics--landing .node--type-content-block .field--name-field-additional-featured-items .flexItemText .photocredit, .research-topics--landing .node--type-content-block .homepage-health-topics-container .flexItemText .photocredit, .research-topics--landing .node--type-content-block .homepage-mission-areas-container .flexItemText .photocredit, .research-topics--landing .node--type-content-block .homepage-location-container .flexItemText .photocredit, .research-topics--landing .node--type-content-block .field--name-field-alumni .flexItemText .photocredit, .research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemText .photocredit, .node--type-nhlbi-publication.node--view-mode-full .research-topics--landing .node--type-content-block .nhlbi-publication-details-container .flexItemText .photocredit,
.research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemText .photocredit,
.node--type-nhlbi-publication.node--view-mode-subscribe .research-topics--landing .node--type-content-block .nhlbi-publication-details-container .flexItemText .photocredit, .research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemText .photocredit, .node--type-nhlbi-publication.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-related-nhlbi-publications .flexItemText .photocredit,
.research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemText .photocredit,
.node--type-nhlbi-publication.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-related-nhlbi-publications .flexItemText .photocredit, .research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText .photocredit, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemText .photocredit,
.research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText .photocredit,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemText .photocredit {
  color: #222;
}
/* line 154, ../sass/components/_landing_pages.scss */
.research-topics--landing .node--type-content-block .flexcontainer .flexItemText p, .research-topics--landing .node--type-content-block .related-ht-ser-container .flexItemText p, .research-topics--landing .node--type-content-block .field--name-field-sfa-card .flexItemText p, .research-topics--landing .node--type-content-block .field--name-field-speaker .flexItemText p,
.research-topics--landing .node--type-content-block .field--name-field-executives .flexItemText p, .research-topics--landing .node--type-content-block .standard-card-field .flexItemText p, .research-topics--landing .node--type-content-block .field--name-field-advisory-committees .flexItemText p, .research-topics--landing .node--type-content-block .contact-nhlbi-titleblock .flexItemText p, .research-topics--landing .node--type-content-block .field--name-field-contact-cards .flexItemText p, .research-topics--landing .node--type-content-block .field--name-field-employment-opportunity-car .flexItemText p, .research-topics--landing .node--type-content-block .all-grants-foa-container .flexItemText p,
.research-topics--landing .node--type-content-block .field--name-field-program-officers .flexItemText p,
.research-topics--landing .node--type-content-block .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText p,
.research-topics--landing .node--type-content-block .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText p, .research-topics--landing .node--type-content-block .node--type-individual-contact .field--name-field-contact-methods .flexItemText p, .node--type-individual-contact .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText p,
.research-topics--landing .node--type-content-block .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemText p,
.node--type-division.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText p,
.research-topics--landing .node--type-content-block .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText p,
.node--type-division.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText p,
.research-topics--landing .node--type-content-block .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemText p,
.node--type-branch.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText p,
.research-topics--landing .node--type-content-block .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText p,
.node--type-branch.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText p,
.research-topics--landing .node--type-content-block .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemText p,
.node--type-general.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText p,
.research-topics--landing .node--type-content-block .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText p,
.node--type-general.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText p,
.research-topics--landing .node--type-content-block .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemText p,
.node--type-health-education-initiative.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText p,
.research-topics--landing .node--type-content-block .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText p,
.node--type-health-education-initiative.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-contact-methods .flexItemText p, .research-topics--landing .node--type-content-block .node--type-committee .field--name-field-card-text .flexItemText p, .node--type-committee .research-topics--landing .node--type-content-block .field--name-field-card-text .flexItemText p, .research-topics--landing .node--type-content-block .news-and-events--landing .landing-social .flexItemText p, .news-and-events--landing .research-topics--landing .node--type-content-block .landing-social .flexItemText p, .research-topics--landing .node--type-content-block .field--name-field-sfa-cards .flexItemText p, .research-topics--landing .node--type-content-block .locationMap.contact-location-map-container .flexItemText p, .research-topics--landing .node--type-content-block .locationMap .flexItemText p, .research-topics--landing .node--type-content-block .grants-and-training-card-wrapper .flexItemText p, .research-topics--landing .node--type-content-block .about-nhlbi-division-card-wrapper .flexItemText p, .research-topics--landing .node--type-content-block .hei-tools-icon-card-wrapper .flexItemText p, .research-topics--landing .node--type-content-block .field--name-field-grants-and-training-card .flexItemText p, .research-topics--landing .node--type-content-block .field--name-field-division-card .flexItemText p, .research-topics--landing .node--type-content-block .field--name-field-tool-icon-card .flexItemText p, .research-topics--landing .node--type-content-block .field--name-field-promotional-card .flexItemText p, .research-topics--landing .node--type-content-block .field--name-field-sv-promotional-cards .flexItemText p, .research-topics--landing .node--type-content-block .field--name-field-about-nhlbi-promotional-ca .flexItemText p, .research-topics--landing .node--type-content-block .strategic-vision-titleblock .flexItemText p, .research-topics--landing .node--type-content-block .ppg-titleblock-wrapper .flexItemText p, .research-topics--landing .node--type-content-block .ppg-guidelines-card-wrapper .flexItemText p, .research-topics--landing .node--type-content-block .field--name-field-human-subject-cards .flexItemText p, .research-topics--landing .node--type-content-block .field--name-field-section-card .flexItemText p, .research-topics--landing .node--type-content-block .field--name-field-highlight-card .flexItemText p, .research-topics--landing .node--type-content-block .health-topic-teaser-container .flexItemText p, .research-topics--landing .node--type-content-block .about-nhlbi-our-mission-wrapper .flexItemText p, .research-topics--landing .node--type-content-block .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText p, .about-nhlbi-our-mission-wrapper .research-topics--landing .node--type-content-block .field--name-field-leadership > .director-bioCard .flexItemText p, .research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemText p, .nhlbi-publications-and-resources--landing .research-topics--landing .node--type-content-block .field--name-field-health-consumer-nhlbi-publ .flexItemText p,
.research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemText p,
.nhlbi-publications-and-resources--landing .research-topics--landing .node--type-content-block .field--name-field-health-professionals-nhlbi .flexItemText p, .research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemText p, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemText p,
.research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemText p,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemText p, .research-topics--landing .node--type-content-block .publicationsBlock.view-nhlbi-publications > .view-content .flexItemText p,
.research-topics--landing .node--type-content-block .field--name-field-related-publications .flexItemText p, .research-topics--landing .node--type-content-block .healthEducationBlock .standard-teaser .flexItemText p, .healthEducationBlock .research-topics--landing .node--type-content-block .standard-teaser .flexItemText p, .research-topics--landing .node--type-content-block .systematicEvidenceReviewsBlock .view-content .flexItemText p, .systematicEvidenceReviewsBlock .research-topics--landing .node--type-content-block .view-content .flexItemText p,
.research-topics--landing .node--type-content-block .clinicalPracticeGuidelinesBlock .view-content .flexItemText p,
.clinicalPracticeGuidelinesBlock .research-topics--landing .node--type-content-block .view-content .flexItemText p,
.research-topics--landing .node--type-content-block .publicationsAndFactSheetsBlock .view-content .flexItemText p,
.publicationsAndFactSheetsBlock .research-topics--landing .node--type-content-block .view-content .flexItemText p, .research-topics--landing .node--type-content-block .rtFlexContainer .flexItemText p, .research-topics--landing .node--type-content-block .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText p, .node--type-research-topic .research-topics--landing .node--type-content-block .field--name-field-science-supplemental-page .flexItemText p, .research-topics--landing .node--type-content-block .node--type-research-topic .researchTopicPublications .flexItemText p, .node--type-research-topic .research-topics--landing .node--type-content-block .researchTopicPublications .flexItemText p, .research-topics--landing .node--type-content-block .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemText p, .node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block article.listTeaserCard .flexItemText p, .research-topics--landing .node--type-content-block .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemText p, .node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block article.standard-teaser .flexItemText p,
.research-topics--landing .node--type-content-block .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemText p,
.node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block article.newsEventsCard .flexItemText p, .research-topics--landing .node--type-content-block .esi-feature-card .flexItemText p, .research-topics--landing .node--type-content-block .featured-science-instance-teaser-container .flexItemText p, .research-topics--landing .node--type-content-block .sfa-teaser-container .flexItemText p, .research-topics--landing .node--type-content-block .training-opportunity-card .field--name-field-associated-people .flexItemText p, .training-opportunity-card .research-topics--landing .node--type-content-block .field--name-field-associated-people .flexItemText p, .research-topics--landing .node--type-content-block .field--name-field-featured-training-opportun .flexItemText p, .research-topics--landing .node--type-content-block .field--name-field-career-stages .flexItemText p, .research-topics--landing .node--type-content-block .field--name-field-workforce-development-card .flexItemText p, .research-topics--landing .node--type-content-block .node--type-update.node--view-mode-executive-teaser .flexItemText p, .research-topics--landing .node--type-content-block .news-and-events-titleblock .flexItemText p, .research-topics--landing .node--type-content-block .contact-box > .field--name-field-contact-methods .flexItemText p, .research-topics--landing .node--type-content-block .leadership-container .flexItemText p, .research-topics--landing .node--type-content-block .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText p, .leadership-container .leadership-deputy-director-container .research-topics--landing .node--type-content-block .field--name-field-additional-leadership .flexItemText p, .research-topics--landing .node--type-content-block .branch-leadership-container .flexItemText p, .research-topics--landing .node--type-content-block .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText p, .branch-leadership-container .leadership-deputy-director-container .research-topics--landing .node--type-content-block .field--name-field-additional-leadership .flexItemText p, .research-topics--landing .node--type-content-block .node--type-general .field--name-field-related-publications .flexItemText p, .node--type-general .research-topics--landing .node--type-content-block .field--name-field-related-publications .flexItemText p, .research-topics--landing .node--type-content-block .node--type-general .field--name-field-general-publications-rlt .flexItemText p, .node--type-general .research-topics--landing .node--type-content-block .field--name-field-general-publications-rlt .flexItemText p, .research-topics--landing .node--type-content-block .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemText p, .node--type-general .field--name-field-general-publications-rlt > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemText p, .research-topics--landing .node--type-content-block .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemText p, .node--type-general .field--name-field-related-publications > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemText p, .research-topics--landing .node--type-content-block .objective-text-container .flexItemText p, .research-topics--landing .node--type-content-block .objective-list-container .flexItemText p, .research-topics--landing .node--type-content-block .field--name-field-goal-card .flexItemText p, .research-topics--landing .node--type-content-block .strategic-vision-landing-goals-wrapper .flexItemText p, .research-topics--landing .node--type-content-block .node--type-principal-investigator .striped-container-wrapper .flexItemText p, .node--type-principal-investigator .research-topics--landing .node--type-content-block .striped-container-wrapper .flexItemText p, .research-topics--landing .node--type-content-block .node--type-principal-investigator .striped-container .flexItemText p, .node--type-principal-investigator .research-topics--landing .node--type-content-block .striped-container .flexItemText p, .research-topics--landing .node--type-content-block .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemText p, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .research-topics--landing .node--type-content-block article .flexItemText p,
.research-topics--landing .node--type-content-block .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemText p,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .research-topics--landing .node--type-content-block article .flexItemText p, .research-topics--landing .node--type-content-block .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemText p, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .research-topics--landing .node--type-content-block .standard-teaser.node--view-mode-short-teaser .flexItemText p, .research-topics--landing .node--type-content-block .field--name-field-awards .flexItemText p, .research-topics--landing .node--type-content-block .registerSocialContainer .flexItemText p, .research-topics--landing .node--type-content-block .eventdatesLocationType .flexItemText p, .research-topics--landing .node--type-content-block .news-article-container .flexItemText p, .research-topics--landing .node--type-content-block .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText p,
.research-topics--landing .node--type-content-block .node--type-press-release.node--view-mode-press-release-teaser .flexItemText p,
.research-topics--landing .node--type-content-block .node--type-events.node--view-mode-press-release-teaser .flexItemText p,
.research-topics--landing .node--type-content-block .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText p,
.research-topics--landing .node--type-content-block .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText p,
.research-topics--landing .node--type-content-block .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText p,
.research-topics--landing .node--type-content-block .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText p, .research-topics--landing .node--type-content-block .news-header-container .flexItemText p, .research-topics--landing .node--type-content-block .contacts-container .field--name-field-contacts .flexItemText p, .contacts-container .research-topics--landing .node--type-content-block .field--name-field-contacts .flexItemText p, .research-topics--landing .node--type-content-block .publicationsBox .field--name-field-related-publications .flexItemText p, .publicationsBox .research-topics--landing .node--type-content-block .field--name-field-related-publications .flexItemText p, .research-topics--landing .node--type-content-block .field--name-field-primary-featured-item .flexItemText p, .research-topics--landing .node--type-content-block .field--name-field-additional-featured-items .flexItemText p, .research-topics--landing .node--type-content-block .homepage-health-topics-container .flexItemText p, .research-topics--landing .node--type-content-block .homepage-mission-areas-container .flexItemText p, .research-topics--landing .node--type-content-block .homepage-location-container .flexItemText p, .research-topics--landing .node--type-content-block .field--name-field-alumni .flexItemText p, .research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemText p, .node--type-nhlbi-publication.node--view-mode-full .research-topics--landing .node--type-content-block .nhlbi-publication-details-container .flexItemText p,
.research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemText p,
.node--type-nhlbi-publication.node--view-mode-subscribe .research-topics--landing .node--type-content-block .nhlbi-publication-details-container .flexItemText p, .research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemText p, .node--type-nhlbi-publication.node--view-mode-full .research-topics--landing .node--type-content-block .field--name-field-related-nhlbi-publications .flexItemText p,
.research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemText p,
.node--type-nhlbi-publication.node--view-mode-subscribe .research-topics--landing .node--type-content-block .field--name-field-related-nhlbi-publications .flexItemText p, .research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText p, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemText p,
.research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText p,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .research-topics--landing .node--type-content-block .standard-teaser .flexItemText p {
  color: #fff;
}
/* line 160, ../sass/components/_landing_pages.scss */
.research-topics--landing .node--type-content-block > .flexcontainer > .flexItemText, .research-topics--landing .node--type-content-block > .related-ht-ser-container > .flexItemText, .research-topics--landing .node--type-content-block > .field--name-field-sfa-card > .flexItemText, .research-topics--landing .node--type-content-block > .field--name-field-speaker > .flexItemText,
.research-topics--landing .node--type-content-block > .field--name-field-executives > .flexItemText, .research-topics--landing .node--type-content-block > .standard-card-field > .flexItemText, .research-topics--landing .node--type-content-block > .field--name-field-advisory-committees > .flexItemText, .research-topics--landing .node--type-content-block > .contact-nhlbi-titleblock > .flexItemText, .research-topics--landing .node--type-content-block > .field--name-field-contact-cards > .flexItemText, .research-topics--landing .node--type-content-block > .field--name-field-employment-opportunity-car > .flexItemText, .research-topics--landing .node--type-content-block > .all-grants-foa-container > .flexItemText,
.research-topics--landing .node--type-content-block > .field--name-field-program-officers > .flexItemText,
.research-topics--landing .view-id-nhlbi_grants_foa.view-display-id-block_2.node--type-content-block > .view-content > .flexItemText,
.research-topics--landing .view-id-nhlbi_grants_foa.view-display-id-block_3.node--type-content-block > .view-content > .flexItemText, .research-topics--landing .node--type-individual-contact .node--type-content-block > .field--name-field-contact-methods > .flexItemText, .node--type-individual-contact .research-topics--landing .node--type-content-block > .field--name-field-contact-methods > .flexItemText,
.research-topics--landing .node--type-division.node--view-mode-full .node--type-content-block > .field--name-field-contact-methods > .flexItemText,
.node--type-division.node--view-mode-full .research-topics--landing .node--type-content-block > .field--name-field-contact-methods > .flexItemText,
.research-topics--landing .node--type-division.node--view-mode-subscribe .node--type-content-block > .field--name-field-contact-methods > .flexItemText,
.node--type-division.node--view-mode-subscribe .research-topics--landing .node--type-content-block > .field--name-field-contact-methods > .flexItemText,
.research-topics--landing .node--type-branch.node--view-mode-full .node--type-content-block > .field--name-field-contact-methods > .flexItemText,
.node--type-branch.node--view-mode-full .research-topics--landing .node--type-content-block > .field--name-field-contact-methods > .flexItemText,
.research-topics--landing .node--type-branch.node--view-mode-subscribe .node--type-content-block > .field--name-field-contact-methods > .flexItemText,
.node--type-branch.node--view-mode-subscribe .research-topics--landing .node--type-content-block > .field--name-field-contact-methods > .flexItemText,
.research-topics--landing .node--type-general.node--view-mode-full .node--type-content-block > .field--name-field-contact-methods > .flexItemText,
.node--type-general.node--view-mode-full .research-topics--landing .node--type-content-block > .field--name-field-contact-methods > .flexItemText,
.research-topics--landing .node--type-general.node--view-mode-subscribe .node--type-content-block > .field--name-field-contact-methods > .flexItemText,
.node--type-general.node--view-mode-subscribe .research-topics--landing .node--type-content-block > .field--name-field-contact-methods > .flexItemText,
.research-topics--landing .node--type-health-education-initiative.node--view-mode-full .node--type-content-block > .field--name-field-contact-methods > .flexItemText,
.node--type-health-education-initiative.node--view-mode-full .research-topics--landing .node--type-content-block > .field--name-field-contact-methods > .flexItemText,
.research-topics--landing .node--type-health-education-initiative.node--view-mode-subscribe .node--type-content-block > .field--name-field-contact-methods > .flexItemText,
.node--type-health-education-initiative.node--view-mode-subscribe .research-topics--landing .node--type-content-block > .field--name-field-contact-methods > .flexItemText, .research-topics--landing .node--type-committee .node--type-content-block > .field--name-field-card-text > .flexItemText, .node--type-committee .research-topics--landing .node--type-content-block > .field--name-field-card-text > .flexItemText, .research-topics--landing .news-and-events--landing .node--type-content-block > .landing-social > .flexItemText, .news-and-events--landing .research-topics--landing .node--type-content-block > .landing-social > .flexItemText, .research-topics--landing .node--type-content-block > .field--name-field-sfa-cards > .flexItemText, .research-topics--landing .node--type-content-block > .locationMap.contact-location-map-container > .flexItemText, .research-topics--landing .node--type-content-block > .locationMap > .flexItemText, .research-topics--landing .node--type-content-block > .grants-and-training-card-wrapper > .flexItemText, .research-topics--landing .node--type-content-block > .about-nhlbi-division-card-wrapper > .flexItemText, .research-topics--landing .node--type-content-block > .hei-tools-icon-card-wrapper > .flexItemText, .research-topics--landing .node--type-content-block > .field--name-field-grants-and-training-card > .flexItemText, .research-topics--landing .node--type-content-block > .field--name-field-division-card > .flexItemText, .research-topics--landing .node--type-content-block > .field--name-field-tool-icon-card > .flexItemText, .research-topics--landing .node--type-content-block > .field--name-field-promotional-card > .flexItemText, .research-topics--landing .node--type-content-block > .field--name-field-sv-promotional-cards > .flexItemText, .research-topics--landing .node--type-content-block > .field--name-field-about-nhlbi-promotional-ca > .flexItemText, .research-topics--landing .node--type-content-block > .strategic-vision-titleblock > .flexItemText, .research-topics--landing .node--type-content-block > .ppg-titleblock-wrapper > .flexItemText, .research-topics--landing .node--type-content-block > .ppg-guidelines-card-wrapper > .flexItemText, .research-topics--landing .node--type-content-block > .field--name-field-human-subject-cards > .flexItemText, .research-topics--landing .node--type-content-block > .field--name-field-section-card > .flexItemText, .research-topics--landing .node--type-content-block > .field--name-field-highlight-card > .flexItemText, .research-topics--landing .node--type-content-block > .health-topic-teaser-container > .flexItemText, .research-topics--landing .node--type-content-block > .about-nhlbi-our-mission-wrapper > .flexItemText, .research-topics--landing .about-nhlbi-our-mission-wrapper .field--name-field-leadership.node--type-content-block > .director-bioCard > .flexItemText, .about-nhlbi-our-mission-wrapper .research-topics--landing .field--name-field-leadership.node--type-content-block > .director-bioCard > .flexItemText, .research-topics--landing .nhlbi-publications-and-resources--landing .node--type-content-block > .field--name-field-health-consumer-nhlbi-publ > .flexItemText, .nhlbi-publications-and-resources--landing .research-topics--landing .node--type-content-block > .field--name-field-health-consumer-nhlbi-publ > .flexItemText,
.research-topics--landing .nhlbi-publications-and-resources--landing .node--type-content-block > .field--name-field-health-professionals-nhlbi > .flexItemText,
.nhlbi-publications-and-resources--landing .research-topics--landing .node--type-content-block > .field--name-field-health-professionals-nhlbi > .flexItemText, .research-topics--landing .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-content-block > .standard-teaser > .flexItemText, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .research-topics--landing .node--type-content-block > .standard-teaser > .flexItemText,
.research-topics--landing .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-content-block > .standard-teaser > .flexItemText,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .research-topics--landing .node--type-content-block > .standard-teaser > .flexItemText, .research-topics--landing .publicationsBlock.view-nhlbi-publications.node--type-content-block > .view-content > .flexItemText,
.research-topics--landing .node--type-content-block > .field--name-field-related-publications > .flexItemText, .research-topics--landing .healthEducationBlock .node--type-content-block > .standard-teaser > .flexItemText, .healthEducationBlock .research-topics--landing .node--type-content-block > .standard-teaser > .flexItemText, .research-topics--landing .systematicEvidenceReviewsBlock .node--type-content-block > .view-content > .flexItemText, .systematicEvidenceReviewsBlock .research-topics--landing .node--type-content-block > .view-content > .flexItemText,
.research-topics--landing .clinicalPracticeGuidelinesBlock .node--type-content-block > .view-content > .flexItemText,
.clinicalPracticeGuidelinesBlock .research-topics--landing .node--type-content-block > .view-content > .flexItemText,
.research-topics--landing .publicationsAndFactSheetsBlock .node--type-content-block > .view-content > .flexItemText,
.publicationsAndFactSheetsBlock .research-topics--landing .node--type-content-block > .view-content > .flexItemText, .research-topics--landing .node--type-content-block > .rtFlexContainer > .flexItemText, .research-topics--landing .node--type-research-topic .node--type-content-block > .field--name-field-science-supplemental-page > .flexItemText, .node--type-research-topic .research-topics--landing .node--type-content-block > .field--name-field-science-supplemental-page > .flexItemText, .research-topics--landing .node--type-research-topic .node--type-content-block > .researchTopicPublications > .flexItemText, .node--type-research-topic .research-topics--landing .node--type-content-block > .researchTopicPublications > .flexItemText, .research-topics--landing .node--type-research-topic .field--name-field-content > .field__item .node--type-content-block > article.listTeaserCard > .flexItemText, .node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block > article.listTeaserCard > .flexItemText, .research-topics--landing .node--type-research-topic .field--name-field-content > .field__item .node--type-content-block > article.standard-teaser > .flexItemText, .node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block > article.standard-teaser > .flexItemText,
.research-topics--landing .node--type-research-topic .field--name-field-content > .field__item .node--type-content-block > article.newsEventsCard > .flexItemText,
.node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block > article.newsEventsCard > .flexItemText, .research-topics--landing .node--type-content-block > .esi-feature-card > .flexItemText, .research-topics--landing .node--type-content-block > .featured-science-instance-teaser-container > .flexItemText, .research-topics--landing .node--type-content-block > .sfa-teaser-container > .flexItemText, .research-topics--landing .training-opportunity-card .node--type-content-block > .field--name-field-associated-people > .flexItemText, .training-opportunity-card .research-topics--landing .node--type-content-block > .field--name-field-associated-people > .flexItemText, .research-topics--landing .node--type-content-block > .field--name-field-featured-training-opportun > .flexItemText, .research-topics--landing .node--type-content-block > .field--name-field-career-stages > .flexItemText, .research-topics--landing .node--type-content-block > .field--name-field-workforce-development-card > .flexItemText, .research-topics--landing .node--type-content-block > .node--type-update.node--view-mode-executive-teaser > .flexItemText, .research-topics--landing .node--type-content-block > .news-and-events-titleblock > .flexItemText, .research-topics--landing .contact-box.node--type-content-block > .field--name-field-contact-methods > .flexItemText, .research-topics--landing .node--type-content-block > .leadership-container > .flexItemText, .research-topics--landing .leadership-container .leadership-deputy-director-container .node--type-content-block > .field--name-field-additional-leadership > .flexItemText, .leadership-container .leadership-deputy-director-container .research-topics--landing .node--type-content-block > .field--name-field-additional-leadership > .flexItemText, .research-topics--landing .node--type-content-block > .branch-leadership-container > .flexItemText, .research-topics--landing .branch-leadership-container .leadership-deputy-director-container .node--type-content-block > .field--name-field-additional-leadership > .flexItemText, .branch-leadership-container .leadership-deputy-director-container .research-topics--landing .node--type-content-block > .field--name-field-additional-leadership > .flexItemText, .research-topics--landing .node--type-general .node--type-content-block > .field--name-field-related-publications > .flexItemText, .node--type-general .research-topics--landing .node--type-content-block > .field--name-field-related-publications > .flexItemText, .research-topics--landing .node--type-general .node--type-content-block > .field--name-field-general-publications-rlt > .flexItemText, .node--type-general .research-topics--landing .node--type-content-block > .field--name-field-general-publications-rlt > .flexItemText, .research-topics--landing .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-content-block > .standard-teaser > .flexItemText, .node--type-general .field--name-field-general-publications-rlt > .field__item .research-topics--landing .node--type-content-block > .standard-teaser > .flexItemText, .research-topics--landing .node--type-general .field--name-field-related-publications > .field__item .node--type-content-block > .standard-teaser > .flexItemText, .node--type-general .field--name-field-related-publications > .field__item .research-topics--landing .node--type-content-block > .standard-teaser > .flexItemText, .research-topics--landing .node--type-content-block > .objective-text-container > .flexItemText, .research-topics--landing .node--type-content-block > .objective-list-container > .flexItemText, .research-topics--landing .node--type-content-block > .field--name-field-goal-card > .flexItemText, .research-topics--landing .node--type-content-block > .strategic-vision-landing-goals-wrapper > .flexItemText, .research-topics--landing .node--type-principal-investigator .node--type-content-block > .striped-container-wrapper > .flexItemText, .node--type-principal-investigator .research-topics--landing .node--type-content-block > .striped-container-wrapper > .flexItemText, .research-topics--landing .node--type-principal-investigator .node--type-content-block > .striped-container > .flexItemText, .node--type-principal-investigator .research-topics--landing .node--type-content-block > .striped-container > .flexItemText, .research-topics--landing .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-content-block > article > .flexItemText, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .research-topics--landing .node--type-content-block > article > .flexItemText,
.research-topics--landing .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-content-block > article > .flexItemText,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .research-topics--landing .node--type-content-block > article > .flexItemText, .research-topics--landing .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-content-block > .standard-teaser.node--view-mode-short-teaser > .flexItemText, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .research-topics--landing .node--type-content-block > .standard-teaser.node--view-mode-short-teaser > .flexItemText, .research-topics--landing .node--type-content-block > .field--name-field-awards > .flexItemText, .research-topics--landing .node--type-content-block > .registerSocialContainer > .flexItemText, .research-topics--landing .node--type-content-block > .eventdatesLocationType > .flexItemText, .research-topics--landing .node--type-content-block > .news-article-container > .flexItemText, .research-topics--landing .node--type-content-block > .node--type-feature-article.node--view-mode-press-release-teaser > .flexItemText,
.research-topics--landing .node--type-content-block > .node--type-press-release.node--view-mode-press-release-teaser > .flexItemText,
.research-topics--landing .node--type-content-block > .node--type-events.node--view-mode-press-release-teaser > .flexItemText,
.research-topics--landing .node--type-content-block > .node--type-feature-article.node--view-mode-hp-press-release-teaser > .flexItemText,
.research-topics--landing .node--type-content-block > .node--type-press-release.node--view-mode-hp-press-release-teaser > .flexItemText,
.research-topics--landing .node--type-content-block > .node--type-events.node--view-mode-hp-press-release-teaser > .flexItemText,
.research-topics--landing .node--type-content-block > .node--type-news-mention.node--view-mode-hp-press-release-teaser > .flexItemText, .research-topics--landing .node--type-content-block > .news-header-container > .flexItemText, .research-topics--landing .contacts-container .node--type-content-block > .field--name-field-contacts > .flexItemText, .contacts-container .research-topics--landing .node--type-content-block > .field--name-field-contacts > .flexItemText, .research-topics--landing .publicationsBox .node--type-content-block > .field--name-field-related-publications > .flexItemText, .publicationsBox .research-topics--landing .node--type-content-block > .field--name-field-related-publications > .flexItemText, .research-topics--landing .node--type-content-block > .field--name-field-primary-featured-item > .flexItemText, .research-topics--landing .node--type-content-block > .field--name-field-additional-featured-items > .flexItemText, .research-topics--landing .node--type-content-block > .homepage-health-topics-container > .flexItemText, .research-topics--landing .node--type-content-block > .homepage-mission-areas-container > .flexItemText, .research-topics--landing .node--type-content-block > .homepage-location-container > .flexItemText, .research-topics--landing .node--type-content-block > .field--name-field-alumni > .flexItemText, .research-topics--landing .node--type-nhlbi-publication.node--view-mode-full .node--type-content-block > .nhlbi-publication-details-container > .flexItemText, .node--type-nhlbi-publication.node--view-mode-full .research-topics--landing .node--type-content-block > .nhlbi-publication-details-container > .flexItemText,
.research-topics--landing .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-content-block > .nhlbi-publication-details-container > .flexItemText,
.node--type-nhlbi-publication.node--view-mode-subscribe .research-topics--landing .node--type-content-block > .nhlbi-publication-details-container > .flexItemText, .research-topics--landing .node--type-nhlbi-publication.node--view-mode-full .node--type-content-block > .field--name-field-related-nhlbi-publications > .flexItemText, .node--type-nhlbi-publication.node--view-mode-full .research-topics--landing .node--type-content-block > .field--name-field-related-nhlbi-publications > .flexItemText,
.research-topics--landing .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-content-block > .field--name-field-related-nhlbi-publications > .flexItemText,
.node--type-nhlbi-publication.node--view-mode-subscribe .research-topics--landing .node--type-content-block > .field--name-field-related-nhlbi-publications > .flexItemText, .research-topics--landing .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-content-block > .standard-teaser > .flexItemText, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .research-topics--landing .node--type-content-block > .standard-teaser > .flexItemText,
.research-topics--landing .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-content-block > .standard-teaser > .flexItemText,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .research-topics--landing .node--type-content-block > .standard-teaser > .flexItemText {
  color: #fff;
  background-color: transparent;
}
/* line 126, ../sass/_mixins.scss */
.research-topics--landing .node--type-content-block > .flexcontainer > .flexItemText a, .research-topics--landing .node--type-content-block > .related-ht-ser-container > .flexItemText a, .research-topics--landing .node--type-content-block > .field--name-field-sfa-card > .flexItemText a, .research-topics--landing .node--type-content-block > .field--name-field-speaker > .flexItemText a,
.research-topics--landing .node--type-content-block > .field--name-field-executives > .flexItemText a, .research-topics--landing .node--type-content-block > .standard-card-field > .flexItemText a, .research-topics--landing .node--type-content-block > .field--name-field-advisory-committees > .flexItemText a, .research-topics--landing .node--type-content-block > .contact-nhlbi-titleblock > .flexItemText a, .research-topics--landing .node--type-content-block > .field--name-field-contact-cards > .flexItemText a, .research-topics--landing .node--type-content-block > .field--name-field-employment-opportunity-car > .flexItemText a, .research-topics--landing .node--type-content-block > .all-grants-foa-container > .flexItemText a,
.research-topics--landing .node--type-content-block > .field--name-field-program-officers > .flexItemText a,
.research-topics--landing .view-id-nhlbi_grants_foa.view-display-id-block_2.node--type-content-block > .view-content > .flexItemText a,
.research-topics--landing .view-id-nhlbi_grants_foa.view-display-id-block_3.node--type-content-block > .view-content > .flexItemText a, .research-topics--landing .node--type-individual-contact .node--type-content-block > .field--name-field-contact-methods > .flexItemText a, .node--type-individual-contact .research-topics--landing .node--type-content-block > .field--name-field-contact-methods > .flexItemText a,
.research-topics--landing .node--type-division.node--view-mode-full .node--type-content-block > .field--name-field-contact-methods > .flexItemText a,
.node--type-division.node--view-mode-full .research-topics--landing .node--type-content-block > .field--name-field-contact-methods > .flexItemText a,
.research-topics--landing .node--type-division.node--view-mode-subscribe .node--type-content-block > .field--name-field-contact-methods > .flexItemText a,
.node--type-division.node--view-mode-subscribe .research-topics--landing .node--type-content-block > .field--name-field-contact-methods > .flexItemText a,
.research-topics--landing .node--type-branch.node--view-mode-full .node--type-content-block > .field--name-field-contact-methods > .flexItemText a,
.node--type-branch.node--view-mode-full .research-topics--landing .node--type-content-block > .field--name-field-contact-methods > .flexItemText a,
.research-topics--landing .node--type-branch.node--view-mode-subscribe .node--type-content-block > .field--name-field-contact-methods > .flexItemText a,
.node--type-branch.node--view-mode-subscribe .research-topics--landing .node--type-content-block > .field--name-field-contact-methods > .flexItemText a,
.research-topics--landing .node--type-general.node--view-mode-full .node--type-content-block > .field--name-field-contact-methods > .flexItemText a,
.node--type-general.node--view-mode-full .research-topics--landing .node--type-content-block > .field--name-field-contact-methods > .flexItemText a,
.research-topics--landing .node--type-general.node--view-mode-subscribe .node--type-content-block > .field--name-field-contact-methods > .flexItemText a,
.node--type-general.node--view-mode-subscribe .research-topics--landing .node--type-content-block > .field--name-field-contact-methods > .flexItemText a,
.research-topics--landing .node--type-health-education-initiative.node--view-mode-full .node--type-content-block > .field--name-field-contact-methods > .flexItemText a,
.node--type-health-education-initiative.node--view-mode-full .research-topics--landing .node--type-content-block > .field--name-field-contact-methods > .flexItemText a,
.research-topics--landing .node--type-health-education-initiative.node--view-mode-subscribe .node--type-content-block > .field--name-field-contact-methods > .flexItemText a,
.node--type-health-education-initiative.node--view-mode-subscribe .research-topics--landing .node--type-content-block > .field--name-field-contact-methods > .flexItemText a, .research-topics--landing .node--type-committee .node--type-content-block > .field--name-field-card-text > .flexItemText a, .node--type-committee .research-topics--landing .node--type-content-block > .field--name-field-card-text > .flexItemText a, .research-topics--landing .news-and-events--landing .node--type-content-block > .landing-social > .flexItemText a, .news-and-events--landing .research-topics--landing .node--type-content-block > .landing-social > .flexItemText a, .research-topics--landing .node--type-content-block > .field--name-field-sfa-cards > .flexItemText a, .research-topics--landing .node--type-content-block > .locationMap.contact-location-map-container > .flexItemText a, .research-topics--landing .node--type-content-block > .locationMap > .flexItemText a, .research-topics--landing .node--type-content-block > .grants-and-training-card-wrapper > .flexItemText a, .research-topics--landing .node--type-content-block > .about-nhlbi-division-card-wrapper > .flexItemText a, .research-topics--landing .node--type-content-block > .hei-tools-icon-card-wrapper > .flexItemText a, .research-topics--landing .node--type-content-block > .field--name-field-grants-and-training-card > .flexItemText a, .research-topics--landing .node--type-content-block > .field--name-field-division-card > .flexItemText a, .research-topics--landing .node--type-content-block > .field--name-field-tool-icon-card > .flexItemText a, .research-topics--landing .node--type-content-block > .field--name-field-promotional-card > .flexItemText a, .research-topics--landing .node--type-content-block > .field--name-field-sv-promotional-cards > .flexItemText a, .research-topics--landing .node--type-content-block > .field--name-field-about-nhlbi-promotional-ca > .flexItemText a, .research-topics--landing .node--type-content-block > .strategic-vision-titleblock > .flexItemText a, .research-topics--landing .node--type-content-block > .ppg-titleblock-wrapper > .flexItemText a, .research-topics--landing .node--type-content-block > .ppg-guidelines-card-wrapper > .flexItemText a, .research-topics--landing .node--type-content-block > .field--name-field-human-subject-cards > .flexItemText a, .research-topics--landing .node--type-content-block > .field--name-field-section-card > .flexItemText a, .research-topics--landing .node--type-content-block > .field--name-field-highlight-card > .flexItemText a, .research-topics--landing .node--type-content-block > .health-topic-teaser-container > .flexItemText a, .research-topics--landing .node--type-content-block > .about-nhlbi-our-mission-wrapper > .flexItemText a, .research-topics--landing .about-nhlbi-our-mission-wrapper .field--name-field-leadership.node--type-content-block > .director-bioCard > .flexItemText a, .about-nhlbi-our-mission-wrapper .research-topics--landing .field--name-field-leadership.node--type-content-block > .director-bioCard > .flexItemText a, .research-topics--landing .nhlbi-publications-and-resources--landing .node--type-content-block > .field--name-field-health-consumer-nhlbi-publ > .flexItemText a, .nhlbi-publications-and-resources--landing .research-topics--landing .node--type-content-block > .field--name-field-health-consumer-nhlbi-publ > .flexItemText a,
.research-topics--landing .nhlbi-publications-and-resources--landing .node--type-content-block > .field--name-field-health-professionals-nhlbi > .flexItemText a,
.nhlbi-publications-and-resources--landing .research-topics--landing .node--type-content-block > .field--name-field-health-professionals-nhlbi > .flexItemText a, .research-topics--landing .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-content-block > .standard-teaser > .flexItemText a, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .research-topics--landing .node--type-content-block > .standard-teaser > .flexItemText a,
.research-topics--landing .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-content-block > .standard-teaser > .flexItemText a,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .research-topics--landing .node--type-content-block > .standard-teaser > .flexItemText a, .research-topics--landing .publicationsBlock.view-nhlbi-publications.node--type-content-block > .view-content > .flexItemText a,
.research-topics--landing .node--type-content-block > .field--name-field-related-publications > .flexItemText a, .research-topics--landing .healthEducationBlock .node--type-content-block > .standard-teaser > .flexItemText a, .healthEducationBlock .research-topics--landing .node--type-content-block > .standard-teaser > .flexItemText a, .research-topics--landing .systematicEvidenceReviewsBlock .node--type-content-block > .view-content > .flexItemText a, .systematicEvidenceReviewsBlock .research-topics--landing .node--type-content-block > .view-content > .flexItemText a,
.research-topics--landing .clinicalPracticeGuidelinesBlock .node--type-content-block > .view-content > .flexItemText a,
.clinicalPracticeGuidelinesBlock .research-topics--landing .node--type-content-block > .view-content > .flexItemText a,
.research-topics--landing .publicationsAndFactSheetsBlock .node--type-content-block > .view-content > .flexItemText a,
.publicationsAndFactSheetsBlock .research-topics--landing .node--type-content-block > .view-content > .flexItemText a, .research-topics--landing .node--type-content-block > .rtFlexContainer > .flexItemText a, .research-topics--landing .node--type-research-topic .node--type-content-block > .field--name-field-science-supplemental-page > .flexItemText a, .node--type-research-topic .research-topics--landing .node--type-content-block > .field--name-field-science-supplemental-page > .flexItemText a, .research-topics--landing .node--type-research-topic .node--type-content-block > .researchTopicPublications > .flexItemText a, .node--type-research-topic .research-topics--landing .node--type-content-block > .researchTopicPublications > .flexItemText a, .research-topics--landing .node--type-research-topic .field--name-field-content > .field__item .node--type-content-block > article.listTeaserCard > .flexItemText a, .node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block > article.listTeaserCard > .flexItemText a, .research-topics--landing .node--type-research-topic .field--name-field-content > .field__item .node--type-content-block > article.standard-teaser > .flexItemText a, .node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block > article.standard-teaser > .flexItemText a,
.research-topics--landing .node--type-research-topic .field--name-field-content > .field__item .node--type-content-block > article.newsEventsCard > .flexItemText a,
.node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block > article.newsEventsCard > .flexItemText a, .research-topics--landing .node--type-content-block > .esi-feature-card > .flexItemText a, .research-topics--landing .node--type-content-block > .featured-science-instance-teaser-container > .flexItemText a, .research-topics--landing .node--type-content-block > .sfa-teaser-container > .flexItemText a, .research-topics--landing .training-opportunity-card .node--type-content-block > .field--name-field-associated-people > .flexItemText a, .training-opportunity-card .research-topics--landing .node--type-content-block > .field--name-field-associated-people > .flexItemText a, .research-topics--landing .node--type-content-block > .field--name-field-featured-training-opportun > .flexItemText a, .research-topics--landing .node--type-content-block > .field--name-field-career-stages > .flexItemText a, .research-topics--landing .node--type-content-block > .field--name-field-workforce-development-card > .flexItemText a, .research-topics--landing .node--type-content-block > .node--type-update.node--view-mode-executive-teaser > .flexItemText a, .research-topics--landing .node--type-content-block > .news-and-events-titleblock > .flexItemText a, .research-topics--landing .contact-box.node--type-content-block > .field--name-field-contact-methods > .flexItemText a, .research-topics--landing .node--type-content-block > .leadership-container > .flexItemText a, .research-topics--landing .leadership-container .leadership-deputy-director-container .node--type-content-block > .field--name-field-additional-leadership > .flexItemText a, .leadership-container .leadership-deputy-director-container .research-topics--landing .node--type-content-block > .field--name-field-additional-leadership > .flexItemText a, .research-topics--landing .node--type-content-block > .branch-leadership-container > .flexItemText a, .research-topics--landing .branch-leadership-container .leadership-deputy-director-container .node--type-content-block > .field--name-field-additional-leadership > .flexItemText a, .branch-leadership-container .leadership-deputy-director-container .research-topics--landing .node--type-content-block > .field--name-field-additional-leadership > .flexItemText a, .research-topics--landing .node--type-general .node--type-content-block > .field--name-field-related-publications > .flexItemText a, .node--type-general .research-topics--landing .node--type-content-block > .field--name-field-related-publications > .flexItemText a, .research-topics--landing .node--type-general .node--type-content-block > .field--name-field-general-publications-rlt > .flexItemText a, .node--type-general .research-topics--landing .node--type-content-block > .field--name-field-general-publications-rlt > .flexItemText a, .research-topics--landing .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-content-block > .standard-teaser > .flexItemText a, .node--type-general .field--name-field-general-publications-rlt > .field__item .research-topics--landing .node--type-content-block > .standard-teaser > .flexItemText a, .research-topics--landing .node--type-general .field--name-field-related-publications > .field__item .node--type-content-block > .standard-teaser > .flexItemText a, .node--type-general .field--name-field-related-publications > .field__item .research-topics--landing .node--type-content-block > .standard-teaser > .flexItemText a, .research-topics--landing .node--type-content-block > .objective-text-container > .flexItemText a, .research-topics--landing .node--type-content-block > .objective-list-container > .flexItemText a, .research-topics--landing .node--type-content-block > .field--name-field-goal-card > .flexItemText a, .research-topics--landing .node--type-content-block > .strategic-vision-landing-goals-wrapper > .flexItemText a, .research-topics--landing .node--type-principal-investigator .node--type-content-block > .striped-container-wrapper > .flexItemText a, .node--type-principal-investigator .research-topics--landing .node--type-content-block > .striped-container-wrapper > .flexItemText a, .research-topics--landing .node--type-principal-investigator .node--type-content-block > .striped-container > .flexItemText a, .node--type-principal-investigator .research-topics--landing .node--type-content-block > .striped-container > .flexItemText a, .research-topics--landing .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-content-block > article > .flexItemText a, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .research-topics--landing .node--type-content-block > article > .flexItemText a,
.research-topics--landing .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-content-block > article > .flexItemText a,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .research-topics--landing .node--type-content-block > article > .flexItemText a, .research-topics--landing .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-content-block > .standard-teaser.node--view-mode-short-teaser > .flexItemText a, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .research-topics--landing .node--type-content-block > .standard-teaser.node--view-mode-short-teaser > .flexItemText a, .research-topics--landing .node--type-content-block > .field--name-field-awards > .flexItemText a, .research-topics--landing .node--type-content-block > .registerSocialContainer > .flexItemText a, .research-topics--landing .node--type-content-block > .eventdatesLocationType > .flexItemText a, .research-topics--landing .node--type-content-block > .news-article-container > .flexItemText a, .research-topics--landing .node--type-content-block > .node--type-feature-article.node--view-mode-press-release-teaser > .flexItemText a,
.research-topics--landing .node--type-content-block > .node--type-press-release.node--view-mode-press-release-teaser > .flexItemText a,
.research-topics--landing .node--type-content-block > .node--type-events.node--view-mode-press-release-teaser > .flexItemText a,
.research-topics--landing .node--type-content-block > .node--type-feature-article.node--view-mode-hp-press-release-teaser > .flexItemText a,
.research-topics--landing .node--type-content-block > .node--type-press-release.node--view-mode-hp-press-release-teaser > .flexItemText a,
.research-topics--landing .node--type-content-block > .node--type-events.node--view-mode-hp-press-release-teaser > .flexItemText a,
.research-topics--landing .node--type-content-block > .node--type-news-mention.node--view-mode-hp-press-release-teaser > .flexItemText a, .research-topics--landing .node--type-content-block > .news-header-container > .flexItemText a, .research-topics--landing .contacts-container .node--type-content-block > .field--name-field-contacts > .flexItemText a, .contacts-container .research-topics--landing .node--type-content-block > .field--name-field-contacts > .flexItemText a, .research-topics--landing .publicationsBox .node--type-content-block > .field--name-field-related-publications > .flexItemText a, .publicationsBox .research-topics--landing .node--type-content-block > .field--name-field-related-publications > .flexItemText a, .research-topics--landing .node--type-content-block > .field--name-field-primary-featured-item > .flexItemText a, .research-topics--landing .node--type-content-block > .field--name-field-additional-featured-items > .flexItemText a, .research-topics--landing .node--type-content-block > .homepage-health-topics-container > .flexItemText a, .research-topics--landing .node--type-content-block > .homepage-mission-areas-container > .flexItemText a, .research-topics--landing .node--type-content-block > .homepage-location-container > .flexItemText a, .research-topics--landing .node--type-content-block > .field--name-field-alumni > .flexItemText a, .research-topics--landing .node--type-nhlbi-publication.node--view-mode-full .node--type-content-block > .nhlbi-publication-details-container > .flexItemText a, .node--type-nhlbi-publication.node--view-mode-full .research-topics--landing .node--type-content-block > .nhlbi-publication-details-container > .flexItemText a,
.research-topics--landing .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-content-block > .nhlbi-publication-details-container > .flexItemText a,
.node--type-nhlbi-publication.node--view-mode-subscribe .research-topics--landing .node--type-content-block > .nhlbi-publication-details-container > .flexItemText a, .research-topics--landing .node--type-nhlbi-publication.node--view-mode-full .node--type-content-block > .field--name-field-related-nhlbi-publications > .flexItemText a, .node--type-nhlbi-publication.node--view-mode-full .research-topics--landing .node--type-content-block > .field--name-field-related-nhlbi-publications > .flexItemText a,
.research-topics--landing .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-content-block > .field--name-field-related-nhlbi-publications > .flexItemText a,
.node--type-nhlbi-publication.node--view-mode-subscribe .research-topics--landing .node--type-content-block > .field--name-field-related-nhlbi-publications > .flexItemText a, .research-topics--landing .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-content-block > .standard-teaser > .flexItemText a, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .research-topics--landing .node--type-content-block > .standard-teaser > .flexItemText a,
.research-topics--landing .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-content-block > .standard-teaser > .flexItemText a,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .research-topics--landing .node--type-content-block > .standard-teaser > .flexItemText a, .research-topics--landing .node--type-content-block > .flexcontainer > .flexItemText a:link, .research-topics--landing .node--type-content-block > .related-ht-ser-container > .flexItemText a:link, .research-topics--landing .node--type-content-block > .field--name-field-sfa-card > .flexItemText a:link, .research-topics--landing .node--type-content-block > .field--name-field-speaker > .flexItemText a:link,
.research-topics--landing .node--type-content-block > .field--name-field-executives > .flexItemText a:link, .research-topics--landing .node--type-content-block > .standard-card-field > .flexItemText a:link, .research-topics--landing .node--type-content-block > .field--name-field-advisory-committees > .flexItemText a:link, .research-topics--landing .node--type-content-block > .contact-nhlbi-titleblock > .flexItemText a:link, .research-topics--landing .node--type-content-block > .field--name-field-contact-cards > .flexItemText a:link, .research-topics--landing .node--type-content-block > .field--name-field-employment-opportunity-car > .flexItemText a:link, .research-topics--landing .node--type-content-block > .all-grants-foa-container > .flexItemText a:link,
.research-topics--landing .node--type-content-block > .field--name-field-program-officers > .flexItemText a:link,
.research-topics--landing .view-id-nhlbi_grants_foa.view-display-id-block_2.node--type-content-block > .view-content > .flexItemText a:link,
.research-topics--landing .view-id-nhlbi_grants_foa.view-display-id-block_3.node--type-content-block > .view-content > .flexItemText a:link, .research-topics--landing .node--type-individual-contact .node--type-content-block > .field--name-field-contact-methods > .flexItemText a:link, .node--type-individual-contact .research-topics--landing .node--type-content-block > .field--name-field-contact-methods > .flexItemText a:link,
.research-topics--landing .node--type-division.node--view-mode-full .node--type-content-block > .field--name-field-contact-methods > .flexItemText a:link,
.node--type-division.node--view-mode-full .research-topics--landing .node--type-content-block > .field--name-field-contact-methods > .flexItemText a:link,
.research-topics--landing .node--type-division.node--view-mode-subscribe .node--type-content-block > .field--name-field-contact-methods > .flexItemText a:link,
.node--type-division.node--view-mode-subscribe .research-topics--landing .node--type-content-block > .field--name-field-contact-methods > .flexItemText a:link,
.research-topics--landing .node--type-branch.node--view-mode-full .node--type-content-block > .field--name-field-contact-methods > .flexItemText a:link,
.node--type-branch.node--view-mode-full .research-topics--landing .node--type-content-block > .field--name-field-contact-methods > .flexItemText a:link,
.research-topics--landing .node--type-branch.node--view-mode-subscribe .node--type-content-block > .field--name-field-contact-methods > .flexItemText a:link,
.node--type-branch.node--view-mode-subscribe .research-topics--landing .node--type-content-block > .field--name-field-contact-methods > .flexItemText a:link,
.research-topics--landing .node--type-general.node--view-mode-full .node--type-content-block > .field--name-field-contact-methods > .flexItemText a:link,
.node--type-general.node--view-mode-full .research-topics--landing .node--type-content-block > .field--name-field-contact-methods > .flexItemText a:link,
.research-topics--landing .node--type-general.node--view-mode-subscribe .node--type-content-block > .field--name-field-contact-methods > .flexItemText a:link,
.node--type-general.node--view-mode-subscribe .research-topics--landing .node--type-content-block > .field--name-field-contact-methods > .flexItemText a:link,
.research-topics--landing .node--type-health-education-initiative.node--view-mode-full .node--type-content-block > .field--name-field-contact-methods > .flexItemText a:link,
.node--type-health-education-initiative.node--view-mode-full .research-topics--landing .node--type-content-block > .field--name-field-contact-methods > .flexItemText a:link,
.research-topics--landing .node--type-health-education-initiative.node--view-mode-subscribe .node--type-content-block > .field--name-field-contact-methods > .flexItemText a:link,
.node--type-health-education-initiative.node--view-mode-subscribe .research-topics--landing .node--type-content-block > .field--name-field-contact-methods > .flexItemText a:link, .research-topics--landing .node--type-committee .node--type-content-block > .field--name-field-card-text > .flexItemText a:link, .node--type-committee .research-topics--landing .node--type-content-block > .field--name-field-card-text > .flexItemText a:link, .research-topics--landing .news-and-events--landing .node--type-content-block > .landing-social > .flexItemText a:link, .news-and-events--landing .research-topics--landing .node--type-content-block > .landing-social > .flexItemText a:link, .research-topics--landing .node--type-content-block > .field--name-field-sfa-cards > .flexItemText a:link, .research-topics--landing .node--type-content-block > .locationMap.contact-location-map-container > .flexItemText a:link, .research-topics--landing .node--type-content-block > .locationMap > .flexItemText a:link, .research-topics--landing .node--type-content-block > .grants-and-training-card-wrapper > .flexItemText a:link, .research-topics--landing .node--type-content-block > .about-nhlbi-division-card-wrapper > .flexItemText a:link, .research-topics--landing .node--type-content-block > .hei-tools-icon-card-wrapper > .flexItemText a:link, .research-topics--landing .node--type-content-block > .field--name-field-grants-and-training-card > .flexItemText a:link, .research-topics--landing .node--type-content-block > .field--name-field-division-card > .flexItemText a:link, .research-topics--landing .node--type-content-block > .field--name-field-tool-icon-card > .flexItemText a:link, .research-topics--landing .node--type-content-block > .field--name-field-promotional-card > .flexItemText a:link, .research-topics--landing .node--type-content-block > .field--name-field-sv-promotional-cards > .flexItemText a:link, .research-topics--landing .node--type-content-block > .field--name-field-about-nhlbi-promotional-ca > .flexItemText a:link, .research-topics--landing .node--type-content-block > .strategic-vision-titleblock > .flexItemText a:link, .research-topics--landing .node--type-content-block > .ppg-titleblock-wrapper > .flexItemText a:link, .research-topics--landing .node--type-content-block > .ppg-guidelines-card-wrapper > .flexItemText a:link, .research-topics--landing .node--type-content-block > .field--name-field-human-subject-cards > .flexItemText a:link, .research-topics--landing .node--type-content-block > .field--name-field-section-card > .flexItemText a:link, .research-topics--landing .node--type-content-block > .field--name-field-highlight-card > .flexItemText a:link, .research-topics--landing .node--type-content-block > .health-topic-teaser-container > .flexItemText a:link, .research-topics--landing .node--type-content-block > .about-nhlbi-our-mission-wrapper > .flexItemText a:link, .research-topics--landing .about-nhlbi-our-mission-wrapper .field--name-field-leadership.node--type-content-block > .director-bioCard > .flexItemText a:link, .about-nhlbi-our-mission-wrapper .research-topics--landing .field--name-field-leadership.node--type-content-block > .director-bioCard > .flexItemText a:link, .research-topics--landing .nhlbi-publications-and-resources--landing .node--type-content-block > .field--name-field-health-consumer-nhlbi-publ > .flexItemText a:link, .nhlbi-publications-and-resources--landing .research-topics--landing .node--type-content-block > .field--name-field-health-consumer-nhlbi-publ > .flexItemText a:link,
.research-topics--landing .nhlbi-publications-and-resources--landing .node--type-content-block > .field--name-field-health-professionals-nhlbi > .flexItemText a:link,
.nhlbi-publications-and-resources--landing .research-topics--landing .node--type-content-block > .field--name-field-health-professionals-nhlbi > .flexItemText a:link, .research-topics--landing .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-content-block > .standard-teaser > .flexItemText a:link, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .research-topics--landing .node--type-content-block > .standard-teaser > .flexItemText a:link,
.research-topics--landing .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-content-block > .standard-teaser > .flexItemText a:link,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .research-topics--landing .node--type-content-block > .standard-teaser > .flexItemText a:link, .research-topics--landing .publicationsBlock.view-nhlbi-publications.node--type-content-block > .view-content > .flexItemText a:link,
.research-topics--landing .node--type-content-block > .field--name-field-related-publications > .flexItemText a:link, .research-topics--landing .healthEducationBlock .node--type-content-block > .standard-teaser > .flexItemText a:link, .healthEducationBlock .research-topics--landing .node--type-content-block > .standard-teaser > .flexItemText a:link, .research-topics--landing .systematicEvidenceReviewsBlock .node--type-content-block > .view-content > .flexItemText a:link, .systematicEvidenceReviewsBlock .research-topics--landing .node--type-content-block > .view-content > .flexItemText a:link,
.research-topics--landing .clinicalPracticeGuidelinesBlock .node--type-content-block > .view-content > .flexItemText a:link,
.clinicalPracticeGuidelinesBlock .research-topics--landing .node--type-content-block > .view-content > .flexItemText a:link,
.research-topics--landing .publicationsAndFactSheetsBlock .node--type-content-block > .view-content > .flexItemText a:link,
.publicationsAndFactSheetsBlock .research-topics--landing .node--type-content-block > .view-content > .flexItemText a:link, .research-topics--landing .node--type-content-block > .rtFlexContainer > .flexItemText a:link, .research-topics--landing .node--type-research-topic .node--type-content-block > .field--name-field-science-supplemental-page > .flexItemText a:link, .node--type-research-topic .research-topics--landing .node--type-content-block > .field--name-field-science-supplemental-page > .flexItemText a:link, .research-topics--landing .node--type-research-topic .node--type-content-block > .researchTopicPublications > .flexItemText a:link, .node--type-research-topic .research-topics--landing .node--type-content-block > .researchTopicPublications > .flexItemText a:link, .research-topics--landing .node--type-research-topic .field--name-field-content > .field__item .node--type-content-block > article.listTeaserCard > .flexItemText a:link, .node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block > article.listTeaserCard > .flexItemText a:link, .research-topics--landing .node--type-research-topic .field--name-field-content > .field__item .node--type-content-block > article.standard-teaser > .flexItemText a:link, .node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block > article.standard-teaser > .flexItemText a:link,
.research-topics--landing .node--type-research-topic .field--name-field-content > .field__item .node--type-content-block > article.newsEventsCard > .flexItemText a:link,
.node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block > article.newsEventsCard > .flexItemText a:link, .research-topics--landing .node--type-content-block > .esi-feature-card > .flexItemText a:link, .research-topics--landing .node--type-content-block > .featured-science-instance-teaser-container > .flexItemText a:link, .research-topics--landing .node--type-content-block > .sfa-teaser-container > .flexItemText a:link, .research-topics--landing .training-opportunity-card .node--type-content-block > .field--name-field-associated-people > .flexItemText a:link, .training-opportunity-card .research-topics--landing .node--type-content-block > .field--name-field-associated-people > .flexItemText a:link, .research-topics--landing .node--type-content-block > .field--name-field-featured-training-opportun > .flexItemText a:link, .research-topics--landing .node--type-content-block > .field--name-field-career-stages > .flexItemText a:link, .research-topics--landing .node--type-content-block > .field--name-field-workforce-development-card > .flexItemText a:link, .research-topics--landing .node--type-content-block > .node--type-update.node--view-mode-executive-teaser > .flexItemText a:link, .research-topics--landing .node--type-content-block > .news-and-events-titleblock > .flexItemText a:link, .research-topics--landing .contact-box.node--type-content-block > .field--name-field-contact-methods > .flexItemText a:link, .research-topics--landing .node--type-content-block > .leadership-container > .flexItemText a:link, .research-topics--landing .leadership-container .leadership-deputy-director-container .node--type-content-block > .field--name-field-additional-leadership > .flexItemText a:link, .leadership-container .leadership-deputy-director-container .research-topics--landing .node--type-content-block > .field--name-field-additional-leadership > .flexItemText a:link, .research-topics--landing .node--type-content-block > .branch-leadership-container > .flexItemText a:link, .research-topics--landing .branch-leadership-container .leadership-deputy-director-container .node--type-content-block > .field--name-field-additional-leadership > .flexItemText a:link, .branch-leadership-container .leadership-deputy-director-container .research-topics--landing .node--type-content-block > .field--name-field-additional-leadership > .flexItemText a:link, .research-topics--landing .node--type-general .node--type-content-block > .field--name-field-related-publications > .flexItemText a:link, .node--type-general .research-topics--landing .node--type-content-block > .field--name-field-related-publications > .flexItemText a:link, .research-topics--landing .node--type-general .node--type-content-block > .field--name-field-general-publications-rlt > .flexItemText a:link, .node--type-general .research-topics--landing .node--type-content-block > .field--name-field-general-publications-rlt > .flexItemText a:link, .research-topics--landing .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-content-block > .standard-teaser > .flexItemText a:link, .node--type-general .field--name-field-general-publications-rlt > .field__item .research-topics--landing .node--type-content-block > .standard-teaser > .flexItemText a:link, .research-topics--landing .node--type-general .field--name-field-related-publications > .field__item .node--type-content-block > .standard-teaser > .flexItemText a:link, .node--type-general .field--name-field-related-publications > .field__item .research-topics--landing .node--type-content-block > .standard-teaser > .flexItemText a:link, .research-topics--landing .node--type-content-block > .objective-text-container > .flexItemText a:link, .research-topics--landing .node--type-content-block > .objective-list-container > .flexItemText a:link, .research-topics--landing .node--type-content-block > .field--name-field-goal-card > .flexItemText a:link, .research-topics--landing .node--type-content-block > .strategic-vision-landing-goals-wrapper > .flexItemText a:link, .research-topics--landing .node--type-principal-investigator .node--type-content-block > .striped-container-wrapper > .flexItemText a:link, .node--type-principal-investigator .research-topics--landing .node--type-content-block > .striped-container-wrapper > .flexItemText a:link, .research-topics--landing .node--type-principal-investigator .node--type-content-block > .striped-container > .flexItemText a:link, .node--type-principal-investigator .research-topics--landing .node--type-content-block > .striped-container > .flexItemText a:link, .research-topics--landing .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-content-block > article > .flexItemText a:link, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .research-topics--landing .node--type-content-block > article > .flexItemText a:link,
.research-topics--landing .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-content-block > article > .flexItemText a:link,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .research-topics--landing .node--type-content-block > article > .flexItemText a:link, .research-topics--landing .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-content-block > .standard-teaser.node--view-mode-short-teaser > .flexItemText a:link, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .research-topics--landing .node--type-content-block > .standard-teaser.node--view-mode-short-teaser > .flexItemText a:link, .research-topics--landing .node--type-content-block > .field--name-field-awards > .flexItemText a:link, .research-topics--landing .node--type-content-block > .registerSocialContainer > .flexItemText a:link, .research-topics--landing .node--type-content-block > .eventdatesLocationType > .flexItemText a:link, .research-topics--landing .node--type-content-block > .news-article-container > .flexItemText a:link, .research-topics--landing .node--type-content-block > .node--type-feature-article.node--view-mode-press-release-teaser > .flexItemText a:link,
.research-topics--landing .node--type-content-block > .node--type-press-release.node--view-mode-press-release-teaser > .flexItemText a:link,
.research-topics--landing .node--type-content-block > .node--type-events.node--view-mode-press-release-teaser > .flexItemText a:link,
.research-topics--landing .node--type-content-block > .node--type-feature-article.node--view-mode-hp-press-release-teaser > .flexItemText a:link,
.research-topics--landing .node--type-content-block > .node--type-press-release.node--view-mode-hp-press-release-teaser > .flexItemText a:link,
.research-topics--landing .node--type-content-block > .node--type-events.node--view-mode-hp-press-release-teaser > .flexItemText a:link,
.research-topics--landing .node--type-content-block > .node--type-news-mention.node--view-mode-hp-press-release-teaser > .flexItemText a:link, .research-topics--landing .node--type-content-block > .news-header-container > .flexItemText a:link, .research-topics--landing .contacts-container .node--type-content-block > .field--name-field-contacts > .flexItemText a:link, .contacts-container .research-topics--landing .node--type-content-block > .field--name-field-contacts > .flexItemText a:link, .research-topics--landing .publicationsBox .node--type-content-block > .field--name-field-related-publications > .flexItemText a:link, .publicationsBox .research-topics--landing .node--type-content-block > .field--name-field-related-publications > .flexItemText a:link, .research-topics--landing .node--type-content-block > .field--name-field-primary-featured-item > .flexItemText a:link, .research-topics--landing .node--type-content-block > .field--name-field-additional-featured-items > .flexItemText a:link, .research-topics--landing .node--type-content-block > .homepage-health-topics-container > .flexItemText a:link, .research-topics--landing .node--type-content-block > .homepage-mission-areas-container > .flexItemText a:link, .research-topics--landing .node--type-content-block > .homepage-location-container > .flexItemText a:link, .research-topics--landing .node--type-content-block > .field--name-field-alumni > .flexItemText a:link, .research-topics--landing .node--type-nhlbi-publication.node--view-mode-full .node--type-content-block > .nhlbi-publication-details-container > .flexItemText a:link, .node--type-nhlbi-publication.node--view-mode-full .research-topics--landing .node--type-content-block > .nhlbi-publication-details-container > .flexItemText a:link,
.research-topics--landing .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-content-block > .nhlbi-publication-details-container > .flexItemText a:link,
.node--type-nhlbi-publication.node--view-mode-subscribe .research-topics--landing .node--type-content-block > .nhlbi-publication-details-container > .flexItemText a:link, .research-topics--landing .node--type-nhlbi-publication.node--view-mode-full .node--type-content-block > .field--name-field-related-nhlbi-publications > .flexItemText a:link, .node--type-nhlbi-publication.node--view-mode-full .research-topics--landing .node--type-content-block > .field--name-field-related-nhlbi-publications > .flexItemText a:link,
.research-topics--landing .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-content-block > .field--name-field-related-nhlbi-publications > .flexItemText a:link,
.node--type-nhlbi-publication.node--view-mode-subscribe .research-topics--landing .node--type-content-block > .field--name-field-related-nhlbi-publications > .flexItemText a:link, .research-topics--landing .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-content-block > .standard-teaser > .flexItemText a:link, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .research-topics--landing .node--type-content-block > .standard-teaser > .flexItemText a:link,
.research-topics--landing .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-content-block > .standard-teaser > .flexItemText a:link,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .research-topics--landing .node--type-content-block > .standard-teaser > .flexItemText a:link {
  color: #fff;
  text-decoration: underline;
}
/* line 132, ../sass/_mixins.scss */
.research-topics--landing .node--type-content-block > .flexcontainer > .flexItemText a:visited, .research-topics--landing .node--type-content-block > .related-ht-ser-container > .flexItemText a:visited, .research-topics--landing .node--type-content-block > .field--name-field-sfa-card > .flexItemText a:visited, .research-topics--landing .node--type-content-block > .field--name-field-speaker > .flexItemText a:visited,
.research-topics--landing .node--type-content-block > .field--name-field-executives > .flexItemText a:visited, .research-topics--landing .node--type-content-block > .standard-card-field > .flexItemText a:visited, .research-topics--landing .node--type-content-block > .field--name-field-advisory-committees > .flexItemText a:visited, .research-topics--landing .node--type-content-block > .contact-nhlbi-titleblock > .flexItemText a:visited, .research-topics--landing .node--type-content-block > .field--name-field-contact-cards > .flexItemText a:visited, .research-topics--landing .node--type-content-block > .field--name-field-employment-opportunity-car > .flexItemText a:visited, .research-topics--landing .node--type-content-block > .all-grants-foa-container > .flexItemText a:visited,
.research-topics--landing .node--type-content-block > .field--name-field-program-officers > .flexItemText a:visited,
.research-topics--landing .view-id-nhlbi_grants_foa.view-display-id-block_2.node--type-content-block > .view-content > .flexItemText a:visited,
.research-topics--landing .view-id-nhlbi_grants_foa.view-display-id-block_3.node--type-content-block > .view-content > .flexItemText a:visited, .research-topics--landing .node--type-individual-contact .node--type-content-block > .field--name-field-contact-methods > .flexItemText a:visited, .node--type-individual-contact .research-topics--landing .node--type-content-block > .field--name-field-contact-methods > .flexItemText a:visited,
.research-topics--landing .node--type-division.node--view-mode-full .node--type-content-block > .field--name-field-contact-methods > .flexItemText a:visited,
.node--type-division.node--view-mode-full .research-topics--landing .node--type-content-block > .field--name-field-contact-methods > .flexItemText a:visited,
.research-topics--landing .node--type-division.node--view-mode-subscribe .node--type-content-block > .field--name-field-contact-methods > .flexItemText a:visited,
.node--type-division.node--view-mode-subscribe .research-topics--landing .node--type-content-block > .field--name-field-contact-methods > .flexItemText a:visited,
.research-topics--landing .node--type-branch.node--view-mode-full .node--type-content-block > .field--name-field-contact-methods > .flexItemText a:visited,
.node--type-branch.node--view-mode-full .research-topics--landing .node--type-content-block > .field--name-field-contact-methods > .flexItemText a:visited,
.research-topics--landing .node--type-branch.node--view-mode-subscribe .node--type-content-block > .field--name-field-contact-methods > .flexItemText a:visited,
.node--type-branch.node--view-mode-subscribe .research-topics--landing .node--type-content-block > .field--name-field-contact-methods > .flexItemText a:visited,
.research-topics--landing .node--type-general.node--view-mode-full .node--type-content-block > .field--name-field-contact-methods > .flexItemText a:visited,
.node--type-general.node--view-mode-full .research-topics--landing .node--type-content-block > .field--name-field-contact-methods > .flexItemText a:visited,
.research-topics--landing .node--type-general.node--view-mode-subscribe .node--type-content-block > .field--name-field-contact-methods > .flexItemText a:visited,
.node--type-general.node--view-mode-subscribe .research-topics--landing .node--type-content-block > .field--name-field-contact-methods > .flexItemText a:visited,
.research-topics--landing .node--type-health-education-initiative.node--view-mode-full .node--type-content-block > .field--name-field-contact-methods > .flexItemText a:visited,
.node--type-health-education-initiative.node--view-mode-full .research-topics--landing .node--type-content-block > .field--name-field-contact-methods > .flexItemText a:visited,
.research-topics--landing .node--type-health-education-initiative.node--view-mode-subscribe .node--type-content-block > .field--name-field-contact-methods > .flexItemText a:visited,
.node--type-health-education-initiative.node--view-mode-subscribe .research-topics--landing .node--type-content-block > .field--name-field-contact-methods > .flexItemText a:visited, .research-topics--landing .node--type-committee .node--type-content-block > .field--name-field-card-text > .flexItemText a:visited, .node--type-committee .research-topics--landing .node--type-content-block > .field--name-field-card-text > .flexItemText a:visited, .research-topics--landing .news-and-events--landing .node--type-content-block > .landing-social > .flexItemText a:visited, .news-and-events--landing .research-topics--landing .node--type-content-block > .landing-social > .flexItemText a:visited, .research-topics--landing .node--type-content-block > .field--name-field-sfa-cards > .flexItemText a:visited, .research-topics--landing .node--type-content-block > .locationMap.contact-location-map-container > .flexItemText a:visited, .research-topics--landing .node--type-content-block > .locationMap > .flexItemText a:visited, .research-topics--landing .node--type-content-block > .grants-and-training-card-wrapper > .flexItemText a:visited, .research-topics--landing .node--type-content-block > .about-nhlbi-division-card-wrapper > .flexItemText a:visited, .research-topics--landing .node--type-content-block > .hei-tools-icon-card-wrapper > .flexItemText a:visited, .research-topics--landing .node--type-content-block > .field--name-field-grants-and-training-card > .flexItemText a:visited, .research-topics--landing .node--type-content-block > .field--name-field-division-card > .flexItemText a:visited, .research-topics--landing .node--type-content-block > .field--name-field-tool-icon-card > .flexItemText a:visited, .research-topics--landing .node--type-content-block > .field--name-field-promotional-card > .flexItemText a:visited, .research-topics--landing .node--type-content-block > .field--name-field-sv-promotional-cards > .flexItemText a:visited, .research-topics--landing .node--type-content-block > .field--name-field-about-nhlbi-promotional-ca > .flexItemText a:visited, .research-topics--landing .node--type-content-block > .strategic-vision-titleblock > .flexItemText a:visited, .research-topics--landing .node--type-content-block > .ppg-titleblock-wrapper > .flexItemText a:visited, .research-topics--landing .node--type-content-block > .ppg-guidelines-card-wrapper > .flexItemText a:visited, .research-topics--landing .node--type-content-block > .field--name-field-human-subject-cards > .flexItemText a:visited, .research-topics--landing .node--type-content-block > .field--name-field-section-card > .flexItemText a:visited, .research-topics--landing .node--type-content-block > .field--name-field-highlight-card > .flexItemText a:visited, .research-topics--landing .node--type-content-block > .health-topic-teaser-container > .flexItemText a:visited, .research-topics--landing .node--type-content-block > .about-nhlbi-our-mission-wrapper > .flexItemText a:visited, .research-topics--landing .about-nhlbi-our-mission-wrapper .field--name-field-leadership.node--type-content-block > .director-bioCard > .flexItemText a:visited, .about-nhlbi-our-mission-wrapper .research-topics--landing .field--name-field-leadership.node--type-content-block > .director-bioCard > .flexItemText a:visited, .research-topics--landing .nhlbi-publications-and-resources--landing .node--type-content-block > .field--name-field-health-consumer-nhlbi-publ > .flexItemText a:visited, .nhlbi-publications-and-resources--landing .research-topics--landing .node--type-content-block > .field--name-field-health-consumer-nhlbi-publ > .flexItemText a:visited,
.research-topics--landing .nhlbi-publications-and-resources--landing .node--type-content-block > .field--name-field-health-professionals-nhlbi > .flexItemText a:visited,
.nhlbi-publications-and-resources--landing .research-topics--landing .node--type-content-block > .field--name-field-health-professionals-nhlbi > .flexItemText a:visited, .research-topics--landing .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-content-block > .standard-teaser > .flexItemText a:visited, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .research-topics--landing .node--type-content-block > .standard-teaser > .flexItemText a:visited,
.research-topics--landing .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-content-block > .standard-teaser > .flexItemText a:visited,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .research-topics--landing .node--type-content-block > .standard-teaser > .flexItemText a:visited, .research-topics--landing .publicationsBlock.view-nhlbi-publications.node--type-content-block > .view-content > .flexItemText a:visited,
.research-topics--landing .node--type-content-block > .field--name-field-related-publications > .flexItemText a:visited, .research-topics--landing .healthEducationBlock .node--type-content-block > .standard-teaser > .flexItemText a:visited, .healthEducationBlock .research-topics--landing .node--type-content-block > .standard-teaser > .flexItemText a:visited, .research-topics--landing .systematicEvidenceReviewsBlock .node--type-content-block > .view-content > .flexItemText a:visited, .systematicEvidenceReviewsBlock .research-topics--landing .node--type-content-block > .view-content > .flexItemText a:visited,
.research-topics--landing .clinicalPracticeGuidelinesBlock .node--type-content-block > .view-content > .flexItemText a:visited,
.clinicalPracticeGuidelinesBlock .research-topics--landing .node--type-content-block > .view-content > .flexItemText a:visited,
.research-topics--landing .publicationsAndFactSheetsBlock .node--type-content-block > .view-content > .flexItemText a:visited,
.publicationsAndFactSheetsBlock .research-topics--landing .node--type-content-block > .view-content > .flexItemText a:visited, .research-topics--landing .node--type-content-block > .rtFlexContainer > .flexItemText a:visited, .research-topics--landing .node--type-research-topic .node--type-content-block > .field--name-field-science-supplemental-page > .flexItemText a:visited, .node--type-research-topic .research-topics--landing .node--type-content-block > .field--name-field-science-supplemental-page > .flexItemText a:visited, .research-topics--landing .node--type-research-topic .node--type-content-block > .researchTopicPublications > .flexItemText a:visited, .node--type-research-topic .research-topics--landing .node--type-content-block > .researchTopicPublications > .flexItemText a:visited, .research-topics--landing .node--type-research-topic .field--name-field-content > .field__item .node--type-content-block > article.listTeaserCard > .flexItemText a:visited, .node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block > article.listTeaserCard > .flexItemText a:visited, .research-topics--landing .node--type-research-topic .field--name-field-content > .field__item .node--type-content-block > article.standard-teaser > .flexItemText a:visited, .node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block > article.standard-teaser > .flexItemText a:visited,
.research-topics--landing .node--type-research-topic .field--name-field-content > .field__item .node--type-content-block > article.newsEventsCard > .flexItemText a:visited,
.node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block > article.newsEventsCard > .flexItemText a:visited, .research-topics--landing .node--type-content-block > .esi-feature-card > .flexItemText a:visited, .research-topics--landing .node--type-content-block > .featured-science-instance-teaser-container > .flexItemText a:visited, .research-topics--landing .node--type-content-block > .sfa-teaser-container > .flexItemText a:visited, .research-topics--landing .training-opportunity-card .node--type-content-block > .field--name-field-associated-people > .flexItemText a:visited, .training-opportunity-card .research-topics--landing .node--type-content-block > .field--name-field-associated-people > .flexItemText a:visited, .research-topics--landing .node--type-content-block > .field--name-field-featured-training-opportun > .flexItemText a:visited, .research-topics--landing .node--type-content-block > .field--name-field-career-stages > .flexItemText a:visited, .research-topics--landing .node--type-content-block > .field--name-field-workforce-development-card > .flexItemText a:visited, .research-topics--landing .node--type-content-block > .node--type-update.node--view-mode-executive-teaser > .flexItemText a:visited, .research-topics--landing .node--type-content-block > .news-and-events-titleblock > .flexItemText a:visited, .research-topics--landing .contact-box.node--type-content-block > .field--name-field-contact-methods > .flexItemText a:visited, .research-topics--landing .node--type-content-block > .leadership-container > .flexItemText a:visited, .research-topics--landing .leadership-container .leadership-deputy-director-container .node--type-content-block > .field--name-field-additional-leadership > .flexItemText a:visited, .leadership-container .leadership-deputy-director-container .research-topics--landing .node--type-content-block > .field--name-field-additional-leadership > .flexItemText a:visited, .research-topics--landing .node--type-content-block > .branch-leadership-container > .flexItemText a:visited, .research-topics--landing .branch-leadership-container .leadership-deputy-director-container .node--type-content-block > .field--name-field-additional-leadership > .flexItemText a:visited, .branch-leadership-container .leadership-deputy-director-container .research-topics--landing .node--type-content-block > .field--name-field-additional-leadership > .flexItemText a:visited, .research-topics--landing .node--type-general .node--type-content-block > .field--name-field-related-publications > .flexItemText a:visited, .node--type-general .research-topics--landing .node--type-content-block > .field--name-field-related-publications > .flexItemText a:visited, .research-topics--landing .node--type-general .node--type-content-block > .field--name-field-general-publications-rlt > .flexItemText a:visited, .node--type-general .research-topics--landing .node--type-content-block > .field--name-field-general-publications-rlt > .flexItemText a:visited, .research-topics--landing .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-content-block > .standard-teaser > .flexItemText a:visited, .node--type-general .field--name-field-general-publications-rlt > .field__item .research-topics--landing .node--type-content-block > .standard-teaser > .flexItemText a:visited, .research-topics--landing .node--type-general .field--name-field-related-publications > .field__item .node--type-content-block > .standard-teaser > .flexItemText a:visited, .node--type-general .field--name-field-related-publications > .field__item .research-topics--landing .node--type-content-block > .standard-teaser > .flexItemText a:visited, .research-topics--landing .node--type-content-block > .objective-text-container > .flexItemText a:visited, .research-topics--landing .node--type-content-block > .objective-list-container > .flexItemText a:visited, .research-topics--landing .node--type-content-block > .field--name-field-goal-card > .flexItemText a:visited, .research-topics--landing .node--type-content-block > .strategic-vision-landing-goals-wrapper > .flexItemText a:visited, .research-topics--landing .node--type-principal-investigator .node--type-content-block > .striped-container-wrapper > .flexItemText a:visited, .node--type-principal-investigator .research-topics--landing .node--type-content-block > .striped-container-wrapper > .flexItemText a:visited, .research-topics--landing .node--type-principal-investigator .node--type-content-block > .striped-container > .flexItemText a:visited, .node--type-principal-investigator .research-topics--landing .node--type-content-block > .striped-container > .flexItemText a:visited, .research-topics--landing .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-content-block > article > .flexItemText a:visited, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .research-topics--landing .node--type-content-block > article > .flexItemText a:visited,
.research-topics--landing .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-content-block > article > .flexItemText a:visited,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .research-topics--landing .node--type-content-block > article > .flexItemText a:visited, .research-topics--landing .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-content-block > .standard-teaser.node--view-mode-short-teaser > .flexItemText a:visited, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .research-topics--landing .node--type-content-block > .standard-teaser.node--view-mode-short-teaser > .flexItemText a:visited, .research-topics--landing .node--type-content-block > .field--name-field-awards > .flexItemText a:visited, .research-topics--landing .node--type-content-block > .registerSocialContainer > .flexItemText a:visited, .research-topics--landing .node--type-content-block > .eventdatesLocationType > .flexItemText a:visited, .research-topics--landing .node--type-content-block > .news-article-container > .flexItemText a:visited, .research-topics--landing .node--type-content-block > .node--type-feature-article.node--view-mode-press-release-teaser > .flexItemText a:visited,
.research-topics--landing .node--type-content-block > .node--type-press-release.node--view-mode-press-release-teaser > .flexItemText a:visited,
.research-topics--landing .node--type-content-block > .node--type-events.node--view-mode-press-release-teaser > .flexItemText a:visited,
.research-topics--landing .node--type-content-block > .node--type-feature-article.node--view-mode-hp-press-release-teaser > .flexItemText a:visited,
.research-topics--landing .node--type-content-block > .node--type-press-release.node--view-mode-hp-press-release-teaser > .flexItemText a:visited,
.research-topics--landing .node--type-content-block > .node--type-events.node--view-mode-hp-press-release-teaser > .flexItemText a:visited,
.research-topics--landing .node--type-content-block > .node--type-news-mention.node--view-mode-hp-press-release-teaser > .flexItemText a:visited, .research-topics--landing .node--type-content-block > .news-header-container > .flexItemText a:visited, .research-topics--landing .contacts-container .node--type-content-block > .field--name-field-contacts > .flexItemText a:visited, .contacts-container .research-topics--landing .node--type-content-block > .field--name-field-contacts > .flexItemText a:visited, .research-topics--landing .publicationsBox .node--type-content-block > .field--name-field-related-publications > .flexItemText a:visited, .publicationsBox .research-topics--landing .node--type-content-block > .field--name-field-related-publications > .flexItemText a:visited, .research-topics--landing .node--type-content-block > .field--name-field-primary-featured-item > .flexItemText a:visited, .research-topics--landing .node--type-content-block > .field--name-field-additional-featured-items > .flexItemText a:visited, .research-topics--landing .node--type-content-block > .homepage-health-topics-container > .flexItemText a:visited, .research-topics--landing .node--type-content-block > .homepage-mission-areas-container > .flexItemText a:visited, .research-topics--landing .node--type-content-block > .homepage-location-container > .flexItemText a:visited, .research-topics--landing .node--type-content-block > .field--name-field-alumni > .flexItemText a:visited, .research-topics--landing .node--type-nhlbi-publication.node--view-mode-full .node--type-content-block > .nhlbi-publication-details-container > .flexItemText a:visited, .node--type-nhlbi-publication.node--view-mode-full .research-topics--landing .node--type-content-block > .nhlbi-publication-details-container > .flexItemText a:visited,
.research-topics--landing .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-content-block > .nhlbi-publication-details-container > .flexItemText a:visited,
.node--type-nhlbi-publication.node--view-mode-subscribe .research-topics--landing .node--type-content-block > .nhlbi-publication-details-container > .flexItemText a:visited, .research-topics--landing .node--type-nhlbi-publication.node--view-mode-full .node--type-content-block > .field--name-field-related-nhlbi-publications > .flexItemText a:visited, .node--type-nhlbi-publication.node--view-mode-full .research-topics--landing .node--type-content-block > .field--name-field-related-nhlbi-publications > .flexItemText a:visited,
.research-topics--landing .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-content-block > .field--name-field-related-nhlbi-publications > .flexItemText a:visited,
.node--type-nhlbi-publication.node--view-mode-subscribe .research-topics--landing .node--type-content-block > .field--name-field-related-nhlbi-publications > .flexItemText a:visited, .research-topics--landing .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-content-block > .standard-teaser > .flexItemText a:visited, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .research-topics--landing .node--type-content-block > .standard-teaser > .flexItemText a:visited,
.research-topics--landing .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-content-block > .standard-teaser > .flexItemText a:visited,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .research-topics--landing .node--type-content-block > .standard-teaser > .flexItemText a:visited {
  color: #D7E7F4;
}
/* line 145, ../sass/_mixins.scss */
.research-topics--landing .node--type-content-block > .flexcontainer > .flexItemText a:hover, .research-topics--landing .node--type-content-block > .related-ht-ser-container > .flexItemText a:hover, .research-topics--landing .node--type-content-block > .field--name-field-sfa-card > .flexItemText a:hover, .research-topics--landing .node--type-content-block > .field--name-field-speaker > .flexItemText a:hover,
.research-topics--landing .node--type-content-block > .field--name-field-executives > .flexItemText a:hover, .research-topics--landing .node--type-content-block > .standard-card-field > .flexItemText a:hover, .research-topics--landing .node--type-content-block > .field--name-field-advisory-committees > .flexItemText a:hover, .research-topics--landing .node--type-content-block > .contact-nhlbi-titleblock > .flexItemText a:hover, .research-topics--landing .node--type-content-block > .field--name-field-contact-cards > .flexItemText a:hover, .research-topics--landing .node--type-content-block > .field--name-field-employment-opportunity-car > .flexItemText a:hover, .research-topics--landing .node--type-content-block > .all-grants-foa-container > .flexItemText a:hover,
.research-topics--landing .node--type-content-block > .field--name-field-program-officers > .flexItemText a:hover,
.research-topics--landing .view-id-nhlbi_grants_foa.view-display-id-block_2.node--type-content-block > .view-content > .flexItemText a:hover,
.research-topics--landing .view-id-nhlbi_grants_foa.view-display-id-block_3.node--type-content-block > .view-content > .flexItemText a:hover, .research-topics--landing .node--type-individual-contact .node--type-content-block > .field--name-field-contact-methods > .flexItemText a:hover, .node--type-individual-contact .research-topics--landing .node--type-content-block > .field--name-field-contact-methods > .flexItemText a:hover,
.research-topics--landing .node--type-division.node--view-mode-full .node--type-content-block > .field--name-field-contact-methods > .flexItemText a:hover,
.node--type-division.node--view-mode-full .research-topics--landing .node--type-content-block > .field--name-field-contact-methods > .flexItemText a:hover,
.research-topics--landing .node--type-division.node--view-mode-subscribe .node--type-content-block > .field--name-field-contact-methods > .flexItemText a:hover,
.node--type-division.node--view-mode-subscribe .research-topics--landing .node--type-content-block > .field--name-field-contact-methods > .flexItemText a:hover,
.research-topics--landing .node--type-branch.node--view-mode-full .node--type-content-block > .field--name-field-contact-methods > .flexItemText a:hover,
.node--type-branch.node--view-mode-full .research-topics--landing .node--type-content-block > .field--name-field-contact-methods > .flexItemText a:hover,
.research-topics--landing .node--type-branch.node--view-mode-subscribe .node--type-content-block > .field--name-field-contact-methods > .flexItemText a:hover,
.node--type-branch.node--view-mode-subscribe .research-topics--landing .node--type-content-block > .field--name-field-contact-methods > .flexItemText a:hover,
.research-topics--landing .node--type-general.node--view-mode-full .node--type-content-block > .field--name-field-contact-methods > .flexItemText a:hover,
.node--type-general.node--view-mode-full .research-topics--landing .node--type-content-block > .field--name-field-contact-methods > .flexItemText a:hover,
.research-topics--landing .node--type-general.node--view-mode-subscribe .node--type-content-block > .field--name-field-contact-methods > .flexItemText a:hover,
.node--type-general.node--view-mode-subscribe .research-topics--landing .node--type-content-block > .field--name-field-contact-methods > .flexItemText a:hover,
.research-topics--landing .node--type-health-education-initiative.node--view-mode-full .node--type-content-block > .field--name-field-contact-methods > .flexItemText a:hover,
.node--type-health-education-initiative.node--view-mode-full .research-topics--landing .node--type-content-block > .field--name-field-contact-methods > .flexItemText a:hover,
.research-topics--landing .node--type-health-education-initiative.node--view-mode-subscribe .node--type-content-block > .field--name-field-contact-methods > .flexItemText a:hover,
.node--type-health-education-initiative.node--view-mode-subscribe .research-topics--landing .node--type-content-block > .field--name-field-contact-methods > .flexItemText a:hover, .research-topics--landing .node--type-committee .node--type-content-block > .field--name-field-card-text > .flexItemText a:hover, .node--type-committee .research-topics--landing .node--type-content-block > .field--name-field-card-text > .flexItemText a:hover, .research-topics--landing .news-and-events--landing .node--type-content-block > .landing-social > .flexItemText a:hover, .news-and-events--landing .research-topics--landing .node--type-content-block > .landing-social > .flexItemText a:hover, .research-topics--landing .node--type-content-block > .field--name-field-sfa-cards > .flexItemText a:hover, .research-topics--landing .node--type-content-block > .locationMap.contact-location-map-container > .flexItemText a:hover, .research-topics--landing .node--type-content-block > .locationMap > .flexItemText a:hover, .research-topics--landing .node--type-content-block > .grants-and-training-card-wrapper > .flexItemText a:hover, .research-topics--landing .node--type-content-block > .about-nhlbi-division-card-wrapper > .flexItemText a:hover, .research-topics--landing .node--type-content-block > .hei-tools-icon-card-wrapper > .flexItemText a:hover, .research-topics--landing .node--type-content-block > .field--name-field-grants-and-training-card > .flexItemText a:hover, .research-topics--landing .node--type-content-block > .field--name-field-division-card > .flexItemText a:hover, .research-topics--landing .node--type-content-block > .field--name-field-tool-icon-card > .flexItemText a:hover, .research-topics--landing .node--type-content-block > .field--name-field-promotional-card > .flexItemText a:hover, .research-topics--landing .node--type-content-block > .field--name-field-sv-promotional-cards > .flexItemText a:hover, .research-topics--landing .node--type-content-block > .field--name-field-about-nhlbi-promotional-ca > .flexItemText a:hover, .research-topics--landing .node--type-content-block > .strategic-vision-titleblock > .flexItemText a:hover, .research-topics--landing .node--type-content-block > .ppg-titleblock-wrapper > .flexItemText a:hover, .research-topics--landing .node--type-content-block > .ppg-guidelines-card-wrapper > .flexItemText a:hover, .research-topics--landing .node--type-content-block > .field--name-field-human-subject-cards > .flexItemText a:hover, .research-topics--landing .node--type-content-block > .field--name-field-section-card > .flexItemText a:hover, .research-topics--landing .node--type-content-block > .field--name-field-highlight-card > .flexItemText a:hover, .research-topics--landing .node--type-content-block > .health-topic-teaser-container > .flexItemText a:hover, .research-topics--landing .node--type-content-block > .about-nhlbi-our-mission-wrapper > .flexItemText a:hover, .research-topics--landing .about-nhlbi-our-mission-wrapper .field--name-field-leadership.node--type-content-block > .director-bioCard > .flexItemText a:hover, .about-nhlbi-our-mission-wrapper .research-topics--landing .field--name-field-leadership.node--type-content-block > .director-bioCard > .flexItemText a:hover, .research-topics--landing .nhlbi-publications-and-resources--landing .node--type-content-block > .field--name-field-health-consumer-nhlbi-publ > .flexItemText a:hover, .nhlbi-publications-and-resources--landing .research-topics--landing .node--type-content-block > .field--name-field-health-consumer-nhlbi-publ > .flexItemText a:hover,
.research-topics--landing .nhlbi-publications-and-resources--landing .node--type-content-block > .field--name-field-health-professionals-nhlbi > .flexItemText a:hover,
.nhlbi-publications-and-resources--landing .research-topics--landing .node--type-content-block > .field--name-field-health-professionals-nhlbi > .flexItemText a:hover, .research-topics--landing .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-content-block > .standard-teaser > .flexItemText a:hover, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .research-topics--landing .node--type-content-block > .standard-teaser > .flexItemText a:hover,
.research-topics--landing .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-content-block > .standard-teaser > .flexItemText a:hover,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .research-topics--landing .node--type-content-block > .standard-teaser > .flexItemText a:hover, .research-topics--landing .publicationsBlock.view-nhlbi-publications.node--type-content-block > .view-content > .flexItemText a:hover,
.research-topics--landing .node--type-content-block > .field--name-field-related-publications > .flexItemText a:hover, .research-topics--landing .healthEducationBlock .node--type-content-block > .standard-teaser > .flexItemText a:hover, .healthEducationBlock .research-topics--landing .node--type-content-block > .standard-teaser > .flexItemText a:hover, .research-topics--landing .systematicEvidenceReviewsBlock .node--type-content-block > .view-content > .flexItemText a:hover, .systematicEvidenceReviewsBlock .research-topics--landing .node--type-content-block > .view-content > .flexItemText a:hover,
.research-topics--landing .clinicalPracticeGuidelinesBlock .node--type-content-block > .view-content > .flexItemText a:hover,
.clinicalPracticeGuidelinesBlock .research-topics--landing .node--type-content-block > .view-content > .flexItemText a:hover,
.research-topics--landing .publicationsAndFactSheetsBlock .node--type-content-block > .view-content > .flexItemText a:hover,
.publicationsAndFactSheetsBlock .research-topics--landing .node--type-content-block > .view-content > .flexItemText a:hover, .research-topics--landing .node--type-content-block > .rtFlexContainer > .flexItemText a:hover, .research-topics--landing .node--type-research-topic .node--type-content-block > .field--name-field-science-supplemental-page > .flexItemText a:hover, .node--type-research-topic .research-topics--landing .node--type-content-block > .field--name-field-science-supplemental-page > .flexItemText a:hover, .research-topics--landing .node--type-research-topic .node--type-content-block > .researchTopicPublications > .flexItemText a:hover, .node--type-research-topic .research-topics--landing .node--type-content-block > .researchTopicPublications > .flexItemText a:hover, .research-topics--landing .node--type-research-topic .field--name-field-content > .field__item .node--type-content-block > article.listTeaserCard > .flexItemText a:hover, .node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block > article.listTeaserCard > .flexItemText a:hover, .research-topics--landing .node--type-research-topic .field--name-field-content > .field__item .node--type-content-block > article.standard-teaser > .flexItemText a:hover, .node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block > article.standard-teaser > .flexItemText a:hover,
.research-topics--landing .node--type-research-topic .field--name-field-content > .field__item .node--type-content-block > article.newsEventsCard > .flexItemText a:hover,
.node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block > article.newsEventsCard > .flexItemText a:hover, .research-topics--landing .node--type-content-block > .esi-feature-card > .flexItemText a:hover, .research-topics--landing .node--type-content-block > .featured-science-instance-teaser-container > .flexItemText a:hover, .research-topics--landing .node--type-content-block > .sfa-teaser-container > .flexItemText a:hover, .research-topics--landing .training-opportunity-card .node--type-content-block > .field--name-field-associated-people > .flexItemText a:hover, .training-opportunity-card .research-topics--landing .node--type-content-block > .field--name-field-associated-people > .flexItemText a:hover, .research-topics--landing .node--type-content-block > .field--name-field-featured-training-opportun > .flexItemText a:hover, .research-topics--landing .node--type-content-block > .field--name-field-career-stages > .flexItemText a:hover, .research-topics--landing .node--type-content-block > .field--name-field-workforce-development-card > .flexItemText a:hover, .research-topics--landing .node--type-content-block > .node--type-update.node--view-mode-executive-teaser > .flexItemText a:hover, .research-topics--landing .node--type-content-block > .news-and-events-titleblock > .flexItemText a:hover, .research-topics--landing .contact-box.node--type-content-block > .field--name-field-contact-methods > .flexItemText a:hover, .research-topics--landing .node--type-content-block > .leadership-container > .flexItemText a:hover, .research-topics--landing .leadership-container .leadership-deputy-director-container .node--type-content-block > .field--name-field-additional-leadership > .flexItemText a:hover, .leadership-container .leadership-deputy-director-container .research-topics--landing .node--type-content-block > .field--name-field-additional-leadership > .flexItemText a:hover, .research-topics--landing .node--type-content-block > .branch-leadership-container > .flexItemText a:hover, .research-topics--landing .branch-leadership-container .leadership-deputy-director-container .node--type-content-block > .field--name-field-additional-leadership > .flexItemText a:hover, .branch-leadership-container .leadership-deputy-director-container .research-topics--landing .node--type-content-block > .field--name-field-additional-leadership > .flexItemText a:hover, .research-topics--landing .node--type-general .node--type-content-block > .field--name-field-related-publications > .flexItemText a:hover, .node--type-general .research-topics--landing .node--type-content-block > .field--name-field-related-publications > .flexItemText a:hover, .research-topics--landing .node--type-general .node--type-content-block > .field--name-field-general-publications-rlt > .flexItemText a:hover, .node--type-general .research-topics--landing .node--type-content-block > .field--name-field-general-publications-rlt > .flexItemText a:hover, .research-topics--landing .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-content-block > .standard-teaser > .flexItemText a:hover, .node--type-general .field--name-field-general-publications-rlt > .field__item .research-topics--landing .node--type-content-block > .standard-teaser > .flexItemText a:hover, .research-topics--landing .node--type-general .field--name-field-related-publications > .field__item .node--type-content-block > .standard-teaser > .flexItemText a:hover, .node--type-general .field--name-field-related-publications > .field__item .research-topics--landing .node--type-content-block > .standard-teaser > .flexItemText a:hover, .research-topics--landing .node--type-content-block > .objective-text-container > .flexItemText a:hover, .research-topics--landing .node--type-content-block > .objective-list-container > .flexItemText a:hover, .research-topics--landing .node--type-content-block > .field--name-field-goal-card > .flexItemText a:hover, .research-topics--landing .node--type-content-block > .strategic-vision-landing-goals-wrapper > .flexItemText a:hover, .research-topics--landing .node--type-principal-investigator .node--type-content-block > .striped-container-wrapper > .flexItemText a:hover, .node--type-principal-investigator .research-topics--landing .node--type-content-block > .striped-container-wrapper > .flexItemText a:hover, .research-topics--landing .node--type-principal-investigator .node--type-content-block > .striped-container > .flexItemText a:hover, .node--type-principal-investigator .research-topics--landing .node--type-content-block > .striped-container > .flexItemText a:hover, .research-topics--landing .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-content-block > article > .flexItemText a:hover, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .research-topics--landing .node--type-content-block > article > .flexItemText a:hover,
.research-topics--landing .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-content-block > article > .flexItemText a:hover,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .research-topics--landing .node--type-content-block > article > .flexItemText a:hover, .research-topics--landing .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-content-block > .standard-teaser.node--view-mode-short-teaser > .flexItemText a:hover, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .research-topics--landing .node--type-content-block > .standard-teaser.node--view-mode-short-teaser > .flexItemText a:hover, .research-topics--landing .node--type-content-block > .field--name-field-awards > .flexItemText a:hover, .research-topics--landing .node--type-content-block > .registerSocialContainer > .flexItemText a:hover, .research-topics--landing .node--type-content-block > .eventdatesLocationType > .flexItemText a:hover, .research-topics--landing .node--type-content-block > .news-article-container > .flexItemText a:hover, .research-topics--landing .node--type-content-block > .node--type-feature-article.node--view-mode-press-release-teaser > .flexItemText a:hover,
.research-topics--landing .node--type-content-block > .node--type-press-release.node--view-mode-press-release-teaser > .flexItemText a:hover,
.research-topics--landing .node--type-content-block > .node--type-events.node--view-mode-press-release-teaser > .flexItemText a:hover,
.research-topics--landing .node--type-content-block > .node--type-feature-article.node--view-mode-hp-press-release-teaser > .flexItemText a:hover,
.research-topics--landing .node--type-content-block > .node--type-press-release.node--view-mode-hp-press-release-teaser > .flexItemText a:hover,
.research-topics--landing .node--type-content-block > .node--type-events.node--view-mode-hp-press-release-teaser > .flexItemText a:hover,
.research-topics--landing .node--type-content-block > .node--type-news-mention.node--view-mode-hp-press-release-teaser > .flexItemText a:hover, .research-topics--landing .node--type-content-block > .news-header-container > .flexItemText a:hover, .research-topics--landing .contacts-container .node--type-content-block > .field--name-field-contacts > .flexItemText a:hover, .contacts-container .research-topics--landing .node--type-content-block > .field--name-field-contacts > .flexItemText a:hover, .research-topics--landing .publicationsBox .node--type-content-block > .field--name-field-related-publications > .flexItemText a:hover, .publicationsBox .research-topics--landing .node--type-content-block > .field--name-field-related-publications > .flexItemText a:hover, .research-topics--landing .node--type-content-block > .field--name-field-primary-featured-item > .flexItemText a:hover, .research-topics--landing .node--type-content-block > .field--name-field-additional-featured-items > .flexItemText a:hover, .research-topics--landing .node--type-content-block > .homepage-health-topics-container > .flexItemText a:hover, .research-topics--landing .node--type-content-block > .homepage-mission-areas-container > .flexItemText a:hover, .research-topics--landing .node--type-content-block > .homepage-location-container > .flexItemText a:hover, .research-topics--landing .node--type-content-block > .field--name-field-alumni > .flexItemText a:hover, .research-topics--landing .node--type-nhlbi-publication.node--view-mode-full .node--type-content-block > .nhlbi-publication-details-container > .flexItemText a:hover, .node--type-nhlbi-publication.node--view-mode-full .research-topics--landing .node--type-content-block > .nhlbi-publication-details-container > .flexItemText a:hover,
.research-topics--landing .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-content-block > .nhlbi-publication-details-container > .flexItemText a:hover,
.node--type-nhlbi-publication.node--view-mode-subscribe .research-topics--landing .node--type-content-block > .nhlbi-publication-details-container > .flexItemText a:hover, .research-topics--landing .node--type-nhlbi-publication.node--view-mode-full .node--type-content-block > .field--name-field-related-nhlbi-publications > .flexItemText a:hover, .node--type-nhlbi-publication.node--view-mode-full .research-topics--landing .node--type-content-block > .field--name-field-related-nhlbi-publications > .flexItemText a:hover,
.research-topics--landing .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-content-block > .field--name-field-related-nhlbi-publications > .flexItemText a:hover,
.node--type-nhlbi-publication.node--view-mode-subscribe .research-topics--landing .node--type-content-block > .field--name-field-related-nhlbi-publications > .flexItemText a:hover, .research-topics--landing .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-content-block > .standard-teaser > .flexItemText a:hover, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .research-topics--landing .node--type-content-block > .standard-teaser > .flexItemText a:hover,
.research-topics--landing .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-content-block > .standard-teaser > .flexItemText a:hover,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .research-topics--landing .node--type-content-block > .standard-teaser > .flexItemText a:hover {
  font-weight: bold;
}
/* line 154, ../sass/_mixins.scss */
.research-topics--landing .node--type-content-block > .flexcontainer > .flexItemText h1, .research-topics--landing .node--type-content-block > .related-ht-ser-container > .flexItemText h1, .research-topics--landing .node--type-content-block > .field--name-field-sfa-card > .flexItemText h1, .research-topics--landing .node--type-content-block > .field--name-field-speaker > .flexItemText h1,
.research-topics--landing .node--type-content-block > .field--name-field-executives > .flexItemText h1, .research-topics--landing .node--type-content-block > .standard-card-field > .flexItemText h1, .research-topics--landing .node--type-content-block > .field--name-field-advisory-committees > .flexItemText h1, .research-topics--landing .node--type-content-block > .contact-nhlbi-titleblock > .flexItemText h1, .research-topics--landing .node--type-content-block > .field--name-field-contact-cards > .flexItemText h1, .research-topics--landing .node--type-content-block > .field--name-field-employment-opportunity-car > .flexItemText h1, .research-topics--landing .node--type-content-block > .all-grants-foa-container > .flexItemText h1,
.research-topics--landing .node--type-content-block > .field--name-field-program-officers > .flexItemText h1,
.research-topics--landing .view-id-nhlbi_grants_foa.view-display-id-block_2.node--type-content-block > .view-content > .flexItemText h1,
.research-topics--landing .view-id-nhlbi_grants_foa.view-display-id-block_3.node--type-content-block > .view-content > .flexItemText h1, .research-topics--landing .node--type-individual-contact .node--type-content-block > .field--name-field-contact-methods > .flexItemText h1, .node--type-individual-contact .research-topics--landing .node--type-content-block > .field--name-field-contact-methods > .flexItemText h1,
.research-topics--landing .node--type-division.node--view-mode-full .node--type-content-block > .field--name-field-contact-methods > .flexItemText h1,
.node--type-division.node--view-mode-full .research-topics--landing .node--type-content-block > .field--name-field-contact-methods > .flexItemText h1,
.research-topics--landing .node--type-division.node--view-mode-subscribe .node--type-content-block > .field--name-field-contact-methods > .flexItemText h1,
.node--type-division.node--view-mode-subscribe .research-topics--landing .node--type-content-block > .field--name-field-contact-methods > .flexItemText h1,
.research-topics--landing .node--type-branch.node--view-mode-full .node--type-content-block > .field--name-field-contact-methods > .flexItemText h1,
.node--type-branch.node--view-mode-full .research-topics--landing .node--type-content-block > .field--name-field-contact-methods > .flexItemText h1,
.research-topics--landing .node--type-branch.node--view-mode-subscribe .node--type-content-block > .field--name-field-contact-methods > .flexItemText h1,
.node--type-branch.node--view-mode-subscribe .research-topics--landing .node--type-content-block > .field--name-field-contact-methods > .flexItemText h1,
.research-topics--landing .node--type-general.node--view-mode-full .node--type-content-block > .field--name-field-contact-methods > .flexItemText h1,
.node--type-general.node--view-mode-full .research-topics--landing .node--type-content-block > .field--name-field-contact-methods > .flexItemText h1,
.research-topics--landing .node--type-general.node--view-mode-subscribe .node--type-content-block > .field--name-field-contact-methods > .flexItemText h1,
.node--type-general.node--view-mode-subscribe .research-topics--landing .node--type-content-block > .field--name-field-contact-methods > .flexItemText h1,
.research-topics--landing .node--type-health-education-initiative.node--view-mode-full .node--type-content-block > .field--name-field-contact-methods > .flexItemText h1,
.node--type-health-education-initiative.node--view-mode-full .research-topics--landing .node--type-content-block > .field--name-field-contact-methods > .flexItemText h1,
.research-topics--landing .node--type-health-education-initiative.node--view-mode-subscribe .node--type-content-block > .field--name-field-contact-methods > .flexItemText h1,
.node--type-health-education-initiative.node--view-mode-subscribe .research-topics--landing .node--type-content-block > .field--name-field-contact-methods > .flexItemText h1, .research-topics--landing .node--type-committee .node--type-content-block > .field--name-field-card-text > .flexItemText h1, .node--type-committee .research-topics--landing .node--type-content-block > .field--name-field-card-text > .flexItemText h1, .research-topics--landing .news-and-events--landing .node--type-content-block > .landing-social > .flexItemText h1, .news-and-events--landing .research-topics--landing .node--type-content-block > .landing-social > .flexItemText h1, .research-topics--landing .node--type-content-block > .field--name-field-sfa-cards > .flexItemText h1, .research-topics--landing .node--type-content-block > .locationMap.contact-location-map-container > .flexItemText h1, .research-topics--landing .node--type-content-block > .locationMap > .flexItemText h1, .research-topics--landing .node--type-content-block > .grants-and-training-card-wrapper > .flexItemText h1, .research-topics--landing .node--type-content-block > .about-nhlbi-division-card-wrapper > .flexItemText h1, .research-topics--landing .node--type-content-block > .hei-tools-icon-card-wrapper > .flexItemText h1, .research-topics--landing .node--type-content-block > .field--name-field-grants-and-training-card > .flexItemText h1, .research-topics--landing .node--type-content-block > .field--name-field-division-card > .flexItemText h1, .research-topics--landing .node--type-content-block > .field--name-field-tool-icon-card > .flexItemText h1, .research-topics--landing .node--type-content-block > .field--name-field-promotional-card > .flexItemText h1, .research-topics--landing .node--type-content-block > .field--name-field-sv-promotional-cards > .flexItemText h1, .research-topics--landing .node--type-content-block > .field--name-field-about-nhlbi-promotional-ca > .flexItemText h1, .research-topics--landing .node--type-content-block > .strategic-vision-titleblock > .flexItemText h1, .research-topics--landing .node--type-content-block > .ppg-titleblock-wrapper > .flexItemText h1, .research-topics--landing .node--type-content-block > .ppg-guidelines-card-wrapper > .flexItemText h1, .research-topics--landing .node--type-content-block > .field--name-field-human-subject-cards > .flexItemText h1, .research-topics--landing .node--type-content-block > .field--name-field-section-card > .flexItemText h1, .research-topics--landing .node--type-content-block > .field--name-field-highlight-card > .flexItemText h1, .research-topics--landing .node--type-content-block > .health-topic-teaser-container > .flexItemText h1, .research-topics--landing .node--type-content-block > .about-nhlbi-our-mission-wrapper > .flexItemText h1, .research-topics--landing .about-nhlbi-our-mission-wrapper .field--name-field-leadership.node--type-content-block > .director-bioCard > .flexItemText h1, .about-nhlbi-our-mission-wrapper .research-topics--landing .field--name-field-leadership.node--type-content-block > .director-bioCard > .flexItemText h1, .research-topics--landing .nhlbi-publications-and-resources--landing .node--type-content-block > .field--name-field-health-consumer-nhlbi-publ > .flexItemText h1, .nhlbi-publications-and-resources--landing .research-topics--landing .node--type-content-block > .field--name-field-health-consumer-nhlbi-publ > .flexItemText h1,
.research-topics--landing .nhlbi-publications-and-resources--landing .node--type-content-block > .field--name-field-health-professionals-nhlbi > .flexItemText h1,
.nhlbi-publications-and-resources--landing .research-topics--landing .node--type-content-block > .field--name-field-health-professionals-nhlbi > .flexItemText h1, .research-topics--landing .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-content-block > .standard-teaser > .flexItemText h1, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .research-topics--landing .node--type-content-block > .standard-teaser > .flexItemText h1,
.research-topics--landing .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-content-block > .standard-teaser > .flexItemText h1,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .research-topics--landing .node--type-content-block > .standard-teaser > .flexItemText h1, .research-topics--landing .publicationsBlock.view-nhlbi-publications.node--type-content-block > .view-content > .flexItemText h1,
.research-topics--landing .node--type-content-block > .field--name-field-related-publications > .flexItemText h1, .research-topics--landing .healthEducationBlock .node--type-content-block > .standard-teaser > .flexItemText h1, .healthEducationBlock .research-topics--landing .node--type-content-block > .standard-teaser > .flexItemText h1, .research-topics--landing .systematicEvidenceReviewsBlock .node--type-content-block > .view-content > .flexItemText h1, .systematicEvidenceReviewsBlock .research-topics--landing .node--type-content-block > .view-content > .flexItemText h1,
.research-topics--landing .clinicalPracticeGuidelinesBlock .node--type-content-block > .view-content > .flexItemText h1,
.clinicalPracticeGuidelinesBlock .research-topics--landing .node--type-content-block > .view-content > .flexItemText h1,
.research-topics--landing .publicationsAndFactSheetsBlock .node--type-content-block > .view-content > .flexItemText h1,
.publicationsAndFactSheetsBlock .research-topics--landing .node--type-content-block > .view-content > .flexItemText h1, .research-topics--landing .node--type-content-block > .rtFlexContainer > .flexItemText h1, .research-topics--landing .node--type-research-topic .node--type-content-block > .field--name-field-science-supplemental-page > .flexItemText h1, .node--type-research-topic .research-topics--landing .node--type-content-block > .field--name-field-science-supplemental-page > .flexItemText h1, .research-topics--landing .node--type-research-topic .node--type-content-block > .researchTopicPublications > .flexItemText h1, .node--type-research-topic .research-topics--landing .node--type-content-block > .researchTopicPublications > .flexItemText h1, .research-topics--landing .node--type-research-topic .field--name-field-content > .field__item .node--type-content-block > article.listTeaserCard > .flexItemText h1, .node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block > article.listTeaserCard > .flexItemText h1, .research-topics--landing .node--type-research-topic .field--name-field-content > .field__item .node--type-content-block > article.standard-teaser > .flexItemText h1, .node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block > article.standard-teaser > .flexItemText h1,
.research-topics--landing .node--type-research-topic .field--name-field-content > .field__item .node--type-content-block > article.newsEventsCard > .flexItemText h1,
.node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block > article.newsEventsCard > .flexItemText h1, .research-topics--landing .node--type-content-block > .esi-feature-card > .flexItemText h1, .research-topics--landing .node--type-content-block > .featured-science-instance-teaser-container > .flexItemText h1, .research-topics--landing .node--type-content-block > .sfa-teaser-container > .flexItemText h1, .research-topics--landing .training-opportunity-card .node--type-content-block > .field--name-field-associated-people > .flexItemText h1, .training-opportunity-card .research-topics--landing .node--type-content-block > .field--name-field-associated-people > .flexItemText h1, .research-topics--landing .node--type-content-block > .field--name-field-featured-training-opportun > .flexItemText h1, .research-topics--landing .node--type-content-block > .field--name-field-career-stages > .flexItemText h1, .research-topics--landing .node--type-content-block > .field--name-field-workforce-development-card > .flexItemText h1, .research-topics--landing .node--type-content-block > .node--type-update.node--view-mode-executive-teaser > .flexItemText h1, .research-topics--landing .node--type-content-block > .news-and-events-titleblock > .flexItemText h1, .research-topics--landing .contact-box.node--type-content-block > .field--name-field-contact-methods > .flexItemText h1, .research-topics--landing .node--type-content-block > .leadership-container > .flexItemText h1, .research-topics--landing .leadership-container .leadership-deputy-director-container .node--type-content-block > .field--name-field-additional-leadership > .flexItemText h1, .leadership-container .leadership-deputy-director-container .research-topics--landing .node--type-content-block > .field--name-field-additional-leadership > .flexItemText h1, .research-topics--landing .node--type-content-block > .branch-leadership-container > .flexItemText h1, .research-topics--landing .branch-leadership-container .leadership-deputy-director-container .node--type-content-block > .field--name-field-additional-leadership > .flexItemText h1, .branch-leadership-container .leadership-deputy-director-container .research-topics--landing .node--type-content-block > .field--name-field-additional-leadership > .flexItemText h1, .research-topics--landing .node--type-general .node--type-content-block > .field--name-field-related-publications > .flexItemText h1, .node--type-general .research-topics--landing .node--type-content-block > .field--name-field-related-publications > .flexItemText h1, .research-topics--landing .node--type-general .node--type-content-block > .field--name-field-general-publications-rlt > .flexItemText h1, .node--type-general .research-topics--landing .node--type-content-block > .field--name-field-general-publications-rlt > .flexItemText h1, .research-topics--landing .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-content-block > .standard-teaser > .flexItemText h1, .node--type-general .field--name-field-general-publications-rlt > .field__item .research-topics--landing .node--type-content-block > .standard-teaser > .flexItemText h1, .research-topics--landing .node--type-general .field--name-field-related-publications > .field__item .node--type-content-block > .standard-teaser > .flexItemText h1, .node--type-general .field--name-field-related-publications > .field__item .research-topics--landing .node--type-content-block > .standard-teaser > .flexItemText h1, .research-topics--landing .node--type-content-block > .objective-text-container > .flexItemText h1, .research-topics--landing .node--type-content-block > .objective-list-container > .flexItemText h1, .research-topics--landing .node--type-content-block > .field--name-field-goal-card > .flexItemText h1, .research-topics--landing .node--type-content-block > .strategic-vision-landing-goals-wrapper > .flexItemText h1, .research-topics--landing .node--type-principal-investigator .node--type-content-block > .striped-container-wrapper > .flexItemText h1, .node--type-principal-investigator .research-topics--landing .node--type-content-block > .striped-container-wrapper > .flexItemText h1, .research-topics--landing .node--type-principal-investigator .node--type-content-block > .striped-container > .flexItemText h1, .node--type-principal-investigator .research-topics--landing .node--type-content-block > .striped-container > .flexItemText h1, .research-topics--landing .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-content-block > article > .flexItemText h1, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .research-topics--landing .node--type-content-block > article > .flexItemText h1,
.research-topics--landing .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-content-block > article > .flexItemText h1,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .research-topics--landing .node--type-content-block > article > .flexItemText h1, .research-topics--landing .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-content-block > .standard-teaser.node--view-mode-short-teaser > .flexItemText h1, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .research-topics--landing .node--type-content-block > .standard-teaser.node--view-mode-short-teaser > .flexItemText h1, .research-topics--landing .node--type-content-block > .field--name-field-awards > .flexItemText h1, .research-topics--landing .node--type-content-block > .registerSocialContainer > .flexItemText h1, .research-topics--landing .node--type-content-block > .eventdatesLocationType > .flexItemText h1, .research-topics--landing .node--type-content-block > .news-article-container > .flexItemText h1, .research-topics--landing .node--type-content-block > .node--type-feature-article.node--view-mode-press-release-teaser > .flexItemText h1,
.research-topics--landing .node--type-content-block > .node--type-press-release.node--view-mode-press-release-teaser > .flexItemText h1,
.research-topics--landing .node--type-content-block > .node--type-events.node--view-mode-press-release-teaser > .flexItemText h1,
.research-topics--landing .node--type-content-block > .node--type-feature-article.node--view-mode-hp-press-release-teaser > .flexItemText h1,
.research-topics--landing .node--type-content-block > .node--type-press-release.node--view-mode-hp-press-release-teaser > .flexItemText h1,
.research-topics--landing .node--type-content-block > .node--type-events.node--view-mode-hp-press-release-teaser > .flexItemText h1,
.research-topics--landing .node--type-content-block > .node--type-news-mention.node--view-mode-hp-press-release-teaser > .flexItemText h1, .research-topics--landing .node--type-content-block > .news-header-container > .flexItemText h1, .research-topics--landing .contacts-container .node--type-content-block > .field--name-field-contacts > .flexItemText h1, .contacts-container .research-topics--landing .node--type-content-block > .field--name-field-contacts > .flexItemText h1, .research-topics--landing .publicationsBox .node--type-content-block > .field--name-field-related-publications > .flexItemText h1, .publicationsBox .research-topics--landing .node--type-content-block > .field--name-field-related-publications > .flexItemText h1, .research-topics--landing .node--type-content-block > .field--name-field-primary-featured-item > .flexItemText h1, .research-topics--landing .node--type-content-block > .field--name-field-additional-featured-items > .flexItemText h1, .research-topics--landing .node--type-content-block > .homepage-health-topics-container > .flexItemText h1, .research-topics--landing .node--type-content-block > .homepage-mission-areas-container > .flexItemText h1, .research-topics--landing .node--type-content-block > .homepage-location-container > .flexItemText h1, .research-topics--landing .node--type-content-block > .field--name-field-alumni > .flexItemText h1, .research-topics--landing .node--type-nhlbi-publication.node--view-mode-full .node--type-content-block > .nhlbi-publication-details-container > .flexItemText h1, .node--type-nhlbi-publication.node--view-mode-full .research-topics--landing .node--type-content-block > .nhlbi-publication-details-container > .flexItemText h1,
.research-topics--landing .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-content-block > .nhlbi-publication-details-container > .flexItemText h1,
.node--type-nhlbi-publication.node--view-mode-subscribe .research-topics--landing .node--type-content-block > .nhlbi-publication-details-container > .flexItemText h1, .research-topics--landing .node--type-nhlbi-publication.node--view-mode-full .node--type-content-block > .field--name-field-related-nhlbi-publications > .flexItemText h1, .node--type-nhlbi-publication.node--view-mode-full .research-topics--landing .node--type-content-block > .field--name-field-related-nhlbi-publications > .flexItemText h1,
.research-topics--landing .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-content-block > .field--name-field-related-nhlbi-publications > .flexItemText h1,
.node--type-nhlbi-publication.node--view-mode-subscribe .research-topics--landing .node--type-content-block > .field--name-field-related-nhlbi-publications > .flexItemText h1, .research-topics--landing .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-content-block > .standard-teaser > .flexItemText h1, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .research-topics--landing .node--type-content-block > .standard-teaser > .flexItemText h1,
.research-topics--landing .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-content-block > .standard-teaser > .flexItemText h1,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .research-topics--landing .node--type-content-block > .standard-teaser > .flexItemText h1, .research-topics--landing .node--type-content-block > .flexcontainer > .flexItemText .photocredit, .research-topics--landing .node--type-content-block > .related-ht-ser-container > .flexItemText .photocredit, .research-topics--landing .node--type-content-block > .field--name-field-sfa-card > .flexItemText .photocredit, .research-topics--landing .node--type-content-block > .field--name-field-speaker > .flexItemText .photocredit,
.research-topics--landing .node--type-content-block > .field--name-field-executives > .flexItemText .photocredit, .research-topics--landing .node--type-content-block > .standard-card-field > .flexItemText .photocredit, .research-topics--landing .node--type-content-block > .field--name-field-advisory-committees > .flexItemText .photocredit, .research-topics--landing .node--type-content-block > .contact-nhlbi-titleblock > .flexItemText .photocredit, .research-topics--landing .node--type-content-block > .field--name-field-contact-cards > .flexItemText .photocredit, .research-topics--landing .node--type-content-block > .field--name-field-employment-opportunity-car > .flexItemText .photocredit, .research-topics--landing .node--type-content-block > .all-grants-foa-container > .flexItemText .photocredit,
.research-topics--landing .node--type-content-block > .field--name-field-program-officers > .flexItemText .photocredit,
.research-topics--landing .view-id-nhlbi_grants_foa.view-display-id-block_2.node--type-content-block > .view-content > .flexItemText .photocredit,
.research-topics--landing .view-id-nhlbi_grants_foa.view-display-id-block_3.node--type-content-block > .view-content > .flexItemText .photocredit, .research-topics--landing .node--type-individual-contact .node--type-content-block > .field--name-field-contact-methods > .flexItemText .photocredit, .node--type-individual-contact .research-topics--landing .node--type-content-block > .field--name-field-contact-methods > .flexItemText .photocredit,
.research-topics--landing .node--type-division.node--view-mode-full .node--type-content-block > .field--name-field-contact-methods > .flexItemText .photocredit,
.node--type-division.node--view-mode-full .research-topics--landing .node--type-content-block > .field--name-field-contact-methods > .flexItemText .photocredit,
.research-topics--landing .node--type-division.node--view-mode-subscribe .node--type-content-block > .field--name-field-contact-methods > .flexItemText .photocredit,
.node--type-division.node--view-mode-subscribe .research-topics--landing .node--type-content-block > .field--name-field-contact-methods > .flexItemText .photocredit,
.research-topics--landing .node--type-branch.node--view-mode-full .node--type-content-block > .field--name-field-contact-methods > .flexItemText .photocredit,
.node--type-branch.node--view-mode-full .research-topics--landing .node--type-content-block > .field--name-field-contact-methods > .flexItemText .photocredit,
.research-topics--landing .node--type-branch.node--view-mode-subscribe .node--type-content-block > .field--name-field-contact-methods > .flexItemText .photocredit,
.node--type-branch.node--view-mode-subscribe .research-topics--landing .node--type-content-block > .field--name-field-contact-methods > .flexItemText .photocredit,
.research-topics--landing .node--type-general.node--view-mode-full .node--type-content-block > .field--name-field-contact-methods > .flexItemText .photocredit,
.node--type-general.node--view-mode-full .research-topics--landing .node--type-content-block > .field--name-field-contact-methods > .flexItemText .photocredit,
.research-topics--landing .node--type-general.node--view-mode-subscribe .node--type-content-block > .field--name-field-contact-methods > .flexItemText .photocredit,
.node--type-general.node--view-mode-subscribe .research-topics--landing .node--type-content-block > .field--name-field-contact-methods > .flexItemText .photocredit,
.research-topics--landing .node--type-health-education-initiative.node--view-mode-full .node--type-content-block > .field--name-field-contact-methods > .flexItemText .photocredit,
.node--type-health-education-initiative.node--view-mode-full .research-topics--landing .node--type-content-block > .field--name-field-contact-methods > .flexItemText .photocredit,
.research-topics--landing .node--type-health-education-initiative.node--view-mode-subscribe .node--type-content-block > .field--name-field-contact-methods > .flexItemText .photocredit,
.node--type-health-education-initiative.node--view-mode-subscribe .research-topics--landing .node--type-content-block > .field--name-field-contact-methods > .flexItemText .photocredit, .research-topics--landing .node--type-committee .node--type-content-block > .field--name-field-card-text > .flexItemText .photocredit, .node--type-committee .research-topics--landing .node--type-content-block > .field--name-field-card-text > .flexItemText .photocredit, .research-topics--landing .news-and-events--landing .node--type-content-block > .landing-social > .flexItemText .photocredit, .news-and-events--landing .research-topics--landing .node--type-content-block > .landing-social > .flexItemText .photocredit, .research-topics--landing .node--type-content-block > .field--name-field-sfa-cards > .flexItemText .photocredit, .research-topics--landing .node--type-content-block > .locationMap.contact-location-map-container > .flexItemText .photocredit, .research-topics--landing .node--type-content-block > .locationMap > .flexItemText .photocredit, .research-topics--landing .node--type-content-block > .grants-and-training-card-wrapper > .flexItemText .photocredit, .research-topics--landing .node--type-content-block > .about-nhlbi-division-card-wrapper > .flexItemText .photocredit, .research-topics--landing .node--type-content-block > .hei-tools-icon-card-wrapper > .flexItemText .photocredit, .research-topics--landing .node--type-content-block > .field--name-field-grants-and-training-card > .flexItemText .photocredit, .research-topics--landing .node--type-content-block > .field--name-field-division-card > .flexItemText .photocredit, .research-topics--landing .node--type-content-block > .field--name-field-tool-icon-card > .flexItemText .photocredit, .research-topics--landing .node--type-content-block > .field--name-field-promotional-card > .flexItemText .photocredit, .research-topics--landing .node--type-content-block > .field--name-field-sv-promotional-cards > .flexItemText .photocredit, .research-topics--landing .node--type-content-block > .field--name-field-about-nhlbi-promotional-ca > .flexItemText .photocredit, .research-topics--landing .node--type-content-block > .strategic-vision-titleblock > .flexItemText .photocredit, .research-topics--landing .node--type-content-block > .ppg-titleblock-wrapper > .flexItemText .photocredit, .research-topics--landing .node--type-content-block > .ppg-guidelines-card-wrapper > .flexItemText .photocredit, .research-topics--landing .node--type-content-block > .field--name-field-human-subject-cards > .flexItemText .photocredit, .research-topics--landing .node--type-content-block > .field--name-field-section-card > .flexItemText .photocredit, .research-topics--landing .node--type-content-block > .field--name-field-highlight-card > .flexItemText .photocredit, .research-topics--landing .node--type-content-block > .health-topic-teaser-container > .flexItemText .photocredit, .research-topics--landing .node--type-content-block > .about-nhlbi-our-mission-wrapper > .flexItemText .photocredit, .research-topics--landing .about-nhlbi-our-mission-wrapper .field--name-field-leadership.node--type-content-block > .director-bioCard > .flexItemText .photocredit, .about-nhlbi-our-mission-wrapper .research-topics--landing .field--name-field-leadership.node--type-content-block > .director-bioCard > .flexItemText .photocredit, .research-topics--landing .nhlbi-publications-and-resources--landing .node--type-content-block > .field--name-field-health-consumer-nhlbi-publ > .flexItemText .photocredit, .nhlbi-publications-and-resources--landing .research-topics--landing .node--type-content-block > .field--name-field-health-consumer-nhlbi-publ > .flexItemText .photocredit,
.research-topics--landing .nhlbi-publications-and-resources--landing .node--type-content-block > .field--name-field-health-professionals-nhlbi > .flexItemText .photocredit,
.nhlbi-publications-and-resources--landing .research-topics--landing .node--type-content-block > .field--name-field-health-professionals-nhlbi > .flexItemText .photocredit, .research-topics--landing .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-content-block > .standard-teaser > .flexItemText .photocredit, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .research-topics--landing .node--type-content-block > .standard-teaser > .flexItemText .photocredit,
.research-topics--landing .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-content-block > .standard-teaser > .flexItemText .photocredit,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .research-topics--landing .node--type-content-block > .standard-teaser > .flexItemText .photocredit, .research-topics--landing .publicationsBlock.view-nhlbi-publications.node--type-content-block > .view-content > .flexItemText .photocredit,
.research-topics--landing .node--type-content-block > .field--name-field-related-publications > .flexItemText .photocredit, .research-topics--landing .healthEducationBlock .node--type-content-block > .standard-teaser > .flexItemText .photocredit, .healthEducationBlock .research-topics--landing .node--type-content-block > .standard-teaser > .flexItemText .photocredit, .research-topics--landing .systematicEvidenceReviewsBlock .node--type-content-block > .view-content > .flexItemText .photocredit, .systematicEvidenceReviewsBlock .research-topics--landing .node--type-content-block > .view-content > .flexItemText .photocredit,
.research-topics--landing .clinicalPracticeGuidelinesBlock .node--type-content-block > .view-content > .flexItemText .photocredit,
.clinicalPracticeGuidelinesBlock .research-topics--landing .node--type-content-block > .view-content > .flexItemText .photocredit,
.research-topics--landing .publicationsAndFactSheetsBlock .node--type-content-block > .view-content > .flexItemText .photocredit,
.publicationsAndFactSheetsBlock .research-topics--landing .node--type-content-block > .view-content > .flexItemText .photocredit, .research-topics--landing .node--type-content-block > .rtFlexContainer > .flexItemText .photocredit, .research-topics--landing .node--type-research-topic .node--type-content-block > .field--name-field-science-supplemental-page > .flexItemText .photocredit, .node--type-research-topic .research-topics--landing .node--type-content-block > .field--name-field-science-supplemental-page > .flexItemText .photocredit, .research-topics--landing .node--type-research-topic .node--type-content-block > .researchTopicPublications > .flexItemText .photocredit, .node--type-research-topic .research-topics--landing .node--type-content-block > .researchTopicPublications > .flexItemText .photocredit, .research-topics--landing .node--type-research-topic .field--name-field-content > .field__item .node--type-content-block > article.listTeaserCard > .flexItemText .photocredit, .node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block > article.listTeaserCard > .flexItemText .photocredit, .research-topics--landing .node--type-research-topic .field--name-field-content > .field__item .node--type-content-block > article.standard-teaser > .flexItemText .photocredit, .node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block > article.standard-teaser > .flexItemText .photocredit,
.research-topics--landing .node--type-research-topic .field--name-field-content > .field__item .node--type-content-block > article.newsEventsCard > .flexItemText .photocredit,
.node--type-research-topic .field--name-field-content > .field__item .research-topics--landing .node--type-content-block > article.newsEventsCard > .flexItemText .photocredit, .research-topics--landing .node--type-content-block > .esi-feature-card > .flexItemText .photocredit, .research-topics--landing .node--type-content-block > .featured-science-instance-teaser-container > .flexItemText .photocredit, .research-topics--landing .node--type-content-block > .sfa-teaser-container > .flexItemText .photocredit, .research-topics--landing .training-opportunity-card .node--type-content-block > .field--name-field-associated-people > .flexItemText .photocredit, .training-opportunity-card .research-topics--landing .node--type-content-block > .field--name-field-associated-people > .flexItemText .photocredit, .research-topics--landing .node--type-content-block > .field--name-field-featured-training-opportun > .flexItemText .photocredit, .research-topics--landing .node--type-content-block > .field--name-field-career-stages > .flexItemText .photocredit, .research-topics--landing .node--type-content-block > .field--name-field-workforce-development-card > .flexItemText .photocredit, .research-topics--landing .node--type-content-block > .node--type-update.node--view-mode-executive-teaser > .flexItemText .photocredit, .research-topics--landing .node--type-content-block > .news-and-events-titleblock > .flexItemText .photocredit, .research-topics--landing .contact-box.node--type-content-block > .field--name-field-contact-methods > .flexItemText .photocredit, .research-topics--landing .node--type-content-block > .leadership-container > .flexItemText .photocredit, .research-topics--landing .leadership-container .leadership-deputy-director-container .node--type-content-block > .field--name-field-additional-leadership > .flexItemText .photocredit, .leadership-container .leadership-deputy-director-container .research-topics--landing .node--type-content-block > .field--name-field-additional-leadership > .flexItemText .photocredit, .research-topics--landing .node--type-content-block > .branch-leadership-container > .flexItemText .photocredit, .research-topics--landing .branch-leadership-container .leadership-deputy-director-container .node--type-content-block > .field--name-field-additional-leadership > .flexItemText .photocredit, .branch-leadership-container .leadership-deputy-director-container .research-topics--landing .node--type-content-block > .field--name-field-additional-leadership > .flexItemText .photocredit, .research-topics--landing .node--type-general .node--type-content-block > .field--name-field-related-publications > .flexItemText .photocredit, .node--type-general .research-topics--landing .node--type-content-block > .field--name-field-related-publications > .flexItemText .photocredit, .research-topics--landing .node--type-general .node--type-content-block > .field--name-field-general-publications-rlt > .flexItemText .photocredit, .node--type-general .research-topics--landing .node--type-content-block > .field--name-field-general-publications-rlt > .flexItemText .photocredit, .research-topics--landing .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-content-block > .standard-teaser > .flexItemText .photocredit, .node--type-general .field--name-field-general-publications-rlt > .field__item .research-topics--landing .node--type-content-block > .standard-teaser > .flexItemText .photocredit, .research-topics--landing .node--type-general .field--name-field-related-publications > .field__item .node--type-content-block > .standard-teaser > .flexItemText .photocredit, .node--type-general .field--name-field-related-publications > .field__item .research-topics--landing .node--type-content-block > .standard-teaser > .flexItemText .photocredit, .research-topics--landing .node--type-content-block > .objective-text-container > .flexItemText .photocredit, .research-topics--landing .node--type-content-block > .objective-list-container > .flexItemText .photocredit, .research-topics--landing .node--type-content-block > .field--name-field-goal-card > .flexItemText .photocredit, .research-topics--landing .node--type-content-block > .strategic-vision-landing-goals-wrapper > .flexItemText .photocredit, .research-topics--landing .node--type-principal-investigator .node--type-content-block > .striped-container-wrapper > .flexItemText .photocredit, .node--type-principal-investigator .research-topics--landing .node--type-content-block > .striped-container-wrapper > .flexItemText .photocredit, .research-topics--landing .node--type-principal-investigator .node--type-content-block > .striped-container > .flexItemText .photocredit, .node--type-principal-investigator .research-topics--landing .node--type-content-block > .striped-container > .flexItemText .photocredit, .research-topics--landing .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-content-block > article > .flexItemText .photocredit, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .research-topics--landing .node--type-content-block > article > .flexItemText .photocredit,
.research-topics--landing .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-content-block > article > .flexItemText .photocredit,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .research-topics--landing .node--type-content-block > article > .flexItemText .photocredit, .research-topics--landing .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-content-block > .standard-teaser.node--view-mode-short-teaser > .flexItemText .photocredit, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .research-topics--landing .node--type-content-block > .standard-teaser.node--view-mode-short-teaser > .flexItemText .photocredit, .research-topics--landing .node--type-content-block > .field--name-field-awards > .flexItemText .photocredit, .research-topics--landing .node--type-content-block > .registerSocialContainer > .flexItemText .photocredit, .research-topics--landing .node--type-content-block > .eventdatesLocationType > .flexItemText .photocredit, .research-topics--landing .node--type-content-block > .news-article-container > .flexItemText .photocredit, .research-topics--landing .node--type-content-block > .node--type-feature-article.node--view-mode-press-release-teaser > .flexItemText .photocredit,
.research-topics--landing .node--type-content-block > .node--type-press-release.node--view-mode-press-release-teaser > .flexItemText .photocredit,
.research-topics--landing .node--type-content-block > .node--type-events.node--view-mode-press-release-teaser > .flexItemText .photocredit,
.research-topics--landing .node--type-content-block > .node--type-feature-article.node--view-mode-hp-press-release-teaser > .flexItemText .photocredit,
.research-topics--landing .node--type-content-block > .node--type-press-release.node--view-mode-hp-press-release-teaser > .flexItemText .photocredit,
.research-topics--landing .node--type-content-block > .node--type-events.node--view-mode-hp-press-release-teaser > .flexItemText .photocredit,
.research-topics--landing .node--type-content-block > .node--type-news-mention.node--view-mode-hp-press-release-teaser > .flexItemText .photocredit, .research-topics--landing .node--type-content-block > .news-header-container > .flexItemText .photocredit, .research-topics--landing .contacts-container .node--type-content-block > .field--name-field-contacts > .flexItemText .photocredit, .contacts-container .research-topics--landing .node--type-content-block > .field--name-field-contacts > .flexItemText .photocredit, .research-topics--landing .publicationsBox .node--type-content-block > .field--name-field-related-publications > .flexItemText .photocredit, .publicationsBox .research-topics--landing .node--type-content-block > .field--name-field-related-publications > .flexItemText .photocredit, .research-topics--landing .node--type-content-block > .field--name-field-primary-featured-item > .flexItemText .photocredit, .research-topics--landing .node--type-content-block > .field--name-field-additional-featured-items > .flexItemText .photocredit, .research-topics--landing .node--type-content-block > .homepage-health-topics-container > .flexItemText .photocredit, .research-topics--landing .node--type-content-block > .homepage-mission-areas-container > .flexItemText .photocredit, .research-topics--landing .node--type-content-block > .homepage-location-container > .flexItemText .photocredit, .research-topics--landing .node--type-content-block > .field--name-field-alumni > .flexItemText .photocredit, .research-topics--landing .node--type-nhlbi-publication.node--view-mode-full .node--type-content-block > .nhlbi-publication-details-container > .flexItemText .photocredit, .node--type-nhlbi-publication.node--view-mode-full .research-topics--landing .node--type-content-block > .nhlbi-publication-details-container > .flexItemText .photocredit,
.research-topics--landing .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-content-block > .nhlbi-publication-details-container > .flexItemText .photocredit,
.node--type-nhlbi-publication.node--view-mode-subscribe .research-topics--landing .node--type-content-block > .nhlbi-publication-details-container > .flexItemText .photocredit, .research-topics--landing .node--type-nhlbi-publication.node--view-mode-full .node--type-content-block > .field--name-field-related-nhlbi-publications > .flexItemText .photocredit, .node--type-nhlbi-publication.node--view-mode-full .research-topics--landing .node--type-content-block > .field--name-field-related-nhlbi-publications > .flexItemText .photocredit,
.research-topics--landing .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-content-block > .field--name-field-related-nhlbi-publications > .flexItemText .photocredit,
.node--type-nhlbi-publication.node--view-mode-subscribe .research-topics--landing .node--type-content-block > .field--name-field-related-nhlbi-publications > .flexItemText .photocredit, .research-topics--landing .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-content-block > .standard-teaser > .flexItemText .photocredit, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .research-topics--landing .node--type-content-block > .standard-teaser > .flexItemText .photocredit,
.research-topics--landing .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-content-block > .standard-teaser > .flexItemText .photocredit,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .research-topics--landing .node--type-content-block > .standard-teaser > .flexItemText .photocredit {
  color: #fff;
}

@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 171, ../sass/components/_landing_pages.scss */
  .node--type-landing-page .listCard {
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
  }
}
/* line 177, ../sass/components/_landing_pages.scss */
.node--type-landing-page .updateCard .posttitlethumb, .node--type-landing-page .updateCard .blue-posttitlethumb, .node--type-landing-page .updateCard .objective-list-container .objective-side-text, .objective-list-container .node--type-landing-page .updateCard .objective-side-text {
  padding-top: 1em;
}
/* line 180, ../sass/components/_landing_pages.scss */
.node--type-landing-page .updateCard .readMoreWrapper {
  padding-top: 1em;
}
/* line 184, ../sass/components/_landing_pages.scss */
.node--type-landing-page .listCard, .node--type-landing-page .newsEventsCard, .node--type-landing-page .updateCard {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -webkit-align-self: stretch;
  -moz-align-self: stretch;
  -ms-align-self: stretch;
  -o-align-self: stretch;
  align-self: stretch;
  background-color: #fff;
  width: 100%;
  padding: 1em;
}
/* line 192, ../sass/components/_landing_pages.scss */
.node--type-landing-page .listCard .posttitlethumb, .node--type-landing-page .listCard .blue-posttitlethumb, .node--type-landing-page .listCard .objective-list-container .objective-side-text, .objective-list-container .node--type-landing-page .listCard .objective-side-text, .node--type-landing-page .listCard .blue-posttitlethumb, .node--type-landing-page .newsEventsCard .posttitlethumb, .node--type-landing-page .newsEventsCard .blue-posttitlethumb, .node--type-landing-page .newsEventsCard .objective-list-container .objective-side-text, .objective-list-container .node--type-landing-page .newsEventsCard .objective-side-text, .node--type-landing-page .newsEventsCard .blue-posttitlethumb, .node--type-landing-page .updateCard .posttitlethumb, .node--type-landing-page .updateCard .blue-posttitlethumb, .node--type-landing-page .updateCard .objective-list-container .objective-side-text, .objective-list-container .node--type-landing-page .updateCard .objective-side-text, .node--type-landing-page .updateCard .blue-posttitlethumb {
  margin-bottom: 0.25em;
  padding-bottom: 0;
}
/* line 197, ../sass/components/_landing_pages.scss */
.node--type-landing-page .listCard .flexItemImage, .node--type-landing-page .listCard .flexItemImageHalf, .node--type-landing-page .listCard .flexItemImageTenth, .node--type-landing-page .listCard .flexItemImageFourth, .node--type-landing-page .listCard .flexItemImageThird, .node--type-landing-page .listCard .flexItemImageThirdHalf, .node--type-landing-page .listCard .hero-image, .node--type-landing-page .newsEventsCard .flexItemImage, .node--type-landing-page .newsEventsCard .flexItemImageHalf, .node--type-landing-page .newsEventsCard .flexItemImageTenth, .node--type-landing-page .newsEventsCard .flexItemImageFourth, .node--type-landing-page .newsEventsCard .flexItemImageThird, .node--type-landing-page .newsEventsCard .flexItemImageThirdHalf, .node--type-landing-page .newsEventsCard .hero-image, .node--type-landing-page .updateCard .flexItemImage, .node--type-landing-page .updateCard .flexItemImageHalf, .node--type-landing-page .updateCard .flexItemImageTenth, .node--type-landing-page .updateCard .flexItemImageFourth, .node--type-landing-page .updateCard .flexItemImageThird, .node--type-landing-page .updateCard .flexItemImageThirdHalf, .node--type-landing-page .updateCard .hero-image {
  padding: 0;
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
}
/* line 201, ../sass/components/_landing_pages.scss */
.node--type-landing-page .listCard .flexItemImage .photocredit, .node--type-landing-page .listCard .flexItemImageHalf .photocredit, .node--type-landing-page .listCard .flexItemImageTenth .photocredit, .node--type-landing-page .listCard .flexItemImageFourth .photocredit, .node--type-landing-page .listCard .flexItemImageThird .photocredit, .node--type-landing-page .listCard .flexItemImageThirdHalf .photocredit, .node--type-landing-page .listCard .hero-image .photocredit, .node--type-landing-page .newsEventsCard .flexItemImage .photocredit, .node--type-landing-page .newsEventsCard .flexItemImageHalf .photocredit, .node--type-landing-page .newsEventsCard .flexItemImageTenth .photocredit, .node--type-landing-page .newsEventsCard .flexItemImageFourth .photocredit, .node--type-landing-page .newsEventsCard .flexItemImageThird .photocredit, .node--type-landing-page .newsEventsCard .flexItemImageThirdHalf .photocredit, .node--type-landing-page .newsEventsCard .hero-image .photocredit, .node--type-landing-page .updateCard .flexItemImage .photocredit, .node--type-landing-page .updateCard .flexItemImageHalf .photocredit, .node--type-landing-page .updateCard .flexItemImageTenth .photocredit, .node--type-landing-page .updateCard .flexItemImageFourth .photocredit, .node--type-landing-page .updateCard .flexItemImageThird .photocredit, .node--type-landing-page .updateCard .flexItemImageThirdHalf .photocredit, .node--type-landing-page .updateCard .hero-image .photocredit {
  margin-right: 0.875rem;
}
/* line 206, ../sass/components/_landing_pages.scss */
.node--type-landing-page .listCard .flexItemText, .node--type-landing-page .newsEventsCard .flexItemText, .node--type-landing-page .updateCard .flexItemText {
  padding: 1em;
  -webkit-box-ordinal-group: 2;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
}
/* line 216, ../sass/components/_landing_pages.scss */
.node--type-landing-page .listCard .flexItemText h3 a, .node--type-landing-page .listCard .flexItemText .field--name-field-social-phrase-group-title a, .node--type-landing-page .listCard .flexItemText .field--name-field-image-gallery-title a, .node--type-landing-page .newsEventsCard .flexItemText h3 a, .node--type-landing-page .newsEventsCard .flexItemText .field--name-field-social-phrase-group-title a, .node--type-landing-page .newsEventsCard .flexItemText .field--name-field-image-gallery-title a, .node--type-landing-page .updateCard .flexItemText h3 a, .node--type-landing-page .updateCard .flexItemText .field--name-field-social-phrase-group-title a, .node--type-landing-page .updateCard .flexItemText .field--name-field-image-gallery-title a {
  color: #222;
  font-family: "Merriweather", serif;
  font-weight: normal;
}
/* line 223, ../sass/components/_landing_pages.scss */
.node--type-landing-page .listCard .flexItemText .eventDates,
.node--type-landing-page .listCard .flexItemText .eventLocation,
.node--type-landing-page .listCard .flexItemText .eventType, .node--type-landing-page .newsEventsCard .flexItemText .eventDates,
.node--type-landing-page .newsEventsCard .flexItemText .eventLocation,
.node--type-landing-page .newsEventsCard .flexItemText .eventType, .node--type-landing-page .updateCard .flexItemText .eventDates,
.node--type-landing-page .updateCard .flexItemText .eventLocation,
.node--type-landing-page .updateCard .flexItemText .eventType {
  color: #222;
  float: none;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 230, ../sass/components/_landing_pages.scss */
  .node--type-landing-page .listCard .flexItemText .eventLocation, .node--type-landing-page .newsEventsCard .flexItemText .eventLocation, .node--type-landing-page .updateCard .flexItemText .eventLocation {
    height: 60px;
  }
}
/* line 238, ../sass/components/_landing_pages.scss */
.node--type-landing-page .listCard a:focus, .node--type-landing-page .listCard a:active, .node--type-landing-page .newsEventsCard a:focus, .node--type-landing-page .newsEventsCard a:active, .node--type-landing-page .updateCard a:focus, .node--type-landing-page .updateCard a:active {
  outline: #bf0d2e 3px dotted;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 247, ../sass/components/_landing_pages.scss */
  .node--type-landing-page .newsEventsCard .flexItemText .eventLocation {
    height: auto;
  }
}
/* line 257, ../sass/components/_landing_pages.scss */
.node--type-landing-page .secondary-grey-background .blueRoundButton a, .node--type-landing-page .secondary-grey-background .redRoundButton a, .node--type-landing-page .secondary-grey-background .standard-more-link a, .node--type-landing-page .secondary-grey-background .news-and-events--landing .more-link a, .news-and-events--landing .node--type-landing-page .secondary-grey-background .more-link a, .node--type-landing-page .secondary-grey-background .view-more-link a {
  margin-left: auto;
  margin-right: auto;
}
/* line 265, ../sass/components/_landing_pages.scss */
.node--type-landing-page .field--name-field-all-publications-link a, .node--type-landing-page .field--name-field-health-consumers-link a, .node--type-landing-page .field--name-field-view-all-health-profession a {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  background-color: #1a568c;
  border: 1px solid #1a568c;
  padding: 0.8em 3em;
  display: table !important;
  background-image: none;
}
@media all and (min-width: 1440px) {
  /* line 265, ../sass/components/_landing_pages.scss */
  .node--type-landing-page .field--name-field-all-publications-link a, .node--type-landing-page .field--name-field-health-consumers-link a, .node--type-landing-page .field--name-field-view-all-health-profession a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 265, ../sass/components/_landing_pages.scss */
  .node--type-landing-page .field--name-field-all-publications-link a, .node--type-landing-page .field--name-field-health-consumers-link a, .node--type-landing-page .field--name-field-view-all-health-profession a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 265, ../sass/components/_landing_pages.scss */
  .node--type-landing-page .field--name-field-all-publications-link a, .node--type-landing-page .field--name-field-health-consumers-link a, .node--type-landing-page .field--name-field-view-all-health-profession a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 265, ../sass/components/_landing_pages.scss */
  .node--type-landing-page .field--name-field-all-publications-link a, .node--type-landing-page .field--name-field-health-consumers-link a, .node--type-landing-page .field--name-field-view-all-health-profession a {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.node--type-landing-page .field--name-field-all-publications-link a :hover, .node--type-landing-page .field--name-field-health-consumers-link a :hover, .node--type-landing-page .field--name-field-view-all-health-profession a :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 265, ../sass/components/_landing_pages.scss */
  .node--type-landing-page .field--name-field-all-publications-link a, .node--type-landing-page .field--name-field-health-consumers-link a, .node--type-landing-page .field--name-field-view-all-health-profession a {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 265, ../sass/components/_landing_pages.scss */
  .node--type-landing-page .field--name-field-all-publications-link a, .node--type-landing-page .field--name-field-health-consumers-link a, .node--type-landing-page .field--name-field-view-all-health-profession a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 265, ../sass/components/_landing_pages.scss */
  .node--type-landing-page .field--name-field-all-publications-link a, .node--type-landing-page .field--name-field-health-consumers-link a, .node--type-landing-page .field--name-field-view-all-health-profession a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 265, ../sass/components/_landing_pages.scss */
  .node--type-landing-page .field--name-field-all-publications-link a, .node--type-landing-page .field--name-field-health-consumers-link a, .node--type-landing-page .field--name-field-view-all-health-profession a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 265, ../sass/components/_landing_pages.scss */
  .node--type-landing-page .field--name-field-all-publications-link a, .node--type-landing-page .field--name-field-health-consumers-link a, .node--type-landing-page .field--name-field-view-all-health-profession a {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.node--type-landing-page .field--name-field-all-publications-link a:hover, .node--type-landing-page .field--name-field-health-consumers-link a:hover, .node--type-landing-page .field--name-field-view-all-health-profession a:hover {
  background-color: #102d66;
  border-color: #102d66;
  color: #fff;
  text-decoration: none;
}
/* line 2379, ../sass/_mixins.scss */
.node--type-landing-page .field--name-field-all-publications-link a:focus, .node--type-landing-page .field--name-field-all-publications-link a:active, .node--type-landing-page .field--name-field-health-consumers-link a:focus, .node--type-landing-page .field--name-field-health-consumers-link a:active, .node--type-landing-page .field--name-field-view-all-health-profession a:focus, .node--type-landing-page .field--name-field-view-all-health-profession a:active {
  outline: #bf0d2e dotted 3px !important;
}

/* line 276, ../sass/components/_landing_pages.scss */
.view-nhlbi-research-topics.general-accordion .views-field-title-1, .view-nhlbi-research-topics.general-accordion .views-field-title-2, .view-nhlbi-research-topics.general-accordion .views-field-field-officer,
.view-nhlbi-research-topics.primary-accordion .views-field-title-1,
.view-nhlbi-research-topics.primary-accordion .views-field-title-2,
.view-nhlbi-research-topics.primary-accordion .views-field-field-officer {
  display: inline;
}
/* line 279, ../sass/components/_landing_pages.scss */
.view-nhlbi-research-topics.general-accordion .views-field-title-2, .view-nhlbi-research-topics.general-accordion .views-field-field-officer,
.view-nhlbi-research-topics.primary-accordion .views-field-title-2,
.view-nhlbi-research-topics.primary-accordion .views-field-field-officer {
  font-style: italic;
  float: right;
}
/* line 283, ../sass/components/_landing_pages.scss */
.view-nhlbi-research-topics.general-accordion .ui-accordion-content.ui-widget-content,
.view-nhlbi-research-topics.primary-accordion .ui-accordion-content.ui-widget-content {
  padding-top: 1em;
  padding-bottom: 1em;
  border-top: 1px solid #d7e7f4;
  color: #222;
  background-image: none;
  font-size: 1rem;
  background-image: none;
  padding-left: 1.1em;
}
@media all and (min-width: 1100px) {
  /* line 283, ../sass/components/_landing_pages.scss */
  .view-nhlbi-research-topics.general-accordion .ui-accordion-content.ui-widget-content,
  .view-nhlbi-research-topics.primary-accordion .ui-accordion-content.ui-widget-content {
    padding-right: 2em;
    padding-left: 2em;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 283, ../sass/components/_landing_pages.scss */
  .view-nhlbi-research-topics.general-accordion .ui-accordion-content.ui-widget-content,
  .view-nhlbi-research-topics.primary-accordion .ui-accordion-content.ui-widget-content {
    padding-right: 1em;
    padding-left: 1em;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 283, ../sass/components/_landing_pages.scss */
  .view-nhlbi-research-topics.general-accordion .ui-accordion-content.ui-widget-content,
  .view-nhlbi-research-topics.primary-accordion .ui-accordion-content.ui-widget-content {
    padding-right: 0.4em;
    padding-left: 0.8em;
  }
}
@media all and (min-width: 1100px) {
  /* line 283, ../sass/components/_landing_pages.scss */
  .view-nhlbi-research-topics.general-accordion .ui-accordion-content.ui-widget-content,
  .view-nhlbi-research-topics.primary-accordion .ui-accordion-content.ui-widget-content {
    border-left: 20px solid #d7e7f4;
    border-right: 20px solid #d7e7f4;
    border-bottom: 20px solid #d7e7f4;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 283, ../sass/components/_landing_pages.scss */
  .view-nhlbi-research-topics.general-accordion .ui-accordion-content.ui-widget-content,
  .view-nhlbi-research-topics.primary-accordion .ui-accordion-content.ui-widget-content {
    border-left: 9px solid #d7e7f4;
    border-right: 9px solid #d7e7f4;
    border-bottom: 9px solid #d7e7f4;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 283, ../sass/components/_landing_pages.scss */
  .view-nhlbi-research-topics.general-accordion .ui-accordion-content.ui-widget-content,
  .view-nhlbi-research-topics.primary-accordion .ui-accordion-content.ui-widget-content {
    border-left: 6px solid #d7e7f4;
    border-right: 6px solid #d7e7f4;
    border-bottom: 6px solid #d7e7f4;
  }
}
@media all and (min-width: 1440px) {
  /* line 283, ../sass/components/_landing_pages.scss */
  .view-nhlbi-research-topics.general-accordion .ui-accordion-content.ui-widget-content,
  .view-nhlbi-research-topics.primary-accordion .ui-accordion-content.ui-widget-content {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 283, ../sass/components/_landing_pages.scss */
  .view-nhlbi-research-topics.general-accordion .ui-accordion-content.ui-widget-content,
  .view-nhlbi-research-topics.primary-accordion .ui-accordion-content.ui-widget-content {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 283, ../sass/components/_landing_pages.scss */
  .view-nhlbi-research-topics.general-accordion .ui-accordion-content.ui-widget-content,
  .view-nhlbi-research-topics.primary-accordion .ui-accordion-content.ui-widget-content {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 283, ../sass/components/_landing_pages.scss */
  .view-nhlbi-research-topics.general-accordion .ui-accordion-content.ui-widget-content,
  .view-nhlbi-research-topics.primary-accordion .ui-accordion-content.ui-widget-content {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) {
  /* line 283, ../sass/components/_landing_pages.scss */
  .view-nhlbi-research-topics.general-accordion .ui-accordion-content.ui-widget-content,
  .view-nhlbi-research-topics.primary-accordion .ui-accordion-content.ui-widget-content {
    padding-left: 1.9em;
  }
}
/* line 291, ../sass/components/_landing_pages.scss */
.view-nhlbi-research-topics.general-accordion .ui-accordion-content.ui-widget-content .views-row,
.view-nhlbi-research-topics.primary-accordion .ui-accordion-content.ui-widget-content .views-row {
  border: 1px solid #aaa;
  border-top: none;
  border-right: none;
  border-left: none;
  text-align: left;
  display: block;
  position: relative;
  padding: .5em .5em .5em .5em;
  min-height: 0;
  font-size: 1rem;
  font-weight: normal;
  text-decoration: none;
  text-align: left;
}
/* line 295, ../sass/components/_landing_pages.scss */
.view-nhlbi-research-topics.general-accordion .ui-accordion-content.ui-widget-content .views-row:last-child,
.view-nhlbi-research-topics.primary-accordion .ui-accordion-content.ui-widget-content .views-row:last-child {
  border-bottom: none;
}
/* line 298, ../sass/components/_landing_pages.scss */
.view-nhlbi-research-topics.general-accordion .ui-accordion-content.ui-widget-content .views-row > a,
.view-nhlbi-research-topics.primary-accordion .ui-accordion-content.ui-widget-content .views-row > a {
  color: #0051a8;
}

/* line 316, ../sass/components/_landing_pages.scss */
.events--landing .eventFeatured .flexItemText, .events--landing .newsFeatured .flexItemText,
.research-topic-events--landing .eventFeatured .flexItemText,
.research-topic-events--landing .newsFeatured .flexItemText,
.principle-investigator-events--landing .eventFeatured .flexItemText,
.principle-investigator-events--landing .newsFeatured .flexItemText,
.all-events--landing .eventFeatured .flexItemText,
.all-events--landing .newsFeatured .flexItemText,
.all-news--landing .eventFeatured .flexItemText,
.all-news--landing .newsFeatured .flexItemText {
  padding-top: 0;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 316, ../sass/components/_landing_pages.scss */
  .events--landing .eventFeatured .flexItemText, .events--landing .newsFeatured .flexItemText,
  .research-topic-events--landing .eventFeatured .flexItemText,
  .research-topic-events--landing .newsFeatured .flexItemText,
  .principle-investigator-events--landing .eventFeatured .flexItemText,
  .principle-investigator-events--landing .newsFeatured .flexItemText,
  .all-events--landing .eventFeatured .flexItemText,
  .all-events--landing .newsFeatured .flexItemText,
  .all-news--landing .eventFeatured .flexItemText,
  .all-news--landing .newsFeatured .flexItemText {
    padding: 1em 0 0 0;
  }
}
/* line 321, ../sass/components/_landing_pages.scss */
.events--landing .eventFeatured .flexItemText .herobannertitle, .events--landing .eventFeatured .flexItemText .herobannertitle-grey, .events--landing .newsFeatured .flexItemText .herobannertitle, .events--landing .newsFeatured .flexItemText .herobannertitle-grey,
.research-topic-events--landing .eventFeatured .flexItemText .herobannertitle,
.research-topic-events--landing .eventFeatured .flexItemText .herobannertitle-grey,
.research-topic-events--landing .newsFeatured .flexItemText .herobannertitle,
.research-topic-events--landing .newsFeatured .flexItemText .herobannertitle-grey,
.principle-investigator-events--landing .eventFeatured .flexItemText .herobannertitle,
.principle-investigator-events--landing .eventFeatured .flexItemText .herobannertitle-grey,
.principle-investigator-events--landing .newsFeatured .flexItemText .herobannertitle,
.principle-investigator-events--landing .newsFeatured .flexItemText .herobannertitle-grey,
.all-events--landing .eventFeatured .flexItemText .herobannertitle,
.all-events--landing .eventFeatured .flexItemText .herobannertitle-grey,
.all-events--landing .newsFeatured .flexItemText .herobannertitle,
.all-events--landing .newsFeatured .flexItemText .herobannertitle-grey,
.all-news--landing .eventFeatured .flexItemText .herobannertitle,
.all-news--landing .eventFeatured .flexItemText .herobannertitle-grey,
.all-news--landing .newsFeatured .flexItemText .herobannertitle,
.all-news--landing .newsFeatured .flexItemText .herobannertitle-grey {
  color: #222;
}
/* line 323, ../sass/components/_landing_pages.scss */
.events--landing .eventFeatured .flexItemText .herobannertitle a, .events--landing .eventFeatured .flexItemText .herobannertitle-grey a, .events--landing .newsFeatured .flexItemText .herobannertitle a, .events--landing .newsFeatured .flexItemText .herobannertitle-grey a,
.research-topic-events--landing .eventFeatured .flexItemText .herobannertitle a,
.research-topic-events--landing .eventFeatured .flexItemText .herobannertitle-grey a,
.research-topic-events--landing .newsFeatured .flexItemText .herobannertitle a,
.research-topic-events--landing .newsFeatured .flexItemText .herobannertitle-grey a,
.principle-investigator-events--landing .eventFeatured .flexItemText .herobannertitle a,
.principle-investigator-events--landing .eventFeatured .flexItemText .herobannertitle-grey a,
.principle-investigator-events--landing .newsFeatured .flexItemText .herobannertitle a,
.principle-investigator-events--landing .newsFeatured .flexItemText .herobannertitle-grey a,
.all-events--landing .eventFeatured .flexItemText .herobannertitle a,
.all-events--landing .eventFeatured .flexItemText .herobannertitle-grey a,
.all-events--landing .newsFeatured .flexItemText .herobannertitle a,
.all-events--landing .newsFeatured .flexItemText .herobannertitle-grey a,
.all-news--landing .eventFeatured .flexItemText .herobannertitle a,
.all-news--landing .eventFeatured .flexItemText .herobannertitle-grey a,
.all-news--landing .newsFeatured .flexItemText .herobannertitle a,
.all-news--landing .newsFeatured .flexItemText .herobannertitle-grey a {
  color: #222;
  display: block;
}
/* line 327, ../sass/components/_landing_pages.scss */
.events--landing .eventFeatured .flexItemText .herobannertitle a:visited, .events--landing .eventFeatured .flexItemText .herobannertitle-grey a:visited, .events--landing .newsFeatured .flexItemText .herobannertitle a:visited, .events--landing .newsFeatured .flexItemText .herobannertitle-grey a:visited,
.research-topic-events--landing .eventFeatured .flexItemText .herobannertitle a:visited,
.research-topic-events--landing .eventFeatured .flexItemText .herobannertitle-grey a:visited,
.research-topic-events--landing .newsFeatured .flexItemText .herobannertitle a:visited,
.research-topic-events--landing .newsFeatured .flexItemText .herobannertitle-grey a:visited,
.principle-investigator-events--landing .eventFeatured .flexItemText .herobannertitle a:visited,
.principle-investigator-events--landing .eventFeatured .flexItemText .herobannertitle-grey a:visited,
.principle-investigator-events--landing .newsFeatured .flexItemText .herobannertitle a:visited,
.principle-investigator-events--landing .newsFeatured .flexItemText .herobannertitle-grey a:visited,
.all-events--landing .eventFeatured .flexItemText .herobannertitle a:visited,
.all-events--landing .eventFeatured .flexItemText .herobannertitle-grey a:visited,
.all-events--landing .newsFeatured .flexItemText .herobannertitle a:visited,
.all-events--landing .newsFeatured .flexItemText .herobannertitle-grey a:visited,
.all-news--landing .eventFeatured .flexItemText .herobannertitle a:visited,
.all-news--landing .eventFeatured .flexItemText .herobannertitle-grey a:visited,
.all-news--landing .newsFeatured .flexItemText .herobannertitle a:visited,
.all-news--landing .newsFeatured .flexItemText .herobannertitle-grey a:visited {
  color: #6f57B5;
}

/* line 337, ../sass/components/_landing_pages.scss */
.events--landing .eventFeatured, .events--landing .newsFeatured,
.research-topic-events--landing .eventFeatured,
.research-topic-events--landing .newsFeatured,
.principle-investigator-events--landing .eventFeatured,
.principle-investigator-events--landing .newsFeatured {
  background-color: #fff;
  padding-bottom: 1em;
}

@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 345, ../sass/components/_landing_pages.scss */
  .all-news--landing .flexItemText .bodytext, .all-news--landing .flexItemText .darkGrayBodyText, .all-news--landing .flexItemText .foa-expiration-date {
    display: none;
  }
}

@media all and (min-width: 768px) {
  /* line 356, ../sass/components/_landing_pages.scss */
  .all-events--landing .newsEventsCard .eventdatesLocationType {
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 356, ../sass/components/_landing_pages.scss */
  .all-events--landing .newsEventsCard .eventdatesLocationType {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
  }
}

/* line 370, ../sass/components/_landing_pages.scss */
.all-events--landing h1.eventHT,
.all-news--landing h1.eventHT {
  padding-bottom: 0.5em;
  margin-top: 0;
}
/* line 374, ../sass/components/_landing_pages.scss */
.all-events--landing .eventFeatured, .all-events--landing .newsFeatured,
.all-news--landing .eventFeatured,
.all-news--landing .newsFeatured {
  background-color: #d7e7f4;
  padding: 2em 0 0;
}
/* line 377, ../sass/components/_landing_pages.scss */
.all-events--landing .eventFeatured .readMoreWrapper, .all-events--landing .newsFeatured .readMoreWrapper,
.all-news--landing .eventFeatured .readMoreWrapper,
.all-news--landing .newsFeatured .readMoreWrapper {
  display: none;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 381, ../sass/components/_landing_pages.scss */
  .all-events--landing .eventFeatured .flexItemText .bodytext, .all-events--landing .eventFeatured .flexItemText .darkGrayBodyText, .all-events--landing .eventFeatured .flexItemText .foa-expiration-date, .all-events--landing .newsFeatured .flexItemText .bodytext, .all-events--landing .newsFeatured .flexItemText .darkGrayBodyText, .all-events--landing .newsFeatured .flexItemText .foa-expiration-date,
  .all-news--landing .eventFeatured .flexItemText .bodytext,
  .all-news--landing .eventFeatured .flexItemText .darkGrayBodyText,
  .all-news--landing .eventFeatured .flexItemText .foa-expiration-date,
  .all-news--landing .newsFeatured .flexItemText .bodytext,
  .all-news--landing .newsFeatured .flexItemText .darkGrayBodyText,
  .all-news--landing .newsFeatured .flexItemText .foa-expiration-date {
    display: none;
  }
}
/* line 387, ../sass/components/_landing_pages.scss */
.all-events--landing .eventFeatured .flexItemImageThird, .all-events--landing .eventFeatured .flexItemImageThirdHalf, .all-events--landing .eventFeatured .hero-image, .all-events--landing .newsFeatured .flexItemImageThird, .all-events--landing .newsFeatured .flexItemImageThirdHalf, .all-events--landing .newsFeatured .hero-image,
.all-news--landing .eventFeatured .flexItemImageThird,
.all-news--landing .eventFeatured .flexItemImageThirdHalf,
.all-news--landing .eventFeatured .hero-image,
.all-news--landing .newsFeatured .flexItemImageThird,
.all-news--landing .newsFeatured .flexItemImageThirdHalf,
.all-news--landing .newsFeatured .hero-image {
  padding: 0;
}
/* line 398, ../sass/components/_landing_pages.scss */
.all-events--landing .view-content .views-row,
.all-news--landing .view-content .views-row {
  padding-bottom: 1em;
}
/* line 402, ../sass/components/_landing_pages.scss */
.all-events--landing .view-content .views-row:last-child,
.all-news--landing .view-content .views-row:last-child {
  border: none;
}
/* line 406, ../sass/components/_landing_pages.scss */
.all-events--landing .newsEventsCard,
.all-news--landing .newsEventsCard {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  background-color: #fff;
  padding: 1em 0;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 406, ../sass/components/_landing_pages.scss */
  .all-events--landing .newsEventsCard,
  .all-news--landing .newsEventsCard {
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
  }
}
/* line 414, ../sass/components/_landing_pages.scss */
.all-events--landing .newsEventsCard .flexItemText.flexTextWithImage,
.all-news--landing .newsEventsCard .flexItemText.flexTextWithImage {
  max-width: 70%;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 414, ../sass/components/_landing_pages.scss */
  .all-events--landing .newsEventsCard .flexItemText.flexTextWithImage,
  .all-news--landing .newsEventsCard .flexItemText.flexTextWithImage {
    max-width: 60%;
  }
}
/* line 420, ../sass/components/_landing_pages.scss */
.all-events--landing .newsEventsCard .flexItemText,
.all-news--landing .newsEventsCard .flexItemText {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  padding: 0 1.5em;
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
  min-width: 70%;
  flex-basis: 70%;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 420, ../sass/components/_landing_pages.scss */
  .all-events--landing .newsEventsCard .flexItemText,
  .all-news--landing .newsEventsCard .flexItemText {
    min-width: 60%;
    flex-basis: 60%;
    padding: 0 1em;
  }
}
/* line 434, ../sass/components/_landing_pages.scss */
.all-events--landing .newsEventsCard .flexItemText .posttitlethumb a, .all-events--landing .newsEventsCard .flexItemText .blue-posttitlethumb a, .all-events--landing .newsEventsCard .flexItemText .objective-list-container .objective-side-text a, .objective-list-container .all-events--landing .newsEventsCard .flexItemText .objective-side-text a,
.all-news--landing .newsEventsCard .flexItemText .posttitlethumb a,
.all-news--landing .newsEventsCard .flexItemText .blue-posttitlethumb a,
.all-news--landing .newsEventsCard .flexItemText .objective-list-container .objective-side-text a,
.objective-list-container .all-news--landing .newsEventsCard .flexItemText .objective-side-text a {
  color: #0051a8;
}
/* line 437, ../sass/components/_landing_pages.scss */
.all-events--landing .newsEventsCard .flexItemText .posttitlethumb a:visited, .all-events--landing .newsEventsCard .flexItemText .blue-posttitlethumb a:visited, .all-events--landing .newsEventsCard .flexItemText .objective-list-container .objective-side-text a:visited, .objective-list-container .all-events--landing .newsEventsCard .flexItemText .objective-side-text a:visited,
.all-news--landing .newsEventsCard .flexItemText .posttitlethumb a:visited,
.all-news--landing .newsEventsCard .flexItemText .blue-posttitlethumb a:visited,
.all-news--landing .newsEventsCard .flexItemText .objective-list-container .objective-side-text a:visited,
.objective-list-container .all-news--landing .newsEventsCard .flexItemText .objective-side-text a:visited {
  color: #6f57B5;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 441, ../sass/components/_landing_pages.scss */
  .all-events--landing .newsEventsCard .flexItemText .bodytext, .all-events--landing .newsEventsCard .flexItemText .darkGrayBodyText, .all-events--landing .newsEventsCard .flexItemText .foa-expiration-date,
  .all-news--landing .newsEventsCard .flexItemText .bodytext,
  .all-news--landing .newsEventsCard .flexItemText .darkGrayBodyText,
  .all-news--landing .newsEventsCard .flexItemText .foa-expiration-date {
    display: none;
  }
}
/* line 447, ../sass/components/_landing_pages.scss */
.all-events--landing .newsEventsCard .flexItemText .field--name-field-description,
.all-news--landing .newsEventsCard .flexItemText .field--name-field-description {
  padding-top: 1em;
}
/* line 450, ../sass/components/_landing_pages.scss */
.all-events--landing .newsEventsCard .flexItemText .eventdatesLocationType,
.all-news--landing .newsEventsCard .flexItemText .eventdatesLocationType {
  -webkit-box-ordinal-group: 3;
  -moz-box-ordinal-group: 3;
  -ms-flex-order: 3;
  -webkit-order: 3;
  order: 3;
}
/* line 453, ../sass/components/_landing_pages.scss */
.all-events--landing .newsEventsCard .flexItemText .readMoreWrapper,
.all-news--landing .newsEventsCard .flexItemText .readMoreWrapper {
  display: none;
}
/* line 457, ../sass/components/_landing_pages.scss */
.all-events--landing .newsEventsCard .flexItemText .eventDates,
.all-events--landing .newsEventsCard .flexItemText .eventLocation,
.all-events--landing .newsEventsCard .flexItemText .eventType,
.all-news--landing .newsEventsCard .flexItemText .eventDates,
.all-news--landing .newsEventsCard .flexItemText .eventLocation,
.all-news--landing .newsEventsCard .flexItemText .eventType {
  color: #222;
  float: left;
}
/* line 464, ../sass/components/_landing_pages.scss */
.all-events--landing .newsEventsCard .flexItemImage, .all-events--landing .newsEventsCard .flexItemImageHalf, .all-events--landing .newsEventsCard .flexItemImageTenth, .all-events--landing .newsEventsCard .flexItemImageFourth, .all-events--landing .newsEventsCard .flexItemImageThird, .all-events--landing .newsEventsCard .flexItemImageThirdHalf, .all-events--landing .newsEventsCard .hero-image,
.all-news--landing .newsEventsCard .flexItemImage,
.all-news--landing .newsEventsCard .flexItemImageHalf,
.all-news--landing .newsEventsCard .flexItemImageTenth,
.all-news--landing .newsEventsCard .flexItemImageFourth,
.all-news--landing .newsEventsCard .flexItemImageThird,
.all-news--landing .newsEventsCard .flexItemImageThirdHalf,
.all-news--landing .newsEventsCard .hero-image {
  min-width: 22%;
  -webkit-box-ordinal-group: 2;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 464, ../sass/components/_landing_pages.scss */
  .all-events--landing .newsEventsCard .flexItemImage, .all-events--landing .newsEventsCard .flexItemImageHalf, .all-events--landing .newsEventsCard .flexItemImageTenth, .all-events--landing .newsEventsCard .flexItemImageFourth, .all-events--landing .newsEventsCard .flexItemImageThird, .all-events--landing .newsEventsCard .flexItemImageThirdHalf, .all-events--landing .newsEventsCard .hero-image,
  .all-news--landing .newsEventsCard .flexItemImage,
  .all-news--landing .newsEventsCard .flexItemImageHalf,
  .all-news--landing .newsEventsCard .flexItemImageTenth,
  .all-news--landing .newsEventsCard .flexItemImageFourth,
  .all-news--landing .newsEventsCard .flexItemImageThird,
  .all-news--landing .newsEventsCard .flexItemImageThirdHalf,
  .all-news--landing .newsEventsCard .hero-image {
    padding: 0;
  }
}

/* line 477, ../sass/components/_landing_pages.scss */
.newsEventsCard .eventdatesLocationType {
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
}
@media all and (min-width: 1100px) {
  /* line 477, ../sass/components/_landing_pages.scss */
  .newsEventsCard .eventdatesLocationType {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
  }
}
/* line 484, ../sass/components/_landing_pages.scss */
.newsEventsCard a:focus, .newsEventsCard a:active {
  outline: #bf0d2e 3px dotted;
}

@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 490, ../sass/components/_landing_pages.scss */
  .eventdatesLocationType {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
  }
}
/* line 494, ../sass/components/_landing_pages.scss */
.eventdatesLocationType .map-icon {
  background-position: 15% center;
}

/* line 498, ../sass/components/_landing_pages.scss */
.topicFeatured {
  background-color: #fff;
}
/* line 500, ../sass/components/_landing_pages.scss */
.topicFeatured .view-content {
  margin-top: 0;
  padding-bottom: 1.5em;
}
/* line 504, ../sass/components/_landing_pages.scss */
.topicFeatured .view-content .views-row {
  margin-top: 0;
}
/* line 507, ../sass/components/_landing_pages.scss */
.topicFeatured .view-content .views-row .flexcontainer, .topicFeatured .view-content .views-row .related-ht-ser-container, .topicFeatured .view-content .views-row .field--name-field-sfa-card, .topicFeatured .view-content .views-row .field--name-field-speaker,
.topicFeatured .view-content .views-row .field--name-field-executives, .topicFeatured .view-content .views-row .standard-card-field, .topicFeatured .view-content .views-row .field--name-field-advisory-committees, .topicFeatured .view-content .views-row .contact-nhlbi-titleblock, .topicFeatured .view-content .views-row .field--name-field-contact-cards, .topicFeatured .view-content .views-row .field--name-field-employment-opportunity-car, .topicFeatured .view-content .views-row .all-grants-foa-container,
.topicFeatured .view-content .views-row .field--name-field-program-officers,
.topicFeatured .view-content .views-row .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content,
.topicFeatured .view-content .views-row .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content, .topicFeatured .view-content .views-row .node--type-individual-contact .field--name-field-contact-methods, .node--type-individual-contact .topicFeatured .view-content .views-row .field--name-field-contact-methods,
.topicFeatured .view-content .views-row .node--type-division.node--view-mode-full .field--name-field-contact-methods,
.node--type-division.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods,
.topicFeatured .view-content .views-row .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods,
.node--type-division.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods,
.topicFeatured .view-content .views-row .node--type-branch.node--view-mode-full .field--name-field-contact-methods,
.node--type-branch.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods,
.topicFeatured .view-content .views-row .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods,
.node--type-branch.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods,
.topicFeatured .view-content .views-row .node--type-general.node--view-mode-full .field--name-field-contact-methods,
.node--type-general.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods,
.topicFeatured .view-content .views-row .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods,
.node--type-general.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods,
.topicFeatured .view-content .views-row .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods,
.node--type-health-education-initiative.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods,
.topicFeatured .view-content .views-row .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods,
.node--type-health-education-initiative.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods, .topicFeatured .view-content .views-row .node--type-committee .field--name-field-card-text, .node--type-committee .topicFeatured .view-content .views-row .field--name-field-card-text, .topicFeatured .view-content .views-row .news-and-events--landing .landing-social, .news-and-events--landing .topicFeatured .view-content .views-row .landing-social, .topicFeatured .view-content .views-row .field--name-field-sfa-cards, .topicFeatured .view-content .views-row .locationMap.contact-location-map-container, .topicFeatured .view-content .views-row .locationMap, .topicFeatured .view-content .views-row .grants-and-training-card-wrapper, .topicFeatured .view-content .views-row .about-nhlbi-division-card-wrapper, .topicFeatured .view-content .views-row .hei-tools-icon-card-wrapper, .topicFeatured .view-content .views-row .field--name-field-grants-and-training-card, .topicFeatured .view-content .views-row .field--name-field-division-card, .topicFeatured .view-content .views-row .field--name-field-tool-icon-card, .topicFeatured .view-content .views-row .field--name-field-promotional-card, .topicFeatured .view-content .views-row .field--name-field-sv-promotional-cards, .topicFeatured .view-content .views-row .field--name-field-about-nhlbi-promotional-ca, .topicFeatured .view-content .views-row .strategic-vision-titleblock, .topicFeatured .view-content .views-row .ppg-titleblock-wrapper, .topicFeatured .view-content .views-row .ppg-guidelines-card-wrapper, .topicFeatured .view-content .views-row .field--name-field-human-subject-cards, .topicFeatured .view-content .views-row .field--name-field-section-card, .topicFeatured .view-content .views-row .field--name-field-highlight-card, .topicFeatured .view-content .views-row .health-topic-teaser-container, .topicFeatured .view-content .views-row .about-nhlbi-our-mission-wrapper, .topicFeatured .view-content .views-row .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard, .about-nhlbi-our-mission-wrapper .topicFeatured .view-content .views-row .field--name-field-leadership > .director-bioCard, .topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ, .nhlbi-publications-and-resources--landing .topicFeatured .view-content .views-row .field--name-field-health-consumer-nhlbi-publ,
.topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi,
.nhlbi-publications-and-resources--landing .topicFeatured .view-content .views-row .field--name-field-health-professionals-nhlbi, .topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .topicFeatured .view-content .views-row .standard-teaser,
.topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .topicFeatured .view-content .views-row .standard-teaser, .topicFeatured .view-content .views-row .publicationsBlock.view-nhlbi-publications > .view-content,
.topicFeatured .view-content .views-row .field--name-field-related-publications, .topicFeatured .view-content .views-row .healthEducationBlock .standard-teaser, .healthEducationBlock .topicFeatured .view-content .views-row .standard-teaser, .topicFeatured .view-content .views-row .systematicEvidenceReviewsBlock .view-content, .systematicEvidenceReviewsBlock .topicFeatured .view-content .views-row .view-content,
.topicFeatured .view-content .views-row .clinicalPracticeGuidelinesBlock .view-content,
.clinicalPracticeGuidelinesBlock .topicFeatured .view-content .views-row .view-content,
.topicFeatured .view-content .views-row .publicationsAndFactSheetsBlock .view-content,
.publicationsAndFactSheetsBlock .topicFeatured .view-content .views-row .view-content, .topicFeatured .view-content .views-row .rtFlexContainer, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-science-supplemental-page, .node--type-research-topic .topicFeatured .view-content .views-row .field--name-field-science-supplemental-page, .topicFeatured .view-content .views-row .node--type-research-topic .researchTopicPublications, .node--type-research-topic .topicFeatured .view-content .views-row .researchTopicPublications, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard, .node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.listTeaserCard, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser, .node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.standard-teaser,
.topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard,
.node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.newsEventsCard, .topicFeatured .view-content .views-row .esi-feature-card, .topicFeatured .view-content .views-row .featured-science-instance-teaser-container, .topicFeatured .view-content .views-row .sfa-teaser-container, .topicFeatured .view-content .views-row .training-opportunity-card .field--name-field-associated-people, .training-opportunity-card .topicFeatured .view-content .views-row .field--name-field-associated-people, .topicFeatured .view-content .views-row .field--name-field-featured-training-opportun, .topicFeatured .view-content .views-row .field--name-field-career-stages, .topicFeatured .view-content .views-row .field--name-field-workforce-development-card, .topicFeatured .view-content .views-row .node--type-update.node--view-mode-executive-teaser, .topicFeatured .view-content .views-row .news-and-events-titleblock, .topicFeatured .view-content .views-row .contact-box > .field--name-field-contact-methods, .topicFeatured .view-content .views-row .leadership-container, .topicFeatured .view-content .views-row .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership, .leadership-container .leadership-deputy-director-container .topicFeatured .view-content .views-row .field--name-field-additional-leadership, .topicFeatured .view-content .views-row .branch-leadership-container, .topicFeatured .view-content .views-row .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership, .branch-leadership-container .leadership-deputy-director-container .topicFeatured .view-content .views-row .field--name-field-additional-leadership, .topicFeatured .view-content .views-row .node--type-general .field--name-field-related-publications, .node--type-general .topicFeatured .view-content .views-row .field--name-field-related-publications, .topicFeatured .view-content .views-row .node--type-general .field--name-field-general-publications-rlt, .node--type-general .topicFeatured .view-content .views-row .field--name-field-general-publications-rlt, .topicFeatured .view-content .views-row .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser, .node--type-general .field--name-field-general-publications-rlt > .field__item .topicFeatured .view-content .views-row .standard-teaser, .topicFeatured .view-content .views-row .node--type-general .field--name-field-related-publications > .field__item .standard-teaser, .node--type-general .field--name-field-related-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser, .topicFeatured .view-content .views-row .objective-text-container, .topicFeatured .view-content .views-row .objective-list-container, .topicFeatured .view-content .views-row .field--name-field-goal-card, .topicFeatured .view-content .views-row .strategic-vision-landing-goals-wrapper, .topicFeatured .view-content .views-row .node--type-principal-investigator .striped-container-wrapper, .node--type-principal-investigator .topicFeatured .view-content .views-row .striped-container-wrapper, .topicFeatured .view-content .views-row .node--type-principal-investigator .striped-container, .node--type-principal-investigator .topicFeatured .view-content .views-row .striped-container, .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .views-row article, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .topicFeatured .view-content .views-row article,
.topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .views-row article,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .topicFeatured .view-content .views-row article, .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .views-row .standard-teaser.node--view-mode-short-teaser, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .topicFeatured .view-content .views-row .standard-teaser.node--view-mode-short-teaser, .topicFeatured .view-content .views-row .field--name-field-awards, .topicFeatured .view-content .views-row .registerSocialContainer, .topicFeatured .view-content .views-row .eventdatesLocationType, .topicFeatured .view-content .views-row .news-article-container, .topicFeatured .view-content .views-row .node--type-feature-article.node--view-mode-press-release-teaser,
.topicFeatured .view-content .views-row .node--type-press-release.node--view-mode-press-release-teaser,
.topicFeatured .view-content .views-row .node--type-events.node--view-mode-press-release-teaser,
.topicFeatured .view-content .views-row .node--type-feature-article.node--view-mode-hp-press-release-teaser,
.topicFeatured .view-content .views-row .node--type-press-release.node--view-mode-hp-press-release-teaser,
.topicFeatured .view-content .views-row .node--type-events.node--view-mode-hp-press-release-teaser,
.topicFeatured .view-content .views-row .node--type-news-mention.node--view-mode-hp-press-release-teaser, .topicFeatured .view-content .views-row .news-header-container, .topicFeatured .view-content .views-row .contacts-container .field--name-field-contacts, .contacts-container .topicFeatured .view-content .views-row .field--name-field-contacts, .topicFeatured .view-content .views-row .publicationsBox .field--name-field-related-publications, .publicationsBox .topicFeatured .view-content .views-row .field--name-field-related-publications, .topicFeatured .view-content .views-row .field--name-field-primary-featured-item, .topicFeatured .view-content .views-row .field--name-field-additional-featured-items, .topicFeatured .view-content .views-row .homepage-health-topics-container, .topicFeatured .view-content .views-row .homepage-mission-areas-container, .topicFeatured .view-content .views-row .homepage-location-container, .topicFeatured .view-content .views-row .field--name-field-alumni, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container, .node--type-nhlbi-publication.node--view-mode-full .topicFeatured .view-content .views-row .nhlbi-publication-details-container,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container,
.node--type-nhlbi-publication.node--view-mode-subscribe .topicFeatured .view-content .views-row .nhlbi-publication-details-container, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications, .node--type-nhlbi-publication.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-related-nhlbi-publications,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications,
.node--type-nhlbi-publication.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-related-nhlbi-publications, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser {
  padding-top: 0;
}
/* line 509, ../sass/components/_landing_pages.scss */
.topicFeatured .view-content .views-row .flexcontainer .flexItemImage, .topicFeatured .view-content .views-row .related-ht-ser-container .flexItemImage, .topicFeatured .view-content .views-row .field--name-field-sfa-card .flexItemImage, .topicFeatured .view-content .views-row .field--name-field-speaker .flexItemImage,
.topicFeatured .view-content .views-row .field--name-field-executives .flexItemImage, .topicFeatured .view-content .views-row .standard-card-field .flexItemImage, .topicFeatured .view-content .views-row .field--name-field-advisory-committees .flexItemImage, .topicFeatured .view-content .views-row .contact-nhlbi-titleblock .flexItemImage, .topicFeatured .view-content .views-row .field--name-field-contact-cards .flexItemImage, .topicFeatured .view-content .views-row .field--name-field-employment-opportunity-car .flexItemImage, .topicFeatured .view-content .views-row .all-grants-foa-container .flexItemImage,
.topicFeatured .view-content .views-row .field--name-field-program-officers .flexItemImage,
.topicFeatured .view-content .views-row .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImage,
.topicFeatured .view-content .views-row .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImage, .topicFeatured .view-content .views-row .node--type-individual-contact .field--name-field-contact-methods .flexItemImage, .node--type-individual-contact .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemImage,
.topicFeatured .view-content .views-row .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemImage,
.node--type-division.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemImage,
.topicFeatured .view-content .views-row .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImage,
.node--type-division.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemImage,
.topicFeatured .view-content .views-row .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemImage,
.node--type-branch.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemImage,
.topicFeatured .view-content .views-row .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImage,
.node--type-branch.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemImage,
.topicFeatured .view-content .views-row .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemImage,
.node--type-general.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemImage,
.topicFeatured .view-content .views-row .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImage,
.node--type-general.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemImage,
.topicFeatured .view-content .views-row .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemImage,
.node--type-health-education-initiative.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemImage,
.topicFeatured .view-content .views-row .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImage,
.node--type-health-education-initiative.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemImage, .topicFeatured .view-content .views-row .node--type-committee .field--name-field-card-text .flexItemImage, .node--type-committee .topicFeatured .view-content .views-row .field--name-field-card-text .flexItemImage, .topicFeatured .view-content .views-row .news-and-events--landing .landing-social .flexItemImage, .news-and-events--landing .topicFeatured .view-content .views-row .landing-social .flexItemImage, .topicFeatured .view-content .views-row .field--name-field-sfa-cards .flexItemImage, .topicFeatured .view-content .views-row .locationMap.contact-location-map-container .flexItemImage, .topicFeatured .view-content .views-row .locationMap .flexItemImage, .topicFeatured .view-content .views-row .grants-and-training-card-wrapper .flexItemImage, .topicFeatured .view-content .views-row .about-nhlbi-division-card-wrapper .flexItemImage, .topicFeatured .view-content .views-row .hei-tools-icon-card-wrapper .flexItemImage, .topicFeatured .view-content .views-row .field--name-field-grants-and-training-card .flexItemImage, .topicFeatured .view-content .views-row .field--name-field-division-card .flexItemImage, .topicFeatured .view-content .views-row .field--name-field-tool-icon-card .flexItemImage, .topicFeatured .view-content .views-row .field--name-field-promotional-card .flexItemImage, .topicFeatured .view-content .views-row .field--name-field-sv-promotional-cards .flexItemImage, .topicFeatured .view-content .views-row .field--name-field-about-nhlbi-promotional-ca .flexItemImage, .topicFeatured .view-content .views-row .strategic-vision-titleblock .flexItemImage, .topicFeatured .view-content .views-row .ppg-titleblock-wrapper .flexItemImage, .topicFeatured .view-content .views-row .ppg-guidelines-card-wrapper .flexItemImage, .topicFeatured .view-content .views-row .field--name-field-human-subject-cards .flexItemImage, .topicFeatured .view-content .views-row .field--name-field-section-card .flexItemImage, .topicFeatured .view-content .views-row .field--name-field-highlight-card .flexItemImage, .topicFeatured .view-content .views-row .health-topic-teaser-container .flexItemImage, .topicFeatured .view-content .views-row .about-nhlbi-our-mission-wrapper .flexItemImage, .topicFeatured .view-content .views-row .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImage, .about-nhlbi-our-mission-wrapper .topicFeatured .view-content .views-row .field--name-field-leadership > .director-bioCard .flexItemImage, .topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImage, .nhlbi-publications-and-resources--landing .topicFeatured .view-content .views-row .field--name-field-health-consumer-nhlbi-publ .flexItemImage,
.topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImage,
.nhlbi-publications-and-resources--landing .topicFeatured .view-content .views-row .field--name-field-health-professionals-nhlbi .flexItemImage, .topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImage, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemImage,
.topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImage,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemImage, .topicFeatured .view-content .views-row .publicationsBlock.view-nhlbi-publications > .view-content .flexItemImage,
.topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemImage, .topicFeatured .view-content .views-row .healthEducationBlock .standard-teaser .flexItemImage, .healthEducationBlock .topicFeatured .view-content .views-row .standard-teaser .flexItemImage, .topicFeatured .view-content .views-row .systematicEvidenceReviewsBlock .view-content .flexItemImage, .systematicEvidenceReviewsBlock .topicFeatured .view-content .views-row .view-content .flexItemImage,
.topicFeatured .view-content .views-row .clinicalPracticeGuidelinesBlock .view-content .flexItemImage,
.clinicalPracticeGuidelinesBlock .topicFeatured .view-content .views-row .view-content .flexItemImage,
.topicFeatured .view-content .views-row .publicationsAndFactSheetsBlock .view-content .flexItemImage,
.publicationsAndFactSheetsBlock .topicFeatured .view-content .views-row .view-content .flexItemImage, .topicFeatured .view-content .views-row .rtFlexContainer .flexItemImage, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImage, .node--type-research-topic .topicFeatured .view-content .views-row .field--name-field-science-supplemental-page .flexItemImage, .topicFeatured .view-content .views-row .node--type-research-topic .researchTopicPublications .flexItemImage, .node--type-research-topic .topicFeatured .view-content .views-row .researchTopicPublications .flexItemImage, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemImage, .node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.listTeaserCard .flexItemImage, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImage, .node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.standard-teaser .flexItemImage,
.topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImage,
.node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.newsEventsCard .flexItemImage, .topicFeatured .view-content .views-row .esi-feature-card .flexItemImage, .topicFeatured .view-content .views-row .featured-science-instance-teaser-container .flexItemImage, .topicFeatured .view-content .views-row .sfa-teaser-container .flexItemImage, .topicFeatured .view-content .views-row .training-opportunity-card .field--name-field-associated-people .flexItemImage, .training-opportunity-card .topicFeatured .view-content .views-row .field--name-field-associated-people .flexItemImage, .topicFeatured .view-content .views-row .field--name-field-featured-training-opportun .flexItemImage, .topicFeatured .view-content .views-row .field--name-field-career-stages .flexItemImage, .topicFeatured .view-content .views-row .field--name-field-workforce-development-card .flexItemImage, .topicFeatured .view-content .views-row .node--type-update.node--view-mode-executive-teaser .flexItemImage, .topicFeatured .view-content .views-row .news-and-events-titleblock .flexItemImage, .topicFeatured .view-content .views-row .contact-box > .field--name-field-contact-methods .flexItemImage, .topicFeatured .view-content .views-row .leadership-container .flexItemImage, .topicFeatured .view-content .views-row .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImage, .leadership-container .leadership-deputy-director-container .topicFeatured .view-content .views-row .field--name-field-additional-leadership .flexItemImage, .topicFeatured .view-content .views-row .branch-leadership-container .flexItemImage, .topicFeatured .view-content .views-row .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImage, .branch-leadership-container .leadership-deputy-director-container .topicFeatured .view-content .views-row .field--name-field-additional-leadership .flexItemImage, .topicFeatured .view-content .views-row .node--type-general .field--name-field-related-publications .flexItemImage, .node--type-general .topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemImage, .topicFeatured .view-content .views-row .node--type-general .field--name-field-general-publications-rlt .flexItemImage, .node--type-general .topicFeatured .view-content .views-row .field--name-field-general-publications-rlt .flexItemImage, .topicFeatured .view-content .views-row .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImage, .node--type-general .field--name-field-general-publications-rlt > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemImage, .topicFeatured .view-content .views-row .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImage, .node--type-general .field--name-field-related-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemImage, .topicFeatured .view-content .views-row .objective-text-container .flexItemImage, .topicFeatured .view-content .views-row .objective-list-container .flexItemImage, .topicFeatured .view-content .views-row .field--name-field-goal-card .flexItemImage, .topicFeatured .view-content .views-row .strategic-vision-landing-goals-wrapper .flexItemImage, .topicFeatured .view-content .views-row .node--type-principal-investigator .striped-container-wrapper .flexItemImage, .node--type-principal-investigator .topicFeatured .view-content .views-row .striped-container-wrapper .flexItemImage, .topicFeatured .view-content .views-row .node--type-principal-investigator .striped-container .flexItemImage, .node--type-principal-investigator .topicFeatured .view-content .views-row .striped-container .flexItemImage, .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .views-row article .flexItemImage, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .topicFeatured .view-content .views-row article .flexItemImage,
.topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .views-row article .flexItemImage,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .topicFeatured .view-content .views-row article .flexItemImage, .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .views-row .standard-teaser.node--view-mode-short-teaser .flexItemImage, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .topicFeatured .view-content .views-row .standard-teaser.node--view-mode-short-teaser .flexItemImage, .topicFeatured .view-content .views-row .field--name-field-awards .flexItemImage, .topicFeatured .view-content .views-row .registerSocialContainer .flexItemImage, .topicFeatured .view-content .views-row .eventdatesLocationType .flexItemImage, .topicFeatured .view-content .views-row .news-article-container .flexItemImage, .topicFeatured .view-content .views-row .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImage,
.topicFeatured .view-content .views-row .node--type-press-release.node--view-mode-press-release-teaser .flexItemImage,
.topicFeatured .view-content .views-row .node--type-events.node--view-mode-press-release-teaser .flexItemImage,
.topicFeatured .view-content .views-row .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImage,
.topicFeatured .view-content .views-row .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImage,
.topicFeatured .view-content .views-row .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImage,
.topicFeatured .view-content .views-row .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImage, .topicFeatured .view-content .views-row .news-header-container .flexItemImage, .topicFeatured .view-content .views-row .contacts-container .field--name-field-contacts .flexItemImage, .contacts-container .topicFeatured .view-content .views-row .field--name-field-contacts .flexItemImage, .topicFeatured .view-content .views-row .publicationsBox .field--name-field-related-publications .flexItemImage, .publicationsBox .topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemImage, .topicFeatured .view-content .views-row .field--name-field-primary-featured-item .flexItemImage, .topicFeatured .view-content .views-row .field--name-field-additional-featured-items .flexItemImage, .topicFeatured .view-content .views-row .homepage-health-topics-container .flexItemImage, .topicFeatured .view-content .views-row .homepage-mission-areas-container .flexItemImage, .topicFeatured .view-content .views-row .homepage-location-container .flexItemImage, .topicFeatured .view-content .views-row .field--name-field-alumni .flexItemImage, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemImage, .node--type-nhlbi-publication.node--view-mode-full .topicFeatured .view-content .views-row .nhlbi-publication-details-container .flexItemImage,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemImage,
.node--type-nhlbi-publication.node--view-mode-subscribe .topicFeatured .view-content .views-row .nhlbi-publication-details-container .flexItemImage, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemImage, .node--type-nhlbi-publication.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-related-nhlbi-publications .flexItemImage,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemImage,
.node--type-nhlbi-publication.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-related-nhlbi-publications .flexItemImage, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImage, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemImage,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImage,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemImage, .topicFeatured .view-content .views-row .flexcontainer .flexItemImageHalf, .topicFeatured .view-content .views-row .related-ht-ser-container .flexItemImageHalf, .topicFeatured .view-content .views-row .field--name-field-sfa-card .flexItemImageHalf, .topicFeatured .view-content .views-row .field--name-field-speaker .flexItemImageHalf,
.topicFeatured .view-content .views-row .field--name-field-executives .flexItemImageHalf, .topicFeatured .view-content .views-row .standard-card-field .flexItemImageHalf, .topicFeatured .view-content .views-row .field--name-field-advisory-committees .flexItemImageHalf, .topicFeatured .view-content .views-row .contact-nhlbi-titleblock .flexItemImageHalf, .topicFeatured .view-content .views-row .field--name-field-contact-cards .flexItemImageHalf, .topicFeatured .view-content .views-row .field--name-field-employment-opportunity-car .flexItemImageHalf, .topicFeatured .view-content .views-row .all-grants-foa-container .flexItemImageHalf,
.topicFeatured .view-content .views-row .field--name-field-program-officers .flexItemImageHalf,
.topicFeatured .view-content .views-row .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageHalf,
.topicFeatured .view-content .views-row .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageHalf, .topicFeatured .view-content .views-row .node--type-individual-contact .field--name-field-contact-methods .flexItemImageHalf, .node--type-individual-contact .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemImageHalf,
.topicFeatured .view-content .views-row .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemImageHalf,
.node--type-division.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemImageHalf,
.topicFeatured .view-content .views-row .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageHalf,
.node--type-division.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemImageHalf,
.topicFeatured .view-content .views-row .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemImageHalf,
.node--type-branch.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemImageHalf,
.topicFeatured .view-content .views-row .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageHalf,
.node--type-branch.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemImageHalf,
.topicFeatured .view-content .views-row .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemImageHalf,
.node--type-general.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemImageHalf,
.topicFeatured .view-content .views-row .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageHalf,
.node--type-general.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemImageHalf,
.topicFeatured .view-content .views-row .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemImageHalf,
.node--type-health-education-initiative.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemImageHalf,
.topicFeatured .view-content .views-row .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageHalf,
.node--type-health-education-initiative.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemImageHalf, .topicFeatured .view-content .views-row .node--type-committee .field--name-field-card-text .flexItemImageHalf, .node--type-committee .topicFeatured .view-content .views-row .field--name-field-card-text .flexItemImageHalf, .topicFeatured .view-content .views-row .news-and-events--landing .landing-social .flexItemImageHalf, .news-and-events--landing .topicFeatured .view-content .views-row .landing-social .flexItemImageHalf, .topicFeatured .view-content .views-row .field--name-field-sfa-cards .flexItemImageHalf, .topicFeatured .view-content .views-row .locationMap.contact-location-map-container .flexItemImageHalf, .topicFeatured .view-content .views-row .locationMap .flexItemImageHalf, .topicFeatured .view-content .views-row .grants-and-training-card-wrapper .flexItemImageHalf, .topicFeatured .view-content .views-row .about-nhlbi-division-card-wrapper .flexItemImageHalf, .topicFeatured .view-content .views-row .hei-tools-icon-card-wrapper .flexItemImageHalf, .topicFeatured .view-content .views-row .field--name-field-grants-and-training-card .flexItemImageHalf, .topicFeatured .view-content .views-row .field--name-field-division-card .flexItemImageHalf, .topicFeatured .view-content .views-row .field--name-field-tool-icon-card .flexItemImageHalf, .topicFeatured .view-content .views-row .field--name-field-promotional-card .flexItemImageHalf, .topicFeatured .view-content .views-row .field--name-field-sv-promotional-cards .flexItemImageHalf, .topicFeatured .view-content .views-row .field--name-field-about-nhlbi-promotional-ca .flexItemImageHalf, .topicFeatured .view-content .views-row .strategic-vision-titleblock .flexItemImageHalf, .topicFeatured .view-content .views-row .ppg-titleblock-wrapper .flexItemImageHalf, .topicFeatured .view-content .views-row .ppg-guidelines-card-wrapper .flexItemImageHalf, .topicFeatured .view-content .views-row .field--name-field-human-subject-cards .flexItemImageHalf, .topicFeatured .view-content .views-row .field--name-field-section-card .flexItemImageHalf, .topicFeatured .view-content .views-row .field--name-field-highlight-card .flexItemImageHalf, .topicFeatured .view-content .views-row .health-topic-teaser-container .flexItemImageHalf, .topicFeatured .view-content .views-row .about-nhlbi-our-mission-wrapper .flexItemImageHalf, .topicFeatured .view-content .views-row .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageHalf, .about-nhlbi-our-mission-wrapper .topicFeatured .view-content .views-row .field--name-field-leadership > .director-bioCard .flexItemImageHalf, .topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageHalf, .nhlbi-publications-and-resources--landing .topicFeatured .view-content .views-row .field--name-field-health-consumer-nhlbi-publ .flexItemImageHalf,
.topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageHalf,
.nhlbi-publications-and-resources--landing .topicFeatured .view-content .views-row .field--name-field-health-professionals-nhlbi .flexItemImageHalf, .topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageHalf, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemImageHalf,
.topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageHalf,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemImageHalf, .topicFeatured .view-content .views-row .publicationsBlock.view-nhlbi-publications > .view-content .flexItemImageHalf,
.topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemImageHalf, .topicFeatured .view-content .views-row .healthEducationBlock .standard-teaser .flexItemImageHalf, .healthEducationBlock .topicFeatured .view-content .views-row .standard-teaser .flexItemImageHalf, .topicFeatured .view-content .views-row .systematicEvidenceReviewsBlock .view-content .flexItemImageHalf, .systematicEvidenceReviewsBlock .topicFeatured .view-content .views-row .view-content .flexItemImageHalf,
.topicFeatured .view-content .views-row .clinicalPracticeGuidelinesBlock .view-content .flexItemImageHalf,
.clinicalPracticeGuidelinesBlock .topicFeatured .view-content .views-row .view-content .flexItemImageHalf,
.topicFeatured .view-content .views-row .publicationsAndFactSheetsBlock .view-content .flexItemImageHalf,
.publicationsAndFactSheetsBlock .topicFeatured .view-content .views-row .view-content .flexItemImageHalf, .topicFeatured .view-content .views-row .rtFlexContainer .flexItemImageHalf, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageHalf, .node--type-research-topic .topicFeatured .view-content .views-row .field--name-field-science-supplemental-page .flexItemImageHalf, .topicFeatured .view-content .views-row .node--type-research-topic .researchTopicPublications .flexItemImageHalf, .node--type-research-topic .topicFeatured .view-content .views-row .researchTopicPublications .flexItemImageHalf, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemImageHalf, .node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.listTeaserCard .flexItemImageHalf, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageHalf, .node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.standard-teaser .flexItemImageHalf,
.topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageHalf,
.node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.newsEventsCard .flexItemImageHalf, .topicFeatured .view-content .views-row .esi-feature-card .flexItemImageHalf, .topicFeatured .view-content .views-row .featured-science-instance-teaser-container .flexItemImageHalf, .topicFeatured .view-content .views-row .sfa-teaser-container .flexItemImageHalf, .topicFeatured .view-content .views-row .training-opportunity-card .field--name-field-associated-people .flexItemImageHalf, .training-opportunity-card .topicFeatured .view-content .views-row .field--name-field-associated-people .flexItemImageHalf, .topicFeatured .view-content .views-row .field--name-field-featured-training-opportun .flexItemImageHalf, .topicFeatured .view-content .views-row .field--name-field-career-stages .flexItemImageHalf, .topicFeatured .view-content .views-row .field--name-field-workforce-development-card .flexItemImageHalf, .topicFeatured .view-content .views-row .node--type-update.node--view-mode-executive-teaser .flexItemImageHalf, .topicFeatured .view-content .views-row .news-and-events-titleblock .flexItemImageHalf, .topicFeatured .view-content .views-row .contact-box > .field--name-field-contact-methods .flexItemImageHalf, .topicFeatured .view-content .views-row .leadership-container .flexItemImageHalf, .topicFeatured .view-content .views-row .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageHalf, .leadership-container .leadership-deputy-director-container .topicFeatured .view-content .views-row .field--name-field-additional-leadership .flexItemImageHalf, .topicFeatured .view-content .views-row .branch-leadership-container .flexItemImageHalf, .topicFeatured .view-content .views-row .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageHalf, .branch-leadership-container .leadership-deputy-director-container .topicFeatured .view-content .views-row .field--name-field-additional-leadership .flexItemImageHalf, .topicFeatured .view-content .views-row .node--type-general .field--name-field-related-publications .flexItemImageHalf, .node--type-general .topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemImageHalf, .topicFeatured .view-content .views-row .node--type-general .field--name-field-general-publications-rlt .flexItemImageHalf, .node--type-general .topicFeatured .view-content .views-row .field--name-field-general-publications-rlt .flexItemImageHalf, .topicFeatured .view-content .views-row .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageHalf, .node--type-general .field--name-field-general-publications-rlt > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemImageHalf, .topicFeatured .view-content .views-row .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageHalf, .node--type-general .field--name-field-related-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemImageHalf, .topicFeatured .view-content .views-row .objective-text-container .flexItemImageHalf, .topicFeatured .view-content .views-row .objective-list-container .flexItemImageHalf, .topicFeatured .view-content .views-row .field--name-field-goal-card .flexItemImageHalf, .topicFeatured .view-content .views-row .strategic-vision-landing-goals-wrapper .flexItemImageHalf, .topicFeatured .view-content .views-row .node--type-principal-investigator .striped-container-wrapper .flexItemImageHalf, .node--type-principal-investigator .topicFeatured .view-content .views-row .striped-container-wrapper .flexItemImageHalf, .topicFeatured .view-content .views-row .node--type-principal-investigator .striped-container .flexItemImageHalf, .node--type-principal-investigator .topicFeatured .view-content .views-row .striped-container .flexItemImageHalf, .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .views-row article .flexItemImageHalf, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .topicFeatured .view-content .views-row article .flexItemImageHalf,
.topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .views-row article .flexItemImageHalf,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .topicFeatured .view-content .views-row article .flexItemImageHalf, .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .views-row .standard-teaser.node--view-mode-short-teaser .flexItemImageHalf, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .topicFeatured .view-content .views-row .standard-teaser.node--view-mode-short-teaser .flexItemImageHalf, .topicFeatured .view-content .views-row .field--name-field-awards .flexItemImageHalf, .topicFeatured .view-content .views-row .registerSocialContainer .flexItemImageHalf, .topicFeatured .view-content .views-row .eventdatesLocationType .flexItemImageHalf, .topicFeatured .view-content .views-row .news-article-container .flexItemImageHalf, .topicFeatured .view-content .views-row .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageHalf,
.topicFeatured .view-content .views-row .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageHalf,
.topicFeatured .view-content .views-row .node--type-events.node--view-mode-press-release-teaser .flexItemImageHalf,
.topicFeatured .view-content .views-row .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageHalf,
.topicFeatured .view-content .views-row .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageHalf,
.topicFeatured .view-content .views-row .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageHalf,
.topicFeatured .view-content .views-row .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageHalf, .topicFeatured .view-content .views-row .news-header-container .flexItemImageHalf, .topicFeatured .view-content .views-row .contacts-container .field--name-field-contacts .flexItemImageHalf, .contacts-container .topicFeatured .view-content .views-row .field--name-field-contacts .flexItemImageHalf, .topicFeatured .view-content .views-row .publicationsBox .field--name-field-related-publications .flexItemImageHalf, .publicationsBox .topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemImageHalf, .topicFeatured .view-content .views-row .field--name-field-primary-featured-item .flexItemImageHalf, .topicFeatured .view-content .views-row .field--name-field-additional-featured-items .flexItemImageHalf, .topicFeatured .view-content .views-row .homepage-health-topics-container .flexItemImageHalf, .topicFeatured .view-content .views-row .homepage-mission-areas-container .flexItemImageHalf, .topicFeatured .view-content .views-row .homepage-location-container .flexItemImageHalf, .topicFeatured .view-content .views-row .field--name-field-alumni .flexItemImageHalf, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemImageHalf, .node--type-nhlbi-publication.node--view-mode-full .topicFeatured .view-content .views-row .nhlbi-publication-details-container .flexItemImageHalf,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemImageHalf,
.node--type-nhlbi-publication.node--view-mode-subscribe .topicFeatured .view-content .views-row .nhlbi-publication-details-container .flexItemImageHalf, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemImageHalf, .node--type-nhlbi-publication.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-related-nhlbi-publications .flexItemImageHalf,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemImageHalf,
.node--type-nhlbi-publication.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-related-nhlbi-publications .flexItemImageHalf, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageHalf, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemImageHalf,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageHalf,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemImageHalf, .topicFeatured .view-content .views-row .flexcontainer .flexItemImageTenth, .topicFeatured .view-content .views-row .related-ht-ser-container .flexItemImageTenth, .topicFeatured .view-content .views-row .field--name-field-sfa-card .flexItemImageTenth, .topicFeatured .view-content .views-row .field--name-field-speaker .flexItemImageTenth,
.topicFeatured .view-content .views-row .field--name-field-executives .flexItemImageTenth, .topicFeatured .view-content .views-row .standard-card-field .flexItemImageTenth, .topicFeatured .view-content .views-row .field--name-field-advisory-committees .flexItemImageTenth, .topicFeatured .view-content .views-row .contact-nhlbi-titleblock .flexItemImageTenth, .topicFeatured .view-content .views-row .field--name-field-contact-cards .flexItemImageTenth, .topicFeatured .view-content .views-row .field--name-field-employment-opportunity-car .flexItemImageTenth, .topicFeatured .view-content .views-row .all-grants-foa-container .flexItemImageTenth,
.topicFeatured .view-content .views-row .field--name-field-program-officers .flexItemImageTenth,
.topicFeatured .view-content .views-row .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageTenth,
.topicFeatured .view-content .views-row .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageTenth, .topicFeatured .view-content .views-row .node--type-individual-contact .field--name-field-contact-methods .flexItemImageTenth, .node--type-individual-contact .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemImageTenth,
.topicFeatured .view-content .views-row .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemImageTenth,
.node--type-division.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemImageTenth,
.topicFeatured .view-content .views-row .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageTenth,
.node--type-division.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemImageTenth,
.topicFeatured .view-content .views-row .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemImageTenth,
.node--type-branch.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemImageTenth,
.topicFeatured .view-content .views-row .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageTenth,
.node--type-branch.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemImageTenth,
.topicFeatured .view-content .views-row .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemImageTenth,
.node--type-general.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemImageTenth,
.topicFeatured .view-content .views-row .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageTenth,
.node--type-general.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemImageTenth,
.topicFeatured .view-content .views-row .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemImageTenth,
.node--type-health-education-initiative.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemImageTenth,
.topicFeatured .view-content .views-row .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageTenth,
.node--type-health-education-initiative.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemImageTenth, .topicFeatured .view-content .views-row .node--type-committee .field--name-field-card-text .flexItemImageTenth, .node--type-committee .topicFeatured .view-content .views-row .field--name-field-card-text .flexItemImageTenth, .topicFeatured .view-content .views-row .news-and-events--landing .landing-social .flexItemImageTenth, .news-and-events--landing .topicFeatured .view-content .views-row .landing-social .flexItemImageTenth, .topicFeatured .view-content .views-row .field--name-field-sfa-cards .flexItemImageTenth, .topicFeatured .view-content .views-row .locationMap.contact-location-map-container .flexItemImageTenth, .topicFeatured .view-content .views-row .locationMap .flexItemImageTenth, .topicFeatured .view-content .views-row .grants-and-training-card-wrapper .flexItemImageTenth, .topicFeatured .view-content .views-row .about-nhlbi-division-card-wrapper .flexItemImageTenth, .topicFeatured .view-content .views-row .hei-tools-icon-card-wrapper .flexItemImageTenth, .topicFeatured .view-content .views-row .field--name-field-grants-and-training-card .flexItemImageTenth, .topicFeatured .view-content .views-row .field--name-field-division-card .flexItemImageTenth, .topicFeatured .view-content .views-row .field--name-field-tool-icon-card .flexItemImageTenth, .topicFeatured .view-content .views-row .field--name-field-promotional-card .flexItemImageTenth, .topicFeatured .view-content .views-row .field--name-field-sv-promotional-cards .flexItemImageTenth, .topicFeatured .view-content .views-row .field--name-field-about-nhlbi-promotional-ca .flexItemImageTenth, .topicFeatured .view-content .views-row .strategic-vision-titleblock .flexItemImageTenth, .topicFeatured .view-content .views-row .ppg-titleblock-wrapper .flexItemImageTenth, .topicFeatured .view-content .views-row .ppg-guidelines-card-wrapper .flexItemImageTenth, .topicFeatured .view-content .views-row .field--name-field-human-subject-cards .flexItemImageTenth, .topicFeatured .view-content .views-row .field--name-field-section-card .flexItemImageTenth, .topicFeatured .view-content .views-row .field--name-field-highlight-card .flexItemImageTenth, .topicFeatured .view-content .views-row .health-topic-teaser-container .flexItemImageTenth, .topicFeatured .view-content .views-row .about-nhlbi-our-mission-wrapper .flexItemImageTenth, .topicFeatured .view-content .views-row .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageTenth, .about-nhlbi-our-mission-wrapper .topicFeatured .view-content .views-row .field--name-field-leadership > .director-bioCard .flexItemImageTenth, .topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageTenth, .nhlbi-publications-and-resources--landing .topicFeatured .view-content .views-row .field--name-field-health-consumer-nhlbi-publ .flexItemImageTenth,
.topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageTenth,
.nhlbi-publications-and-resources--landing .topicFeatured .view-content .views-row .field--name-field-health-professionals-nhlbi .flexItemImageTenth, .topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageTenth, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemImageTenth,
.topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageTenth,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemImageTenth, .topicFeatured .view-content .views-row .publicationsBlock.view-nhlbi-publications > .view-content .flexItemImageTenth,
.topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemImageTenth, .topicFeatured .view-content .views-row .healthEducationBlock .standard-teaser .flexItemImageTenth, .healthEducationBlock .topicFeatured .view-content .views-row .standard-teaser .flexItemImageTenth, .topicFeatured .view-content .views-row .systematicEvidenceReviewsBlock .view-content .flexItemImageTenth, .systematicEvidenceReviewsBlock .topicFeatured .view-content .views-row .view-content .flexItemImageTenth,
.topicFeatured .view-content .views-row .clinicalPracticeGuidelinesBlock .view-content .flexItemImageTenth,
.clinicalPracticeGuidelinesBlock .topicFeatured .view-content .views-row .view-content .flexItemImageTenth,
.topicFeatured .view-content .views-row .publicationsAndFactSheetsBlock .view-content .flexItemImageTenth,
.publicationsAndFactSheetsBlock .topicFeatured .view-content .views-row .view-content .flexItemImageTenth, .topicFeatured .view-content .views-row .rtFlexContainer .flexItemImageTenth, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageTenth, .node--type-research-topic .topicFeatured .view-content .views-row .field--name-field-science-supplemental-page .flexItemImageTenth, .topicFeatured .view-content .views-row .node--type-research-topic .researchTopicPublications .flexItemImageTenth, .node--type-research-topic .topicFeatured .view-content .views-row .researchTopicPublications .flexItemImageTenth, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemImageTenth, .node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.listTeaserCard .flexItemImageTenth, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageTenth, .node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.standard-teaser .flexItemImageTenth,
.topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageTenth,
.node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.newsEventsCard .flexItemImageTenth, .topicFeatured .view-content .views-row .esi-feature-card .flexItemImageTenth, .topicFeatured .view-content .views-row .featured-science-instance-teaser-container .flexItemImageTenth, .topicFeatured .view-content .views-row .sfa-teaser-container .flexItemImageTenth, .topicFeatured .view-content .views-row .training-opportunity-card .field--name-field-associated-people .flexItemImageTenth, .training-opportunity-card .topicFeatured .view-content .views-row .field--name-field-associated-people .flexItemImageTenth, .topicFeatured .view-content .views-row .field--name-field-featured-training-opportun .flexItemImageTenth, .topicFeatured .view-content .views-row .field--name-field-career-stages .flexItemImageTenth, .topicFeatured .view-content .views-row .field--name-field-workforce-development-card .flexItemImageTenth, .topicFeatured .view-content .views-row .node--type-update.node--view-mode-executive-teaser .flexItemImageTenth, .topicFeatured .view-content .views-row .news-and-events-titleblock .flexItemImageTenth, .topicFeatured .view-content .views-row .contact-box > .field--name-field-contact-methods .flexItemImageTenth, .topicFeatured .view-content .views-row .leadership-container .flexItemImageTenth, .topicFeatured .view-content .views-row .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageTenth, .leadership-container .leadership-deputy-director-container .topicFeatured .view-content .views-row .field--name-field-additional-leadership .flexItemImageTenth, .topicFeatured .view-content .views-row .branch-leadership-container .flexItemImageTenth, .topicFeatured .view-content .views-row .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageTenth, .branch-leadership-container .leadership-deputy-director-container .topicFeatured .view-content .views-row .field--name-field-additional-leadership .flexItemImageTenth, .topicFeatured .view-content .views-row .node--type-general .field--name-field-related-publications .flexItemImageTenth, .node--type-general .topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemImageTenth, .topicFeatured .view-content .views-row .node--type-general .field--name-field-general-publications-rlt .flexItemImageTenth, .node--type-general .topicFeatured .view-content .views-row .field--name-field-general-publications-rlt .flexItemImageTenth, .topicFeatured .view-content .views-row .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageTenth, .node--type-general .field--name-field-general-publications-rlt > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemImageTenth, .topicFeatured .view-content .views-row .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageTenth, .node--type-general .field--name-field-related-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemImageTenth, .topicFeatured .view-content .views-row .objective-text-container .flexItemImageTenth, .topicFeatured .view-content .views-row .objective-list-container .flexItemImageTenth, .topicFeatured .view-content .views-row .field--name-field-goal-card .flexItemImageTenth, .topicFeatured .view-content .views-row .strategic-vision-landing-goals-wrapper .flexItemImageTenth, .topicFeatured .view-content .views-row .node--type-principal-investigator .striped-container-wrapper .flexItemImageTenth, .node--type-principal-investigator .topicFeatured .view-content .views-row .striped-container-wrapper .flexItemImageTenth, .topicFeatured .view-content .views-row .node--type-principal-investigator .striped-container .flexItemImageTenth, .node--type-principal-investigator .topicFeatured .view-content .views-row .striped-container .flexItemImageTenth, .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .views-row article .flexItemImageTenth, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .topicFeatured .view-content .views-row article .flexItemImageTenth,
.topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .views-row article .flexItemImageTenth,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .topicFeatured .view-content .views-row article .flexItemImageTenth, .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .views-row .standard-teaser.node--view-mode-short-teaser .flexItemImageTenth, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .topicFeatured .view-content .views-row .standard-teaser.node--view-mode-short-teaser .flexItemImageTenth, .topicFeatured .view-content .views-row .field--name-field-awards .flexItemImageTenth, .topicFeatured .view-content .views-row .registerSocialContainer .flexItemImageTenth, .topicFeatured .view-content .views-row .eventdatesLocationType .flexItemImageTenth, .topicFeatured .view-content .views-row .news-article-container .flexItemImageTenth, .topicFeatured .view-content .views-row .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageTenth,
.topicFeatured .view-content .views-row .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageTenth,
.topicFeatured .view-content .views-row .node--type-events.node--view-mode-press-release-teaser .flexItemImageTenth,
.topicFeatured .view-content .views-row .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageTenth,
.topicFeatured .view-content .views-row .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageTenth,
.topicFeatured .view-content .views-row .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageTenth,
.topicFeatured .view-content .views-row .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageTenth, .topicFeatured .view-content .views-row .news-header-container .flexItemImageTenth, .topicFeatured .view-content .views-row .contacts-container .field--name-field-contacts .flexItemImageTenth, .contacts-container .topicFeatured .view-content .views-row .field--name-field-contacts .flexItemImageTenth, .topicFeatured .view-content .views-row .publicationsBox .field--name-field-related-publications .flexItemImageTenth, .publicationsBox .topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemImageTenth, .topicFeatured .view-content .views-row .field--name-field-primary-featured-item .flexItemImageTenth, .topicFeatured .view-content .views-row .field--name-field-additional-featured-items .flexItemImageTenth, .topicFeatured .view-content .views-row .homepage-health-topics-container .flexItemImageTenth, .topicFeatured .view-content .views-row .homepage-mission-areas-container .flexItemImageTenth, .topicFeatured .view-content .views-row .homepage-location-container .flexItemImageTenth, .topicFeatured .view-content .views-row .field--name-field-alumni .flexItemImageTenth, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemImageTenth, .node--type-nhlbi-publication.node--view-mode-full .topicFeatured .view-content .views-row .nhlbi-publication-details-container .flexItemImageTenth,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemImageTenth,
.node--type-nhlbi-publication.node--view-mode-subscribe .topicFeatured .view-content .views-row .nhlbi-publication-details-container .flexItemImageTenth, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemImageTenth, .node--type-nhlbi-publication.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-related-nhlbi-publications .flexItemImageTenth,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemImageTenth,
.node--type-nhlbi-publication.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-related-nhlbi-publications .flexItemImageTenth, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageTenth, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemImageTenth,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageTenth,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemImageTenth, .topicFeatured .view-content .views-row .flexcontainer .flexItemImageFourth, .topicFeatured .view-content .views-row .related-ht-ser-container .flexItemImageFourth, .topicFeatured .view-content .views-row .field--name-field-sfa-card .flexItemImageFourth, .topicFeatured .view-content .views-row .field--name-field-speaker .flexItemImageFourth,
.topicFeatured .view-content .views-row .field--name-field-executives .flexItemImageFourth, .topicFeatured .view-content .views-row .standard-card-field .flexItemImageFourth, .topicFeatured .view-content .views-row .field--name-field-advisory-committees .flexItemImageFourth, .topicFeatured .view-content .views-row .contact-nhlbi-titleblock .flexItemImageFourth, .topicFeatured .view-content .views-row .field--name-field-contact-cards .flexItemImageFourth, .topicFeatured .view-content .views-row .field--name-field-employment-opportunity-car .flexItemImageFourth, .topicFeatured .view-content .views-row .all-grants-foa-container .flexItemImageFourth,
.topicFeatured .view-content .views-row .field--name-field-program-officers .flexItemImageFourth,
.topicFeatured .view-content .views-row .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageFourth,
.topicFeatured .view-content .views-row .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageFourth, .topicFeatured .view-content .views-row .node--type-individual-contact .field--name-field-contact-methods .flexItemImageFourth, .node--type-individual-contact .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemImageFourth,
.topicFeatured .view-content .views-row .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemImageFourth,
.node--type-division.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemImageFourth,
.topicFeatured .view-content .views-row .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageFourth,
.node--type-division.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemImageFourth,
.topicFeatured .view-content .views-row .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemImageFourth,
.node--type-branch.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemImageFourth,
.topicFeatured .view-content .views-row .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageFourth,
.node--type-branch.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemImageFourth,
.topicFeatured .view-content .views-row .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemImageFourth,
.node--type-general.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemImageFourth,
.topicFeatured .view-content .views-row .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageFourth,
.node--type-general.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemImageFourth,
.topicFeatured .view-content .views-row .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemImageFourth,
.node--type-health-education-initiative.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemImageFourth,
.topicFeatured .view-content .views-row .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageFourth,
.node--type-health-education-initiative.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemImageFourth, .topicFeatured .view-content .views-row .node--type-committee .field--name-field-card-text .flexItemImageFourth, .node--type-committee .topicFeatured .view-content .views-row .field--name-field-card-text .flexItemImageFourth, .topicFeatured .view-content .views-row .news-and-events--landing .landing-social .flexItemImageFourth, .news-and-events--landing .topicFeatured .view-content .views-row .landing-social .flexItemImageFourth, .topicFeatured .view-content .views-row .field--name-field-sfa-cards .flexItemImageFourth, .topicFeatured .view-content .views-row .locationMap.contact-location-map-container .flexItemImageFourth, .topicFeatured .view-content .views-row .locationMap .flexItemImageFourth, .topicFeatured .view-content .views-row .grants-and-training-card-wrapper .flexItemImageFourth, .topicFeatured .view-content .views-row .about-nhlbi-division-card-wrapper .flexItemImageFourth, .topicFeatured .view-content .views-row .hei-tools-icon-card-wrapper .flexItemImageFourth, .topicFeatured .view-content .views-row .field--name-field-grants-and-training-card .flexItemImageFourth, .topicFeatured .view-content .views-row .field--name-field-division-card .flexItemImageFourth, .topicFeatured .view-content .views-row .field--name-field-tool-icon-card .flexItemImageFourth, .topicFeatured .view-content .views-row .field--name-field-promotional-card .flexItemImageFourth, .topicFeatured .view-content .views-row .field--name-field-sv-promotional-cards .flexItemImageFourth, .topicFeatured .view-content .views-row .field--name-field-about-nhlbi-promotional-ca .flexItemImageFourth, .topicFeatured .view-content .views-row .strategic-vision-titleblock .flexItemImageFourth, .topicFeatured .view-content .views-row .ppg-titleblock-wrapper .flexItemImageFourth, .topicFeatured .view-content .views-row .ppg-guidelines-card-wrapper .flexItemImageFourth, .topicFeatured .view-content .views-row .field--name-field-human-subject-cards .flexItemImageFourth, .topicFeatured .view-content .views-row .field--name-field-section-card .flexItemImageFourth, .topicFeatured .view-content .views-row .field--name-field-highlight-card .flexItemImageFourth, .topicFeatured .view-content .views-row .health-topic-teaser-container .flexItemImageFourth, .topicFeatured .view-content .views-row .about-nhlbi-our-mission-wrapper .flexItemImageFourth, .topicFeatured .view-content .views-row .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageFourth, .about-nhlbi-our-mission-wrapper .topicFeatured .view-content .views-row .field--name-field-leadership > .director-bioCard .flexItemImageFourth, .topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageFourth, .nhlbi-publications-and-resources--landing .topicFeatured .view-content .views-row .field--name-field-health-consumer-nhlbi-publ .flexItemImageFourth,
.topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageFourth,
.nhlbi-publications-and-resources--landing .topicFeatured .view-content .views-row .field--name-field-health-professionals-nhlbi .flexItemImageFourth, .topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageFourth, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemImageFourth,
.topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageFourth,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemImageFourth, .topicFeatured .view-content .views-row .publicationsBlock.view-nhlbi-publications > .view-content .flexItemImageFourth,
.topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemImageFourth, .topicFeatured .view-content .views-row .healthEducationBlock .standard-teaser .flexItemImageFourth, .healthEducationBlock .topicFeatured .view-content .views-row .standard-teaser .flexItemImageFourth, .topicFeatured .view-content .views-row .systematicEvidenceReviewsBlock .view-content .flexItemImageFourth, .systematicEvidenceReviewsBlock .topicFeatured .view-content .views-row .view-content .flexItemImageFourth,
.topicFeatured .view-content .views-row .clinicalPracticeGuidelinesBlock .view-content .flexItemImageFourth,
.clinicalPracticeGuidelinesBlock .topicFeatured .view-content .views-row .view-content .flexItemImageFourth,
.topicFeatured .view-content .views-row .publicationsAndFactSheetsBlock .view-content .flexItemImageFourth,
.publicationsAndFactSheetsBlock .topicFeatured .view-content .views-row .view-content .flexItemImageFourth, .topicFeatured .view-content .views-row .rtFlexContainer .flexItemImageFourth, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageFourth, .node--type-research-topic .topicFeatured .view-content .views-row .field--name-field-science-supplemental-page .flexItemImageFourth, .topicFeatured .view-content .views-row .node--type-research-topic .researchTopicPublications .flexItemImageFourth, .node--type-research-topic .topicFeatured .view-content .views-row .researchTopicPublications .flexItemImageFourth, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemImageFourth, .node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.listTeaserCard .flexItemImageFourth, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageFourth, .node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.standard-teaser .flexItemImageFourth,
.topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageFourth,
.node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.newsEventsCard .flexItemImageFourth, .topicFeatured .view-content .views-row .esi-feature-card .flexItemImageFourth, .topicFeatured .view-content .views-row .featured-science-instance-teaser-container .flexItemImageFourth, .topicFeatured .view-content .views-row .sfa-teaser-container .flexItemImageFourth, .topicFeatured .view-content .views-row .training-opportunity-card .field--name-field-associated-people .flexItemImageFourth, .training-opportunity-card .topicFeatured .view-content .views-row .field--name-field-associated-people .flexItemImageFourth, .topicFeatured .view-content .views-row .field--name-field-featured-training-opportun .flexItemImageFourth, .topicFeatured .view-content .views-row .field--name-field-career-stages .flexItemImageFourth, .topicFeatured .view-content .views-row .field--name-field-workforce-development-card .flexItemImageFourth, .topicFeatured .view-content .views-row .node--type-update.node--view-mode-executive-teaser .flexItemImageFourth, .topicFeatured .view-content .views-row .news-and-events-titleblock .flexItemImageFourth, .topicFeatured .view-content .views-row .contact-box > .field--name-field-contact-methods .flexItemImageFourth, .topicFeatured .view-content .views-row .leadership-container .flexItemImageFourth, .topicFeatured .view-content .views-row .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageFourth, .leadership-container .leadership-deputy-director-container .topicFeatured .view-content .views-row .field--name-field-additional-leadership .flexItemImageFourth, .topicFeatured .view-content .views-row .branch-leadership-container .flexItemImageFourth, .topicFeatured .view-content .views-row .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageFourth, .branch-leadership-container .leadership-deputy-director-container .topicFeatured .view-content .views-row .field--name-field-additional-leadership .flexItemImageFourth, .topicFeatured .view-content .views-row .node--type-general .field--name-field-related-publications .flexItemImageFourth, .node--type-general .topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemImageFourth, .topicFeatured .view-content .views-row .node--type-general .field--name-field-general-publications-rlt .flexItemImageFourth, .node--type-general .topicFeatured .view-content .views-row .field--name-field-general-publications-rlt .flexItemImageFourth, .topicFeatured .view-content .views-row .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageFourth, .node--type-general .field--name-field-general-publications-rlt > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemImageFourth, .topicFeatured .view-content .views-row .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageFourth, .node--type-general .field--name-field-related-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemImageFourth, .topicFeatured .view-content .views-row .objective-text-container .flexItemImageFourth, .topicFeatured .view-content .views-row .objective-list-container .flexItemImageFourth, .topicFeatured .view-content .views-row .field--name-field-goal-card .flexItemImageFourth, .topicFeatured .view-content .views-row .strategic-vision-landing-goals-wrapper .flexItemImageFourth, .topicFeatured .view-content .views-row .node--type-principal-investigator .striped-container-wrapper .flexItemImageFourth, .node--type-principal-investigator .topicFeatured .view-content .views-row .striped-container-wrapper .flexItemImageFourth, .topicFeatured .view-content .views-row .node--type-principal-investigator .striped-container .flexItemImageFourth, .node--type-principal-investigator .topicFeatured .view-content .views-row .striped-container .flexItemImageFourth, .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .views-row article .flexItemImageFourth, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .topicFeatured .view-content .views-row article .flexItemImageFourth,
.topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .views-row article .flexItemImageFourth,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .topicFeatured .view-content .views-row article .flexItemImageFourth, .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .views-row .standard-teaser.node--view-mode-short-teaser .flexItemImageFourth, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .topicFeatured .view-content .views-row .standard-teaser.node--view-mode-short-teaser .flexItemImageFourth, .topicFeatured .view-content .views-row .field--name-field-awards .flexItemImageFourth, .topicFeatured .view-content .views-row .registerSocialContainer .flexItemImageFourth, .topicFeatured .view-content .views-row .eventdatesLocationType .flexItemImageFourth, .topicFeatured .view-content .views-row .news-article-container .flexItemImageFourth, .topicFeatured .view-content .views-row .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageFourth,
.topicFeatured .view-content .views-row .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageFourth,
.topicFeatured .view-content .views-row .node--type-events.node--view-mode-press-release-teaser .flexItemImageFourth,
.topicFeatured .view-content .views-row .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageFourth,
.topicFeatured .view-content .views-row .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageFourth,
.topicFeatured .view-content .views-row .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageFourth,
.topicFeatured .view-content .views-row .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageFourth, .topicFeatured .view-content .views-row .news-header-container .flexItemImageFourth, .topicFeatured .view-content .views-row .contacts-container .field--name-field-contacts .flexItemImageFourth, .contacts-container .topicFeatured .view-content .views-row .field--name-field-contacts .flexItemImageFourth, .topicFeatured .view-content .views-row .publicationsBox .field--name-field-related-publications .flexItemImageFourth, .publicationsBox .topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemImageFourth, .topicFeatured .view-content .views-row .field--name-field-primary-featured-item .flexItemImageFourth, .topicFeatured .view-content .views-row .field--name-field-additional-featured-items .flexItemImageFourth, .topicFeatured .view-content .views-row .homepage-health-topics-container .flexItemImageFourth, .topicFeatured .view-content .views-row .homepage-mission-areas-container .flexItemImageFourth, .topicFeatured .view-content .views-row .homepage-location-container .flexItemImageFourth, .topicFeatured .view-content .views-row .field--name-field-alumni .flexItemImageFourth, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemImageFourth, .node--type-nhlbi-publication.node--view-mode-full .topicFeatured .view-content .views-row .nhlbi-publication-details-container .flexItemImageFourth,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemImageFourth,
.node--type-nhlbi-publication.node--view-mode-subscribe .topicFeatured .view-content .views-row .nhlbi-publication-details-container .flexItemImageFourth, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemImageFourth, .node--type-nhlbi-publication.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-related-nhlbi-publications .flexItemImageFourth,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemImageFourth,
.node--type-nhlbi-publication.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-related-nhlbi-publications .flexItemImageFourth, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageFourth, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemImageFourth,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageFourth,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemImageFourth, .topicFeatured .view-content .views-row .flexcontainer .flexItemImageThird, .topicFeatured .view-content .views-row .related-ht-ser-container .flexItemImageThird, .topicFeatured .view-content .views-row .field--name-field-sfa-card .flexItemImageThird, .topicFeatured .view-content .views-row .field--name-field-speaker .flexItemImageThird,
.topicFeatured .view-content .views-row .field--name-field-executives .flexItemImageThird, .topicFeatured .view-content .views-row .standard-card-field .flexItemImageThird, .topicFeatured .view-content .views-row .field--name-field-advisory-committees .flexItemImageThird, .topicFeatured .view-content .views-row .contact-nhlbi-titleblock .flexItemImageThird, .topicFeatured .view-content .views-row .field--name-field-contact-cards .flexItemImageThird, .topicFeatured .view-content .views-row .field--name-field-employment-opportunity-car .flexItemImageThird, .topicFeatured .view-content .views-row .all-grants-foa-container .flexItemImageThird,
.topicFeatured .view-content .views-row .field--name-field-program-officers .flexItemImageThird,
.topicFeatured .view-content .views-row .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageThird,
.topicFeatured .view-content .views-row .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageThird, .topicFeatured .view-content .views-row .node--type-individual-contact .field--name-field-contact-methods .flexItemImageThird, .node--type-individual-contact .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemImageThird,
.topicFeatured .view-content .views-row .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemImageThird,
.node--type-division.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemImageThird,
.topicFeatured .view-content .views-row .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThird,
.node--type-division.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemImageThird,
.topicFeatured .view-content .views-row .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemImageThird,
.node--type-branch.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemImageThird,
.topicFeatured .view-content .views-row .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThird,
.node--type-branch.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemImageThird,
.topicFeatured .view-content .views-row .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemImageThird,
.node--type-general.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemImageThird,
.topicFeatured .view-content .views-row .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThird,
.node--type-general.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemImageThird,
.topicFeatured .view-content .views-row .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemImageThird,
.node--type-health-education-initiative.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemImageThird,
.topicFeatured .view-content .views-row .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThird,
.node--type-health-education-initiative.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemImageThird, .topicFeatured .view-content .views-row .node--type-committee .field--name-field-card-text .flexItemImageThird, .node--type-committee .topicFeatured .view-content .views-row .field--name-field-card-text .flexItemImageThird, .topicFeatured .view-content .views-row .news-and-events--landing .landing-social .flexItemImageThird, .news-and-events--landing .topicFeatured .view-content .views-row .landing-social .flexItemImageThird, .topicFeatured .view-content .views-row .field--name-field-sfa-cards .flexItemImageThird, .topicFeatured .view-content .views-row .locationMap.contact-location-map-container .flexItemImageThird, .topicFeatured .view-content .views-row .locationMap .flexItemImageThird, .topicFeatured .view-content .views-row .grants-and-training-card-wrapper .flexItemImageThird, .topicFeatured .view-content .views-row .about-nhlbi-division-card-wrapper .flexItemImageThird, .topicFeatured .view-content .views-row .hei-tools-icon-card-wrapper .flexItemImageThird, .topicFeatured .view-content .views-row .field--name-field-grants-and-training-card .flexItemImageThird, .topicFeatured .view-content .views-row .field--name-field-division-card .flexItemImageThird, .topicFeatured .view-content .views-row .field--name-field-tool-icon-card .flexItemImageThird, .topicFeatured .view-content .views-row .field--name-field-promotional-card .flexItemImageThird, .topicFeatured .view-content .views-row .field--name-field-sv-promotional-cards .flexItemImageThird, .topicFeatured .view-content .views-row .field--name-field-about-nhlbi-promotional-ca .flexItemImageThird, .topicFeatured .view-content .views-row .strategic-vision-titleblock .flexItemImageThird, .topicFeatured .view-content .views-row .ppg-titleblock-wrapper .flexItemImageThird, .topicFeatured .view-content .views-row .ppg-guidelines-card-wrapper .flexItemImageThird, .topicFeatured .view-content .views-row .field--name-field-human-subject-cards .flexItemImageThird, .topicFeatured .view-content .views-row .field--name-field-section-card .flexItemImageThird, .topicFeatured .view-content .views-row .field--name-field-highlight-card .flexItemImageThird, .topicFeatured .view-content .views-row .health-topic-teaser-container .flexItemImageThird, .topicFeatured .view-content .views-row .about-nhlbi-our-mission-wrapper .flexItemImageThird, .topicFeatured .view-content .views-row .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageThird, .about-nhlbi-our-mission-wrapper .topicFeatured .view-content .views-row .field--name-field-leadership > .director-bioCard .flexItemImageThird, .topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageThird, .nhlbi-publications-and-resources--landing .topicFeatured .view-content .views-row .field--name-field-health-consumer-nhlbi-publ .flexItemImageThird,
.topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageThird,
.nhlbi-publications-and-resources--landing .topicFeatured .view-content .views-row .field--name-field-health-professionals-nhlbi .flexItemImageThird, .topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageThird, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemImageThird,
.topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageThird,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemImageThird, .topicFeatured .view-content .views-row .publicationsBlock.view-nhlbi-publications > .view-content .flexItemImageThird,
.topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemImageThird, .topicFeatured .view-content .views-row .healthEducationBlock .standard-teaser .flexItemImageThird, .healthEducationBlock .topicFeatured .view-content .views-row .standard-teaser .flexItemImageThird, .topicFeatured .view-content .views-row .systematicEvidenceReviewsBlock .view-content .flexItemImageThird, .systematicEvidenceReviewsBlock .topicFeatured .view-content .views-row .view-content .flexItemImageThird,
.topicFeatured .view-content .views-row .clinicalPracticeGuidelinesBlock .view-content .flexItemImageThird,
.clinicalPracticeGuidelinesBlock .topicFeatured .view-content .views-row .view-content .flexItemImageThird,
.topicFeatured .view-content .views-row .publicationsAndFactSheetsBlock .view-content .flexItemImageThird,
.publicationsAndFactSheetsBlock .topicFeatured .view-content .views-row .view-content .flexItemImageThird, .topicFeatured .view-content .views-row .rtFlexContainer .flexItemImageThird, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageThird, .node--type-research-topic .topicFeatured .view-content .views-row .field--name-field-science-supplemental-page .flexItemImageThird, .topicFeatured .view-content .views-row .node--type-research-topic .researchTopicPublications .flexItemImageThird, .node--type-research-topic .topicFeatured .view-content .views-row .researchTopicPublications .flexItemImageThird, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemImageThird, .node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.listTeaserCard .flexItemImageThird, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageThird, .node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.standard-teaser .flexItemImageThird,
.topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageThird,
.node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.newsEventsCard .flexItemImageThird, .topicFeatured .view-content .views-row .esi-feature-card .flexItemImageThird, .topicFeatured .view-content .views-row .featured-science-instance-teaser-container .flexItemImageThird, .topicFeatured .view-content .views-row .sfa-teaser-container .flexItemImageThird, .topicFeatured .view-content .views-row .training-opportunity-card .field--name-field-associated-people .flexItemImageThird, .training-opportunity-card .topicFeatured .view-content .views-row .field--name-field-associated-people .flexItemImageThird, .topicFeatured .view-content .views-row .field--name-field-featured-training-opportun .flexItemImageThird, .topicFeatured .view-content .views-row .field--name-field-career-stages .flexItemImageThird, .topicFeatured .view-content .views-row .field--name-field-workforce-development-card .flexItemImageThird, .topicFeatured .view-content .views-row .node--type-update.node--view-mode-executive-teaser .flexItemImageThird, .topicFeatured .view-content .views-row .news-and-events-titleblock .flexItemImageThird, .topicFeatured .view-content .views-row .contact-box > .field--name-field-contact-methods .flexItemImageThird, .topicFeatured .view-content .views-row .leadership-container .flexItemImageThird, .topicFeatured .view-content .views-row .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageThird, .leadership-container .leadership-deputy-director-container .topicFeatured .view-content .views-row .field--name-field-additional-leadership .flexItemImageThird, .topicFeatured .view-content .views-row .branch-leadership-container .flexItemImageThird, .topicFeatured .view-content .views-row .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageThird, .branch-leadership-container .leadership-deputy-director-container .topicFeatured .view-content .views-row .field--name-field-additional-leadership .flexItemImageThird, .topicFeatured .view-content .views-row .node--type-general .field--name-field-related-publications .flexItemImageThird, .node--type-general .topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemImageThird, .topicFeatured .view-content .views-row .node--type-general .field--name-field-general-publications-rlt .flexItemImageThird, .node--type-general .topicFeatured .view-content .views-row .field--name-field-general-publications-rlt .flexItemImageThird, .topicFeatured .view-content .views-row .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageThird, .node--type-general .field--name-field-general-publications-rlt > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemImageThird, .topicFeatured .view-content .views-row .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageThird, .node--type-general .field--name-field-related-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemImageThird, .topicFeatured .view-content .views-row .objective-text-container .flexItemImageThird, .topicFeatured .view-content .views-row .objective-list-container .flexItemImageThird, .topicFeatured .view-content .views-row .field--name-field-goal-card .flexItemImageThird, .topicFeatured .view-content .views-row .strategic-vision-landing-goals-wrapper .flexItemImageThird, .topicFeatured .view-content .views-row .node--type-principal-investigator .striped-container-wrapper .flexItemImageThird, .node--type-principal-investigator .topicFeatured .view-content .views-row .striped-container-wrapper .flexItemImageThird, .topicFeatured .view-content .views-row .node--type-principal-investigator .striped-container .flexItemImageThird, .node--type-principal-investigator .topicFeatured .view-content .views-row .striped-container .flexItemImageThird, .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .views-row article .flexItemImageThird, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .topicFeatured .view-content .views-row article .flexItemImageThird,
.topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .views-row article .flexItemImageThird,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .topicFeatured .view-content .views-row article .flexItemImageThird, .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .views-row .standard-teaser.node--view-mode-short-teaser .flexItemImageThird, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .topicFeatured .view-content .views-row .standard-teaser.node--view-mode-short-teaser .flexItemImageThird, .topicFeatured .view-content .views-row .field--name-field-awards .flexItemImageThird, .topicFeatured .view-content .views-row .registerSocialContainer .flexItemImageThird, .topicFeatured .view-content .views-row .eventdatesLocationType .flexItemImageThird, .topicFeatured .view-content .views-row .news-article-container .flexItemImageThird, .topicFeatured .view-content .views-row .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageThird,
.topicFeatured .view-content .views-row .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageThird,
.topicFeatured .view-content .views-row .node--type-events.node--view-mode-press-release-teaser .flexItemImageThird,
.topicFeatured .view-content .views-row .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageThird,
.topicFeatured .view-content .views-row .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageThird,
.topicFeatured .view-content .views-row .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageThird,
.topicFeatured .view-content .views-row .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageThird, .topicFeatured .view-content .views-row .news-header-container .flexItemImageThird, .topicFeatured .view-content .views-row .contacts-container .field--name-field-contacts .flexItemImageThird, .contacts-container .topicFeatured .view-content .views-row .field--name-field-contacts .flexItemImageThird, .topicFeatured .view-content .views-row .publicationsBox .field--name-field-related-publications .flexItemImageThird, .publicationsBox .topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemImageThird, .topicFeatured .view-content .views-row .field--name-field-primary-featured-item .flexItemImageThird, .topicFeatured .view-content .views-row .field--name-field-additional-featured-items .flexItemImageThird, .topicFeatured .view-content .views-row .homepage-health-topics-container .flexItemImageThird, .topicFeatured .view-content .views-row .homepage-mission-areas-container .flexItemImageThird, .topicFeatured .view-content .views-row .homepage-location-container .flexItemImageThird, .topicFeatured .view-content .views-row .field--name-field-alumni .flexItemImageThird, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemImageThird, .node--type-nhlbi-publication.node--view-mode-full .topicFeatured .view-content .views-row .nhlbi-publication-details-container .flexItemImageThird,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemImageThird,
.node--type-nhlbi-publication.node--view-mode-subscribe .topicFeatured .view-content .views-row .nhlbi-publication-details-container .flexItemImageThird, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemImageThird, .node--type-nhlbi-publication.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-related-nhlbi-publications .flexItemImageThird,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemImageThird,
.node--type-nhlbi-publication.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-related-nhlbi-publications .flexItemImageThird, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageThird, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemImageThird,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageThird,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemImageThird, .topicFeatured .view-content .views-row .flexcontainer .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .related-ht-ser-container .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .field--name-field-sfa-card .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .field--name-field-speaker .flexItemImageThirdHalf,
.topicFeatured .view-content .views-row .field--name-field-executives .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .standard-card-field .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .field--name-field-advisory-committees .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .contact-nhlbi-titleblock .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .field--name-field-contact-cards .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .field--name-field-employment-opportunity-car .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .all-grants-foa-container .flexItemImageThirdHalf,
.topicFeatured .view-content .views-row .field--name-field-program-officers .flexItemImageThirdHalf,
.topicFeatured .view-content .views-row .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageThirdHalf,
.topicFeatured .view-content .views-row .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .node--type-individual-contact .field--name-field-contact-methods .flexItemImageThirdHalf, .node--type-individual-contact .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemImageThirdHalf,
.topicFeatured .view-content .views-row .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-division.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemImageThirdHalf,
.topicFeatured .view-content .views-row .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-division.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemImageThirdHalf,
.topicFeatured .view-content .views-row .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-branch.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemImageThirdHalf,
.topicFeatured .view-content .views-row .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-branch.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemImageThirdHalf,
.topicFeatured .view-content .views-row .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-general.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemImageThirdHalf,
.topicFeatured .view-content .views-row .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-general.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemImageThirdHalf,
.topicFeatured .view-content .views-row .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-health-education-initiative.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemImageThirdHalf,
.topicFeatured .view-content .views-row .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-health-education-initiative.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .node--type-committee .field--name-field-card-text .flexItemImageThirdHalf, .node--type-committee .topicFeatured .view-content .views-row .field--name-field-card-text .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .news-and-events--landing .landing-social .flexItemImageThirdHalf, .news-and-events--landing .topicFeatured .view-content .views-row .landing-social .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .field--name-field-sfa-cards .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .locationMap.contact-location-map-container .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .locationMap .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .grants-and-training-card-wrapper .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .about-nhlbi-division-card-wrapper .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .hei-tools-icon-card-wrapper .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .field--name-field-grants-and-training-card .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .field--name-field-division-card .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .field--name-field-tool-icon-card .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .field--name-field-promotional-card .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .field--name-field-sv-promotional-cards .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .field--name-field-about-nhlbi-promotional-ca .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .strategic-vision-titleblock .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .ppg-titleblock-wrapper .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .ppg-guidelines-card-wrapper .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .field--name-field-human-subject-cards .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .field--name-field-section-card .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .field--name-field-highlight-card .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .health-topic-teaser-container .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .about-nhlbi-our-mission-wrapper .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageThirdHalf, .about-nhlbi-our-mission-wrapper .topicFeatured .view-content .views-row .field--name-field-leadership > .director-bioCard .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageThirdHalf, .nhlbi-publications-and-resources--landing .topicFeatured .view-content .views-row .field--name-field-health-consumer-nhlbi-publ .flexItemImageThirdHalf,
.topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageThirdHalf,
.nhlbi-publications-and-resources--landing .topicFeatured .view-content .views-row .field--name-field-health-professionals-nhlbi .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageThirdHalf, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemImageThirdHalf,
.topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageThirdHalf,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .publicationsBlock.view-nhlbi-publications > .view-content .flexItemImageThirdHalf,
.topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .healthEducationBlock .standard-teaser .flexItemImageThirdHalf, .healthEducationBlock .topicFeatured .view-content .views-row .standard-teaser .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .systematicEvidenceReviewsBlock .view-content .flexItemImageThirdHalf, .systematicEvidenceReviewsBlock .topicFeatured .view-content .views-row .view-content .flexItemImageThirdHalf,
.topicFeatured .view-content .views-row .clinicalPracticeGuidelinesBlock .view-content .flexItemImageThirdHalf,
.clinicalPracticeGuidelinesBlock .topicFeatured .view-content .views-row .view-content .flexItemImageThirdHalf,
.topicFeatured .view-content .views-row .publicationsAndFactSheetsBlock .view-content .flexItemImageThirdHalf,
.publicationsAndFactSheetsBlock .topicFeatured .view-content .views-row .view-content .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .rtFlexContainer .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageThirdHalf, .node--type-research-topic .topicFeatured .view-content .views-row .field--name-field-science-supplemental-page .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .node--type-research-topic .researchTopicPublications .flexItemImageThirdHalf, .node--type-research-topic .topicFeatured .view-content .views-row .researchTopicPublications .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemImageThirdHalf, .node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.listTeaserCard .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageThirdHalf, .node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.standard-teaser .flexItemImageThirdHalf,
.topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageThirdHalf,
.node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.newsEventsCard .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .esi-feature-card .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .featured-science-instance-teaser-container .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .sfa-teaser-container .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .training-opportunity-card .field--name-field-associated-people .flexItemImageThirdHalf, .training-opportunity-card .topicFeatured .view-content .views-row .field--name-field-associated-people .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .field--name-field-featured-training-opportun .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .field--name-field-career-stages .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .field--name-field-workforce-development-card .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .node--type-update.node--view-mode-executive-teaser .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .news-and-events-titleblock .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .contact-box > .field--name-field-contact-methods .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .leadership-container .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageThirdHalf, .leadership-container .leadership-deputy-director-container .topicFeatured .view-content .views-row .field--name-field-additional-leadership .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .branch-leadership-container .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageThirdHalf, .branch-leadership-container .leadership-deputy-director-container .topicFeatured .view-content .views-row .field--name-field-additional-leadership .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .node--type-general .field--name-field-related-publications .flexItemImageThirdHalf, .node--type-general .topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .node--type-general .field--name-field-general-publications-rlt .flexItemImageThirdHalf, .node--type-general .topicFeatured .view-content .views-row .field--name-field-general-publications-rlt .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageThirdHalf, .node--type-general .field--name-field-general-publications-rlt > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageThirdHalf, .node--type-general .field--name-field-related-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .objective-text-container .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .objective-list-container .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .field--name-field-goal-card .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .strategic-vision-landing-goals-wrapper .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .node--type-principal-investigator .striped-container-wrapper .flexItemImageThirdHalf, .node--type-principal-investigator .topicFeatured .view-content .views-row .striped-container-wrapper .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .node--type-principal-investigator .striped-container .flexItemImageThirdHalf, .node--type-principal-investigator .topicFeatured .view-content .views-row .striped-container .flexItemImageThirdHalf, .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .views-row article .flexItemImageThirdHalf, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .topicFeatured .view-content .views-row article .flexItemImageThirdHalf,
.topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .views-row article .flexItemImageThirdHalf,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .topicFeatured .view-content .views-row article .flexItemImageThirdHalf, .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .views-row .standard-teaser.node--view-mode-short-teaser .flexItemImageThirdHalf, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .topicFeatured .view-content .views-row .standard-teaser.node--view-mode-short-teaser .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .field--name-field-awards .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .registerSocialContainer .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .eventdatesLocationType .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .news-article-container .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageThirdHalf,
.topicFeatured .view-content .views-row .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageThirdHalf,
.topicFeatured .view-content .views-row .node--type-events.node--view-mode-press-release-teaser .flexItemImageThirdHalf,
.topicFeatured .view-content .views-row .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf,
.topicFeatured .view-content .views-row .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf,
.topicFeatured .view-content .views-row .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf,
.topicFeatured .view-content .views-row .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .news-header-container .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .contacts-container .field--name-field-contacts .flexItemImageThirdHalf, .contacts-container .topicFeatured .view-content .views-row .field--name-field-contacts .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .publicationsBox .field--name-field-related-publications .flexItemImageThirdHalf, .publicationsBox .topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .field--name-field-primary-featured-item .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .field--name-field-additional-featured-items .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .homepage-health-topics-container .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .homepage-mission-areas-container .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .homepage-location-container .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .field--name-field-alumni .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemImageThirdHalf, .node--type-nhlbi-publication.node--view-mode-full .topicFeatured .view-content .views-row .nhlbi-publication-details-container .flexItemImageThirdHalf,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemImageThirdHalf,
.node--type-nhlbi-publication.node--view-mode-subscribe .topicFeatured .view-content .views-row .nhlbi-publication-details-container .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemImageThirdHalf, .node--type-nhlbi-publication.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-related-nhlbi-publications .flexItemImageThirdHalf,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemImageThirdHalf,
.node--type-nhlbi-publication.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-related-nhlbi-publications .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageThirdHalf, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemImageThirdHalf,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageThirdHalf,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .flexcontainer .hero-image, .topicFeatured .view-content .views-row .related-ht-ser-container .hero-image, .topicFeatured .view-content .views-row .field--name-field-sfa-card .hero-image, .topicFeatured .view-content .views-row .field--name-field-speaker .hero-image,
.topicFeatured .view-content .views-row .field--name-field-executives .hero-image, .topicFeatured .view-content .views-row .standard-card-field .hero-image, .topicFeatured .view-content .views-row .field--name-field-advisory-committees .hero-image, .topicFeatured .view-content .views-row .contact-nhlbi-titleblock .hero-image, .topicFeatured .view-content .views-row .field--name-field-contact-cards .hero-image, .topicFeatured .view-content .views-row .field--name-field-employment-opportunity-car .hero-image, .topicFeatured .view-content .views-row .all-grants-foa-container .hero-image,
.topicFeatured .view-content .views-row .field--name-field-program-officers .hero-image,
.topicFeatured .view-content .views-row .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .hero-image,
.topicFeatured .view-content .views-row .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .hero-image, .topicFeatured .view-content .views-row .node--type-individual-contact .field--name-field-contact-methods .hero-image, .node--type-individual-contact .topicFeatured .view-content .views-row .field--name-field-contact-methods .hero-image,
.topicFeatured .view-content .views-row .node--type-division.node--view-mode-full .field--name-field-contact-methods .hero-image,
.node--type-division.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .hero-image,
.topicFeatured .view-content .views-row .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .hero-image,
.node--type-division.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .hero-image,
.topicFeatured .view-content .views-row .node--type-branch.node--view-mode-full .field--name-field-contact-methods .hero-image,
.node--type-branch.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .hero-image,
.topicFeatured .view-content .views-row .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .hero-image,
.node--type-branch.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .hero-image,
.topicFeatured .view-content .views-row .node--type-general.node--view-mode-full .field--name-field-contact-methods .hero-image,
.node--type-general.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .hero-image,
.topicFeatured .view-content .views-row .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .hero-image,
.node--type-general.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .hero-image,
.topicFeatured .view-content .views-row .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .hero-image,
.node--type-health-education-initiative.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .hero-image,
.topicFeatured .view-content .views-row .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .hero-image,
.node--type-health-education-initiative.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .hero-image, .topicFeatured .view-content .views-row .node--type-committee .field--name-field-card-text .hero-image, .node--type-committee .topicFeatured .view-content .views-row .field--name-field-card-text .hero-image, .topicFeatured .view-content .views-row .news-and-events--landing .landing-social .hero-image, .news-and-events--landing .topicFeatured .view-content .views-row .landing-social .hero-image, .topicFeatured .view-content .views-row .field--name-field-sfa-cards .hero-image, .topicFeatured .view-content .views-row .locationMap.contact-location-map-container .hero-image, .topicFeatured .view-content .views-row .locationMap .hero-image, .topicFeatured .view-content .views-row .grants-and-training-card-wrapper .hero-image, .topicFeatured .view-content .views-row .about-nhlbi-division-card-wrapper .hero-image, .topicFeatured .view-content .views-row .hei-tools-icon-card-wrapper .hero-image, .topicFeatured .view-content .views-row .field--name-field-grants-and-training-card .hero-image, .topicFeatured .view-content .views-row .field--name-field-division-card .hero-image, .topicFeatured .view-content .views-row .field--name-field-tool-icon-card .hero-image, .topicFeatured .view-content .views-row .field--name-field-promotional-card .hero-image, .topicFeatured .view-content .views-row .field--name-field-sv-promotional-cards .hero-image, .topicFeatured .view-content .views-row .field--name-field-about-nhlbi-promotional-ca .hero-image, .topicFeatured .view-content .views-row .strategic-vision-titleblock .hero-image, .topicFeatured .view-content .views-row .ppg-titleblock-wrapper .hero-image, .topicFeatured .view-content .views-row .ppg-guidelines-card-wrapper .hero-image, .topicFeatured .view-content .views-row .field--name-field-human-subject-cards .hero-image, .topicFeatured .view-content .views-row .field--name-field-section-card .hero-image, .topicFeatured .view-content .views-row .field--name-field-highlight-card .hero-image, .topicFeatured .view-content .views-row .health-topic-teaser-container .hero-image, .topicFeatured .view-content .views-row .about-nhlbi-our-mission-wrapper .hero-image, .topicFeatured .view-content .views-row .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .hero-image, .about-nhlbi-our-mission-wrapper .topicFeatured .view-content .views-row .field--name-field-leadership > .director-bioCard .hero-image, .topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .hero-image, .nhlbi-publications-and-resources--landing .topicFeatured .view-content .views-row .field--name-field-health-consumer-nhlbi-publ .hero-image,
.topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .hero-image,
.nhlbi-publications-and-resources--landing .topicFeatured .view-content .views-row .field--name-field-health-professionals-nhlbi .hero-image, .topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .hero-image, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .topicFeatured .view-content .views-row .standard-teaser .hero-image,
.topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .hero-image,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .topicFeatured .view-content .views-row .standard-teaser .hero-image, .topicFeatured .view-content .views-row .publicationsBlock.view-nhlbi-publications > .view-content .hero-image,
.topicFeatured .view-content .views-row .field--name-field-related-publications .hero-image, .topicFeatured .view-content .views-row .healthEducationBlock .standard-teaser .hero-image, .healthEducationBlock .topicFeatured .view-content .views-row .standard-teaser .hero-image, .topicFeatured .view-content .views-row .systematicEvidenceReviewsBlock .view-content .hero-image, .systematicEvidenceReviewsBlock .topicFeatured .view-content .views-row .view-content .hero-image,
.topicFeatured .view-content .views-row .clinicalPracticeGuidelinesBlock .view-content .hero-image,
.clinicalPracticeGuidelinesBlock .topicFeatured .view-content .views-row .view-content .hero-image,
.topicFeatured .view-content .views-row .publicationsAndFactSheetsBlock .view-content .hero-image,
.publicationsAndFactSheetsBlock .topicFeatured .view-content .views-row .view-content .hero-image, .topicFeatured .view-content .views-row .rtFlexContainer .hero-image, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-science-supplemental-page .hero-image, .node--type-research-topic .topicFeatured .view-content .views-row .field--name-field-science-supplemental-page .hero-image, .topicFeatured .view-content .views-row .node--type-research-topic .researchTopicPublications .hero-image, .node--type-research-topic .topicFeatured .view-content .views-row .researchTopicPublications .hero-image, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .hero-image, .node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.listTeaserCard .hero-image, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .hero-image, .node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.standard-teaser .hero-image,
.topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .hero-image,
.node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.newsEventsCard .hero-image, .topicFeatured .view-content .views-row .esi-feature-card .hero-image, .topicFeatured .view-content .views-row .featured-science-instance-teaser-container .hero-image, .topicFeatured .view-content .views-row .sfa-teaser-container .hero-image, .topicFeatured .view-content .views-row .training-opportunity-card .field--name-field-associated-people .hero-image, .training-opportunity-card .topicFeatured .view-content .views-row .field--name-field-associated-people .hero-image, .topicFeatured .view-content .views-row .field--name-field-featured-training-opportun .hero-image, .topicFeatured .view-content .views-row .field--name-field-career-stages .hero-image, .topicFeatured .view-content .views-row .field--name-field-workforce-development-card .hero-image, .topicFeatured .view-content .views-row .node--type-update.node--view-mode-executive-teaser .hero-image, .topicFeatured .view-content .views-row .news-and-events-titleblock .hero-image, .topicFeatured .view-content .views-row .contact-box > .field--name-field-contact-methods .hero-image, .topicFeatured .view-content .views-row .leadership-container .hero-image, .topicFeatured .view-content .views-row .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .hero-image, .leadership-container .leadership-deputy-director-container .topicFeatured .view-content .views-row .field--name-field-additional-leadership .hero-image, .topicFeatured .view-content .views-row .branch-leadership-container .hero-image, .topicFeatured .view-content .views-row .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .hero-image, .branch-leadership-container .leadership-deputy-director-container .topicFeatured .view-content .views-row .field--name-field-additional-leadership .hero-image, .topicFeatured .view-content .views-row .node--type-general .field--name-field-related-publications .hero-image, .node--type-general .topicFeatured .view-content .views-row .field--name-field-related-publications .hero-image, .topicFeatured .view-content .views-row .node--type-general .field--name-field-general-publications-rlt .hero-image, .node--type-general .topicFeatured .view-content .views-row .field--name-field-general-publications-rlt .hero-image, .topicFeatured .view-content .views-row .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .hero-image, .node--type-general .field--name-field-general-publications-rlt > .field__item .topicFeatured .view-content .views-row .standard-teaser .hero-image, .topicFeatured .view-content .views-row .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .hero-image, .node--type-general .field--name-field-related-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser .hero-image, .topicFeatured .view-content .views-row .objective-text-container .hero-image, .topicFeatured .view-content .views-row .objective-list-container .hero-image, .topicFeatured .view-content .views-row .field--name-field-goal-card .hero-image, .topicFeatured .view-content .views-row .strategic-vision-landing-goals-wrapper .hero-image, .topicFeatured .view-content .views-row .node--type-principal-investigator .striped-container-wrapper .hero-image, .node--type-principal-investigator .topicFeatured .view-content .views-row .striped-container-wrapper .hero-image, .topicFeatured .view-content .views-row .node--type-principal-investigator .striped-container .hero-image, .node--type-principal-investigator .topicFeatured .view-content .views-row .striped-container .hero-image, .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .views-row article .hero-image, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .topicFeatured .view-content .views-row article .hero-image,
.topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .views-row article .hero-image,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .topicFeatured .view-content .views-row article .hero-image, .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .views-row .standard-teaser.node--view-mode-short-teaser .hero-image, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .topicFeatured .view-content .views-row .standard-teaser.node--view-mode-short-teaser .hero-image, .topicFeatured .view-content .views-row .field--name-field-awards .hero-image, .topicFeatured .view-content .views-row .registerSocialContainer .hero-image, .topicFeatured .view-content .views-row .eventdatesLocationType .hero-image, .topicFeatured .view-content .views-row .news-article-container .hero-image, .topicFeatured .view-content .views-row .node--type-feature-article.node--view-mode-press-release-teaser .hero-image,
.topicFeatured .view-content .views-row .node--type-press-release.node--view-mode-press-release-teaser .hero-image,
.topicFeatured .view-content .views-row .node--type-events.node--view-mode-press-release-teaser .hero-image,
.topicFeatured .view-content .views-row .node--type-feature-article.node--view-mode-hp-press-release-teaser .hero-image,
.topicFeatured .view-content .views-row .node--type-press-release.node--view-mode-hp-press-release-teaser .hero-image,
.topicFeatured .view-content .views-row .node--type-events.node--view-mode-hp-press-release-teaser .hero-image,
.topicFeatured .view-content .views-row .node--type-news-mention.node--view-mode-hp-press-release-teaser .hero-image, .topicFeatured .view-content .views-row .news-header-container .hero-image, .topicFeatured .view-content .views-row .contacts-container .field--name-field-contacts .hero-image, .contacts-container .topicFeatured .view-content .views-row .field--name-field-contacts .hero-image, .topicFeatured .view-content .views-row .publicationsBox .field--name-field-related-publications .hero-image, .publicationsBox .topicFeatured .view-content .views-row .field--name-field-related-publications .hero-image, .topicFeatured .view-content .views-row .field--name-field-primary-featured-item .hero-image, .topicFeatured .view-content .views-row .field--name-field-additional-featured-items .hero-image, .topicFeatured .view-content .views-row .homepage-health-topics-container .hero-image, .topicFeatured .view-content .views-row .homepage-mission-areas-container .hero-image, .topicFeatured .view-content .views-row .homepage-location-container .hero-image, .topicFeatured .view-content .views-row .field--name-field-alumni .hero-image, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .hero-image, .node--type-nhlbi-publication.node--view-mode-full .topicFeatured .view-content .views-row .nhlbi-publication-details-container .hero-image,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .hero-image,
.node--type-nhlbi-publication.node--view-mode-subscribe .topicFeatured .view-content .views-row .nhlbi-publication-details-container .hero-image, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .hero-image, .node--type-nhlbi-publication.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-related-nhlbi-publications .hero-image,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .hero-image,
.node--type-nhlbi-publication.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-related-nhlbi-publications .hero-image, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .hero-image, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser .hero-image,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .hero-image,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser .hero-image {
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
}
@media all and (min-width: 1100px) {
  /* line 512, ../sass/components/_landing_pages.scss */
  .topicFeatured .view-content .views-row .flexcontainer .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .related-ht-ser-container .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-sfa-card .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-speaker .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .field--name-field-executives .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .standard-card-field .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-advisory-committees .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .contact-nhlbi-titleblock .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-contact-cards .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-employment-opportunity-car .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .all-grants-foa-container .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .field--name-field-program-officers .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .node--type-individual-contact .field--name-field-contact-methods .flexItemText.flexItemTextHalf, .node--type-individual-contact .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemText.flexItemTextHalf,
  .node--type-division.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText.flexItemTextHalf,
  .node--type-division.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemText.flexItemTextHalf,
  .node--type-branch.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText.flexItemTextHalf,
  .node--type-branch.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemText.flexItemTextHalf,
  .node--type-general.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText.flexItemTextHalf,
  .node--type-general.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemText.flexItemTextHalf,
  .node--type-health-education-initiative.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText.flexItemTextHalf,
  .node--type-health-education-initiative.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .node--type-committee .field--name-field-card-text .flexItemText.flexItemTextHalf, .node--type-committee .topicFeatured .view-content .views-row .field--name-field-card-text .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .news-and-events--landing .landing-social .flexItemText.flexItemTextHalf, .news-and-events--landing .topicFeatured .view-content .views-row .landing-social .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-sfa-cards .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .locationMap.contact-location-map-container .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .locationMap .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .grants-and-training-card-wrapper .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .about-nhlbi-division-card-wrapper .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .hei-tools-icon-card-wrapper .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-grants-and-training-card .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-division-card .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-tool-icon-card .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-promotional-card .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-sv-promotional-cards .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-about-nhlbi-promotional-ca .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .strategic-vision-titleblock .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .ppg-titleblock-wrapper .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .ppg-guidelines-card-wrapper .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-human-subject-cards .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-section-card .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-highlight-card .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .health-topic-teaser-container .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .about-nhlbi-our-mission-wrapper .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText.flexItemTextHalf, .about-nhlbi-our-mission-wrapper .topicFeatured .view-content .views-row .field--name-field-leadership > .director-bioCard .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemText.flexItemTextHalf, .nhlbi-publications-and-resources--landing .topicFeatured .view-content .views-row .field--name-field-health-consumer-nhlbi-publ .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemText.flexItemTextHalf,
  .nhlbi-publications-and-resources--landing .topicFeatured .view-content .views-row .field--name-field-health-professionals-nhlbi .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemText.flexItemTextHalf, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemText.flexItemTextHalf,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .publicationsBlock.view-nhlbi-publications > .view-content .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .healthEducationBlock .standard-teaser .flexItemText.flexItemTextHalf, .healthEducationBlock .topicFeatured .view-content .views-row .standard-teaser .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .systematicEvidenceReviewsBlock .view-content .flexItemText.flexItemTextHalf, .systematicEvidenceReviewsBlock .topicFeatured .view-content .views-row .view-content .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .clinicalPracticeGuidelinesBlock .view-content .flexItemText.flexItemTextHalf,
  .clinicalPracticeGuidelinesBlock .topicFeatured .view-content .views-row .view-content .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .publicationsAndFactSheetsBlock .view-content .flexItemText.flexItemTextHalf,
  .publicationsAndFactSheetsBlock .topicFeatured .view-content .views-row .view-content .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .rtFlexContainer .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText.flexItemTextHalf, .node--type-research-topic .topicFeatured .view-content .views-row .field--name-field-science-supplemental-page .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .node--type-research-topic .researchTopicPublications .flexItemText.flexItemTextHalf, .node--type-research-topic .topicFeatured .view-content .views-row .researchTopicPublications .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemText.flexItemTextHalf, .node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.listTeaserCard .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemText.flexItemTextHalf, .node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.standard-teaser .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemText.flexItemTextHalf,
  .node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.newsEventsCard .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .esi-feature-card .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .featured-science-instance-teaser-container .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .sfa-teaser-container .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .training-opportunity-card .field--name-field-associated-people .flexItemText.flexItemTextHalf, .training-opportunity-card .topicFeatured .view-content .views-row .field--name-field-associated-people .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-featured-training-opportun .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-career-stages .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-workforce-development-card .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .node--type-update.node--view-mode-executive-teaser .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .news-and-events-titleblock .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .contact-box > .field--name-field-contact-methods .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .leadership-container .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText.flexItemTextHalf, .leadership-container .leadership-deputy-director-container .topicFeatured .view-content .views-row .field--name-field-additional-leadership .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .branch-leadership-container .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText.flexItemTextHalf, .branch-leadership-container .leadership-deputy-director-container .topicFeatured .view-content .views-row .field--name-field-additional-leadership .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .node--type-general .field--name-field-related-publications .flexItemText.flexItemTextHalf, .node--type-general .topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .node--type-general .field--name-field-general-publications-rlt .flexItemText.flexItemTextHalf, .node--type-general .topicFeatured .view-content .views-row .field--name-field-general-publications-rlt .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemText.flexItemTextHalf, .node--type-general .field--name-field-general-publications-rlt > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemText.flexItemTextHalf, .node--type-general .field--name-field-related-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .objective-text-container .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .objective-list-container .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-goal-card .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .strategic-vision-landing-goals-wrapper .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .node--type-principal-investigator .striped-container-wrapper .flexItemText.flexItemTextHalf, .node--type-principal-investigator .topicFeatured .view-content .views-row .striped-container-wrapper .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .node--type-principal-investigator .striped-container .flexItemText.flexItemTextHalf, .node--type-principal-investigator .topicFeatured .view-content .views-row .striped-container .flexItemText.flexItemTextHalf, .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .views-row article .flexItemText.flexItemTextHalf, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .topicFeatured .view-content .views-row article .flexItemText.flexItemTextHalf,
  .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .views-row article .flexItemText.flexItemTextHalf,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .topicFeatured .view-content .views-row article .flexItemText.flexItemTextHalf, .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .views-row .standard-teaser.node--view-mode-short-teaser .flexItemText.flexItemTextHalf, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .topicFeatured .view-content .views-row .standard-teaser.node--view-mode-short-teaser .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-awards .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .registerSocialContainer .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .eventdatesLocationType .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .news-article-container .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .node--type-press-release.node--view-mode-press-release-teaser .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .node--type-events.node--view-mode-press-release-teaser .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .news-header-container .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .contacts-container .field--name-field-contacts .flexItemText.flexItemTextHalf, .contacts-container .topicFeatured .view-content .views-row .field--name-field-contacts .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .publicationsBox .field--name-field-related-publications .flexItemText.flexItemTextHalf, .publicationsBox .topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-primary-featured-item .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-additional-featured-items .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .homepage-health-topics-container .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .homepage-mission-areas-container .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .homepage-location-container .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-alumni .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemText.flexItemTextHalf, .node--type-nhlbi-publication.node--view-mode-full .topicFeatured .view-content .views-row .nhlbi-publication-details-container .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemText.flexItemTextHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .topicFeatured .view-content .views-row .nhlbi-publication-details-container .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemText.flexItemTextHalf, .node--type-nhlbi-publication.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-related-nhlbi-publications .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemText.flexItemTextHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-related-nhlbi-publications .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText.flexItemTextHalf, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText.flexItemTextHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText.flexItemTextHalf {
    padding-left: 1.5em;
    padding-right: 0;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 512, ../sass/components/_landing_pages.scss */
  .topicFeatured .view-content .views-row .flexcontainer .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .related-ht-ser-container .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-sfa-card .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-speaker .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .field--name-field-executives .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .standard-card-field .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-advisory-committees .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .contact-nhlbi-titleblock .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-contact-cards .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-employment-opportunity-car .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .all-grants-foa-container .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .field--name-field-program-officers .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .node--type-individual-contact .field--name-field-contact-methods .flexItemText.flexItemTextHalf, .node--type-individual-contact .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemText.flexItemTextHalf,
  .node--type-division.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText.flexItemTextHalf,
  .node--type-division.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemText.flexItemTextHalf,
  .node--type-branch.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText.flexItemTextHalf,
  .node--type-branch.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemText.flexItemTextHalf,
  .node--type-general.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText.flexItemTextHalf,
  .node--type-general.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemText.flexItemTextHalf,
  .node--type-health-education-initiative.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText.flexItemTextHalf,
  .node--type-health-education-initiative.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .node--type-committee .field--name-field-card-text .flexItemText.flexItemTextHalf, .node--type-committee .topicFeatured .view-content .views-row .field--name-field-card-text .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .news-and-events--landing .landing-social .flexItemText.flexItemTextHalf, .news-and-events--landing .topicFeatured .view-content .views-row .landing-social .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-sfa-cards .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .locationMap.contact-location-map-container .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .locationMap .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .grants-and-training-card-wrapper .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .about-nhlbi-division-card-wrapper .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .hei-tools-icon-card-wrapper .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-grants-and-training-card .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-division-card .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-tool-icon-card .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-promotional-card .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-sv-promotional-cards .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-about-nhlbi-promotional-ca .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .strategic-vision-titleblock .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .ppg-titleblock-wrapper .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .ppg-guidelines-card-wrapper .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-human-subject-cards .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-section-card .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-highlight-card .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .health-topic-teaser-container .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .about-nhlbi-our-mission-wrapper .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText.flexItemTextHalf, .about-nhlbi-our-mission-wrapper .topicFeatured .view-content .views-row .field--name-field-leadership > .director-bioCard .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemText.flexItemTextHalf, .nhlbi-publications-and-resources--landing .topicFeatured .view-content .views-row .field--name-field-health-consumer-nhlbi-publ .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemText.flexItemTextHalf,
  .nhlbi-publications-and-resources--landing .topicFeatured .view-content .views-row .field--name-field-health-professionals-nhlbi .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemText.flexItemTextHalf, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemText.flexItemTextHalf,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .publicationsBlock.view-nhlbi-publications > .view-content .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .healthEducationBlock .standard-teaser .flexItemText.flexItemTextHalf, .healthEducationBlock .topicFeatured .view-content .views-row .standard-teaser .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .systematicEvidenceReviewsBlock .view-content .flexItemText.flexItemTextHalf, .systematicEvidenceReviewsBlock .topicFeatured .view-content .views-row .view-content .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .clinicalPracticeGuidelinesBlock .view-content .flexItemText.flexItemTextHalf,
  .clinicalPracticeGuidelinesBlock .topicFeatured .view-content .views-row .view-content .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .publicationsAndFactSheetsBlock .view-content .flexItemText.flexItemTextHalf,
  .publicationsAndFactSheetsBlock .topicFeatured .view-content .views-row .view-content .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .rtFlexContainer .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText.flexItemTextHalf, .node--type-research-topic .topicFeatured .view-content .views-row .field--name-field-science-supplemental-page .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .node--type-research-topic .researchTopicPublications .flexItemText.flexItemTextHalf, .node--type-research-topic .topicFeatured .view-content .views-row .researchTopicPublications .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemText.flexItemTextHalf, .node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.listTeaserCard .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemText.flexItemTextHalf, .node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.standard-teaser .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemText.flexItemTextHalf,
  .node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.newsEventsCard .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .esi-feature-card .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .featured-science-instance-teaser-container .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .sfa-teaser-container .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .training-opportunity-card .field--name-field-associated-people .flexItemText.flexItemTextHalf, .training-opportunity-card .topicFeatured .view-content .views-row .field--name-field-associated-people .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-featured-training-opportun .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-career-stages .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-workforce-development-card .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .node--type-update.node--view-mode-executive-teaser .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .news-and-events-titleblock .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .contact-box > .field--name-field-contact-methods .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .leadership-container .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText.flexItemTextHalf, .leadership-container .leadership-deputy-director-container .topicFeatured .view-content .views-row .field--name-field-additional-leadership .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .branch-leadership-container .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText.flexItemTextHalf, .branch-leadership-container .leadership-deputy-director-container .topicFeatured .view-content .views-row .field--name-field-additional-leadership .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .node--type-general .field--name-field-related-publications .flexItemText.flexItemTextHalf, .node--type-general .topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .node--type-general .field--name-field-general-publications-rlt .flexItemText.flexItemTextHalf, .node--type-general .topicFeatured .view-content .views-row .field--name-field-general-publications-rlt .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemText.flexItemTextHalf, .node--type-general .field--name-field-general-publications-rlt > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemText.flexItemTextHalf, .node--type-general .field--name-field-related-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .objective-text-container .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .objective-list-container .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-goal-card .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .strategic-vision-landing-goals-wrapper .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .node--type-principal-investigator .striped-container-wrapper .flexItemText.flexItemTextHalf, .node--type-principal-investigator .topicFeatured .view-content .views-row .striped-container-wrapper .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .node--type-principal-investigator .striped-container .flexItemText.flexItemTextHalf, .node--type-principal-investigator .topicFeatured .view-content .views-row .striped-container .flexItemText.flexItemTextHalf, .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .views-row article .flexItemText.flexItemTextHalf, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .topicFeatured .view-content .views-row article .flexItemText.flexItemTextHalf,
  .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .views-row article .flexItemText.flexItemTextHalf,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .topicFeatured .view-content .views-row article .flexItemText.flexItemTextHalf, .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .views-row .standard-teaser.node--view-mode-short-teaser .flexItemText.flexItemTextHalf, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .topicFeatured .view-content .views-row .standard-teaser.node--view-mode-short-teaser .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-awards .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .registerSocialContainer .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .eventdatesLocationType .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .news-article-container .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .node--type-press-release.node--view-mode-press-release-teaser .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .node--type-events.node--view-mode-press-release-teaser .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .news-header-container .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .contacts-container .field--name-field-contacts .flexItemText.flexItemTextHalf, .contacts-container .topicFeatured .view-content .views-row .field--name-field-contacts .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .publicationsBox .field--name-field-related-publications .flexItemText.flexItemTextHalf, .publicationsBox .topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-primary-featured-item .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-additional-featured-items .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .homepage-health-topics-container .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .homepage-mission-areas-container .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .homepage-location-container .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-alumni .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemText.flexItemTextHalf, .node--type-nhlbi-publication.node--view-mode-full .topicFeatured .view-content .views-row .nhlbi-publication-details-container .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemText.flexItemTextHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .topicFeatured .view-content .views-row .nhlbi-publication-details-container .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemText.flexItemTextHalf, .node--type-nhlbi-publication.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-related-nhlbi-publications .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemText.flexItemTextHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-related-nhlbi-publications .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText.flexItemTextHalf, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText.flexItemTextHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText.flexItemTextHalf {
    padding-left: 1.5em;
    padding-right: 0;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 512, ../sass/components/_landing_pages.scss */
  .topicFeatured .view-content .views-row .flexcontainer .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .related-ht-ser-container .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-sfa-card .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-speaker .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .field--name-field-executives .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .standard-card-field .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-advisory-committees .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .contact-nhlbi-titleblock .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-contact-cards .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-employment-opportunity-car .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .all-grants-foa-container .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .field--name-field-program-officers .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .node--type-individual-contact .field--name-field-contact-methods .flexItemText.flexItemTextHalf, .node--type-individual-contact .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemText.flexItemTextHalf,
  .node--type-division.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText.flexItemTextHalf,
  .node--type-division.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemText.flexItemTextHalf,
  .node--type-branch.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText.flexItemTextHalf,
  .node--type-branch.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemText.flexItemTextHalf,
  .node--type-general.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText.flexItemTextHalf,
  .node--type-general.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemText.flexItemTextHalf,
  .node--type-health-education-initiative.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText.flexItemTextHalf,
  .node--type-health-education-initiative.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .node--type-committee .field--name-field-card-text .flexItemText.flexItemTextHalf, .node--type-committee .topicFeatured .view-content .views-row .field--name-field-card-text .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .news-and-events--landing .landing-social .flexItemText.flexItemTextHalf, .news-and-events--landing .topicFeatured .view-content .views-row .landing-social .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-sfa-cards .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .locationMap.contact-location-map-container .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .locationMap .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .grants-and-training-card-wrapper .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .about-nhlbi-division-card-wrapper .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .hei-tools-icon-card-wrapper .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-grants-and-training-card .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-division-card .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-tool-icon-card .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-promotional-card .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-sv-promotional-cards .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-about-nhlbi-promotional-ca .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .strategic-vision-titleblock .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .ppg-titleblock-wrapper .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .ppg-guidelines-card-wrapper .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-human-subject-cards .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-section-card .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-highlight-card .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .health-topic-teaser-container .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .about-nhlbi-our-mission-wrapper .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText.flexItemTextHalf, .about-nhlbi-our-mission-wrapper .topicFeatured .view-content .views-row .field--name-field-leadership > .director-bioCard .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemText.flexItemTextHalf, .nhlbi-publications-and-resources--landing .topicFeatured .view-content .views-row .field--name-field-health-consumer-nhlbi-publ .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemText.flexItemTextHalf,
  .nhlbi-publications-and-resources--landing .topicFeatured .view-content .views-row .field--name-field-health-professionals-nhlbi .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemText.flexItemTextHalf, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemText.flexItemTextHalf,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .publicationsBlock.view-nhlbi-publications > .view-content .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .healthEducationBlock .standard-teaser .flexItemText.flexItemTextHalf, .healthEducationBlock .topicFeatured .view-content .views-row .standard-teaser .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .systematicEvidenceReviewsBlock .view-content .flexItemText.flexItemTextHalf, .systematicEvidenceReviewsBlock .topicFeatured .view-content .views-row .view-content .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .clinicalPracticeGuidelinesBlock .view-content .flexItemText.flexItemTextHalf,
  .clinicalPracticeGuidelinesBlock .topicFeatured .view-content .views-row .view-content .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .publicationsAndFactSheetsBlock .view-content .flexItemText.flexItemTextHalf,
  .publicationsAndFactSheetsBlock .topicFeatured .view-content .views-row .view-content .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .rtFlexContainer .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText.flexItemTextHalf, .node--type-research-topic .topicFeatured .view-content .views-row .field--name-field-science-supplemental-page .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .node--type-research-topic .researchTopicPublications .flexItemText.flexItemTextHalf, .node--type-research-topic .topicFeatured .view-content .views-row .researchTopicPublications .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemText.flexItemTextHalf, .node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.listTeaserCard .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemText.flexItemTextHalf, .node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.standard-teaser .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemText.flexItemTextHalf,
  .node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.newsEventsCard .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .esi-feature-card .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .featured-science-instance-teaser-container .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .sfa-teaser-container .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .training-opportunity-card .field--name-field-associated-people .flexItemText.flexItemTextHalf, .training-opportunity-card .topicFeatured .view-content .views-row .field--name-field-associated-people .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-featured-training-opportun .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-career-stages .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-workforce-development-card .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .node--type-update.node--view-mode-executive-teaser .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .news-and-events-titleblock .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .contact-box > .field--name-field-contact-methods .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .leadership-container .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText.flexItemTextHalf, .leadership-container .leadership-deputy-director-container .topicFeatured .view-content .views-row .field--name-field-additional-leadership .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .branch-leadership-container .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText.flexItemTextHalf, .branch-leadership-container .leadership-deputy-director-container .topicFeatured .view-content .views-row .field--name-field-additional-leadership .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .node--type-general .field--name-field-related-publications .flexItemText.flexItemTextHalf, .node--type-general .topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .node--type-general .field--name-field-general-publications-rlt .flexItemText.flexItemTextHalf, .node--type-general .topicFeatured .view-content .views-row .field--name-field-general-publications-rlt .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemText.flexItemTextHalf, .node--type-general .field--name-field-general-publications-rlt > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemText.flexItemTextHalf, .node--type-general .field--name-field-related-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .objective-text-container .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .objective-list-container .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-goal-card .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .strategic-vision-landing-goals-wrapper .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .node--type-principal-investigator .striped-container-wrapper .flexItemText.flexItemTextHalf, .node--type-principal-investigator .topicFeatured .view-content .views-row .striped-container-wrapper .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .node--type-principal-investigator .striped-container .flexItemText.flexItemTextHalf, .node--type-principal-investigator .topicFeatured .view-content .views-row .striped-container .flexItemText.flexItemTextHalf, .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .views-row article .flexItemText.flexItemTextHalf, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .topicFeatured .view-content .views-row article .flexItemText.flexItemTextHalf,
  .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .views-row article .flexItemText.flexItemTextHalf,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .topicFeatured .view-content .views-row article .flexItemText.flexItemTextHalf, .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .views-row .standard-teaser.node--view-mode-short-teaser .flexItemText.flexItemTextHalf, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .topicFeatured .view-content .views-row .standard-teaser.node--view-mode-short-teaser .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-awards .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .registerSocialContainer .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .eventdatesLocationType .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .news-article-container .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .node--type-press-release.node--view-mode-press-release-teaser .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .node--type-events.node--view-mode-press-release-teaser .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .news-header-container .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .contacts-container .field--name-field-contacts .flexItemText.flexItemTextHalf, .contacts-container .topicFeatured .view-content .views-row .field--name-field-contacts .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .publicationsBox .field--name-field-related-publications .flexItemText.flexItemTextHalf, .publicationsBox .topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-primary-featured-item .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-additional-featured-items .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .homepage-health-topics-container .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .homepage-mission-areas-container .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .homepage-location-container .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .field--name-field-alumni .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemText.flexItemTextHalf, .node--type-nhlbi-publication.node--view-mode-full .topicFeatured .view-content .views-row .nhlbi-publication-details-container .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemText.flexItemTextHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .topicFeatured .view-content .views-row .nhlbi-publication-details-container .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemText.flexItemTextHalf, .node--type-nhlbi-publication.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-related-nhlbi-publications .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemText.flexItemTextHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-related-nhlbi-publications .flexItemText.flexItemTextHalf, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText.flexItemTextHalf, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText.flexItemTextHalf,
  .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText.flexItemTextHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText.flexItemTextHalf {
    padding-left: 1em;
    padding-right: 0;
  }
}
/* line 526, ../sass/components/_landing_pages.scss */
.topicFeatured .view-content .views-row .flexcontainer .flexItemText, .topicFeatured .view-content .views-row .related-ht-ser-container .flexItemText, .topicFeatured .view-content .views-row .field--name-field-sfa-card .flexItemText, .topicFeatured .view-content .views-row .field--name-field-speaker .flexItemText,
.topicFeatured .view-content .views-row .field--name-field-executives .flexItemText, .topicFeatured .view-content .views-row .standard-card-field .flexItemText, .topicFeatured .view-content .views-row .field--name-field-advisory-committees .flexItemText, .topicFeatured .view-content .views-row .contact-nhlbi-titleblock .flexItemText, .topicFeatured .view-content .views-row .field--name-field-contact-cards .flexItemText, .topicFeatured .view-content .views-row .field--name-field-employment-opportunity-car .flexItemText, .topicFeatured .view-content .views-row .all-grants-foa-container .flexItemText,
.topicFeatured .view-content .views-row .field--name-field-program-officers .flexItemText,
.topicFeatured .view-content .views-row .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText,
.topicFeatured .view-content .views-row .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText, .topicFeatured .view-content .views-row .node--type-individual-contact .field--name-field-contact-methods .flexItemText, .node--type-individual-contact .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText,
.topicFeatured .view-content .views-row .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemText,
.node--type-division.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText,
.topicFeatured .view-content .views-row .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText,
.node--type-division.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText,
.topicFeatured .view-content .views-row .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemText,
.node--type-branch.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText,
.topicFeatured .view-content .views-row .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText,
.node--type-branch.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText,
.topicFeatured .view-content .views-row .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemText,
.node--type-general.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText,
.topicFeatured .view-content .views-row .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText,
.node--type-general.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText,
.topicFeatured .view-content .views-row .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemText,
.node--type-health-education-initiative.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText,
.topicFeatured .view-content .views-row .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText,
.node--type-health-education-initiative.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText, .topicFeatured .view-content .views-row .node--type-committee .field--name-field-card-text .flexItemText, .node--type-committee .topicFeatured .view-content .views-row .field--name-field-card-text .flexItemText, .topicFeatured .view-content .views-row .news-and-events--landing .landing-social .flexItemText, .news-and-events--landing .topicFeatured .view-content .views-row .landing-social .flexItemText, .topicFeatured .view-content .views-row .field--name-field-sfa-cards .flexItemText, .topicFeatured .view-content .views-row .locationMap.contact-location-map-container .flexItemText, .topicFeatured .view-content .views-row .locationMap .flexItemText, .topicFeatured .view-content .views-row .grants-and-training-card-wrapper .flexItemText, .topicFeatured .view-content .views-row .about-nhlbi-division-card-wrapper .flexItemText, .topicFeatured .view-content .views-row .hei-tools-icon-card-wrapper .flexItemText, .topicFeatured .view-content .views-row .field--name-field-grants-and-training-card .flexItemText, .topicFeatured .view-content .views-row .field--name-field-division-card .flexItemText, .topicFeatured .view-content .views-row .field--name-field-tool-icon-card .flexItemText, .topicFeatured .view-content .views-row .field--name-field-promotional-card .flexItemText, .topicFeatured .view-content .views-row .field--name-field-sv-promotional-cards .flexItemText, .topicFeatured .view-content .views-row .field--name-field-about-nhlbi-promotional-ca .flexItemText, .topicFeatured .view-content .views-row .strategic-vision-titleblock .flexItemText, .topicFeatured .view-content .views-row .ppg-titleblock-wrapper .flexItemText, .topicFeatured .view-content .views-row .ppg-guidelines-card-wrapper .flexItemText, .topicFeatured .view-content .views-row .field--name-field-human-subject-cards .flexItemText, .topicFeatured .view-content .views-row .field--name-field-section-card .flexItemText, .topicFeatured .view-content .views-row .field--name-field-highlight-card .flexItemText, .topicFeatured .view-content .views-row .health-topic-teaser-container .flexItemText, .topicFeatured .view-content .views-row .about-nhlbi-our-mission-wrapper .flexItemText, .topicFeatured .view-content .views-row .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText, .about-nhlbi-our-mission-wrapper .topicFeatured .view-content .views-row .field--name-field-leadership > .director-bioCard .flexItemText, .topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemText, .nhlbi-publications-and-resources--landing .topicFeatured .view-content .views-row .field--name-field-health-consumer-nhlbi-publ .flexItemText,
.topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemText,
.nhlbi-publications-and-resources--landing .topicFeatured .view-content .views-row .field--name-field-health-professionals-nhlbi .flexItemText, .topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemText, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText,
.topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemText,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText, .topicFeatured .view-content .views-row .publicationsBlock.view-nhlbi-publications > .view-content .flexItemText,
.topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemText, .topicFeatured .view-content .views-row .healthEducationBlock .standard-teaser .flexItemText, .healthEducationBlock .topicFeatured .view-content .views-row .standard-teaser .flexItemText, .topicFeatured .view-content .views-row .systematicEvidenceReviewsBlock .view-content .flexItemText, .systematicEvidenceReviewsBlock .topicFeatured .view-content .views-row .view-content .flexItemText,
.topicFeatured .view-content .views-row .clinicalPracticeGuidelinesBlock .view-content .flexItemText,
.clinicalPracticeGuidelinesBlock .topicFeatured .view-content .views-row .view-content .flexItemText,
.topicFeatured .view-content .views-row .publicationsAndFactSheetsBlock .view-content .flexItemText,
.publicationsAndFactSheetsBlock .topicFeatured .view-content .views-row .view-content .flexItemText, .topicFeatured .view-content .views-row .rtFlexContainer .flexItemText, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText, .node--type-research-topic .topicFeatured .view-content .views-row .field--name-field-science-supplemental-page .flexItemText, .topicFeatured .view-content .views-row .node--type-research-topic .researchTopicPublications .flexItemText, .node--type-research-topic .topicFeatured .view-content .views-row .researchTopicPublications .flexItemText, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemText, .node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.listTeaserCard .flexItemText, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemText, .node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.standard-teaser .flexItemText,
.topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemText,
.node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.newsEventsCard .flexItemText, .topicFeatured .view-content .views-row .esi-feature-card .flexItemText, .topicFeatured .view-content .views-row .featured-science-instance-teaser-container .flexItemText, .topicFeatured .view-content .views-row .sfa-teaser-container .flexItemText, .topicFeatured .view-content .views-row .training-opportunity-card .field--name-field-associated-people .flexItemText, .training-opportunity-card .topicFeatured .view-content .views-row .field--name-field-associated-people .flexItemText, .topicFeatured .view-content .views-row .field--name-field-featured-training-opportun .flexItemText, .topicFeatured .view-content .views-row .field--name-field-career-stages .flexItemText, .topicFeatured .view-content .views-row .field--name-field-workforce-development-card .flexItemText, .topicFeatured .view-content .views-row .node--type-update.node--view-mode-executive-teaser .flexItemText, .topicFeatured .view-content .views-row .news-and-events-titleblock .flexItemText, .topicFeatured .view-content .views-row .contact-box > .field--name-field-contact-methods .flexItemText, .topicFeatured .view-content .views-row .leadership-container .flexItemText, .topicFeatured .view-content .views-row .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText, .leadership-container .leadership-deputy-director-container .topicFeatured .view-content .views-row .field--name-field-additional-leadership .flexItemText, .topicFeatured .view-content .views-row .branch-leadership-container .flexItemText, .topicFeatured .view-content .views-row .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText, .branch-leadership-container .leadership-deputy-director-container .topicFeatured .view-content .views-row .field--name-field-additional-leadership .flexItemText, .topicFeatured .view-content .views-row .node--type-general .field--name-field-related-publications .flexItemText, .node--type-general .topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemText, .topicFeatured .view-content .views-row .node--type-general .field--name-field-general-publications-rlt .flexItemText, .node--type-general .topicFeatured .view-content .views-row .field--name-field-general-publications-rlt .flexItemText, .topicFeatured .view-content .views-row .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemText, .node--type-general .field--name-field-general-publications-rlt > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText, .topicFeatured .view-content .views-row .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemText, .node--type-general .field--name-field-related-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText, .topicFeatured .view-content .views-row .objective-text-container .flexItemText, .topicFeatured .view-content .views-row .objective-list-container .flexItemText, .topicFeatured .view-content .views-row .field--name-field-goal-card .flexItemText, .topicFeatured .view-content .views-row .strategic-vision-landing-goals-wrapper .flexItemText, .topicFeatured .view-content .views-row .node--type-principal-investigator .striped-container-wrapper .flexItemText, .node--type-principal-investigator .topicFeatured .view-content .views-row .striped-container-wrapper .flexItemText, .topicFeatured .view-content .views-row .node--type-principal-investigator .striped-container .flexItemText, .node--type-principal-investigator .topicFeatured .view-content .views-row .striped-container .flexItemText, .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .views-row article .flexItemText, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .topicFeatured .view-content .views-row article .flexItemText,
.topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .views-row article .flexItemText,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .topicFeatured .view-content .views-row article .flexItemText, .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .views-row .standard-teaser.node--view-mode-short-teaser .flexItemText, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .topicFeatured .view-content .views-row .standard-teaser.node--view-mode-short-teaser .flexItemText, .topicFeatured .view-content .views-row .field--name-field-awards .flexItemText, .topicFeatured .view-content .views-row .registerSocialContainer .flexItemText, .topicFeatured .view-content .views-row .eventdatesLocationType .flexItemText, .topicFeatured .view-content .views-row .news-article-container .flexItemText, .topicFeatured .view-content .views-row .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText,
.topicFeatured .view-content .views-row .node--type-press-release.node--view-mode-press-release-teaser .flexItemText,
.topicFeatured .view-content .views-row .node--type-events.node--view-mode-press-release-teaser .flexItemText,
.topicFeatured .view-content .views-row .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText,
.topicFeatured .view-content .views-row .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText,
.topicFeatured .view-content .views-row .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText,
.topicFeatured .view-content .views-row .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText, .topicFeatured .view-content .views-row .news-header-container .flexItemText, .topicFeatured .view-content .views-row .contacts-container .field--name-field-contacts .flexItemText, .contacts-container .topicFeatured .view-content .views-row .field--name-field-contacts .flexItemText, .topicFeatured .view-content .views-row .publicationsBox .field--name-field-related-publications .flexItemText, .publicationsBox .topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemText, .topicFeatured .view-content .views-row .field--name-field-primary-featured-item .flexItemText, .topicFeatured .view-content .views-row .field--name-field-additional-featured-items .flexItemText, .topicFeatured .view-content .views-row .homepage-health-topics-container .flexItemText, .topicFeatured .view-content .views-row .homepage-mission-areas-container .flexItemText, .topicFeatured .view-content .views-row .homepage-location-container .flexItemText, .topicFeatured .view-content .views-row .field--name-field-alumni .flexItemText, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemText, .node--type-nhlbi-publication.node--view-mode-full .topicFeatured .view-content .views-row .nhlbi-publication-details-container .flexItemText,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemText,
.node--type-nhlbi-publication.node--view-mode-subscribe .topicFeatured .view-content .views-row .nhlbi-publication-details-container .flexItemText, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemText, .node--type-nhlbi-publication.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-related-nhlbi-publications .flexItemText,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemText,
.node--type-nhlbi-publication.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-related-nhlbi-publications .flexItemText, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText {
  -webkit-box-ordinal-group: 2;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
  padding-top: 0;
}
/* line 529, ../sass/components/_landing_pages.scss */
.topicFeatured .view-content .views-row .flexcontainer .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .related-ht-ser-container .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .field--name-field-sfa-card .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .field--name-field-speaker .flexItemText .herobannertitle,
.topicFeatured .view-content .views-row .field--name-field-executives .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .standard-card-field .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .field--name-field-advisory-committees .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .contact-nhlbi-titleblock .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .field--name-field-contact-cards .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .field--name-field-employment-opportunity-car .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .all-grants-foa-container .flexItemText .herobannertitle,
.topicFeatured .view-content .views-row .field--name-field-program-officers .flexItemText .herobannertitle,
.topicFeatured .view-content .views-row .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText .herobannertitle,
.topicFeatured .view-content .views-row .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .node--type-individual-contact .field--name-field-contact-methods .flexItemText .herobannertitle, .node--type-individual-contact .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle,
.topicFeatured .view-content .views-row .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-division.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle,
.topicFeatured .view-content .views-row .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-division.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle,
.topicFeatured .view-content .views-row .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-branch.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle,
.topicFeatured .view-content .views-row .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-branch.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle,
.topicFeatured .view-content .views-row .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-general.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle,
.topicFeatured .view-content .views-row .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-general.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle,
.topicFeatured .view-content .views-row .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-health-education-initiative.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle,
.topicFeatured .view-content .views-row .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-health-education-initiative.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .node--type-committee .field--name-field-card-text .flexItemText .herobannertitle, .node--type-committee .topicFeatured .view-content .views-row .field--name-field-card-text .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .news-and-events--landing .landing-social .flexItemText .herobannertitle, .news-and-events--landing .topicFeatured .view-content .views-row .landing-social .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .field--name-field-sfa-cards .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .locationMap.contact-location-map-container .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .locationMap .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .grants-and-training-card-wrapper .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .about-nhlbi-division-card-wrapper .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .hei-tools-icon-card-wrapper .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .field--name-field-grants-and-training-card .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .field--name-field-division-card .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .field--name-field-tool-icon-card .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .field--name-field-promotional-card .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .field--name-field-sv-promotional-cards .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .field--name-field-about-nhlbi-promotional-ca .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .strategic-vision-titleblock .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .ppg-titleblock-wrapper .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .ppg-guidelines-card-wrapper .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .field--name-field-human-subject-cards .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .field--name-field-section-card .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .field--name-field-highlight-card .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .health-topic-teaser-container .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .about-nhlbi-our-mission-wrapper .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText .herobannertitle, .about-nhlbi-our-mission-wrapper .topicFeatured .view-content .views-row .field--name-field-leadership > .director-bioCard .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemText .herobannertitle, .nhlbi-publications-and-resources--landing .topicFeatured .view-content .views-row .field--name-field-health-consumer-nhlbi-publ .flexItemText .herobannertitle,
.topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemText .herobannertitle,
.nhlbi-publications-and-resources--landing .topicFeatured .view-content .views-row .field--name-field-health-professionals-nhlbi .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemText .herobannertitle, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle,
.topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemText .herobannertitle,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .publicationsBlock.view-nhlbi-publications > .view-content .flexItemText .herobannertitle,
.topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .healthEducationBlock .standard-teaser .flexItemText .herobannertitle, .healthEducationBlock .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .systematicEvidenceReviewsBlock .view-content .flexItemText .herobannertitle, .systematicEvidenceReviewsBlock .topicFeatured .view-content .views-row .view-content .flexItemText .herobannertitle,
.topicFeatured .view-content .views-row .clinicalPracticeGuidelinesBlock .view-content .flexItemText .herobannertitle,
.clinicalPracticeGuidelinesBlock .topicFeatured .view-content .views-row .view-content .flexItemText .herobannertitle,
.topicFeatured .view-content .views-row .publicationsAndFactSheetsBlock .view-content .flexItemText .herobannertitle,
.publicationsAndFactSheetsBlock .topicFeatured .view-content .views-row .view-content .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .rtFlexContainer .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText .herobannertitle, .node--type-research-topic .topicFeatured .view-content .views-row .field--name-field-science-supplemental-page .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .node--type-research-topic .researchTopicPublications .flexItemText .herobannertitle, .node--type-research-topic .topicFeatured .view-content .views-row .researchTopicPublications .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemText .herobannertitle, .node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.listTeaserCard .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemText .herobannertitle, .node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.standard-teaser .flexItemText .herobannertitle,
.topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemText .herobannertitle,
.node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.newsEventsCard .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .esi-feature-card .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .featured-science-instance-teaser-container .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .sfa-teaser-container .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .training-opportunity-card .field--name-field-associated-people .flexItemText .herobannertitle, .training-opportunity-card .topicFeatured .view-content .views-row .field--name-field-associated-people .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .field--name-field-featured-training-opportun .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .field--name-field-career-stages .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .field--name-field-workforce-development-card .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .node--type-update.node--view-mode-executive-teaser .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .news-and-events-titleblock .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .contact-box > .field--name-field-contact-methods .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .leadership-container .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .herobannertitle, .leadership-container .leadership-deputy-director-container .topicFeatured .view-content .views-row .field--name-field-additional-leadership .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .branch-leadership-container .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .herobannertitle, .branch-leadership-container .leadership-deputy-director-container .topicFeatured .view-content .views-row .field--name-field-additional-leadership .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .node--type-general .field--name-field-related-publications .flexItemText .herobannertitle, .node--type-general .topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .node--type-general .field--name-field-general-publications-rlt .flexItemText .herobannertitle, .node--type-general .topicFeatured .view-content .views-row .field--name-field-general-publications-rlt .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemText .herobannertitle, .node--type-general .field--name-field-general-publications-rlt > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemText .herobannertitle, .node--type-general .field--name-field-related-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .objective-text-container .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .objective-list-container .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .field--name-field-goal-card .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .strategic-vision-landing-goals-wrapper .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .node--type-principal-investigator .striped-container-wrapper .flexItemText .herobannertitle, .node--type-principal-investigator .topicFeatured .view-content .views-row .striped-container-wrapper .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .node--type-principal-investigator .striped-container .flexItemText .herobannertitle, .node--type-principal-investigator .topicFeatured .view-content .views-row .striped-container .flexItemText .herobannertitle, .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .views-row article .flexItemText .herobannertitle, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .topicFeatured .view-content .views-row article .flexItemText .herobannertitle,
.topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .views-row article .flexItemText .herobannertitle,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .topicFeatured .view-content .views-row article .flexItemText .herobannertitle, .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .views-row .standard-teaser.node--view-mode-short-teaser .flexItemText .herobannertitle, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .topicFeatured .view-content .views-row .standard-teaser.node--view-mode-short-teaser .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .field--name-field-awards .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .registerSocialContainer .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .eventdatesLocationType .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .news-article-container .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText .herobannertitle,
.topicFeatured .view-content .views-row .node--type-press-release.node--view-mode-press-release-teaser .flexItemText .herobannertitle,
.topicFeatured .view-content .views-row .node--type-events.node--view-mode-press-release-teaser .flexItemText .herobannertitle,
.topicFeatured .view-content .views-row .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle,
.topicFeatured .view-content .views-row .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle,
.topicFeatured .view-content .views-row .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle,
.topicFeatured .view-content .views-row .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .news-header-container .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .contacts-container .field--name-field-contacts .flexItemText .herobannertitle, .contacts-container .topicFeatured .view-content .views-row .field--name-field-contacts .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .publicationsBox .field--name-field-related-publications .flexItemText .herobannertitle, .publicationsBox .topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .field--name-field-primary-featured-item .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .field--name-field-additional-featured-items .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .homepage-health-topics-container .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .homepage-mission-areas-container .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .homepage-location-container .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .field--name-field-alumni .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemText .herobannertitle, .node--type-nhlbi-publication.node--view-mode-full .topicFeatured .view-content .views-row .nhlbi-publication-details-container .flexItemText .herobannertitle,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemText .herobannertitle,
.node--type-nhlbi-publication.node--view-mode-subscribe .topicFeatured .view-content .views-row .nhlbi-publication-details-container .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle, .node--type-nhlbi-publication.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle,
.node--type-nhlbi-publication.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText .herobannertitle, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText .herobannertitle,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .flexcontainer .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .related-ht-ser-container .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .field--name-field-sfa-card .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .field--name-field-speaker .flexItemText .herobannertitle-grey,
.topicFeatured .view-content .views-row .field--name-field-executives .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .standard-card-field .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .field--name-field-advisory-committees .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .contact-nhlbi-titleblock .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .field--name-field-contact-cards .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .field--name-field-employment-opportunity-car .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .all-grants-foa-container .flexItemText .herobannertitle-grey,
.topicFeatured .view-content .views-row .field--name-field-program-officers .flexItemText .herobannertitle-grey,
.topicFeatured .view-content .views-row .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText .herobannertitle-grey,
.topicFeatured .view-content .views-row .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .node--type-individual-contact .field--name-field-contact-methods .flexItemText .herobannertitle-grey, .node--type-individual-contact .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.topicFeatured .view-content .views-row .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-division.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.topicFeatured .view-content .views-row .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-division.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.topicFeatured .view-content .views-row .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-branch.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.topicFeatured .view-content .views-row .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-branch.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.topicFeatured .view-content .views-row .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-general.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.topicFeatured .view-content .views-row .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-general.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.topicFeatured .view-content .views-row .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-health-education-initiative.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.topicFeatured .view-content .views-row .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-health-education-initiative.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .node--type-committee .field--name-field-card-text .flexItemText .herobannertitle-grey, .node--type-committee .topicFeatured .view-content .views-row .field--name-field-card-text .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .news-and-events--landing .landing-social .flexItemText .herobannertitle-grey, .news-and-events--landing .topicFeatured .view-content .views-row .landing-social .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .field--name-field-sfa-cards .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .locationMap.contact-location-map-container .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .locationMap .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .grants-and-training-card-wrapper .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .about-nhlbi-division-card-wrapper .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .hei-tools-icon-card-wrapper .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .field--name-field-grants-and-training-card .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .field--name-field-division-card .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .field--name-field-tool-icon-card .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .field--name-field-promotional-card .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .field--name-field-sv-promotional-cards .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .field--name-field-about-nhlbi-promotional-ca .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .strategic-vision-titleblock .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .ppg-titleblock-wrapper .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .ppg-guidelines-card-wrapper .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .field--name-field-human-subject-cards .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .field--name-field-section-card .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .field--name-field-highlight-card .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .health-topic-teaser-container .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .about-nhlbi-our-mission-wrapper .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText .herobannertitle-grey, .about-nhlbi-our-mission-wrapper .topicFeatured .view-content .views-row .field--name-field-leadership > .director-bioCard .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemText .herobannertitle-grey, .nhlbi-publications-and-resources--landing .topicFeatured .view-content .views-row .field--name-field-health-consumer-nhlbi-publ .flexItemText .herobannertitle-grey,
.topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemText .herobannertitle-grey,
.nhlbi-publications-and-resources--landing .topicFeatured .view-content .views-row .field--name-field-health-professionals-nhlbi .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemText .herobannertitle-grey, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle-grey,
.topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemText .herobannertitle-grey,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .publicationsBlock.view-nhlbi-publications > .view-content .flexItemText .herobannertitle-grey,
.topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .healthEducationBlock .standard-teaser .flexItemText .herobannertitle-grey, .healthEducationBlock .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .systematicEvidenceReviewsBlock .view-content .flexItemText .herobannertitle-grey, .systematicEvidenceReviewsBlock .topicFeatured .view-content .views-row .view-content .flexItemText .herobannertitle-grey,
.topicFeatured .view-content .views-row .clinicalPracticeGuidelinesBlock .view-content .flexItemText .herobannertitle-grey,
.clinicalPracticeGuidelinesBlock .topicFeatured .view-content .views-row .view-content .flexItemText .herobannertitle-grey,
.topicFeatured .view-content .views-row .publicationsAndFactSheetsBlock .view-content .flexItemText .herobannertitle-grey,
.publicationsAndFactSheetsBlock .topicFeatured .view-content .views-row .view-content .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .rtFlexContainer .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText .herobannertitle-grey, .node--type-research-topic .topicFeatured .view-content .views-row .field--name-field-science-supplemental-page .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .node--type-research-topic .researchTopicPublications .flexItemText .herobannertitle-grey, .node--type-research-topic .topicFeatured .view-content .views-row .researchTopicPublications .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemText .herobannertitle-grey, .node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.listTeaserCard .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemText .herobannertitle-grey, .node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.standard-teaser .flexItemText .herobannertitle-grey,
.topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemText .herobannertitle-grey,
.node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.newsEventsCard .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .esi-feature-card .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .featured-science-instance-teaser-container .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .sfa-teaser-container .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .training-opportunity-card .field--name-field-associated-people .flexItemText .herobannertitle-grey, .training-opportunity-card .topicFeatured .view-content .views-row .field--name-field-associated-people .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .field--name-field-featured-training-opportun .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .field--name-field-career-stages .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .field--name-field-workforce-development-card .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .node--type-update.node--view-mode-executive-teaser .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .news-and-events-titleblock .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .contact-box > .field--name-field-contact-methods .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .leadership-container .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .herobannertitle-grey, .leadership-container .leadership-deputy-director-container .topicFeatured .view-content .views-row .field--name-field-additional-leadership .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .branch-leadership-container .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .herobannertitle-grey, .branch-leadership-container .leadership-deputy-director-container .topicFeatured .view-content .views-row .field--name-field-additional-leadership .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .node--type-general .field--name-field-related-publications .flexItemText .herobannertitle-grey, .node--type-general .topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .node--type-general .field--name-field-general-publications-rlt .flexItemText .herobannertitle-grey, .node--type-general .topicFeatured .view-content .views-row .field--name-field-general-publications-rlt .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemText .herobannertitle-grey, .node--type-general .field--name-field-general-publications-rlt > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemText .herobannertitle-grey, .node--type-general .field--name-field-related-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .objective-text-container .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .objective-list-container .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .field--name-field-goal-card .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .strategic-vision-landing-goals-wrapper .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .node--type-principal-investigator .striped-container-wrapper .flexItemText .herobannertitle-grey, .node--type-principal-investigator .topicFeatured .view-content .views-row .striped-container-wrapper .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .node--type-principal-investigator .striped-container .flexItemText .herobannertitle-grey, .node--type-principal-investigator .topicFeatured .view-content .views-row .striped-container .flexItemText .herobannertitle-grey, .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .views-row article .flexItemText .herobannertitle-grey, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .topicFeatured .view-content .views-row article .flexItemText .herobannertitle-grey,
.topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .views-row article .flexItemText .herobannertitle-grey,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .topicFeatured .view-content .views-row article .flexItemText .herobannertitle-grey, .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .views-row .standard-teaser.node--view-mode-short-teaser .flexItemText .herobannertitle-grey, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .topicFeatured .view-content .views-row .standard-teaser.node--view-mode-short-teaser .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .field--name-field-awards .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .registerSocialContainer .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .eventdatesLocationType .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .news-article-container .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText .herobannertitle-grey,
.topicFeatured .view-content .views-row .node--type-press-release.node--view-mode-press-release-teaser .flexItemText .herobannertitle-grey,
.topicFeatured .view-content .views-row .node--type-events.node--view-mode-press-release-teaser .flexItemText .herobannertitle-grey,
.topicFeatured .view-content .views-row .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey,
.topicFeatured .view-content .views-row .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey,
.topicFeatured .view-content .views-row .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey,
.topicFeatured .view-content .views-row .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .news-header-container .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .contacts-container .field--name-field-contacts .flexItemText .herobannertitle-grey, .contacts-container .topicFeatured .view-content .views-row .field--name-field-contacts .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .publicationsBox .field--name-field-related-publications .flexItemText .herobannertitle-grey, .publicationsBox .topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .field--name-field-primary-featured-item .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .field--name-field-additional-featured-items .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .homepage-health-topics-container .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .homepage-mission-areas-container .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .homepage-location-container .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .field--name-field-alumni .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemText .herobannertitle-grey, .node--type-nhlbi-publication.node--view-mode-full .topicFeatured .view-content .views-row .nhlbi-publication-details-container .flexItemText .herobannertitle-grey,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemText .herobannertitle-grey,
.node--type-nhlbi-publication.node--view-mode-subscribe .topicFeatured .view-content .views-row .nhlbi-publication-details-container .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle-grey, .node--type-nhlbi-publication.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle-grey,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle-grey,
.node--type-nhlbi-publication.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText .herobannertitle-grey, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle-grey,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText .herobannertitle-grey,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle-grey {
  color: #222;
}
/* line 531, ../sass/components/_landing_pages.scss */
.topicFeatured .view-content .views-row .flexcontainer .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .related-ht-ser-container .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .field--name-field-sfa-card .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .field--name-field-speaker .flexItemText .herobannertitle a,
.topicFeatured .view-content .views-row .field--name-field-executives .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .standard-card-field .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .field--name-field-advisory-committees .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .contact-nhlbi-titleblock .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .field--name-field-contact-cards .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .field--name-field-employment-opportunity-car .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .all-grants-foa-container .flexItemText .herobannertitle a,
.topicFeatured .view-content .views-row .field--name-field-program-officers .flexItemText .herobannertitle a,
.topicFeatured .view-content .views-row .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText .herobannertitle a,
.topicFeatured .view-content .views-row .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .node--type-individual-contact .field--name-field-contact-methods .flexItemText .herobannertitle a, .node--type-individual-contact .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle a,
.topicFeatured .view-content .views-row .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle a,
.node--type-division.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle a,
.topicFeatured .view-content .views-row .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle a,
.node--type-division.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle a,
.topicFeatured .view-content .views-row .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle a,
.node--type-branch.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle a,
.topicFeatured .view-content .views-row .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle a,
.node--type-branch.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle a,
.topicFeatured .view-content .views-row .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle a,
.node--type-general.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle a,
.topicFeatured .view-content .views-row .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle a,
.node--type-general.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle a,
.topicFeatured .view-content .views-row .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle a,
.node--type-health-education-initiative.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle a,
.topicFeatured .view-content .views-row .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle a,
.node--type-health-education-initiative.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .node--type-committee .field--name-field-card-text .flexItemText .herobannertitle a, .node--type-committee .topicFeatured .view-content .views-row .field--name-field-card-text .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .news-and-events--landing .landing-social .flexItemText .herobannertitle a, .news-and-events--landing .topicFeatured .view-content .views-row .landing-social .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .field--name-field-sfa-cards .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .locationMap.contact-location-map-container .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .locationMap .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .grants-and-training-card-wrapper .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .about-nhlbi-division-card-wrapper .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .hei-tools-icon-card-wrapper .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .field--name-field-grants-and-training-card .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .field--name-field-division-card .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .field--name-field-tool-icon-card .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .field--name-field-promotional-card .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .field--name-field-sv-promotional-cards .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .field--name-field-about-nhlbi-promotional-ca .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .strategic-vision-titleblock .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .ppg-titleblock-wrapper .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .ppg-guidelines-card-wrapper .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .field--name-field-human-subject-cards .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .field--name-field-section-card .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .field--name-field-highlight-card .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .health-topic-teaser-container .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .about-nhlbi-our-mission-wrapper .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText .herobannertitle a, .about-nhlbi-our-mission-wrapper .topicFeatured .view-content .views-row .field--name-field-leadership > .director-bioCard .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemText .herobannertitle a, .nhlbi-publications-and-resources--landing .topicFeatured .view-content .views-row .field--name-field-health-consumer-nhlbi-publ .flexItemText .herobannertitle a,
.topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemText .herobannertitle a,
.nhlbi-publications-and-resources--landing .topicFeatured .view-content .views-row .field--name-field-health-professionals-nhlbi .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemText .herobannertitle a, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle a,
.topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemText .herobannertitle a,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .publicationsBlock.view-nhlbi-publications > .view-content .flexItemText .herobannertitle a,
.topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .healthEducationBlock .standard-teaser .flexItemText .herobannertitle a, .healthEducationBlock .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .systematicEvidenceReviewsBlock .view-content .flexItemText .herobannertitle a, .systematicEvidenceReviewsBlock .topicFeatured .view-content .views-row .view-content .flexItemText .herobannertitle a,
.topicFeatured .view-content .views-row .clinicalPracticeGuidelinesBlock .view-content .flexItemText .herobannertitle a,
.clinicalPracticeGuidelinesBlock .topicFeatured .view-content .views-row .view-content .flexItemText .herobannertitle a,
.topicFeatured .view-content .views-row .publicationsAndFactSheetsBlock .view-content .flexItemText .herobannertitle a,
.publicationsAndFactSheetsBlock .topicFeatured .view-content .views-row .view-content .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .rtFlexContainer .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText .herobannertitle a, .node--type-research-topic .topicFeatured .view-content .views-row .field--name-field-science-supplemental-page .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .node--type-research-topic .researchTopicPublications .flexItemText .herobannertitle a, .node--type-research-topic .topicFeatured .view-content .views-row .researchTopicPublications .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemText .herobannertitle a, .node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.listTeaserCard .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemText .herobannertitle a, .node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.standard-teaser .flexItemText .herobannertitle a,
.topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemText .herobannertitle a,
.node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.newsEventsCard .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .esi-feature-card .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .featured-science-instance-teaser-container .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .sfa-teaser-container .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .training-opportunity-card .field--name-field-associated-people .flexItemText .herobannertitle a, .training-opportunity-card .topicFeatured .view-content .views-row .field--name-field-associated-people .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .field--name-field-featured-training-opportun .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .field--name-field-career-stages .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .field--name-field-workforce-development-card .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .node--type-update.node--view-mode-executive-teaser .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .news-and-events-titleblock .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .contact-box > .field--name-field-contact-methods .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .leadership-container .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .herobannertitle a, .leadership-container .leadership-deputy-director-container .topicFeatured .view-content .views-row .field--name-field-additional-leadership .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .branch-leadership-container .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .herobannertitle a, .branch-leadership-container .leadership-deputy-director-container .topicFeatured .view-content .views-row .field--name-field-additional-leadership .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .node--type-general .field--name-field-related-publications .flexItemText .herobannertitle a, .node--type-general .topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .node--type-general .field--name-field-general-publications-rlt .flexItemText .herobannertitle a, .node--type-general .topicFeatured .view-content .views-row .field--name-field-general-publications-rlt .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemText .herobannertitle a, .node--type-general .field--name-field-general-publications-rlt > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemText .herobannertitle a, .node--type-general .field--name-field-related-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .objective-text-container .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .objective-list-container .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .field--name-field-goal-card .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .strategic-vision-landing-goals-wrapper .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .node--type-principal-investigator .striped-container-wrapper .flexItemText .herobannertitle a, .node--type-principal-investigator .topicFeatured .view-content .views-row .striped-container-wrapper .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .node--type-principal-investigator .striped-container .flexItemText .herobannertitle a, .node--type-principal-investigator .topicFeatured .view-content .views-row .striped-container .flexItemText .herobannertitle a, .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .views-row article .flexItemText .herobannertitle a, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .topicFeatured .view-content .views-row article .flexItemText .herobannertitle a,
.topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .views-row article .flexItemText .herobannertitle a,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .topicFeatured .view-content .views-row article .flexItemText .herobannertitle a, .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .views-row .standard-teaser.node--view-mode-short-teaser .flexItemText .herobannertitle a, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .topicFeatured .view-content .views-row .standard-teaser.node--view-mode-short-teaser .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .field--name-field-awards .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .registerSocialContainer .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .eventdatesLocationType .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .news-article-container .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText .herobannertitle a,
.topicFeatured .view-content .views-row .node--type-press-release.node--view-mode-press-release-teaser .flexItemText .herobannertitle a,
.topicFeatured .view-content .views-row .node--type-events.node--view-mode-press-release-teaser .flexItemText .herobannertitle a,
.topicFeatured .view-content .views-row .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle a,
.topicFeatured .view-content .views-row .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle a,
.topicFeatured .view-content .views-row .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle a,
.topicFeatured .view-content .views-row .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .news-header-container .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .contacts-container .field--name-field-contacts .flexItemText .herobannertitle a, .contacts-container .topicFeatured .view-content .views-row .field--name-field-contacts .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .publicationsBox .field--name-field-related-publications .flexItemText .herobannertitle a, .publicationsBox .topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .field--name-field-primary-featured-item .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .field--name-field-additional-featured-items .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .homepage-health-topics-container .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .homepage-mission-areas-container .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .homepage-location-container .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .field--name-field-alumni .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemText .herobannertitle a, .node--type-nhlbi-publication.node--view-mode-full .topicFeatured .view-content .views-row .nhlbi-publication-details-container .flexItemText .herobannertitle a,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemText .herobannertitle a,
.node--type-nhlbi-publication.node--view-mode-subscribe .topicFeatured .view-content .views-row .nhlbi-publication-details-container .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle a, .node--type-nhlbi-publication.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle a,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle a,
.node--type-nhlbi-publication.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText .herobannertitle a, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle a,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText .herobannertitle a,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .flexcontainer .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .related-ht-ser-container .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .field--name-field-sfa-card .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .field--name-field-speaker .flexItemText .herobannertitle-grey a,
.topicFeatured .view-content .views-row .field--name-field-executives .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .standard-card-field .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .field--name-field-advisory-committees .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .contact-nhlbi-titleblock .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .field--name-field-contact-cards .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .field--name-field-employment-opportunity-car .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .all-grants-foa-container .flexItemText .herobannertitle-grey a,
.topicFeatured .view-content .views-row .field--name-field-program-officers .flexItemText .herobannertitle-grey a,
.topicFeatured .view-content .views-row .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText .herobannertitle-grey a,
.topicFeatured .view-content .views-row .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .node--type-individual-contact .field--name-field-contact-methods .flexItemText .herobannertitle-grey a, .node--type-individual-contact .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle-grey a,
.topicFeatured .view-content .views-row .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle-grey a,
.node--type-division.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle-grey a,
.topicFeatured .view-content .views-row .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle-grey a,
.node--type-division.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle-grey a,
.topicFeatured .view-content .views-row .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle-grey a,
.node--type-branch.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle-grey a,
.topicFeatured .view-content .views-row .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle-grey a,
.node--type-branch.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle-grey a,
.topicFeatured .view-content .views-row .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle-grey a,
.node--type-general.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle-grey a,
.topicFeatured .view-content .views-row .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle-grey a,
.node--type-general.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle-grey a,
.topicFeatured .view-content .views-row .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle-grey a,
.node--type-health-education-initiative.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle-grey a,
.topicFeatured .view-content .views-row .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle-grey a,
.node--type-health-education-initiative.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .node--type-committee .field--name-field-card-text .flexItemText .herobannertitle-grey a, .node--type-committee .topicFeatured .view-content .views-row .field--name-field-card-text .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .news-and-events--landing .landing-social .flexItemText .herobannertitle-grey a, .news-and-events--landing .topicFeatured .view-content .views-row .landing-social .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .field--name-field-sfa-cards .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .locationMap.contact-location-map-container .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .locationMap .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .grants-and-training-card-wrapper .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .about-nhlbi-division-card-wrapper .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .hei-tools-icon-card-wrapper .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .field--name-field-grants-and-training-card .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .field--name-field-division-card .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .field--name-field-tool-icon-card .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .field--name-field-promotional-card .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .field--name-field-sv-promotional-cards .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .field--name-field-about-nhlbi-promotional-ca .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .strategic-vision-titleblock .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .ppg-titleblock-wrapper .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .ppg-guidelines-card-wrapper .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .field--name-field-human-subject-cards .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .field--name-field-section-card .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .field--name-field-highlight-card .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .health-topic-teaser-container .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .about-nhlbi-our-mission-wrapper .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText .herobannertitle-grey a, .about-nhlbi-our-mission-wrapper .topicFeatured .view-content .views-row .field--name-field-leadership > .director-bioCard .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemText .herobannertitle-grey a, .nhlbi-publications-and-resources--landing .topicFeatured .view-content .views-row .field--name-field-health-consumer-nhlbi-publ .flexItemText .herobannertitle-grey a,
.topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemText .herobannertitle-grey a,
.nhlbi-publications-and-resources--landing .topicFeatured .view-content .views-row .field--name-field-health-professionals-nhlbi .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemText .herobannertitle-grey a, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle-grey a,
.topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemText .herobannertitle-grey a,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .publicationsBlock.view-nhlbi-publications > .view-content .flexItemText .herobannertitle-grey a,
.topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .healthEducationBlock .standard-teaser .flexItemText .herobannertitle-grey a, .healthEducationBlock .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .systematicEvidenceReviewsBlock .view-content .flexItemText .herobannertitle-grey a, .systematicEvidenceReviewsBlock .topicFeatured .view-content .views-row .view-content .flexItemText .herobannertitle-grey a,
.topicFeatured .view-content .views-row .clinicalPracticeGuidelinesBlock .view-content .flexItemText .herobannertitle-grey a,
.clinicalPracticeGuidelinesBlock .topicFeatured .view-content .views-row .view-content .flexItemText .herobannertitle-grey a,
.topicFeatured .view-content .views-row .publicationsAndFactSheetsBlock .view-content .flexItemText .herobannertitle-grey a,
.publicationsAndFactSheetsBlock .topicFeatured .view-content .views-row .view-content .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .rtFlexContainer .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText .herobannertitle-grey a, .node--type-research-topic .topicFeatured .view-content .views-row .field--name-field-science-supplemental-page .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .node--type-research-topic .researchTopicPublications .flexItemText .herobannertitle-grey a, .node--type-research-topic .topicFeatured .view-content .views-row .researchTopicPublications .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemText .herobannertitle-grey a, .node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.listTeaserCard .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemText .herobannertitle-grey a, .node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.standard-teaser .flexItemText .herobannertitle-grey a,
.topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemText .herobannertitle-grey a,
.node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.newsEventsCard .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .esi-feature-card .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .featured-science-instance-teaser-container .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .sfa-teaser-container .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .training-opportunity-card .field--name-field-associated-people .flexItemText .herobannertitle-grey a, .training-opportunity-card .topicFeatured .view-content .views-row .field--name-field-associated-people .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .field--name-field-featured-training-opportun .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .field--name-field-career-stages .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .field--name-field-workforce-development-card .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .node--type-update.node--view-mode-executive-teaser .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .news-and-events-titleblock .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .contact-box > .field--name-field-contact-methods .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .leadership-container .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .herobannertitle-grey a, .leadership-container .leadership-deputy-director-container .topicFeatured .view-content .views-row .field--name-field-additional-leadership .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .branch-leadership-container .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .herobannertitle-grey a, .branch-leadership-container .leadership-deputy-director-container .topicFeatured .view-content .views-row .field--name-field-additional-leadership .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .node--type-general .field--name-field-related-publications .flexItemText .herobannertitle-grey a, .node--type-general .topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .node--type-general .field--name-field-general-publications-rlt .flexItemText .herobannertitle-grey a, .node--type-general .topicFeatured .view-content .views-row .field--name-field-general-publications-rlt .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemText .herobannertitle-grey a, .node--type-general .field--name-field-general-publications-rlt > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemText .herobannertitle-grey a, .node--type-general .field--name-field-related-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .objective-text-container .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .objective-list-container .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .field--name-field-goal-card .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .strategic-vision-landing-goals-wrapper .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .node--type-principal-investigator .striped-container-wrapper .flexItemText .herobannertitle-grey a, .node--type-principal-investigator .topicFeatured .view-content .views-row .striped-container-wrapper .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .node--type-principal-investigator .striped-container .flexItemText .herobannertitle-grey a, .node--type-principal-investigator .topicFeatured .view-content .views-row .striped-container .flexItemText .herobannertitle-grey a, .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .views-row article .flexItemText .herobannertitle-grey a, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .topicFeatured .view-content .views-row article .flexItemText .herobannertitle-grey a,
.topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .views-row article .flexItemText .herobannertitle-grey a,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .topicFeatured .view-content .views-row article .flexItemText .herobannertitle-grey a, .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .views-row .standard-teaser.node--view-mode-short-teaser .flexItemText .herobannertitle-grey a, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .topicFeatured .view-content .views-row .standard-teaser.node--view-mode-short-teaser .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .field--name-field-awards .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .registerSocialContainer .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .eventdatesLocationType .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .news-article-container .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText .herobannertitle-grey a,
.topicFeatured .view-content .views-row .node--type-press-release.node--view-mode-press-release-teaser .flexItemText .herobannertitle-grey a,
.topicFeatured .view-content .views-row .node--type-events.node--view-mode-press-release-teaser .flexItemText .herobannertitle-grey a,
.topicFeatured .view-content .views-row .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey a,
.topicFeatured .view-content .views-row .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey a,
.topicFeatured .view-content .views-row .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey a,
.topicFeatured .view-content .views-row .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .news-header-container .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .contacts-container .field--name-field-contacts .flexItemText .herobannertitle-grey a, .contacts-container .topicFeatured .view-content .views-row .field--name-field-contacts .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .publicationsBox .field--name-field-related-publications .flexItemText .herobannertitle-grey a, .publicationsBox .topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .field--name-field-primary-featured-item .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .field--name-field-additional-featured-items .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .homepage-health-topics-container .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .homepage-mission-areas-container .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .homepage-location-container .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .field--name-field-alumni .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemText .herobannertitle-grey a, .node--type-nhlbi-publication.node--view-mode-full .topicFeatured .view-content .views-row .nhlbi-publication-details-container .flexItemText .herobannertitle-grey a,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemText .herobannertitle-grey a,
.node--type-nhlbi-publication.node--view-mode-subscribe .topicFeatured .view-content .views-row .nhlbi-publication-details-container .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle-grey a, .node--type-nhlbi-publication.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle-grey a,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle-grey a,
.node--type-nhlbi-publication.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText .herobannertitle-grey a, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle-grey a,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText .herobannertitle-grey a,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle-grey a {
  color: #222;
  display: block;
}
/* line 534, ../sass/components/_landing_pages.scss */
.topicFeatured .view-content .views-row .flexcontainer .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .related-ht-ser-container .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .field--name-field-sfa-card .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .field--name-field-speaker .flexItemText .herobannertitle a:focus,
.topicFeatured .view-content .views-row .field--name-field-executives .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .standard-card-field .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .field--name-field-advisory-committees .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .contact-nhlbi-titleblock .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .field--name-field-contact-cards .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .field--name-field-employment-opportunity-car .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .all-grants-foa-container .flexItemText .herobannertitle a:focus,
.topicFeatured .view-content .views-row .field--name-field-program-officers .flexItemText .herobannertitle a:focus,
.topicFeatured .view-content .views-row .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText .herobannertitle a:focus,
.topicFeatured .view-content .views-row .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .node--type-individual-contact .field--name-field-contact-methods .flexItemText .herobannertitle a:focus, .node--type-individual-contact .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle a:focus,
.topicFeatured .view-content .views-row .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle a:focus,
.node--type-division.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle a:focus,
.topicFeatured .view-content .views-row .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle a:focus,
.node--type-division.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle a:focus,
.topicFeatured .view-content .views-row .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle a:focus,
.node--type-branch.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle a:focus,
.topicFeatured .view-content .views-row .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle a:focus,
.node--type-branch.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle a:focus,
.topicFeatured .view-content .views-row .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle a:focus,
.node--type-general.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle a:focus,
.topicFeatured .view-content .views-row .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle a:focus,
.node--type-general.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle a:focus,
.topicFeatured .view-content .views-row .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle a:focus,
.node--type-health-education-initiative.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle a:focus,
.topicFeatured .view-content .views-row .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle a:focus,
.node--type-health-education-initiative.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .node--type-committee .field--name-field-card-text .flexItemText .herobannertitle a:focus, .node--type-committee .topicFeatured .view-content .views-row .field--name-field-card-text .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .news-and-events--landing .landing-social .flexItemText .herobannertitle a:focus, .news-and-events--landing .topicFeatured .view-content .views-row .landing-social .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .field--name-field-sfa-cards .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .locationMap.contact-location-map-container .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .locationMap .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .grants-and-training-card-wrapper .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .about-nhlbi-division-card-wrapper .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .hei-tools-icon-card-wrapper .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .field--name-field-grants-and-training-card .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .field--name-field-division-card .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .field--name-field-tool-icon-card .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .field--name-field-promotional-card .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .field--name-field-sv-promotional-cards .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .field--name-field-about-nhlbi-promotional-ca .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .strategic-vision-titleblock .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .ppg-titleblock-wrapper .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .ppg-guidelines-card-wrapper .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .field--name-field-human-subject-cards .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .field--name-field-section-card .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .field--name-field-highlight-card .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .health-topic-teaser-container .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .about-nhlbi-our-mission-wrapper .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText .herobannertitle a:focus, .about-nhlbi-our-mission-wrapper .topicFeatured .view-content .views-row .field--name-field-leadership > .director-bioCard .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemText .herobannertitle a:focus, .nhlbi-publications-and-resources--landing .topicFeatured .view-content .views-row .field--name-field-health-consumer-nhlbi-publ .flexItemText .herobannertitle a:focus,
.topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemText .herobannertitle a:focus,
.nhlbi-publications-and-resources--landing .topicFeatured .view-content .views-row .field--name-field-health-professionals-nhlbi .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemText .herobannertitle a:focus, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle a:focus,
.topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemText .herobannertitle a:focus,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .publicationsBlock.view-nhlbi-publications > .view-content .flexItemText .herobannertitle a:focus,
.topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .healthEducationBlock .standard-teaser .flexItemText .herobannertitle a:focus, .healthEducationBlock .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .systematicEvidenceReviewsBlock .view-content .flexItemText .herobannertitle a:focus, .systematicEvidenceReviewsBlock .topicFeatured .view-content .views-row .view-content .flexItemText .herobannertitle a:focus,
.topicFeatured .view-content .views-row .clinicalPracticeGuidelinesBlock .view-content .flexItemText .herobannertitle a:focus,
.clinicalPracticeGuidelinesBlock .topicFeatured .view-content .views-row .view-content .flexItemText .herobannertitle a:focus,
.topicFeatured .view-content .views-row .publicationsAndFactSheetsBlock .view-content .flexItemText .herobannertitle a:focus,
.publicationsAndFactSheetsBlock .topicFeatured .view-content .views-row .view-content .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .rtFlexContainer .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText .herobannertitle a:focus, .node--type-research-topic .topicFeatured .view-content .views-row .field--name-field-science-supplemental-page .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .node--type-research-topic .researchTopicPublications .flexItemText .herobannertitle a:focus, .node--type-research-topic .topicFeatured .view-content .views-row .researchTopicPublications .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemText .herobannertitle a:focus, .node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.listTeaserCard .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemText .herobannertitle a:focus, .node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.standard-teaser .flexItemText .herobannertitle a:focus,
.topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemText .herobannertitle a:focus,
.node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.newsEventsCard .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .esi-feature-card .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .featured-science-instance-teaser-container .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .sfa-teaser-container .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .training-opportunity-card .field--name-field-associated-people .flexItemText .herobannertitle a:focus, .training-opportunity-card .topicFeatured .view-content .views-row .field--name-field-associated-people .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .field--name-field-featured-training-opportun .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .field--name-field-career-stages .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .field--name-field-workforce-development-card .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .node--type-update.node--view-mode-executive-teaser .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .news-and-events-titleblock .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .contact-box > .field--name-field-contact-methods .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .leadership-container .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .herobannertitle a:focus, .leadership-container .leadership-deputy-director-container .topicFeatured .view-content .views-row .field--name-field-additional-leadership .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .branch-leadership-container .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .herobannertitle a:focus, .branch-leadership-container .leadership-deputy-director-container .topicFeatured .view-content .views-row .field--name-field-additional-leadership .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .node--type-general .field--name-field-related-publications .flexItemText .herobannertitle a:focus, .node--type-general .topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .node--type-general .field--name-field-general-publications-rlt .flexItemText .herobannertitle a:focus, .node--type-general .topicFeatured .view-content .views-row .field--name-field-general-publications-rlt .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemText .herobannertitle a:focus, .node--type-general .field--name-field-general-publications-rlt > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemText .herobannertitle a:focus, .node--type-general .field--name-field-related-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .objective-text-container .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .objective-list-container .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .field--name-field-goal-card .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .strategic-vision-landing-goals-wrapper .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .node--type-principal-investigator .striped-container-wrapper .flexItemText .herobannertitle a:focus, .node--type-principal-investigator .topicFeatured .view-content .views-row .striped-container-wrapper .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .node--type-principal-investigator .striped-container .flexItemText .herobannertitle a:focus, .node--type-principal-investigator .topicFeatured .view-content .views-row .striped-container .flexItemText .herobannertitle a:focus, .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .views-row article .flexItemText .herobannertitle a:focus, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .topicFeatured .view-content .views-row article .flexItemText .herobannertitle a:focus,
.topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .views-row article .flexItemText .herobannertitle a:focus,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .topicFeatured .view-content .views-row article .flexItemText .herobannertitle a:focus, .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .views-row .standard-teaser.node--view-mode-short-teaser .flexItemText .herobannertitle a:focus, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .topicFeatured .view-content .views-row .standard-teaser.node--view-mode-short-teaser .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .field--name-field-awards .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .registerSocialContainer .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .eventdatesLocationType .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .news-article-container .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText .herobannertitle a:focus,
.topicFeatured .view-content .views-row .node--type-press-release.node--view-mode-press-release-teaser .flexItemText .herobannertitle a:focus,
.topicFeatured .view-content .views-row .node--type-events.node--view-mode-press-release-teaser .flexItemText .herobannertitle a:focus,
.topicFeatured .view-content .views-row .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle a:focus,
.topicFeatured .view-content .views-row .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle a:focus,
.topicFeatured .view-content .views-row .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle a:focus,
.topicFeatured .view-content .views-row .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .news-header-container .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .contacts-container .field--name-field-contacts .flexItemText .herobannertitle a:focus, .contacts-container .topicFeatured .view-content .views-row .field--name-field-contacts .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .publicationsBox .field--name-field-related-publications .flexItemText .herobannertitle a:focus, .publicationsBox .topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .field--name-field-primary-featured-item .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .field--name-field-additional-featured-items .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .homepage-health-topics-container .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .homepage-mission-areas-container .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .homepage-location-container .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .field--name-field-alumni .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemText .herobannertitle a:focus, .node--type-nhlbi-publication.node--view-mode-full .topicFeatured .view-content .views-row .nhlbi-publication-details-container .flexItemText .herobannertitle a:focus,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemText .herobannertitle a:focus,
.node--type-nhlbi-publication.node--view-mode-subscribe .topicFeatured .view-content .views-row .nhlbi-publication-details-container .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle a:focus, .node--type-nhlbi-publication.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle a:focus,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle a:focus,
.node--type-nhlbi-publication.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText .herobannertitle a:focus, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle a:focus,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText .herobannertitle a:focus,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle a:focus, .topicFeatured .view-content .views-row .flexcontainer .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .related-ht-ser-container .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .field--name-field-sfa-card .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .field--name-field-speaker .flexItemText .herobannertitle-grey a:focus,
.topicFeatured .view-content .views-row .field--name-field-executives .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .standard-card-field .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .field--name-field-advisory-committees .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .contact-nhlbi-titleblock .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .field--name-field-contact-cards .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .field--name-field-employment-opportunity-car .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .all-grants-foa-container .flexItemText .herobannertitle-grey a:focus,
.topicFeatured .view-content .views-row .field--name-field-program-officers .flexItemText .herobannertitle-grey a:focus,
.topicFeatured .view-content .views-row .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText .herobannertitle-grey a:focus,
.topicFeatured .view-content .views-row .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .node--type-individual-contact .field--name-field-contact-methods .flexItemText .herobannertitle-grey a:focus, .node--type-individual-contact .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle-grey a:focus,
.topicFeatured .view-content .views-row .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle-grey a:focus,
.node--type-division.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle-grey a:focus,
.topicFeatured .view-content .views-row .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle-grey a:focus,
.node--type-division.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle-grey a:focus,
.topicFeatured .view-content .views-row .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle-grey a:focus,
.node--type-branch.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle-grey a:focus,
.topicFeatured .view-content .views-row .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle-grey a:focus,
.node--type-branch.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle-grey a:focus,
.topicFeatured .view-content .views-row .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle-grey a:focus,
.node--type-general.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle-grey a:focus,
.topicFeatured .view-content .views-row .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle-grey a:focus,
.node--type-general.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle-grey a:focus,
.topicFeatured .view-content .views-row .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle-grey a:focus,
.node--type-health-education-initiative.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle-grey a:focus,
.topicFeatured .view-content .views-row .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle-grey a:focus,
.node--type-health-education-initiative.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .node--type-committee .field--name-field-card-text .flexItemText .herobannertitle-grey a:focus, .node--type-committee .topicFeatured .view-content .views-row .field--name-field-card-text .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .news-and-events--landing .landing-social .flexItemText .herobannertitle-grey a:focus, .news-and-events--landing .topicFeatured .view-content .views-row .landing-social .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .field--name-field-sfa-cards .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .locationMap.contact-location-map-container .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .locationMap .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .grants-and-training-card-wrapper .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .about-nhlbi-division-card-wrapper .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .hei-tools-icon-card-wrapper .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .field--name-field-grants-and-training-card .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .field--name-field-division-card .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .field--name-field-tool-icon-card .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .field--name-field-promotional-card .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .field--name-field-sv-promotional-cards .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .field--name-field-about-nhlbi-promotional-ca .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .strategic-vision-titleblock .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .ppg-titleblock-wrapper .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .ppg-guidelines-card-wrapper .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .field--name-field-human-subject-cards .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .field--name-field-section-card .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .field--name-field-highlight-card .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .health-topic-teaser-container .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .about-nhlbi-our-mission-wrapper .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText .herobannertitle-grey a:focus, .about-nhlbi-our-mission-wrapper .topicFeatured .view-content .views-row .field--name-field-leadership > .director-bioCard .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemText .herobannertitle-grey a:focus, .nhlbi-publications-and-resources--landing .topicFeatured .view-content .views-row .field--name-field-health-consumer-nhlbi-publ .flexItemText .herobannertitle-grey a:focus,
.topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemText .herobannertitle-grey a:focus,
.nhlbi-publications-and-resources--landing .topicFeatured .view-content .views-row .field--name-field-health-professionals-nhlbi .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemText .herobannertitle-grey a:focus, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle-grey a:focus,
.topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemText .herobannertitle-grey a:focus,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .publicationsBlock.view-nhlbi-publications > .view-content .flexItemText .herobannertitle-grey a:focus,
.topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .healthEducationBlock .standard-teaser .flexItemText .herobannertitle-grey a:focus, .healthEducationBlock .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .systematicEvidenceReviewsBlock .view-content .flexItemText .herobannertitle-grey a:focus, .systematicEvidenceReviewsBlock .topicFeatured .view-content .views-row .view-content .flexItemText .herobannertitle-grey a:focus,
.topicFeatured .view-content .views-row .clinicalPracticeGuidelinesBlock .view-content .flexItemText .herobannertitle-grey a:focus,
.clinicalPracticeGuidelinesBlock .topicFeatured .view-content .views-row .view-content .flexItemText .herobannertitle-grey a:focus,
.topicFeatured .view-content .views-row .publicationsAndFactSheetsBlock .view-content .flexItemText .herobannertitle-grey a:focus,
.publicationsAndFactSheetsBlock .topicFeatured .view-content .views-row .view-content .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .rtFlexContainer .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText .herobannertitle-grey a:focus, .node--type-research-topic .topicFeatured .view-content .views-row .field--name-field-science-supplemental-page .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .node--type-research-topic .researchTopicPublications .flexItemText .herobannertitle-grey a:focus, .node--type-research-topic .topicFeatured .view-content .views-row .researchTopicPublications .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemText .herobannertitle-grey a:focus, .node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.listTeaserCard .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemText .herobannertitle-grey a:focus, .node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.standard-teaser .flexItemText .herobannertitle-grey a:focus,
.topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemText .herobannertitle-grey a:focus,
.node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.newsEventsCard .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .esi-feature-card .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .featured-science-instance-teaser-container .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .sfa-teaser-container .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .training-opportunity-card .field--name-field-associated-people .flexItemText .herobannertitle-grey a:focus, .training-opportunity-card .topicFeatured .view-content .views-row .field--name-field-associated-people .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .field--name-field-featured-training-opportun .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .field--name-field-career-stages .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .field--name-field-workforce-development-card .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .node--type-update.node--view-mode-executive-teaser .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .news-and-events-titleblock .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .contact-box > .field--name-field-contact-methods .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .leadership-container .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .herobannertitle-grey a:focus, .leadership-container .leadership-deputy-director-container .topicFeatured .view-content .views-row .field--name-field-additional-leadership .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .branch-leadership-container .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .herobannertitle-grey a:focus, .branch-leadership-container .leadership-deputy-director-container .topicFeatured .view-content .views-row .field--name-field-additional-leadership .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .node--type-general .field--name-field-related-publications .flexItemText .herobannertitle-grey a:focus, .node--type-general .topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .node--type-general .field--name-field-general-publications-rlt .flexItemText .herobannertitle-grey a:focus, .node--type-general .topicFeatured .view-content .views-row .field--name-field-general-publications-rlt .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemText .herobannertitle-grey a:focus, .node--type-general .field--name-field-general-publications-rlt > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemText .herobannertitle-grey a:focus, .node--type-general .field--name-field-related-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .objective-text-container .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .objective-list-container .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .field--name-field-goal-card .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .strategic-vision-landing-goals-wrapper .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .node--type-principal-investigator .striped-container-wrapper .flexItemText .herobannertitle-grey a:focus, .node--type-principal-investigator .topicFeatured .view-content .views-row .striped-container-wrapper .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .node--type-principal-investigator .striped-container .flexItemText .herobannertitle-grey a:focus, .node--type-principal-investigator .topicFeatured .view-content .views-row .striped-container .flexItemText .herobannertitle-grey a:focus, .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .views-row article .flexItemText .herobannertitle-grey a:focus, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .topicFeatured .view-content .views-row article .flexItemText .herobannertitle-grey a:focus,
.topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .views-row article .flexItemText .herobannertitle-grey a:focus,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .topicFeatured .view-content .views-row article .flexItemText .herobannertitle-grey a:focus, .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .views-row .standard-teaser.node--view-mode-short-teaser .flexItemText .herobannertitle-grey a:focus, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .topicFeatured .view-content .views-row .standard-teaser.node--view-mode-short-teaser .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .field--name-field-awards .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .registerSocialContainer .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .eventdatesLocationType .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .news-article-container .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText .herobannertitle-grey a:focus,
.topicFeatured .view-content .views-row .node--type-press-release.node--view-mode-press-release-teaser .flexItemText .herobannertitle-grey a:focus,
.topicFeatured .view-content .views-row .node--type-events.node--view-mode-press-release-teaser .flexItemText .herobannertitle-grey a:focus,
.topicFeatured .view-content .views-row .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey a:focus,
.topicFeatured .view-content .views-row .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey a:focus,
.topicFeatured .view-content .views-row .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey a:focus,
.topicFeatured .view-content .views-row .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .news-header-container .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .contacts-container .field--name-field-contacts .flexItemText .herobannertitle-grey a:focus, .contacts-container .topicFeatured .view-content .views-row .field--name-field-contacts .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .publicationsBox .field--name-field-related-publications .flexItemText .herobannertitle-grey a:focus, .publicationsBox .topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .field--name-field-primary-featured-item .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .field--name-field-additional-featured-items .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .homepage-health-topics-container .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .homepage-mission-areas-container .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .homepage-location-container .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .field--name-field-alumni .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemText .herobannertitle-grey a:focus, .node--type-nhlbi-publication.node--view-mode-full .topicFeatured .view-content .views-row .nhlbi-publication-details-container .flexItemText .herobannertitle-grey a:focus,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemText .herobannertitle-grey a:focus,
.node--type-nhlbi-publication.node--view-mode-subscribe .topicFeatured .view-content .views-row .nhlbi-publication-details-container .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle-grey a:focus, .node--type-nhlbi-publication.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle-grey a:focus,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle-grey a:focus,
.node--type-nhlbi-publication.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText .herobannertitle-grey a:focus, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle-grey a:focus,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText .herobannertitle-grey a:focus,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle-grey a:focus, .topicFeatured .view-content .views-row .flexcontainer .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .related-ht-ser-container .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .field--name-field-sfa-card .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .field--name-field-speaker .flexItemText .herobannertitle a:active,
.topicFeatured .view-content .views-row .field--name-field-executives .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .standard-card-field .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .field--name-field-advisory-committees .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .contact-nhlbi-titleblock .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .field--name-field-contact-cards .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .field--name-field-employment-opportunity-car .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .all-grants-foa-container .flexItemText .herobannertitle a:active,
.topicFeatured .view-content .views-row .field--name-field-program-officers .flexItemText .herobannertitle a:active,
.topicFeatured .view-content .views-row .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText .herobannertitle a:active,
.topicFeatured .view-content .views-row .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .node--type-individual-contact .field--name-field-contact-methods .flexItemText .herobannertitle a:active, .node--type-individual-contact .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle a:active,
.topicFeatured .view-content .views-row .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle a:active,
.node--type-division.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle a:active,
.topicFeatured .view-content .views-row .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle a:active,
.node--type-division.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle a:active,
.topicFeatured .view-content .views-row .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle a:active,
.node--type-branch.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle a:active,
.topicFeatured .view-content .views-row .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle a:active,
.node--type-branch.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle a:active,
.topicFeatured .view-content .views-row .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle a:active,
.node--type-general.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle a:active,
.topicFeatured .view-content .views-row .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle a:active,
.node--type-general.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle a:active,
.topicFeatured .view-content .views-row .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle a:active,
.node--type-health-education-initiative.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle a:active,
.topicFeatured .view-content .views-row .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle a:active,
.node--type-health-education-initiative.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .node--type-committee .field--name-field-card-text .flexItemText .herobannertitle a:active, .node--type-committee .topicFeatured .view-content .views-row .field--name-field-card-text .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .news-and-events--landing .landing-social .flexItemText .herobannertitle a:active, .news-and-events--landing .topicFeatured .view-content .views-row .landing-social .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .field--name-field-sfa-cards .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .locationMap.contact-location-map-container .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .locationMap .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .grants-and-training-card-wrapper .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .about-nhlbi-division-card-wrapper .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .hei-tools-icon-card-wrapper .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .field--name-field-grants-and-training-card .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .field--name-field-division-card .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .field--name-field-tool-icon-card .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .field--name-field-promotional-card .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .field--name-field-sv-promotional-cards .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .field--name-field-about-nhlbi-promotional-ca .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .strategic-vision-titleblock .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .ppg-titleblock-wrapper .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .ppg-guidelines-card-wrapper .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .field--name-field-human-subject-cards .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .field--name-field-section-card .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .field--name-field-highlight-card .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .health-topic-teaser-container .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .about-nhlbi-our-mission-wrapper .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText .herobannertitle a:active, .about-nhlbi-our-mission-wrapper .topicFeatured .view-content .views-row .field--name-field-leadership > .director-bioCard .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemText .herobannertitle a:active, .nhlbi-publications-and-resources--landing .topicFeatured .view-content .views-row .field--name-field-health-consumer-nhlbi-publ .flexItemText .herobannertitle a:active,
.topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemText .herobannertitle a:active,
.nhlbi-publications-and-resources--landing .topicFeatured .view-content .views-row .field--name-field-health-professionals-nhlbi .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemText .herobannertitle a:active, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle a:active,
.topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemText .herobannertitle a:active,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .publicationsBlock.view-nhlbi-publications > .view-content .flexItemText .herobannertitle a:active,
.topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .healthEducationBlock .standard-teaser .flexItemText .herobannertitle a:active, .healthEducationBlock .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .systematicEvidenceReviewsBlock .view-content .flexItemText .herobannertitle a:active, .systematicEvidenceReviewsBlock .topicFeatured .view-content .views-row .view-content .flexItemText .herobannertitle a:active,
.topicFeatured .view-content .views-row .clinicalPracticeGuidelinesBlock .view-content .flexItemText .herobannertitle a:active,
.clinicalPracticeGuidelinesBlock .topicFeatured .view-content .views-row .view-content .flexItemText .herobannertitle a:active,
.topicFeatured .view-content .views-row .publicationsAndFactSheetsBlock .view-content .flexItemText .herobannertitle a:active,
.publicationsAndFactSheetsBlock .topicFeatured .view-content .views-row .view-content .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .rtFlexContainer .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText .herobannertitle a:active, .node--type-research-topic .topicFeatured .view-content .views-row .field--name-field-science-supplemental-page .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .node--type-research-topic .researchTopicPublications .flexItemText .herobannertitle a:active, .node--type-research-topic .topicFeatured .view-content .views-row .researchTopicPublications .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemText .herobannertitle a:active, .node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.listTeaserCard .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemText .herobannertitle a:active, .node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.standard-teaser .flexItemText .herobannertitle a:active,
.topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemText .herobannertitle a:active,
.node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.newsEventsCard .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .esi-feature-card .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .featured-science-instance-teaser-container .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .sfa-teaser-container .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .training-opportunity-card .field--name-field-associated-people .flexItemText .herobannertitle a:active, .training-opportunity-card .topicFeatured .view-content .views-row .field--name-field-associated-people .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .field--name-field-featured-training-opportun .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .field--name-field-career-stages .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .field--name-field-workforce-development-card .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .node--type-update.node--view-mode-executive-teaser .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .news-and-events-titleblock .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .contact-box > .field--name-field-contact-methods .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .leadership-container .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .herobannertitle a:active, .leadership-container .leadership-deputy-director-container .topicFeatured .view-content .views-row .field--name-field-additional-leadership .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .branch-leadership-container .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .herobannertitle a:active, .branch-leadership-container .leadership-deputy-director-container .topicFeatured .view-content .views-row .field--name-field-additional-leadership .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .node--type-general .field--name-field-related-publications .flexItemText .herobannertitle a:active, .node--type-general .topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .node--type-general .field--name-field-general-publications-rlt .flexItemText .herobannertitle a:active, .node--type-general .topicFeatured .view-content .views-row .field--name-field-general-publications-rlt .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemText .herobannertitle a:active, .node--type-general .field--name-field-general-publications-rlt > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemText .herobannertitle a:active, .node--type-general .field--name-field-related-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .objective-text-container .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .objective-list-container .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .field--name-field-goal-card .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .strategic-vision-landing-goals-wrapper .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .node--type-principal-investigator .striped-container-wrapper .flexItemText .herobannertitle a:active, .node--type-principal-investigator .topicFeatured .view-content .views-row .striped-container-wrapper .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .node--type-principal-investigator .striped-container .flexItemText .herobannertitle a:active, .node--type-principal-investigator .topicFeatured .view-content .views-row .striped-container .flexItemText .herobannertitle a:active, .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .views-row article .flexItemText .herobannertitle a:active, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .topicFeatured .view-content .views-row article .flexItemText .herobannertitle a:active,
.topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .views-row article .flexItemText .herobannertitle a:active,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .topicFeatured .view-content .views-row article .flexItemText .herobannertitle a:active, .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .views-row .standard-teaser.node--view-mode-short-teaser .flexItemText .herobannertitle a:active, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .topicFeatured .view-content .views-row .standard-teaser.node--view-mode-short-teaser .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .field--name-field-awards .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .registerSocialContainer .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .eventdatesLocationType .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .news-article-container .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText .herobannertitle a:active,
.topicFeatured .view-content .views-row .node--type-press-release.node--view-mode-press-release-teaser .flexItemText .herobannertitle a:active,
.topicFeatured .view-content .views-row .node--type-events.node--view-mode-press-release-teaser .flexItemText .herobannertitle a:active,
.topicFeatured .view-content .views-row .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle a:active,
.topicFeatured .view-content .views-row .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle a:active,
.topicFeatured .view-content .views-row .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle a:active,
.topicFeatured .view-content .views-row .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .news-header-container .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .contacts-container .field--name-field-contacts .flexItemText .herobannertitle a:active, .contacts-container .topicFeatured .view-content .views-row .field--name-field-contacts .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .publicationsBox .field--name-field-related-publications .flexItemText .herobannertitle a:active, .publicationsBox .topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .field--name-field-primary-featured-item .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .field--name-field-additional-featured-items .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .homepage-health-topics-container .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .homepage-mission-areas-container .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .homepage-location-container .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .field--name-field-alumni .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemText .herobannertitle a:active, .node--type-nhlbi-publication.node--view-mode-full .topicFeatured .view-content .views-row .nhlbi-publication-details-container .flexItemText .herobannertitle a:active,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemText .herobannertitle a:active,
.node--type-nhlbi-publication.node--view-mode-subscribe .topicFeatured .view-content .views-row .nhlbi-publication-details-container .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle a:active, .node--type-nhlbi-publication.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle a:active,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle a:active,
.node--type-nhlbi-publication.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText .herobannertitle a:active, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle a:active,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText .herobannertitle a:active,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle a:active, .topicFeatured .view-content .views-row .flexcontainer .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .related-ht-ser-container .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .field--name-field-sfa-card .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .field--name-field-speaker .flexItemText .herobannertitle-grey a:active,
.topicFeatured .view-content .views-row .field--name-field-executives .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .standard-card-field .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .field--name-field-advisory-committees .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .contact-nhlbi-titleblock .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .field--name-field-contact-cards .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .field--name-field-employment-opportunity-car .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .all-grants-foa-container .flexItemText .herobannertitle-grey a:active,
.topicFeatured .view-content .views-row .field--name-field-program-officers .flexItemText .herobannertitle-grey a:active,
.topicFeatured .view-content .views-row .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText .herobannertitle-grey a:active,
.topicFeatured .view-content .views-row .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .node--type-individual-contact .field--name-field-contact-methods .flexItemText .herobannertitle-grey a:active, .node--type-individual-contact .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle-grey a:active,
.topicFeatured .view-content .views-row .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle-grey a:active,
.node--type-division.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle-grey a:active,
.topicFeatured .view-content .views-row .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle-grey a:active,
.node--type-division.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle-grey a:active,
.topicFeatured .view-content .views-row .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle-grey a:active,
.node--type-branch.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle-grey a:active,
.topicFeatured .view-content .views-row .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle-grey a:active,
.node--type-branch.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle-grey a:active,
.topicFeatured .view-content .views-row .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle-grey a:active,
.node--type-general.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle-grey a:active,
.topicFeatured .view-content .views-row .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle-grey a:active,
.node--type-general.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle-grey a:active,
.topicFeatured .view-content .views-row .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle-grey a:active,
.node--type-health-education-initiative.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle-grey a:active,
.topicFeatured .view-content .views-row .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle-grey a:active,
.node--type-health-education-initiative.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .node--type-committee .field--name-field-card-text .flexItemText .herobannertitle-grey a:active, .node--type-committee .topicFeatured .view-content .views-row .field--name-field-card-text .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .news-and-events--landing .landing-social .flexItemText .herobannertitle-grey a:active, .news-and-events--landing .topicFeatured .view-content .views-row .landing-social .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .field--name-field-sfa-cards .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .locationMap.contact-location-map-container .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .locationMap .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .grants-and-training-card-wrapper .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .about-nhlbi-division-card-wrapper .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .hei-tools-icon-card-wrapper .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .field--name-field-grants-and-training-card .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .field--name-field-division-card .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .field--name-field-tool-icon-card .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .field--name-field-promotional-card .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .field--name-field-sv-promotional-cards .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .field--name-field-about-nhlbi-promotional-ca .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .strategic-vision-titleblock .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .ppg-titleblock-wrapper .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .ppg-guidelines-card-wrapper .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .field--name-field-human-subject-cards .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .field--name-field-section-card .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .field--name-field-highlight-card .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .health-topic-teaser-container .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .about-nhlbi-our-mission-wrapper .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText .herobannertitle-grey a:active, .about-nhlbi-our-mission-wrapper .topicFeatured .view-content .views-row .field--name-field-leadership > .director-bioCard .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemText .herobannertitle-grey a:active, .nhlbi-publications-and-resources--landing .topicFeatured .view-content .views-row .field--name-field-health-consumer-nhlbi-publ .flexItemText .herobannertitle-grey a:active,
.topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemText .herobannertitle-grey a:active,
.nhlbi-publications-and-resources--landing .topicFeatured .view-content .views-row .field--name-field-health-professionals-nhlbi .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemText .herobannertitle-grey a:active, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle-grey a:active,
.topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemText .herobannertitle-grey a:active,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .publicationsBlock.view-nhlbi-publications > .view-content .flexItemText .herobannertitle-grey a:active,
.topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .healthEducationBlock .standard-teaser .flexItemText .herobannertitle-grey a:active, .healthEducationBlock .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .systematicEvidenceReviewsBlock .view-content .flexItemText .herobannertitle-grey a:active, .systematicEvidenceReviewsBlock .topicFeatured .view-content .views-row .view-content .flexItemText .herobannertitle-grey a:active,
.topicFeatured .view-content .views-row .clinicalPracticeGuidelinesBlock .view-content .flexItemText .herobannertitle-grey a:active,
.clinicalPracticeGuidelinesBlock .topicFeatured .view-content .views-row .view-content .flexItemText .herobannertitle-grey a:active,
.topicFeatured .view-content .views-row .publicationsAndFactSheetsBlock .view-content .flexItemText .herobannertitle-grey a:active,
.publicationsAndFactSheetsBlock .topicFeatured .view-content .views-row .view-content .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .rtFlexContainer .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText .herobannertitle-grey a:active, .node--type-research-topic .topicFeatured .view-content .views-row .field--name-field-science-supplemental-page .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .node--type-research-topic .researchTopicPublications .flexItemText .herobannertitle-grey a:active, .node--type-research-topic .topicFeatured .view-content .views-row .researchTopicPublications .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemText .herobannertitle-grey a:active, .node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.listTeaserCard .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemText .herobannertitle-grey a:active, .node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.standard-teaser .flexItemText .herobannertitle-grey a:active,
.topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemText .herobannertitle-grey a:active,
.node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.newsEventsCard .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .esi-feature-card .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .featured-science-instance-teaser-container .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .sfa-teaser-container .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .training-opportunity-card .field--name-field-associated-people .flexItemText .herobannertitle-grey a:active, .training-opportunity-card .topicFeatured .view-content .views-row .field--name-field-associated-people .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .field--name-field-featured-training-opportun .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .field--name-field-career-stages .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .field--name-field-workforce-development-card .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .node--type-update.node--view-mode-executive-teaser .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .news-and-events-titleblock .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .contact-box > .field--name-field-contact-methods .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .leadership-container .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .herobannertitle-grey a:active, .leadership-container .leadership-deputy-director-container .topicFeatured .view-content .views-row .field--name-field-additional-leadership .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .branch-leadership-container .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .herobannertitle-grey a:active, .branch-leadership-container .leadership-deputy-director-container .topicFeatured .view-content .views-row .field--name-field-additional-leadership .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .node--type-general .field--name-field-related-publications .flexItemText .herobannertitle-grey a:active, .node--type-general .topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .node--type-general .field--name-field-general-publications-rlt .flexItemText .herobannertitle-grey a:active, .node--type-general .topicFeatured .view-content .views-row .field--name-field-general-publications-rlt .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemText .herobannertitle-grey a:active, .node--type-general .field--name-field-general-publications-rlt > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemText .herobannertitle-grey a:active, .node--type-general .field--name-field-related-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .objective-text-container .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .objective-list-container .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .field--name-field-goal-card .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .strategic-vision-landing-goals-wrapper .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .node--type-principal-investigator .striped-container-wrapper .flexItemText .herobannertitle-grey a:active, .node--type-principal-investigator .topicFeatured .view-content .views-row .striped-container-wrapper .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .node--type-principal-investigator .striped-container .flexItemText .herobannertitle-grey a:active, .node--type-principal-investigator .topicFeatured .view-content .views-row .striped-container .flexItemText .herobannertitle-grey a:active, .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .views-row article .flexItemText .herobannertitle-grey a:active, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .topicFeatured .view-content .views-row article .flexItemText .herobannertitle-grey a:active,
.topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .views-row article .flexItemText .herobannertitle-grey a:active,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .topicFeatured .view-content .views-row article .flexItemText .herobannertitle-grey a:active, .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .views-row .standard-teaser.node--view-mode-short-teaser .flexItemText .herobannertitle-grey a:active, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .topicFeatured .view-content .views-row .standard-teaser.node--view-mode-short-teaser .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .field--name-field-awards .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .registerSocialContainer .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .eventdatesLocationType .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .news-article-container .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText .herobannertitle-grey a:active,
.topicFeatured .view-content .views-row .node--type-press-release.node--view-mode-press-release-teaser .flexItemText .herobannertitle-grey a:active,
.topicFeatured .view-content .views-row .node--type-events.node--view-mode-press-release-teaser .flexItemText .herobannertitle-grey a:active,
.topicFeatured .view-content .views-row .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey a:active,
.topicFeatured .view-content .views-row .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey a:active,
.topicFeatured .view-content .views-row .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey a:active,
.topicFeatured .view-content .views-row .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .news-header-container .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .contacts-container .field--name-field-contacts .flexItemText .herobannertitle-grey a:active, .contacts-container .topicFeatured .view-content .views-row .field--name-field-contacts .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .publicationsBox .field--name-field-related-publications .flexItemText .herobannertitle-grey a:active, .publicationsBox .topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .field--name-field-primary-featured-item .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .field--name-field-additional-featured-items .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .homepage-health-topics-container .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .homepage-mission-areas-container .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .homepage-location-container .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .field--name-field-alumni .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemText .herobannertitle-grey a:active, .node--type-nhlbi-publication.node--view-mode-full .topicFeatured .view-content .views-row .nhlbi-publication-details-container .flexItemText .herobannertitle-grey a:active,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemText .herobannertitle-grey a:active,
.node--type-nhlbi-publication.node--view-mode-subscribe .topicFeatured .view-content .views-row .nhlbi-publication-details-container .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle-grey a:active, .node--type-nhlbi-publication.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle-grey a:active,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle-grey a:active,
.node--type-nhlbi-publication.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle-grey a:active, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText .herobannertitle-grey a:active, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle-grey a:active,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText .herobannertitle-grey a:active,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle-grey a:active {
  outline: #bf0d2e dotted 3px !important;
}
/* line 539, ../sass/components/_landing_pages.scss */
.topicFeatured .view-content .views-row .flexcontainer .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .related-ht-ser-container .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .field--name-field-sfa-card .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .field--name-field-speaker .flexItemText .herobannertitle a:visited,
.topicFeatured .view-content .views-row .field--name-field-executives .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .standard-card-field .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .field--name-field-advisory-committees .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .contact-nhlbi-titleblock .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .field--name-field-contact-cards .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .field--name-field-employment-opportunity-car .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .all-grants-foa-container .flexItemText .herobannertitle a:visited,
.topicFeatured .view-content .views-row .field--name-field-program-officers .flexItemText .herobannertitle a:visited,
.topicFeatured .view-content .views-row .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText .herobannertitle a:visited,
.topicFeatured .view-content .views-row .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .node--type-individual-contact .field--name-field-contact-methods .flexItemText .herobannertitle a:visited, .node--type-individual-contact .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle a:visited,
.topicFeatured .view-content .views-row .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle a:visited,
.node--type-division.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle a:visited,
.topicFeatured .view-content .views-row .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle a:visited,
.node--type-division.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle a:visited,
.topicFeatured .view-content .views-row .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle a:visited,
.node--type-branch.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle a:visited,
.topicFeatured .view-content .views-row .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle a:visited,
.node--type-branch.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle a:visited,
.topicFeatured .view-content .views-row .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle a:visited,
.node--type-general.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle a:visited,
.topicFeatured .view-content .views-row .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle a:visited,
.node--type-general.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle a:visited,
.topicFeatured .view-content .views-row .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle a:visited,
.node--type-health-education-initiative.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle a:visited,
.topicFeatured .view-content .views-row .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle a:visited,
.node--type-health-education-initiative.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .node--type-committee .field--name-field-card-text .flexItemText .herobannertitle a:visited, .node--type-committee .topicFeatured .view-content .views-row .field--name-field-card-text .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .news-and-events--landing .landing-social .flexItemText .herobannertitle a:visited, .news-and-events--landing .topicFeatured .view-content .views-row .landing-social .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .field--name-field-sfa-cards .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .locationMap.contact-location-map-container .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .locationMap .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .grants-and-training-card-wrapper .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .about-nhlbi-division-card-wrapper .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .hei-tools-icon-card-wrapper .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .field--name-field-grants-and-training-card .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .field--name-field-division-card .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .field--name-field-tool-icon-card .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .field--name-field-promotional-card .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .field--name-field-sv-promotional-cards .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .field--name-field-about-nhlbi-promotional-ca .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .strategic-vision-titleblock .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .ppg-titleblock-wrapper .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .ppg-guidelines-card-wrapper .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .field--name-field-human-subject-cards .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .field--name-field-section-card .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .field--name-field-highlight-card .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .health-topic-teaser-container .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .about-nhlbi-our-mission-wrapper .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText .herobannertitle a:visited, .about-nhlbi-our-mission-wrapper .topicFeatured .view-content .views-row .field--name-field-leadership > .director-bioCard .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemText .herobannertitle a:visited, .nhlbi-publications-and-resources--landing .topicFeatured .view-content .views-row .field--name-field-health-consumer-nhlbi-publ .flexItemText .herobannertitle a:visited,
.topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemText .herobannertitle a:visited,
.nhlbi-publications-and-resources--landing .topicFeatured .view-content .views-row .field--name-field-health-professionals-nhlbi .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemText .herobannertitle a:visited, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle a:visited,
.topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemText .herobannertitle a:visited,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .publicationsBlock.view-nhlbi-publications > .view-content .flexItemText .herobannertitle a:visited,
.topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .healthEducationBlock .standard-teaser .flexItemText .herobannertitle a:visited, .healthEducationBlock .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .systematicEvidenceReviewsBlock .view-content .flexItemText .herobannertitle a:visited, .systematicEvidenceReviewsBlock .topicFeatured .view-content .views-row .view-content .flexItemText .herobannertitle a:visited,
.topicFeatured .view-content .views-row .clinicalPracticeGuidelinesBlock .view-content .flexItemText .herobannertitle a:visited,
.clinicalPracticeGuidelinesBlock .topicFeatured .view-content .views-row .view-content .flexItemText .herobannertitle a:visited,
.topicFeatured .view-content .views-row .publicationsAndFactSheetsBlock .view-content .flexItemText .herobannertitle a:visited,
.publicationsAndFactSheetsBlock .topicFeatured .view-content .views-row .view-content .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .rtFlexContainer .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText .herobannertitle a:visited, .node--type-research-topic .topicFeatured .view-content .views-row .field--name-field-science-supplemental-page .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .node--type-research-topic .researchTopicPublications .flexItemText .herobannertitle a:visited, .node--type-research-topic .topicFeatured .view-content .views-row .researchTopicPublications .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemText .herobannertitle a:visited, .node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.listTeaserCard .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemText .herobannertitle a:visited, .node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.standard-teaser .flexItemText .herobannertitle a:visited,
.topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemText .herobannertitle a:visited,
.node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.newsEventsCard .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .esi-feature-card .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .featured-science-instance-teaser-container .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .sfa-teaser-container .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .training-opportunity-card .field--name-field-associated-people .flexItemText .herobannertitle a:visited, .training-opportunity-card .topicFeatured .view-content .views-row .field--name-field-associated-people .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .field--name-field-featured-training-opportun .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .field--name-field-career-stages .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .field--name-field-workforce-development-card .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .node--type-update.node--view-mode-executive-teaser .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .news-and-events-titleblock .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .contact-box > .field--name-field-contact-methods .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .leadership-container .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .herobannertitle a:visited, .leadership-container .leadership-deputy-director-container .topicFeatured .view-content .views-row .field--name-field-additional-leadership .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .branch-leadership-container .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .herobannertitle a:visited, .branch-leadership-container .leadership-deputy-director-container .topicFeatured .view-content .views-row .field--name-field-additional-leadership .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .node--type-general .field--name-field-related-publications .flexItemText .herobannertitle a:visited, .node--type-general .topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .node--type-general .field--name-field-general-publications-rlt .flexItemText .herobannertitle a:visited, .node--type-general .topicFeatured .view-content .views-row .field--name-field-general-publications-rlt .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemText .herobannertitle a:visited, .node--type-general .field--name-field-general-publications-rlt > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemText .herobannertitle a:visited, .node--type-general .field--name-field-related-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .objective-text-container .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .objective-list-container .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .field--name-field-goal-card .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .strategic-vision-landing-goals-wrapper .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .node--type-principal-investigator .striped-container-wrapper .flexItemText .herobannertitle a:visited, .node--type-principal-investigator .topicFeatured .view-content .views-row .striped-container-wrapper .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .node--type-principal-investigator .striped-container .flexItemText .herobannertitle a:visited, .node--type-principal-investigator .topicFeatured .view-content .views-row .striped-container .flexItemText .herobannertitle a:visited, .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .views-row article .flexItemText .herobannertitle a:visited, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .topicFeatured .view-content .views-row article .flexItemText .herobannertitle a:visited,
.topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .views-row article .flexItemText .herobannertitle a:visited,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .topicFeatured .view-content .views-row article .flexItemText .herobannertitle a:visited, .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .views-row .standard-teaser.node--view-mode-short-teaser .flexItemText .herobannertitle a:visited, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .topicFeatured .view-content .views-row .standard-teaser.node--view-mode-short-teaser .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .field--name-field-awards .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .registerSocialContainer .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .eventdatesLocationType .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .news-article-container .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText .herobannertitle a:visited,
.topicFeatured .view-content .views-row .node--type-press-release.node--view-mode-press-release-teaser .flexItemText .herobannertitle a:visited,
.topicFeatured .view-content .views-row .node--type-events.node--view-mode-press-release-teaser .flexItemText .herobannertitle a:visited,
.topicFeatured .view-content .views-row .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle a:visited,
.topicFeatured .view-content .views-row .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle a:visited,
.topicFeatured .view-content .views-row .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle a:visited,
.topicFeatured .view-content .views-row .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .news-header-container .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .contacts-container .field--name-field-contacts .flexItemText .herobannertitle a:visited, .contacts-container .topicFeatured .view-content .views-row .field--name-field-contacts .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .publicationsBox .field--name-field-related-publications .flexItemText .herobannertitle a:visited, .publicationsBox .topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .field--name-field-primary-featured-item .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .field--name-field-additional-featured-items .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .homepage-health-topics-container .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .homepage-mission-areas-container .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .homepage-location-container .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .field--name-field-alumni .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemText .herobannertitle a:visited, .node--type-nhlbi-publication.node--view-mode-full .topicFeatured .view-content .views-row .nhlbi-publication-details-container .flexItemText .herobannertitle a:visited,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemText .herobannertitle a:visited,
.node--type-nhlbi-publication.node--view-mode-subscribe .topicFeatured .view-content .views-row .nhlbi-publication-details-container .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle a:visited, .node--type-nhlbi-publication.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle a:visited,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle a:visited,
.node--type-nhlbi-publication.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText .herobannertitle a:visited, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle a:visited,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText .herobannertitle a:visited,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .flexcontainer .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .related-ht-ser-container .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .field--name-field-sfa-card .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .field--name-field-speaker .flexItemText .herobannertitle-grey a:visited,
.topicFeatured .view-content .views-row .field--name-field-executives .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .standard-card-field .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .field--name-field-advisory-committees .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .contact-nhlbi-titleblock .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .field--name-field-contact-cards .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .field--name-field-employment-opportunity-car .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .all-grants-foa-container .flexItemText .herobannertitle-grey a:visited,
.topicFeatured .view-content .views-row .field--name-field-program-officers .flexItemText .herobannertitle-grey a:visited,
.topicFeatured .view-content .views-row .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText .herobannertitle-grey a:visited,
.topicFeatured .view-content .views-row .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .node--type-individual-contact .field--name-field-contact-methods .flexItemText .herobannertitle-grey a:visited, .node--type-individual-contact .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle-grey a:visited,
.topicFeatured .view-content .views-row .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle-grey a:visited,
.node--type-division.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle-grey a:visited,
.topicFeatured .view-content .views-row .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle-grey a:visited,
.node--type-division.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle-grey a:visited,
.topicFeatured .view-content .views-row .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle-grey a:visited,
.node--type-branch.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle-grey a:visited,
.topicFeatured .view-content .views-row .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle-grey a:visited,
.node--type-branch.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle-grey a:visited,
.topicFeatured .view-content .views-row .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle-grey a:visited,
.node--type-general.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle-grey a:visited,
.topicFeatured .view-content .views-row .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle-grey a:visited,
.node--type-general.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle-grey a:visited,
.topicFeatured .view-content .views-row .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle-grey a:visited,
.node--type-health-education-initiative.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle-grey a:visited,
.topicFeatured .view-content .views-row .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle-grey a:visited,
.node--type-health-education-initiative.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .node--type-committee .field--name-field-card-text .flexItemText .herobannertitle-grey a:visited, .node--type-committee .topicFeatured .view-content .views-row .field--name-field-card-text .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .news-and-events--landing .landing-social .flexItemText .herobannertitle-grey a:visited, .news-and-events--landing .topicFeatured .view-content .views-row .landing-social .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .field--name-field-sfa-cards .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .locationMap.contact-location-map-container .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .locationMap .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .grants-and-training-card-wrapper .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .about-nhlbi-division-card-wrapper .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .hei-tools-icon-card-wrapper .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .field--name-field-grants-and-training-card .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .field--name-field-division-card .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .field--name-field-tool-icon-card .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .field--name-field-promotional-card .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .field--name-field-sv-promotional-cards .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .field--name-field-about-nhlbi-promotional-ca .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .strategic-vision-titleblock .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .ppg-titleblock-wrapper .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .ppg-guidelines-card-wrapper .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .field--name-field-human-subject-cards .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .field--name-field-section-card .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .field--name-field-highlight-card .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .health-topic-teaser-container .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .about-nhlbi-our-mission-wrapper .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText .herobannertitle-grey a:visited, .about-nhlbi-our-mission-wrapper .topicFeatured .view-content .views-row .field--name-field-leadership > .director-bioCard .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemText .herobannertitle-grey a:visited, .nhlbi-publications-and-resources--landing .topicFeatured .view-content .views-row .field--name-field-health-consumer-nhlbi-publ .flexItemText .herobannertitle-grey a:visited,
.topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemText .herobannertitle-grey a:visited,
.nhlbi-publications-and-resources--landing .topicFeatured .view-content .views-row .field--name-field-health-professionals-nhlbi .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemText .herobannertitle-grey a:visited, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle-grey a:visited,
.topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemText .herobannertitle-grey a:visited,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .publicationsBlock.view-nhlbi-publications > .view-content .flexItemText .herobannertitle-grey a:visited,
.topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .healthEducationBlock .standard-teaser .flexItemText .herobannertitle-grey a:visited, .healthEducationBlock .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .systematicEvidenceReviewsBlock .view-content .flexItemText .herobannertitle-grey a:visited, .systematicEvidenceReviewsBlock .topicFeatured .view-content .views-row .view-content .flexItemText .herobannertitle-grey a:visited,
.topicFeatured .view-content .views-row .clinicalPracticeGuidelinesBlock .view-content .flexItemText .herobannertitle-grey a:visited,
.clinicalPracticeGuidelinesBlock .topicFeatured .view-content .views-row .view-content .flexItemText .herobannertitle-grey a:visited,
.topicFeatured .view-content .views-row .publicationsAndFactSheetsBlock .view-content .flexItemText .herobannertitle-grey a:visited,
.publicationsAndFactSheetsBlock .topicFeatured .view-content .views-row .view-content .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .rtFlexContainer .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText .herobannertitle-grey a:visited, .node--type-research-topic .topicFeatured .view-content .views-row .field--name-field-science-supplemental-page .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .node--type-research-topic .researchTopicPublications .flexItemText .herobannertitle-grey a:visited, .node--type-research-topic .topicFeatured .view-content .views-row .researchTopicPublications .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemText .herobannertitle-grey a:visited, .node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.listTeaserCard .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemText .herobannertitle-grey a:visited, .node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.standard-teaser .flexItemText .herobannertitle-grey a:visited,
.topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemText .herobannertitle-grey a:visited,
.node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.newsEventsCard .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .esi-feature-card .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .featured-science-instance-teaser-container .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .sfa-teaser-container .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .training-opportunity-card .field--name-field-associated-people .flexItemText .herobannertitle-grey a:visited, .training-opportunity-card .topicFeatured .view-content .views-row .field--name-field-associated-people .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .field--name-field-featured-training-opportun .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .field--name-field-career-stages .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .field--name-field-workforce-development-card .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .node--type-update.node--view-mode-executive-teaser .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .news-and-events-titleblock .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .contact-box > .field--name-field-contact-methods .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .leadership-container .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .herobannertitle-grey a:visited, .leadership-container .leadership-deputy-director-container .topicFeatured .view-content .views-row .field--name-field-additional-leadership .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .branch-leadership-container .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .herobannertitle-grey a:visited, .branch-leadership-container .leadership-deputy-director-container .topicFeatured .view-content .views-row .field--name-field-additional-leadership .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .node--type-general .field--name-field-related-publications .flexItemText .herobannertitle-grey a:visited, .node--type-general .topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .node--type-general .field--name-field-general-publications-rlt .flexItemText .herobannertitle-grey a:visited, .node--type-general .topicFeatured .view-content .views-row .field--name-field-general-publications-rlt .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemText .herobannertitle-grey a:visited, .node--type-general .field--name-field-general-publications-rlt > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemText .herobannertitle-grey a:visited, .node--type-general .field--name-field-related-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .objective-text-container .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .objective-list-container .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .field--name-field-goal-card .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .strategic-vision-landing-goals-wrapper .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .node--type-principal-investigator .striped-container-wrapper .flexItemText .herobannertitle-grey a:visited, .node--type-principal-investigator .topicFeatured .view-content .views-row .striped-container-wrapper .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .node--type-principal-investigator .striped-container .flexItemText .herobannertitle-grey a:visited, .node--type-principal-investigator .topicFeatured .view-content .views-row .striped-container .flexItemText .herobannertitle-grey a:visited, .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .views-row article .flexItemText .herobannertitle-grey a:visited, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .topicFeatured .view-content .views-row article .flexItemText .herobannertitle-grey a:visited,
.topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .views-row article .flexItemText .herobannertitle-grey a:visited,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .topicFeatured .view-content .views-row article .flexItemText .herobannertitle-grey a:visited, .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .views-row .standard-teaser.node--view-mode-short-teaser .flexItemText .herobannertitle-grey a:visited, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .topicFeatured .view-content .views-row .standard-teaser.node--view-mode-short-teaser .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .field--name-field-awards .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .registerSocialContainer .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .eventdatesLocationType .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .news-article-container .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText .herobannertitle-grey a:visited,
.topicFeatured .view-content .views-row .node--type-press-release.node--view-mode-press-release-teaser .flexItemText .herobannertitle-grey a:visited,
.topicFeatured .view-content .views-row .node--type-events.node--view-mode-press-release-teaser .flexItemText .herobannertitle-grey a:visited,
.topicFeatured .view-content .views-row .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey a:visited,
.topicFeatured .view-content .views-row .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey a:visited,
.topicFeatured .view-content .views-row .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey a:visited,
.topicFeatured .view-content .views-row .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .news-header-container .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .contacts-container .field--name-field-contacts .flexItemText .herobannertitle-grey a:visited, .contacts-container .topicFeatured .view-content .views-row .field--name-field-contacts .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .publicationsBox .field--name-field-related-publications .flexItemText .herobannertitle-grey a:visited, .publicationsBox .topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .field--name-field-primary-featured-item .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .field--name-field-additional-featured-items .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .homepage-health-topics-container .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .homepage-mission-areas-container .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .homepage-location-container .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .field--name-field-alumni .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemText .herobannertitle-grey a:visited, .node--type-nhlbi-publication.node--view-mode-full .topicFeatured .view-content .views-row .nhlbi-publication-details-container .flexItemText .herobannertitle-grey a:visited,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemText .herobannertitle-grey a:visited,
.node--type-nhlbi-publication.node--view-mode-subscribe .topicFeatured .view-content .views-row .nhlbi-publication-details-container .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle-grey a:visited, .node--type-nhlbi-publication.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle-grey a:visited,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle-grey a:visited,
.node--type-nhlbi-publication.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText .herobannertitle-grey a:visited, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle-grey a:visited,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText .herobannertitle-grey a:visited,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText .herobannertitle-grey a:visited {
  color: #6f57B5;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 526, ../sass/components/_landing_pages.scss */
  .topicFeatured .view-content .views-row .flexcontainer .flexItemText, .topicFeatured .view-content .views-row .related-ht-ser-container .flexItemText, .topicFeatured .view-content .views-row .field--name-field-sfa-card .flexItemText, .topicFeatured .view-content .views-row .field--name-field-speaker .flexItemText,
  .topicFeatured .view-content .views-row .field--name-field-executives .flexItemText, .topicFeatured .view-content .views-row .standard-card-field .flexItemText, .topicFeatured .view-content .views-row .field--name-field-advisory-committees .flexItemText, .topicFeatured .view-content .views-row .contact-nhlbi-titleblock .flexItemText, .topicFeatured .view-content .views-row .field--name-field-contact-cards .flexItemText, .topicFeatured .view-content .views-row .field--name-field-employment-opportunity-car .flexItemText, .topicFeatured .view-content .views-row .all-grants-foa-container .flexItemText,
  .topicFeatured .view-content .views-row .field--name-field-program-officers .flexItemText,
  .topicFeatured .view-content .views-row .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText,
  .topicFeatured .view-content .views-row .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText, .topicFeatured .view-content .views-row .node--type-individual-contact .field--name-field-contact-methods .flexItemText, .node--type-individual-contact .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText,
  .topicFeatured .view-content .views-row .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemText,
  .node--type-division.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText,
  .topicFeatured .view-content .views-row .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText,
  .node--type-division.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText,
  .topicFeatured .view-content .views-row .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemText,
  .node--type-branch.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText,
  .topicFeatured .view-content .views-row .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText,
  .node--type-branch.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText,
  .topicFeatured .view-content .views-row .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemText,
  .node--type-general.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText,
  .topicFeatured .view-content .views-row .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText,
  .node--type-general.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText,
  .topicFeatured .view-content .views-row .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemText,
  .node--type-health-education-initiative.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText,
  .topicFeatured .view-content .views-row .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText,
  .node--type-health-education-initiative.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-contact-methods .flexItemText, .topicFeatured .view-content .views-row .node--type-committee .field--name-field-card-text .flexItemText, .node--type-committee .topicFeatured .view-content .views-row .field--name-field-card-text .flexItemText, .topicFeatured .view-content .views-row .news-and-events--landing .landing-social .flexItemText, .news-and-events--landing .topicFeatured .view-content .views-row .landing-social .flexItemText, .topicFeatured .view-content .views-row .field--name-field-sfa-cards .flexItemText, .topicFeatured .view-content .views-row .locationMap.contact-location-map-container .flexItemText, .topicFeatured .view-content .views-row .locationMap .flexItemText, .topicFeatured .view-content .views-row .grants-and-training-card-wrapper .flexItemText, .topicFeatured .view-content .views-row .about-nhlbi-division-card-wrapper .flexItemText, .topicFeatured .view-content .views-row .hei-tools-icon-card-wrapper .flexItemText, .topicFeatured .view-content .views-row .field--name-field-grants-and-training-card .flexItemText, .topicFeatured .view-content .views-row .field--name-field-division-card .flexItemText, .topicFeatured .view-content .views-row .field--name-field-tool-icon-card .flexItemText, .topicFeatured .view-content .views-row .field--name-field-promotional-card .flexItemText, .topicFeatured .view-content .views-row .field--name-field-sv-promotional-cards .flexItemText, .topicFeatured .view-content .views-row .field--name-field-about-nhlbi-promotional-ca .flexItemText, .topicFeatured .view-content .views-row .strategic-vision-titleblock .flexItemText, .topicFeatured .view-content .views-row .ppg-titleblock-wrapper .flexItemText, .topicFeatured .view-content .views-row .ppg-guidelines-card-wrapper .flexItemText, .topicFeatured .view-content .views-row .field--name-field-human-subject-cards .flexItemText, .topicFeatured .view-content .views-row .field--name-field-section-card .flexItemText, .topicFeatured .view-content .views-row .field--name-field-highlight-card .flexItemText, .topicFeatured .view-content .views-row .health-topic-teaser-container .flexItemText, .topicFeatured .view-content .views-row .about-nhlbi-our-mission-wrapper .flexItemText, .topicFeatured .view-content .views-row .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText, .about-nhlbi-our-mission-wrapper .topicFeatured .view-content .views-row .field--name-field-leadership > .director-bioCard .flexItemText, .topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemText, .nhlbi-publications-and-resources--landing .topicFeatured .view-content .views-row .field--name-field-health-consumer-nhlbi-publ .flexItemText,
  .topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemText,
  .nhlbi-publications-and-resources--landing .topicFeatured .view-content .views-row .field--name-field-health-professionals-nhlbi .flexItemText, .topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemText, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText,
  .topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemText,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText, .topicFeatured .view-content .views-row .publicationsBlock.view-nhlbi-publications > .view-content .flexItemText,
  .topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemText, .topicFeatured .view-content .views-row .healthEducationBlock .standard-teaser .flexItemText, .healthEducationBlock .topicFeatured .view-content .views-row .standard-teaser .flexItemText, .topicFeatured .view-content .views-row .systematicEvidenceReviewsBlock .view-content .flexItemText, .systematicEvidenceReviewsBlock .topicFeatured .view-content .views-row .view-content .flexItemText,
  .topicFeatured .view-content .views-row .clinicalPracticeGuidelinesBlock .view-content .flexItemText,
  .clinicalPracticeGuidelinesBlock .topicFeatured .view-content .views-row .view-content .flexItemText,
  .topicFeatured .view-content .views-row .publicationsAndFactSheetsBlock .view-content .flexItemText,
  .publicationsAndFactSheetsBlock .topicFeatured .view-content .views-row .view-content .flexItemText, .topicFeatured .view-content .views-row .rtFlexContainer .flexItemText, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText, .node--type-research-topic .topicFeatured .view-content .views-row .field--name-field-science-supplemental-page .flexItemText, .topicFeatured .view-content .views-row .node--type-research-topic .researchTopicPublications .flexItemText, .node--type-research-topic .topicFeatured .view-content .views-row .researchTopicPublications .flexItemText, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemText, .node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.listTeaserCard .flexItemText, .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemText, .node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.standard-teaser .flexItemText,
  .topicFeatured .view-content .views-row .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemText,
  .node--type-research-topic .field--name-field-content > .field__item .topicFeatured .view-content .views-row article.newsEventsCard .flexItemText, .topicFeatured .view-content .views-row .esi-feature-card .flexItemText, .topicFeatured .view-content .views-row .featured-science-instance-teaser-container .flexItemText, .topicFeatured .view-content .views-row .sfa-teaser-container .flexItemText, .topicFeatured .view-content .views-row .training-opportunity-card .field--name-field-associated-people .flexItemText, .training-opportunity-card .topicFeatured .view-content .views-row .field--name-field-associated-people .flexItemText, .topicFeatured .view-content .views-row .field--name-field-featured-training-opportun .flexItemText, .topicFeatured .view-content .views-row .field--name-field-career-stages .flexItemText, .topicFeatured .view-content .views-row .field--name-field-workforce-development-card .flexItemText, .topicFeatured .view-content .views-row .node--type-update.node--view-mode-executive-teaser .flexItemText, .topicFeatured .view-content .views-row .news-and-events-titleblock .flexItemText, .topicFeatured .view-content .views-row .contact-box > .field--name-field-contact-methods .flexItemText, .topicFeatured .view-content .views-row .leadership-container .flexItemText, .topicFeatured .view-content .views-row .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText, .leadership-container .leadership-deputy-director-container .topicFeatured .view-content .views-row .field--name-field-additional-leadership .flexItemText, .topicFeatured .view-content .views-row .branch-leadership-container .flexItemText, .topicFeatured .view-content .views-row .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText, .branch-leadership-container .leadership-deputy-director-container .topicFeatured .view-content .views-row .field--name-field-additional-leadership .flexItemText, .topicFeatured .view-content .views-row .node--type-general .field--name-field-related-publications .flexItemText, .node--type-general .topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemText, .topicFeatured .view-content .views-row .node--type-general .field--name-field-general-publications-rlt .flexItemText, .node--type-general .topicFeatured .view-content .views-row .field--name-field-general-publications-rlt .flexItemText, .topicFeatured .view-content .views-row .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemText, .node--type-general .field--name-field-general-publications-rlt > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText, .topicFeatured .view-content .views-row .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemText, .node--type-general .field--name-field-related-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText, .topicFeatured .view-content .views-row .objective-text-container .flexItemText, .topicFeatured .view-content .views-row .objective-list-container .flexItemText, .topicFeatured .view-content .views-row .field--name-field-goal-card .flexItemText, .topicFeatured .view-content .views-row .strategic-vision-landing-goals-wrapper .flexItemText, .topicFeatured .view-content .views-row .node--type-principal-investigator .striped-container-wrapper .flexItemText, .node--type-principal-investigator .topicFeatured .view-content .views-row .striped-container-wrapper .flexItemText, .topicFeatured .view-content .views-row .node--type-principal-investigator .striped-container .flexItemText, .node--type-principal-investigator .topicFeatured .view-content .views-row .striped-container .flexItemText, .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .views-row article .flexItemText, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .topicFeatured .view-content .views-row article .flexItemText,
  .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .views-row article .flexItemText,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .topicFeatured .view-content .views-row article .flexItemText, .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .views-row .standard-teaser.node--view-mode-short-teaser .flexItemText, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .topicFeatured .view-content .views-row .standard-teaser.node--view-mode-short-teaser .flexItemText, .topicFeatured .view-content .views-row .field--name-field-awards .flexItemText, .topicFeatured .view-content .views-row .registerSocialContainer .flexItemText, .topicFeatured .view-content .views-row .eventdatesLocationType .flexItemText, .topicFeatured .view-content .views-row .news-article-container .flexItemText, .topicFeatured .view-content .views-row .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText,
  .topicFeatured .view-content .views-row .node--type-press-release.node--view-mode-press-release-teaser .flexItemText,
  .topicFeatured .view-content .views-row .node--type-events.node--view-mode-press-release-teaser .flexItemText,
  .topicFeatured .view-content .views-row .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText,
  .topicFeatured .view-content .views-row .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText,
  .topicFeatured .view-content .views-row .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText,
  .topicFeatured .view-content .views-row .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText, .topicFeatured .view-content .views-row .news-header-container .flexItemText, .topicFeatured .view-content .views-row .contacts-container .field--name-field-contacts .flexItemText, .contacts-container .topicFeatured .view-content .views-row .field--name-field-contacts .flexItemText, .topicFeatured .view-content .views-row .publicationsBox .field--name-field-related-publications .flexItemText, .publicationsBox .topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemText, .topicFeatured .view-content .views-row .field--name-field-primary-featured-item .flexItemText, .topicFeatured .view-content .views-row .field--name-field-additional-featured-items .flexItemText, .topicFeatured .view-content .views-row .homepage-health-topics-container .flexItemText, .topicFeatured .view-content .views-row .homepage-mission-areas-container .flexItemText, .topicFeatured .view-content .views-row .homepage-location-container .flexItemText, .topicFeatured .view-content .views-row .field--name-field-alumni .flexItemText, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemText, .node--type-nhlbi-publication.node--view-mode-full .topicFeatured .view-content .views-row .nhlbi-publication-details-container .flexItemText,
  .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemText,
  .node--type-nhlbi-publication.node--view-mode-subscribe .topicFeatured .view-content .views-row .nhlbi-publication-details-container .flexItemText, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemText, .node--type-nhlbi-publication.node--view-mode-full .topicFeatured .view-content .views-row .field--name-field-related-nhlbi-publications .flexItemText,
  .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemText,
  .node--type-nhlbi-publication.node--view-mode-subscribe .topicFeatured .view-content .views-row .field--name-field-related-nhlbi-publications .flexItemText, .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText,
  .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row .standard-teaser .flexItemText {
    padding-top: 1em;
  }
}

/* line 561, ../sass/components/_landing_pages.scss */
.topicLanding > .view-content > .views-infinite-scroll-content-wrapper {
  /*
  @include contentMasonryContainer;
  @include contentContainer;
  padding-bottom: 1em;
  .views-row {
    @include contentRowMasonryItem(30%,auto);
    @include contentRowMasonryItem(auto,auto);
    display: inline-block;
    padding:0;
    @include bp-desktop {
    }
    @include bp-tablet {
    }
    @include bp-phone {
      width:auto;
    }
  }
  */
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -o-justify-content: flex-start;
  justify-content: flex-start;
  background-color: transparent;
  color: #222;
  padding-bottom: 1em;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 561, ../sass/components/_landing_pages.scss */
  .topicLanding > .view-content > .views-infinite-scroll-content-wrapper {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    -ms-align-items: stretch;
    -o-align-items: stretch;
    align-items: stretch;
  }
}
/* line 586, ../sass/components/_landing_pages.scss */
.topicLanding > .view-content > .views-infinite-scroll-content-wrapper .views-row {
  break-inside: avoid;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin: 0 0.4em 0.6em 0.2em;
  padding: 0;
  padding-left: 0;
}
@media all and (min-width: 1100px) {
  /* line 586, ../sass/components/_landing_pages.scss */
  .topicLanding > .view-content > .views-infinite-scroll-content-wrapper .views-row {
    width: 32%;
    flex-basis: 32%;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 586, ../sass/components/_landing_pages.scss */
  .topicLanding > .view-content > .views-infinite-scroll-content-wrapper .views-row {
    width: 48%;
    flex-basis: 48%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 586, ../sass/components/_landing_pages.scss */
  .topicLanding > .view-content > .views-infinite-scroll-content-wrapper .views-row {
    width: auto;
    flex-basis: auto;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 586, ../sass/components/_landing_pages.scss */
  .topicLanding > .view-content > .views-infinite-scroll-content-wrapper .views-row {
    margin-right: 0;
  }
}
@media all and (min-width: 1100px) {
  /* line 593, ../sass/components/_landing_pages.scss */
  .topicLanding > .view-content > .views-infinite-scroll-content-wrapper .views-row:nth-child(3n) {
    margin-right: 0;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 598, ../sass/components/_landing_pages.scss */
  .topicLanding > .view-content > .views-infinite-scroll-content-wrapper .views-row:nth-child(2n) {
    margin-right: 0;
  }
}

/* line 604, ../sass/components/_landing_pages.scss */
.newsEventsLanding > .view-content > .views-infinite-scroll-content-wrapper {
 /*
 @include contentMasonryContainer($white, $black, 1, 1, 0);
 @include bp-tablet {
   @include property-prefix(column-count, 1);
 }
 .views-row {
   @include contentRowMasonryItem(auto,auto);
   @include bp-phone-and-tablet {
     width:auto;
   }
 }
*/
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  -o-align-items: stretch;
  align-items: stretch;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -o-justify-content: flex-start;
  justify-content: flex-start;
  background-color: #fff;
  color: #222;
  width: 100%;
}
/* line 619, ../sass/components/_landing_pages.scss */
.newsEventsLanding > .view-content > .views-infinite-scroll-content-wrapper .views-row {
  break-inside: avoid;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-shrink: 0;
  -o-flex-shrink: 0;
  flex-shrink: 0;
  margin-bottom: 0.6em;
  padding: 0;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 619, ../sass/components/_landing_pages.scss */
  .newsEventsLanding > .view-content > .views-infinite-scroll-content-wrapper .views-row {
    width: auto;
    flex-basis: auto;
  }
}

/* line 624, ../sass/components/_landing_pages.scss */
.newsEventsLanding > .view-filters {
  border-top: none;
}
/* line 625, ../sass/components/_landing_pages.scss */
.newsEventsLanding > .view-filters form {
  overflow: visible;
  padding: 0.5em 0;
}
/* line 631, ../sass/components/_landing_pages.scss */
.newsEventsLanding > .view-filters #view-filter-accordion .ui-accordion-header-icon.view-filter-ui-icon-up-dark {
  position: relative;
  background-repeat: no-repeat;
  display: inline-block;
  float: right;
  margin-right: 1.2em;
  background-size: 20px 20px;
  width: 20px;
  height: 20px;
  margin-top: 10px;
  background-image: url("minus-sign-dark.png");
  margin-top: 0.1em;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 631, ../sass/components/_landing_pages.scss */
  .newsEventsLanding > .view-filters #view-filter-accordion .ui-accordion-header-icon.view-filter-ui-icon-up-dark {
    background-size: 20px 20px;
    width: 20px;
    height: 20px;
    margin-top: 10px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 631, ../sass/components/_landing_pages.scss */
  .newsEventsLanding > .view-filters #view-filter-accordion .ui-accordion-header-icon.view-filter-ui-icon-up-dark {
    background-size: 20px 20px;
    width: 20px;
    height: 20px;
    margin-top: 10px;
  }
}
/* line 636, ../sass/components/_landing_pages.scss */
.newsEventsLanding > .view-filters #view-filter-accordion .ui-accordion-header-icon.view-filter-ui-icon-down-dark {
  position: relative;
  background-repeat: no-repeat;
  display: inline-block;
  float: right;
  margin-right: 1.2em;
  background-size: 20px 20px;
  width: 20px;
  height: 20px;
  margin-top: 10px;
  background-image: url("plus-sign-dark.png");
  margin-top: 0.1em;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 636, ../sass/components/_landing_pages.scss */
  .newsEventsLanding > .view-filters #view-filter-accordion .ui-accordion-header-icon.view-filter-ui-icon-down-dark {
    background-size: 20px 20px;
    width: 20px;
    height: 20px;
    margin-top: 10px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 636, ../sass/components/_landing_pages.scss */
  .newsEventsLanding > .view-filters #view-filter-accordion .ui-accordion-header-icon.view-filter-ui-icon-down-dark {
    background-size: 20px 20px;
    width: 20px;
    height: 20px;
    margin-top: 10px;
  }
}
/* line 642, ../sass/components/_landing_pages.scss */
.newsEventsLanding > .view-filters #view-filter-accordion .ui-accordion-content {
  padding: 0.8em 0.6em;
}
/* line 647, ../sass/components/_landing_pages.scss */
.newsEventsLanding > .view-filters #view-filter-accordion .ui-multiselect .ui-icon {
  margin-top: 0.27em;
}
/* line 651, ../sass/components/_landing_pages.scss */
.newsEventsLanding > .view-filters .ui-accordion h3.ui-accordion-header, .newsEventsLanding > .view-filters .ui-accordion .ui-accordion-header.field--name-field-social-phrase-group-title, .newsEventsLanding > .view-filters .ui-accordion .ui-accordion-header.field--name-field-image-gallery-title {
  text-align: center;
  border-color: #d7d7d7;
}
/* line 655, ../sass/components/_landing_pages.scss */
.newsEventsLanding > .view-filters .ui-accordion h3.ui-accordion-header.ui-state-default, .newsEventsLanding > .view-filters .ui-accordion .ui-accordion-header.ui-state-default.field--name-field-social-phrase-group-title, .newsEventsLanding > .view-filters .ui-accordion .ui-accordion-header.ui-state-default.field--name-field-image-gallery-title,
.newsEventsLanding > .view-filters .ui-accordion h3.ui-accordion-header.ui-state-active,
.newsEventsLanding > .view-filters .ui-accordion .ui-accordion-header.ui-state-active.field--name-field-social-phrase-group-title,
.newsEventsLanding > .view-filters .ui-accordion .ui-accordion-header.ui-state-active.field--name-field-image-gallery-title {
  background: #f2f2f2;
}
/* line 660, ../sass/components/_landing_pages.scss */
.newsEventsLanding > .view-filters .ui-accordion h3.ui-accordion-header.ui-state-hover, .newsEventsLanding > .view-filters .ui-accordion .ui-accordion-header.ui-state-hover.field--name-field-social-phrase-group-title, .newsEventsLanding > .view-filters .ui-accordion .ui-accordion-header.ui-state-hover.field--name-field-image-gallery-title,
.newsEventsLanding > .view-filters .ui-accordion h3.ui-accordion-header.ui-state-active.ui-state-hover,
.newsEventsLanding > .view-filters .ui-accordion .ui-accordion-header.ui-state-active.ui-state-hover.field--name-field-social-phrase-group-title,
.newsEventsLanding > .view-filters .ui-accordion .ui-accordion-header.ui-state-active.ui-state-hover.field--name-field-image-gallery-title {
  background: #d7d7d7;
}
/* line 666, ../sass/components/_landing_pages.scss */
.newsEventsLanding > .view-filters .ui-widget input,
.newsEventsLanding > .view-filters .ui-widget select,
.newsEventsLanding > .view-filters .ui-widget textarea,
.newsEventsLanding > .view-filters .ui-widget button {
  font-family: "Open Sans", Verdana, Arial, sans-serif;
}
/* line 672, ../sass/components/_landing_pages.scss */
.newsEventsLanding > .view-filters .ui-widget.ui-state-default,
.newsEventsLanding > .view-filters .ui-widget.ui-state-active {
  background: #f2f2f2;
}
/* line 677, ../sass/components/_landing_pages.scss */
.newsEventsLanding > .view-filters .ui-widget.ui-state-hover {
  background: #d7d7d7;
}
/* line 681, ../sass/components/_landing_pages.scss */
.newsEventsLanding > .view-filters #edit-actions input {
  font-size: .8em;
}

@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 177, ../sass/_mixins.scss */
  .newsEventsLanding .pager__items {
    padding: 0;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 177, ../sass/_mixins.scss */
  .newsEventsLanding .pager__items {
    padding-left: 0;
    padding-right: 15px;
  }
}
/* line 188, ../sass/_mixins.scss */
.newsEventsLanding .pager__items .pager__item, .newsEventsLanding .pager__items .blueRoundButton, .newsEventsLanding .pager__items .redRoundButton, .newsEventsLanding .pager__items .standard-more-link, .newsEventsLanding .pager__items .news-and-events--landing .more-link, .news-and-events--landing .newsEventsLanding .pager__items .more-link, .newsEventsLanding .pager__items .view-more-link, .newsEventsLanding .pager .pager__item, .newsEventsLanding .standard-more-link .pager__item, .newsEventsLanding .news-and-events--landing .more-link .pager__item, .news-and-events--landing .newsEventsLanding .more-link .pager__item, .newsEventsLanding .view-more-link .pager__item, .newsEventsLanding .pager .blueRoundButton, .newsEventsLanding .standard-more-link .blueRoundButton, .newsEventsLanding .news-and-events--landing .more-link .blueRoundButton, .news-and-events--landing .newsEventsLanding .more-link .blueRoundButton, .newsEventsLanding .view-more-link .blueRoundButton, .newsEventsLanding .pager .redRoundButton, .newsEventsLanding .standard-more-link .redRoundButton, .newsEventsLanding .news-and-events--landing .more-link .redRoundButton, .news-and-events--landing .newsEventsLanding .more-link .redRoundButton, .newsEventsLanding .view-more-link .redRoundButton, .newsEventsLanding .pager .standard-more-link, .newsEventsLanding .standard-more-link .standard-more-link, .newsEventsLanding .news-and-events--landing .more-link .standard-more-link, .news-and-events--landing .newsEventsLanding .more-link .standard-more-link, .newsEventsLanding .view-more-link .standard-more-link, .newsEventsLanding .pager .news-and-events--landing .more-link, .news-and-events--landing .newsEventsLanding .pager .more-link, .newsEventsLanding .standard-more-link .news-and-events--landing .more-link, .news-and-events--landing .newsEventsLanding .standard-more-link .more-link, .newsEventsLanding .news-and-events--landing .more-link .more-link, .news-and-events--landing .newsEventsLanding .more-link .more-link, .newsEventsLanding .view-more-link .news-and-events--landing .more-link, .news-and-events--landing .newsEventsLanding .view-more-link .more-link, .newsEventsLanding .pager .view-more-link, .newsEventsLanding .standard-more-link .view-more-link, .newsEventsLanding .news-and-events--landing .more-link .view-more-link, .news-and-events--landing .newsEventsLanding .more-link .view-more-link, .newsEventsLanding .view-more-link .view-more-link {
  display: inline-block;
  border: 1px solid #d7d7d7;
  background-color: #fff;
  padding: 0;
  margin: 0 -.13em;
  text-align: center;
  width: auto;
  height: auto;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 188, ../sass/_mixins.scss */
  .newsEventsLanding .pager__items .pager__item, .newsEventsLanding .pager__items .blueRoundButton, .newsEventsLanding .pager__items .redRoundButton, .newsEventsLanding .pager__items .standard-more-link, .newsEventsLanding .pager__items .news-and-events--landing .more-link, .news-and-events--landing .newsEventsLanding .pager__items .more-link, .newsEventsLanding .pager__items .view-more-link, .newsEventsLanding .pager .pager__item, .newsEventsLanding .standard-more-link .pager__item, .newsEventsLanding .news-and-events--landing .more-link .pager__item, .news-and-events--landing .newsEventsLanding .more-link .pager__item, .newsEventsLanding .view-more-link .pager__item, .newsEventsLanding .pager .blueRoundButton, .newsEventsLanding .standard-more-link .blueRoundButton, .newsEventsLanding .news-and-events--landing .more-link .blueRoundButton, .news-and-events--landing .newsEventsLanding .more-link .blueRoundButton, .newsEventsLanding .view-more-link .blueRoundButton, .newsEventsLanding .pager .redRoundButton, .newsEventsLanding .standard-more-link .redRoundButton, .newsEventsLanding .news-and-events--landing .more-link .redRoundButton, .news-and-events--landing .newsEventsLanding .more-link .redRoundButton, .newsEventsLanding .view-more-link .redRoundButton, .newsEventsLanding .pager .standard-more-link, .newsEventsLanding .standard-more-link .standard-more-link, .newsEventsLanding .news-and-events--landing .more-link .standard-more-link, .news-and-events--landing .newsEventsLanding .more-link .standard-more-link, .newsEventsLanding .view-more-link .standard-more-link, .newsEventsLanding .pager .news-and-events--landing .more-link, .news-and-events--landing .newsEventsLanding .pager .more-link, .newsEventsLanding .standard-more-link .news-and-events--landing .more-link, .news-and-events--landing .newsEventsLanding .standard-more-link .more-link, .newsEventsLanding .news-and-events--landing .more-link .more-link, .news-and-events--landing .newsEventsLanding .more-link .more-link, .newsEventsLanding .view-more-link .news-and-events--landing .more-link, .news-and-events--landing .newsEventsLanding .view-more-link .more-link, .newsEventsLanding .pager .view-more-link, .newsEventsLanding .standard-more-link .view-more-link, .newsEventsLanding .news-and-events--landing .more-link .view-more-link, .news-and-events--landing .newsEventsLanding .more-link .view-more-link, .newsEventsLanding .view-more-link .view-more-link {
    width: 45px;
    height: 45px;
    display: none;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 188, ../sass/_mixins.scss */
  .newsEventsLanding .pager__items .pager__item, .newsEventsLanding .pager__items .blueRoundButton, .newsEventsLanding .pager__items .redRoundButton, .newsEventsLanding .pager__items .standard-more-link, .newsEventsLanding .pager__items .news-and-events--landing .more-link, .news-and-events--landing .newsEventsLanding .pager__items .more-link, .newsEventsLanding .pager__items .view-more-link, .newsEventsLanding .pager .pager__item, .newsEventsLanding .standard-more-link .pager__item, .newsEventsLanding .news-and-events--landing .more-link .pager__item, .news-and-events--landing .newsEventsLanding .more-link .pager__item, .newsEventsLanding .view-more-link .pager__item, .newsEventsLanding .pager .blueRoundButton, .newsEventsLanding .standard-more-link .blueRoundButton, .newsEventsLanding .news-and-events--landing .more-link .blueRoundButton, .news-and-events--landing .newsEventsLanding .more-link .blueRoundButton, .newsEventsLanding .view-more-link .blueRoundButton, .newsEventsLanding .pager .redRoundButton, .newsEventsLanding .standard-more-link .redRoundButton, .newsEventsLanding .news-and-events--landing .more-link .redRoundButton, .news-and-events--landing .newsEventsLanding .more-link .redRoundButton, .newsEventsLanding .view-more-link .redRoundButton, .newsEventsLanding .pager .standard-more-link, .newsEventsLanding .standard-more-link .standard-more-link, .newsEventsLanding .news-and-events--landing .more-link .standard-more-link, .news-and-events--landing .newsEventsLanding .more-link .standard-more-link, .newsEventsLanding .view-more-link .standard-more-link, .newsEventsLanding .pager .news-and-events--landing .more-link, .news-and-events--landing .newsEventsLanding .pager .more-link, .newsEventsLanding .standard-more-link .news-and-events--landing .more-link, .news-and-events--landing .newsEventsLanding .standard-more-link .more-link, .newsEventsLanding .news-and-events--landing .more-link .more-link, .news-and-events--landing .newsEventsLanding .more-link .more-link, .newsEventsLanding .view-more-link .news-and-events--landing .more-link, .news-and-events--landing .newsEventsLanding .view-more-link .more-link, .newsEventsLanding .pager .view-more-link, .newsEventsLanding .standard-more-link .view-more-link, .newsEventsLanding .news-and-events--landing .more-link .view-more-link, .news-and-events--landing .newsEventsLanding .more-link .view-more-link, .newsEventsLanding .view-more-link .view-more-link {
    display: none;
  }
}
/* line 207, ../sass/_mixins.scss */
.newsEventsLanding .pager__items .pager__item a, .newsEventsLanding .pager__items .blueRoundButton a, .newsEventsLanding .pager__items .redRoundButton a, .newsEventsLanding .pager__items .standard-more-link a, .newsEventsLanding .pager__items .news-and-events--landing .more-link a, .news-and-events--landing .newsEventsLanding .pager__items .more-link a, .newsEventsLanding .pager__items .view-more-link a, .newsEventsLanding .pager .pager__item a, .newsEventsLanding .standard-more-link .pager__item a, .newsEventsLanding .news-and-events--landing .more-link .pager__item a, .news-and-events--landing .newsEventsLanding .more-link .pager__item a, .newsEventsLanding .view-more-link .pager__item a, .newsEventsLanding .pager .blueRoundButton a, .newsEventsLanding .standard-more-link .blueRoundButton a, .newsEventsLanding .news-and-events--landing .more-link .blueRoundButton a, .news-and-events--landing .newsEventsLanding .more-link .blueRoundButton a, .newsEventsLanding .view-more-link .blueRoundButton a, .newsEventsLanding .pager .redRoundButton a, .newsEventsLanding .standard-more-link .redRoundButton a, .newsEventsLanding .news-and-events--landing .more-link .redRoundButton a, .news-and-events--landing .newsEventsLanding .more-link .redRoundButton a, .newsEventsLanding .view-more-link .redRoundButton a, .newsEventsLanding .pager .standard-more-link a, .newsEventsLanding .standard-more-link .standard-more-link a, .newsEventsLanding .news-and-events--landing .more-link .standard-more-link a, .news-and-events--landing .newsEventsLanding .more-link .standard-more-link a, .newsEventsLanding .view-more-link .standard-more-link a, .newsEventsLanding .pager .news-and-events--landing .more-link a, .news-and-events--landing .newsEventsLanding .pager .more-link a, .newsEventsLanding .standard-more-link .news-and-events--landing .more-link a, .news-and-events--landing .newsEventsLanding .standard-more-link .more-link a, .newsEventsLanding .news-and-events--landing .more-link .more-link a, .news-and-events--landing .newsEventsLanding .more-link .more-link a, .newsEventsLanding .view-more-link .news-and-events--landing .more-link a, .news-and-events--landing .newsEventsLanding .view-more-link .more-link a, .newsEventsLanding .pager .view-more-link a, .newsEventsLanding .standard-more-link .view-more-link a, .newsEventsLanding .news-and-events--landing .more-link .view-more-link a, .news-and-events--landing .newsEventsLanding .more-link .view-more-link a, .newsEventsLanding .view-more-link .view-more-link a {
  display: block;
  padding: 1em 1.5em;
  color: #222;
  text-decoration: none;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 207, ../sass/_mixins.scss */
  .newsEventsLanding .pager__items .pager__item a, .newsEventsLanding .pager__items .blueRoundButton a, .newsEventsLanding .pager__items .redRoundButton a, .newsEventsLanding .pager__items .standard-more-link a, .newsEventsLanding .pager__items .news-and-events--landing .more-link a, .news-and-events--landing .newsEventsLanding .pager__items .more-link a, .newsEventsLanding .pager__items .view-more-link a, .newsEventsLanding .pager .pager__item a, .newsEventsLanding .standard-more-link .pager__item a, .newsEventsLanding .news-and-events--landing .more-link .pager__item a, .news-and-events--landing .newsEventsLanding .more-link .pager__item a, .newsEventsLanding .view-more-link .pager__item a, .newsEventsLanding .pager .blueRoundButton a, .newsEventsLanding .standard-more-link .blueRoundButton a, .newsEventsLanding .news-and-events--landing .more-link .blueRoundButton a, .news-and-events--landing .newsEventsLanding .more-link .blueRoundButton a, .newsEventsLanding .view-more-link .blueRoundButton a, .newsEventsLanding .pager .redRoundButton a, .newsEventsLanding .standard-more-link .redRoundButton a, .newsEventsLanding .news-and-events--landing .more-link .redRoundButton a, .news-and-events--landing .newsEventsLanding .more-link .redRoundButton a, .newsEventsLanding .view-more-link .redRoundButton a, .newsEventsLanding .pager .standard-more-link a, .newsEventsLanding .standard-more-link .standard-more-link a, .newsEventsLanding .news-and-events--landing .more-link .standard-more-link a, .news-and-events--landing .newsEventsLanding .more-link .standard-more-link a, .newsEventsLanding .view-more-link .standard-more-link a, .newsEventsLanding .pager .news-and-events--landing .more-link a, .news-and-events--landing .newsEventsLanding .pager .more-link a, .newsEventsLanding .standard-more-link .news-and-events--landing .more-link a, .news-and-events--landing .newsEventsLanding .standard-more-link .more-link a, .newsEventsLanding .news-and-events--landing .more-link .more-link a, .news-and-events--landing .newsEventsLanding .more-link .more-link a, .newsEventsLanding .view-more-link .news-and-events--landing .more-link a, .news-and-events--landing .newsEventsLanding .view-more-link .more-link a, .newsEventsLanding .pager .view-more-link a, .newsEventsLanding .standard-more-link .view-more-link a, .newsEventsLanding .news-and-events--landing .more-link .view-more-link a, .news-and-events--landing .newsEventsLanding .more-link .view-more-link a, .newsEventsLanding .view-more-link .view-more-link a {
    padding: 0.6em 0.5em;
  }
}
/* line 217, ../sass/_mixins.scss */
.newsEventsLanding .pager__items .pager__item a:focus, .newsEventsLanding .pager__items .blueRoundButton a:focus, .newsEventsLanding .pager__items .redRoundButton a:focus, .newsEventsLanding .pager__items .standard-more-link a:focus, .newsEventsLanding .pager__items .news-and-events--landing .more-link a:focus, .news-and-events--landing .newsEventsLanding .pager__items .more-link a:focus, .newsEventsLanding .pager__items .view-more-link a:focus, .newsEventsLanding .pager__items .pager__item a:active, .newsEventsLanding .pager__items .blueRoundButton a:active, .newsEventsLanding .pager__items .redRoundButton a:active, .newsEventsLanding .pager__items .standard-more-link a:active, .newsEventsLanding .pager__items .news-and-events--landing .more-link a:active, .news-and-events--landing .newsEventsLanding .pager__items .more-link a:active, .newsEventsLanding .pager__items .view-more-link a:active, .newsEventsLanding .pager .pager__item a:focus, .newsEventsLanding .standard-more-link .pager__item a:focus, .newsEventsLanding .news-and-events--landing .more-link .pager__item a:focus, .news-and-events--landing .newsEventsLanding .more-link .pager__item a:focus, .newsEventsLanding .view-more-link .pager__item a:focus, .newsEventsLanding .pager .blueRoundButton a:focus, .newsEventsLanding .standard-more-link .blueRoundButton a:focus, .newsEventsLanding .news-and-events--landing .more-link .blueRoundButton a:focus, .news-and-events--landing .newsEventsLanding .more-link .blueRoundButton a:focus, .newsEventsLanding .view-more-link .blueRoundButton a:focus, .newsEventsLanding .pager .redRoundButton a:focus, .newsEventsLanding .standard-more-link .redRoundButton a:focus, .newsEventsLanding .news-and-events--landing .more-link .redRoundButton a:focus, .news-and-events--landing .newsEventsLanding .more-link .redRoundButton a:focus, .newsEventsLanding .view-more-link .redRoundButton a:focus, .newsEventsLanding .pager .standard-more-link a:focus, .newsEventsLanding .standard-more-link .standard-more-link a:focus, .newsEventsLanding .news-and-events--landing .more-link .standard-more-link a:focus, .news-and-events--landing .newsEventsLanding .more-link .standard-more-link a:focus, .newsEventsLanding .view-more-link .standard-more-link a:focus, .newsEventsLanding .pager .news-and-events--landing .more-link a:focus, .news-and-events--landing .newsEventsLanding .pager .more-link a:focus, .newsEventsLanding .standard-more-link .news-and-events--landing .more-link a:focus, .news-and-events--landing .newsEventsLanding .standard-more-link .more-link a:focus, .newsEventsLanding .news-and-events--landing .more-link .more-link a:focus, .news-and-events--landing .newsEventsLanding .more-link .more-link a:focus, .newsEventsLanding .view-more-link .news-and-events--landing .more-link a:focus, .news-and-events--landing .newsEventsLanding .view-more-link .more-link a:focus, .newsEventsLanding .pager .view-more-link a:focus, .newsEventsLanding .standard-more-link .view-more-link a:focus, .newsEventsLanding .news-and-events--landing .more-link .view-more-link a:focus, .news-and-events--landing .newsEventsLanding .more-link .view-more-link a:focus, .newsEventsLanding .view-more-link .view-more-link a:focus, .newsEventsLanding .pager .pager__item a:active, .newsEventsLanding .standard-more-link .pager__item a:active, .newsEventsLanding .news-and-events--landing .more-link .pager__item a:active, .news-and-events--landing .newsEventsLanding .more-link .pager__item a:active, .newsEventsLanding .view-more-link .pager__item a:active, .newsEventsLanding .pager .blueRoundButton a:active, .newsEventsLanding .standard-more-link .blueRoundButton a:active, .newsEventsLanding .news-and-events--landing .more-link .blueRoundButton a:active, .news-and-events--landing .newsEventsLanding .more-link .blueRoundButton a:active, .newsEventsLanding .view-more-link .blueRoundButton a:active, .newsEventsLanding .pager .redRoundButton a:active, .newsEventsLanding .standard-more-link .redRoundButton a:active, .newsEventsLanding .news-and-events--landing .more-link .redRoundButton a:active, .news-and-events--landing .newsEventsLanding .more-link .redRoundButton a:active, .newsEventsLanding .view-more-link .redRoundButton a:active, .newsEventsLanding .pager .standard-more-link a:active, .newsEventsLanding .standard-more-link .standard-more-link a:active, .newsEventsLanding .news-and-events--landing .more-link .standard-more-link a:active, .news-and-events--landing .newsEventsLanding .more-link .standard-more-link a:active, .newsEventsLanding .view-more-link .standard-more-link a:active, .newsEventsLanding .pager .news-and-events--landing .more-link a:active, .news-and-events--landing .newsEventsLanding .pager .more-link a:active, .newsEventsLanding .standard-more-link .news-and-events--landing .more-link a:active, .news-and-events--landing .newsEventsLanding .standard-more-link .more-link a:active, .newsEventsLanding .news-and-events--landing .more-link .more-link a:active, .news-and-events--landing .newsEventsLanding .more-link .more-link a:active, .newsEventsLanding .view-more-link .news-and-events--landing .more-link a:active, .news-and-events--landing .newsEventsLanding .view-more-link .more-link a:active, .newsEventsLanding .pager .view-more-link a:active, .newsEventsLanding .standard-more-link .view-more-link a:active, .newsEventsLanding .news-and-events--landing .more-link .view-more-link a:active, .news-and-events--landing .newsEventsLanding .more-link .view-more-link a:active, .newsEventsLanding .view-more-link .view-more-link a:active {
  position: relative;
  z-index: 1;
}
/* line 222, ../sass/_mixins.scss */
.newsEventsLanding .pager__items .pager__item--first, .newsEventsLanding .pager__items .pager__item--previous, .newsEventsLanding .pager__items .pager__item--next, .newsEventsLanding .pager__items .pager__item--last, .newsEventsLanding .pager .pager__item--first, .newsEventsLanding .standard-more-link .pager__item--first, .newsEventsLanding .news-and-events--landing .more-link .pager__item--first, .news-and-events--landing .newsEventsLanding .more-link .pager__item--first, .newsEventsLanding .view-more-link .pager__item--first, .newsEventsLanding .pager .pager__item--previous, .newsEventsLanding .standard-more-link .pager__item--previous, .newsEventsLanding .news-and-events--landing .more-link .pager__item--previous, .news-and-events--landing .newsEventsLanding .more-link .pager__item--previous, .newsEventsLanding .view-more-link .pager__item--previous, .newsEventsLanding .pager .pager__item--next, .newsEventsLanding .standard-more-link .pager__item--next, .newsEventsLanding .news-and-events--landing .more-link .pager__item--next, .news-and-events--landing .newsEventsLanding .more-link .pager__item--next, .newsEventsLanding .view-more-link .pager__item--next, .newsEventsLanding .pager .pager__item--last, .newsEventsLanding .standard-more-link .pager__item--last, .newsEventsLanding .news-and-events--landing .more-link .pager__item--last, .news-and-events--landing .newsEventsLanding .more-link .pager__item--last, .newsEventsLanding .view-more-link .pager__item--last {
  border: 1px solid #d7d7d7;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 222, ../sass/_mixins.scss */
  .newsEventsLanding .pager__items .pager__item--first, .newsEventsLanding .pager__items .pager__item--previous, .newsEventsLanding .pager__items .pager__item--next, .newsEventsLanding .pager__items .pager__item--last, .newsEventsLanding .pager .pager__item--first, .newsEventsLanding .standard-more-link .pager__item--first, .newsEventsLanding .news-and-events--landing .more-link .pager__item--first, .news-and-events--landing .newsEventsLanding .more-link .pager__item--first, .newsEventsLanding .view-more-link .pager__item--first, .newsEventsLanding .pager .pager__item--previous, .newsEventsLanding .standard-more-link .pager__item--previous, .newsEventsLanding .news-and-events--landing .more-link .pager__item--previous, .news-and-events--landing .newsEventsLanding .more-link .pager__item--previous, .newsEventsLanding .view-more-link .pager__item--previous, .newsEventsLanding .pager .pager__item--next, .newsEventsLanding .standard-more-link .pager__item--next, .newsEventsLanding .news-and-events--landing .more-link .pager__item--next, .news-and-events--landing .newsEventsLanding .more-link .pager__item--next, .newsEventsLanding .view-more-link .pager__item--next, .newsEventsLanding .pager .pager__item--last, .newsEventsLanding .standard-more-link .pager__item--last, .newsEventsLanding .news-and-events--landing .more-link .pager__item--last, .news-and-events--landing .newsEventsLanding .more-link .pager__item--last, .newsEventsLanding .view-more-link .pager__item--last {
    display: inline-block;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 222, ../sass/_mixins.scss */
  .newsEventsLanding .pager__items .pager__item--first, .newsEventsLanding .pager__items .pager__item--previous, .newsEventsLanding .pager__items .pager__item--next, .newsEventsLanding .pager__items .pager__item--last, .newsEventsLanding .pager .pager__item--first, .newsEventsLanding .standard-more-link .pager__item--first, .newsEventsLanding .news-and-events--landing .more-link .pager__item--first, .news-and-events--landing .newsEventsLanding .more-link .pager__item--first, .newsEventsLanding .view-more-link .pager__item--first, .newsEventsLanding .pager .pager__item--previous, .newsEventsLanding .standard-more-link .pager__item--previous, .newsEventsLanding .news-and-events--landing .more-link .pager__item--previous, .news-and-events--landing .newsEventsLanding .more-link .pager__item--previous, .newsEventsLanding .view-more-link .pager__item--previous, .newsEventsLanding .pager .pager__item--next, .newsEventsLanding .standard-more-link .pager__item--next, .newsEventsLanding .news-and-events--landing .more-link .pager__item--next, .news-and-events--landing .newsEventsLanding .more-link .pager__item--next, .newsEventsLanding .view-more-link .pager__item--next, .newsEventsLanding .pager .pager__item--last, .newsEventsLanding .standard-more-link .pager__item--last, .newsEventsLanding .news-and-events--landing .more-link .pager__item--last, .news-and-events--landing .newsEventsLanding .more-link .pager__item--last, .newsEventsLanding .view-more-link .pager__item--last {
    display: inline-block;
  }
}
/* line 231, ../sass/_mixins.scss */
.newsEventsLanding .pager__items .pager__item--first, .newsEventsLanding .pager__items .pager__item--last, .newsEventsLanding .pager .pager__item--first, .newsEventsLanding .standard-more-link .pager__item--first, .newsEventsLanding .news-and-events--landing .more-link .pager__item--first, .news-and-events--landing .newsEventsLanding .more-link .pager__item--first, .newsEventsLanding .view-more-link .pager__item--first, .newsEventsLanding .pager .pager__item--last, .newsEventsLanding .standard-more-link .pager__item--last, .newsEventsLanding .news-and-events--landing .more-link .pager__item--last, .news-and-events--landing .newsEventsLanding .more-link .pager__item--last, .newsEventsLanding .view-more-link .pager__item--last {
  margin: 0 -.14em;
}
/* line 234, ../sass/_mixins.scss */
.newsEventsLanding .pager__items .pager__item--ellipsis, .newsEventsLanding .pager .pager__item--ellipsis, .newsEventsLanding .standard-more-link .pager__item--ellipsis, .newsEventsLanding .news-and-events--landing .more-link .pager__item--ellipsis, .news-and-events--landing .newsEventsLanding .more-link .pager__item--ellipsis, .newsEventsLanding .view-more-link .pager__item--ellipsis {
  display: none;
}
/* line 239, ../sass/_mixins.scss */
.newsEventsLanding .pager__items .pager__item:hover, .newsEventsLanding .pager__items .blueRoundButton:hover, .newsEventsLanding .pager__items .redRoundButton:hover, .newsEventsLanding .pager__items .standard-more-link:hover, .newsEventsLanding .pager__items .news-and-events--landing .more-link:hover, .news-and-events--landing .newsEventsLanding .pager__items .more-link:hover, .newsEventsLanding .pager__items .view-more-link:hover, .newsEventsLanding .pager .pager__item:hover, .newsEventsLanding .standard-more-link .pager__item:hover, .newsEventsLanding .news-and-events--landing .more-link .pager__item:hover, .news-and-events--landing .newsEventsLanding .more-link .pager__item:hover, .newsEventsLanding .view-more-link .pager__item:hover, .newsEventsLanding .pager .blueRoundButton:hover, .newsEventsLanding .standard-more-link .blueRoundButton:hover, .newsEventsLanding .news-and-events--landing .more-link .blueRoundButton:hover, .news-and-events--landing .newsEventsLanding .more-link .blueRoundButton:hover, .newsEventsLanding .view-more-link .blueRoundButton:hover, .newsEventsLanding .pager .redRoundButton:hover, .newsEventsLanding .standard-more-link .redRoundButton:hover, .newsEventsLanding .news-and-events--landing .more-link .redRoundButton:hover, .news-and-events--landing .newsEventsLanding .more-link .redRoundButton:hover, .newsEventsLanding .view-more-link .redRoundButton:hover, .newsEventsLanding .pager .standard-more-link:hover, .newsEventsLanding .standard-more-link .standard-more-link:hover, .newsEventsLanding .news-and-events--landing .more-link .standard-more-link:hover, .news-and-events--landing .newsEventsLanding .more-link .standard-more-link:hover, .newsEventsLanding .view-more-link .standard-more-link:hover, .newsEventsLanding .pager .news-and-events--landing .more-link:hover, .news-and-events--landing .newsEventsLanding .pager .more-link:hover, .newsEventsLanding .standard-more-link .news-and-events--landing .more-link:hover, .news-and-events--landing .newsEventsLanding .standard-more-link .more-link:hover, .newsEventsLanding .news-and-events--landing .more-link .more-link:hover, .news-and-events--landing .newsEventsLanding .more-link .more-link:hover, .newsEventsLanding .view-more-link .news-and-events--landing .more-link:hover, .news-and-events--landing .newsEventsLanding .view-more-link .more-link:hover, .newsEventsLanding .pager .view-more-link:hover, .newsEventsLanding .standard-more-link .view-more-link:hover, .newsEventsLanding .news-and-events--landing .more-link .view-more-link:hover, .news-and-events--landing .newsEventsLanding .more-link .view-more-link:hover, .newsEventsLanding .view-more-link .view-more-link:hover {
  background-color: #1a568c;
  color: #fff;
}
/* line 242, ../sass/_mixins.scss */
.newsEventsLanding .pager__items .pager__item:hover a, .newsEventsLanding .pager__items .blueRoundButton:hover a, .newsEventsLanding .pager__items .redRoundButton:hover a, .newsEventsLanding .pager__items .standard-more-link:hover a, .newsEventsLanding .pager__items .news-and-events--landing .more-link:hover a, .news-and-events--landing .newsEventsLanding .pager__items .more-link:hover a, .newsEventsLanding .pager__items .view-more-link:hover a, .newsEventsLanding .pager .pager__item:hover a, .newsEventsLanding .standard-more-link .pager__item:hover a, .newsEventsLanding .news-and-events--landing .more-link .pager__item:hover a, .news-and-events--landing .newsEventsLanding .more-link .pager__item:hover a, .newsEventsLanding .view-more-link .pager__item:hover a, .newsEventsLanding .pager .blueRoundButton:hover a, .newsEventsLanding .standard-more-link .blueRoundButton:hover a, .newsEventsLanding .news-and-events--landing .more-link .blueRoundButton:hover a, .news-and-events--landing .newsEventsLanding .more-link .blueRoundButton:hover a, .newsEventsLanding .view-more-link .blueRoundButton:hover a, .newsEventsLanding .pager .redRoundButton:hover a, .newsEventsLanding .standard-more-link .redRoundButton:hover a, .newsEventsLanding .news-and-events--landing .more-link .redRoundButton:hover a, .news-and-events--landing .newsEventsLanding .more-link .redRoundButton:hover a, .newsEventsLanding .view-more-link .redRoundButton:hover a, .newsEventsLanding .pager .standard-more-link:hover a, .newsEventsLanding .standard-more-link .standard-more-link:hover a, .newsEventsLanding .news-and-events--landing .more-link .standard-more-link:hover a, .news-and-events--landing .newsEventsLanding .more-link .standard-more-link:hover a, .newsEventsLanding .view-more-link .standard-more-link:hover a, .newsEventsLanding .pager .news-and-events--landing .more-link:hover a, .news-and-events--landing .newsEventsLanding .pager .more-link:hover a, .newsEventsLanding .standard-more-link .news-and-events--landing .more-link:hover a, .news-and-events--landing .newsEventsLanding .standard-more-link .more-link:hover a, .newsEventsLanding .news-and-events--landing .more-link .more-link:hover a, .news-and-events--landing .newsEventsLanding .more-link .more-link:hover a, .newsEventsLanding .view-more-link .news-and-events--landing .more-link:hover a, .news-and-events--landing .newsEventsLanding .view-more-link .more-link:hover a, .newsEventsLanding .pager .view-more-link:hover a, .newsEventsLanding .standard-more-link .view-more-link:hover a, .newsEventsLanding .news-and-events--landing .more-link .view-more-link:hover a, .news-and-events--landing .newsEventsLanding .more-link .view-more-link:hover a, .newsEventsLanding .view-more-link .view-more-link:hover a {
  color: #fff;
}
/* line 246, ../sass/_mixins.scss */
.newsEventsLanding .pager__items .pager__item.is-active, .newsEventsLanding .pager__items .is-active.blueRoundButton, .newsEventsLanding .pager__items .is-active.redRoundButton, .newsEventsLanding .pager__items .is-active.standard-more-link, .newsEventsLanding .pager__items .news-and-events--landing .is-active.more-link, .news-and-events--landing .newsEventsLanding .pager__items .is-active.more-link, .newsEventsLanding .pager__items .is-active.view-more-link, .newsEventsLanding .pager .pager__item.is-active, .newsEventsLanding .standard-more-link .pager__item.is-active, .newsEventsLanding .news-and-events--landing .more-link .pager__item.is-active, .news-and-events--landing .newsEventsLanding .more-link .pager__item.is-active, .newsEventsLanding .view-more-link .pager__item.is-active, .newsEventsLanding .pager .is-active.blueRoundButton, .newsEventsLanding .standard-more-link .is-active.blueRoundButton, .newsEventsLanding .news-and-events--landing .more-link .is-active.blueRoundButton, .news-and-events--landing .newsEventsLanding .more-link .is-active.blueRoundButton, .newsEventsLanding .view-more-link .is-active.blueRoundButton, .newsEventsLanding .pager .is-active.redRoundButton, .newsEventsLanding .standard-more-link .is-active.redRoundButton, .newsEventsLanding .news-and-events--landing .more-link .is-active.redRoundButton, .news-and-events--landing .newsEventsLanding .more-link .is-active.redRoundButton, .newsEventsLanding .view-more-link .is-active.redRoundButton, .newsEventsLanding .pager .is-active.standard-more-link, .newsEventsLanding .standard-more-link .is-active.standard-more-link, .newsEventsLanding .news-and-events--landing .more-link .is-active.standard-more-link, .news-and-events--landing .newsEventsLanding .more-link .is-active.standard-more-link, .newsEventsLanding .view-more-link .is-active.standard-more-link, .newsEventsLanding .pager .news-and-events--landing .is-active.more-link, .news-and-events--landing .newsEventsLanding .pager .is-active.more-link, .newsEventsLanding .standard-more-link .news-and-events--landing .is-active.more-link, .news-and-events--landing .newsEventsLanding .standard-more-link .is-active.more-link, .newsEventsLanding .news-and-events--landing .more-link .is-active.more-link, .news-and-events--landing .newsEventsLanding .more-link .is-active.more-link, .newsEventsLanding .view-more-link .news-and-events--landing .is-active.more-link, .news-and-events--landing .newsEventsLanding .view-more-link .is-active.more-link, .newsEventsLanding .pager .is-active.view-more-link, .newsEventsLanding .standard-more-link .is-active.view-more-link, .newsEventsLanding .news-and-events--landing .more-link .is-active.view-more-link, .news-and-events--landing .newsEventsLanding .more-link .is-active.view-more-link, .newsEventsLanding .view-more-link .is-active.view-more-link {
  background-color: #1a568c;
}
/* line 248, ../sass/_mixins.scss */
.newsEventsLanding .pager__items .pager__item.is-active a, .newsEventsLanding .pager__items .is-active.blueRoundButton a, .newsEventsLanding .pager__items .is-active.redRoundButton a, .newsEventsLanding .pager__items .is-active.standard-more-link a, .newsEventsLanding .pager__items .news-and-events--landing .is-active.more-link a, .news-and-events--landing .newsEventsLanding .pager__items .is-active.more-link a, .newsEventsLanding .pager__items .is-active.view-more-link a, .newsEventsLanding .pager .pager__item.is-active a, .newsEventsLanding .standard-more-link .pager__item.is-active a, .newsEventsLanding .news-and-events--landing .more-link .pager__item.is-active a, .news-and-events--landing .newsEventsLanding .more-link .pager__item.is-active a, .newsEventsLanding .view-more-link .pager__item.is-active a, .newsEventsLanding .pager .is-active.blueRoundButton a, .newsEventsLanding .standard-more-link .is-active.blueRoundButton a, .newsEventsLanding .news-and-events--landing .more-link .is-active.blueRoundButton a, .news-and-events--landing .newsEventsLanding .more-link .is-active.blueRoundButton a, .newsEventsLanding .view-more-link .is-active.blueRoundButton a, .newsEventsLanding .pager .is-active.redRoundButton a, .newsEventsLanding .standard-more-link .is-active.redRoundButton a, .newsEventsLanding .news-and-events--landing .more-link .is-active.redRoundButton a, .news-and-events--landing .newsEventsLanding .more-link .is-active.redRoundButton a, .newsEventsLanding .view-more-link .is-active.redRoundButton a, .newsEventsLanding .pager .is-active.standard-more-link a, .newsEventsLanding .standard-more-link .is-active.standard-more-link a, .newsEventsLanding .news-and-events--landing .more-link .is-active.standard-more-link a, .news-and-events--landing .newsEventsLanding .more-link .is-active.standard-more-link a, .newsEventsLanding .view-more-link .is-active.standard-more-link a, .newsEventsLanding .pager .news-and-events--landing .is-active.more-link a, .news-and-events--landing .newsEventsLanding .pager .is-active.more-link a, .newsEventsLanding .standard-more-link .news-and-events--landing .is-active.more-link a, .news-and-events--landing .newsEventsLanding .standard-more-link .is-active.more-link a, .newsEventsLanding .news-and-events--landing .more-link .is-active.more-link a, .news-and-events--landing .newsEventsLanding .more-link .is-active.more-link a, .newsEventsLanding .view-more-link .news-and-events--landing .is-active.more-link a, .news-and-events--landing .newsEventsLanding .view-more-link .is-active.more-link a, .newsEventsLanding .pager .is-active.view-more-link a, .newsEventsLanding .standard-more-link .is-active.view-more-link a, .newsEventsLanding .news-and-events--landing .more-link .is-active.view-more-link a, .news-and-events--landing .newsEventsLanding .more-link .is-active.view-more-link a, .newsEventsLanding .view-more-link .is-active.view-more-link a {
  color: #fff;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 246, ../sass/_mixins.scss */
  .newsEventsLanding .pager__items .pager__item.is-active, .newsEventsLanding .pager__items .is-active.blueRoundButton, .newsEventsLanding .pager__items .is-active.redRoundButton, .newsEventsLanding .pager__items .is-active.standard-more-link, .newsEventsLanding .pager__items .news-and-events--landing .is-active.more-link, .news-and-events--landing .newsEventsLanding .pager__items .is-active.more-link, .newsEventsLanding .pager__items .is-active.view-more-link, .newsEventsLanding .pager .pager__item.is-active, .newsEventsLanding .standard-more-link .pager__item.is-active, .newsEventsLanding .news-and-events--landing .more-link .pager__item.is-active, .news-and-events--landing .newsEventsLanding .more-link .pager__item.is-active, .newsEventsLanding .view-more-link .pager__item.is-active, .newsEventsLanding .pager .is-active.blueRoundButton, .newsEventsLanding .standard-more-link .is-active.blueRoundButton, .newsEventsLanding .news-and-events--landing .more-link .is-active.blueRoundButton, .news-and-events--landing .newsEventsLanding .more-link .is-active.blueRoundButton, .newsEventsLanding .view-more-link .is-active.blueRoundButton, .newsEventsLanding .pager .is-active.redRoundButton, .newsEventsLanding .standard-more-link .is-active.redRoundButton, .newsEventsLanding .news-and-events--landing .more-link .is-active.redRoundButton, .news-and-events--landing .newsEventsLanding .more-link .is-active.redRoundButton, .newsEventsLanding .view-more-link .is-active.redRoundButton, .newsEventsLanding .pager .is-active.standard-more-link, .newsEventsLanding .standard-more-link .is-active.standard-more-link, .newsEventsLanding .news-and-events--landing .more-link .is-active.standard-more-link, .news-and-events--landing .newsEventsLanding .more-link .is-active.standard-more-link, .newsEventsLanding .view-more-link .is-active.standard-more-link, .newsEventsLanding .pager .news-and-events--landing .is-active.more-link, .news-and-events--landing .newsEventsLanding .pager .is-active.more-link, .newsEventsLanding .standard-more-link .news-and-events--landing .is-active.more-link, .news-and-events--landing .newsEventsLanding .standard-more-link .is-active.more-link, .newsEventsLanding .news-and-events--landing .more-link .is-active.more-link, .news-and-events--landing .newsEventsLanding .more-link .is-active.more-link, .newsEventsLanding .view-more-link .news-and-events--landing .is-active.more-link, .news-and-events--landing .newsEventsLanding .view-more-link .is-active.more-link, .newsEventsLanding .pager .is-active.view-more-link, .newsEventsLanding .standard-more-link .is-active.view-more-link, .newsEventsLanding .news-and-events--landing .more-link .is-active.view-more-link, .news-and-events--landing .newsEventsLanding .more-link .is-active.view-more-link, .newsEventsLanding .view-more-link .is-active.view-more-link {
    display: inline-block;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 246, ../sass/_mixins.scss */
  .newsEventsLanding .pager__items .pager__item.is-active, .newsEventsLanding .pager__items .is-active.blueRoundButton, .newsEventsLanding .pager__items .is-active.redRoundButton, .newsEventsLanding .pager__items .is-active.standard-more-link, .newsEventsLanding .pager__items .news-and-events--landing .is-active.more-link, .news-and-events--landing .newsEventsLanding .pager__items .is-active.more-link, .newsEventsLanding .pager__items .is-active.view-more-link, .newsEventsLanding .pager .pager__item.is-active, .newsEventsLanding .standard-more-link .pager__item.is-active, .newsEventsLanding .news-and-events--landing .more-link .pager__item.is-active, .news-and-events--landing .newsEventsLanding .more-link .pager__item.is-active, .newsEventsLanding .view-more-link .pager__item.is-active, .newsEventsLanding .pager .is-active.blueRoundButton, .newsEventsLanding .standard-more-link .is-active.blueRoundButton, .newsEventsLanding .news-and-events--landing .more-link .is-active.blueRoundButton, .news-and-events--landing .newsEventsLanding .more-link .is-active.blueRoundButton, .newsEventsLanding .view-more-link .is-active.blueRoundButton, .newsEventsLanding .pager .is-active.redRoundButton, .newsEventsLanding .standard-more-link .is-active.redRoundButton, .newsEventsLanding .news-and-events--landing .more-link .is-active.redRoundButton, .news-and-events--landing .newsEventsLanding .more-link .is-active.redRoundButton, .newsEventsLanding .view-more-link .is-active.redRoundButton, .newsEventsLanding .pager .is-active.standard-more-link, .newsEventsLanding .standard-more-link .is-active.standard-more-link, .newsEventsLanding .news-and-events--landing .more-link .is-active.standard-more-link, .news-and-events--landing .newsEventsLanding .more-link .is-active.standard-more-link, .newsEventsLanding .view-more-link .is-active.standard-more-link, .newsEventsLanding .pager .news-and-events--landing .is-active.more-link, .news-and-events--landing .newsEventsLanding .pager .is-active.more-link, .newsEventsLanding .standard-more-link .news-and-events--landing .is-active.more-link, .news-and-events--landing .newsEventsLanding .standard-more-link .is-active.more-link, .newsEventsLanding .news-and-events--landing .more-link .is-active.more-link, .news-and-events--landing .newsEventsLanding .more-link .is-active.more-link, .newsEventsLanding .view-more-link .news-and-events--landing .is-active.more-link, .news-and-events--landing .newsEventsLanding .view-more-link .is-active.more-link, .newsEventsLanding .pager .is-active.view-more-link, .newsEventsLanding .standard-more-link .is-active.view-more-link, .newsEventsLanding .news-and-events--landing .more-link .is-active.view-more-link, .news-and-events--landing .newsEventsLanding .more-link .is-active.view-more-link, .newsEventsLanding .view-more-link .is-active.view-more-link {
    display: inline-block;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 258, ../sass/_mixins.scss */
  .newsEventsLanding .pager__items .pager__item.is-active + .pager__item, .newsEventsLanding .pager__items .is-active.blueRoundButton + .pager__item, .newsEventsLanding .pager__items .is-active.redRoundButton + .pager__item, .newsEventsLanding .pager__items .is-active.standard-more-link + .pager__item, .newsEventsLanding .pager__items .news-and-events--landing .is-active.more-link + .pager__item, .news-and-events--landing .newsEventsLanding .pager__items .is-active.more-link + .pager__item, .newsEventsLanding .pager__items .is-active.view-more-link + .pager__item, .newsEventsLanding .pager__items .pager__item.is-active + .blueRoundButton, .newsEventsLanding .pager__items .is-active.blueRoundButton + .blueRoundButton, .newsEventsLanding .pager__items .is-active.redRoundButton + .blueRoundButton, .newsEventsLanding .pager__items .is-active.standard-more-link + .blueRoundButton, .newsEventsLanding .pager__items .news-and-events--landing .is-active.more-link + .blueRoundButton, .news-and-events--landing .newsEventsLanding .pager__items .is-active.more-link + .blueRoundButton, .newsEventsLanding .pager__items .is-active.view-more-link + .blueRoundButton, .newsEventsLanding .pager__items .pager__item.is-active + .redRoundButton, .newsEventsLanding .pager__items .is-active.blueRoundButton + .redRoundButton, .newsEventsLanding .pager__items .is-active.redRoundButton + .redRoundButton, .newsEventsLanding .pager__items .is-active.standard-more-link + .redRoundButton, .newsEventsLanding .pager__items .news-and-events--landing .is-active.more-link + .redRoundButton, .news-and-events--landing .newsEventsLanding .pager__items .is-active.more-link + .redRoundButton, .newsEventsLanding .pager__items .is-active.view-more-link + .redRoundButton, .newsEventsLanding .pager__items .pager__item.is-active + .standard-more-link, .newsEventsLanding .pager__items .is-active.blueRoundButton + .standard-more-link, .newsEventsLanding .pager__items .is-active.redRoundButton + .standard-more-link, .newsEventsLanding .pager__items .is-active.standard-more-link + .standard-more-link, .newsEventsLanding .pager__items .news-and-events--landing .is-active.more-link + .standard-more-link, .news-and-events--landing .newsEventsLanding .pager__items .is-active.more-link + .standard-more-link, .newsEventsLanding .pager__items .is-active.view-more-link + .standard-more-link, .newsEventsLanding .pager__items .news-and-events--landing .pager__item.is-active + .more-link, .news-and-events--landing .newsEventsLanding .pager__items .pager__item.is-active + .more-link, .newsEventsLanding .pager__items .news-and-events--landing .is-active.blueRoundButton + .more-link, .news-and-events--landing .newsEventsLanding .pager__items .is-active.blueRoundButton + .more-link, .newsEventsLanding .pager__items .news-and-events--landing .is-active.redRoundButton + .more-link, .news-and-events--landing .newsEventsLanding .pager__items .is-active.redRoundButton + .more-link, .newsEventsLanding .pager__items .news-and-events--landing .is-active.standard-more-link + .more-link, .news-and-events--landing .newsEventsLanding .pager__items .is-active.standard-more-link + .more-link, .newsEventsLanding .pager__items .news-and-events--landing .is-active.more-link + .more-link, .news-and-events--landing .newsEventsLanding .pager__items .is-active.more-link + .more-link, .newsEventsLanding .pager__items .news-and-events--landing .is-active.view-more-link + .more-link, .news-and-events--landing .newsEventsLanding .pager__items .is-active.view-more-link + .more-link, .newsEventsLanding .pager__items .pager__item.is-active + .view-more-link, .newsEventsLanding .pager__items .is-active.blueRoundButton + .view-more-link, .newsEventsLanding .pager__items .is-active.redRoundButton + .view-more-link, .newsEventsLanding .pager__items .is-active.standard-more-link + .view-more-link, .newsEventsLanding .pager__items .news-and-events--landing .is-active.more-link + .view-more-link, .news-and-events--landing .newsEventsLanding .pager__items .is-active.more-link + .view-more-link, .newsEventsLanding .pager__items .is-active.view-more-link + .view-more-link, .newsEventsLanding .pager .pager__item.is-active + .pager__item, .newsEventsLanding .standard-more-link .pager__item.is-active + .pager__item, .newsEventsLanding .news-and-events--landing .more-link .pager__item.is-active + .pager__item, .news-and-events--landing .newsEventsLanding .more-link .pager__item.is-active + .pager__item, .newsEventsLanding .view-more-link .pager__item.is-active + .pager__item, .newsEventsLanding .pager .is-active.blueRoundButton + .pager__item, .newsEventsLanding .standard-more-link .is-active.blueRoundButton + .pager__item, .newsEventsLanding .news-and-events--landing .more-link .is-active.blueRoundButton + .pager__item, .news-and-events--landing .newsEventsLanding .more-link .is-active.blueRoundButton + .pager__item, .newsEventsLanding .view-more-link .is-active.blueRoundButton + .pager__item, .newsEventsLanding .pager .is-active.redRoundButton + .pager__item, .newsEventsLanding .standard-more-link .is-active.redRoundButton + .pager__item, .newsEventsLanding .news-and-events--landing .more-link .is-active.redRoundButton + .pager__item, .news-and-events--landing .newsEventsLanding .more-link .is-active.redRoundButton + .pager__item, .newsEventsLanding .view-more-link .is-active.redRoundButton + .pager__item, .newsEventsLanding .pager .is-active.standard-more-link + .pager__item, .newsEventsLanding .standard-more-link .is-active.standard-more-link + .pager__item, .newsEventsLanding .news-and-events--landing .more-link .is-active.standard-more-link + .pager__item, .news-and-events--landing .newsEventsLanding .more-link .is-active.standard-more-link + .pager__item, .newsEventsLanding .view-more-link .is-active.standard-more-link + .pager__item, .newsEventsLanding .pager .news-and-events--landing .is-active.more-link + .pager__item, .news-and-events--landing .newsEventsLanding .pager .is-active.more-link + .pager__item, .newsEventsLanding .standard-more-link .news-and-events--landing .is-active.more-link + .pager__item, .news-and-events--landing .newsEventsLanding .standard-more-link .is-active.more-link + .pager__item, .newsEventsLanding .news-and-events--landing .more-link .is-active.more-link + .pager__item, .news-and-events--landing .newsEventsLanding .more-link .is-active.more-link + .pager__item, .newsEventsLanding .view-more-link .news-and-events--landing .is-active.more-link + .pager__item, .news-and-events--landing .newsEventsLanding .view-more-link .is-active.more-link + .pager__item, .newsEventsLanding .pager .is-active.view-more-link + .pager__item, .newsEventsLanding .standard-more-link .is-active.view-more-link + .pager__item, .newsEventsLanding .news-and-events--landing .more-link .is-active.view-more-link + .pager__item, .news-and-events--landing .newsEventsLanding .more-link .is-active.view-more-link + .pager__item, .newsEventsLanding .view-more-link .is-active.view-more-link + .pager__item, .newsEventsLanding .pager .pager__item.is-active + .blueRoundButton, .newsEventsLanding .standard-more-link .pager__item.is-active + .blueRoundButton, .newsEventsLanding .news-and-events--landing .more-link .pager__item.is-active + .blueRoundButton, .news-and-events--landing .newsEventsLanding .more-link .pager__item.is-active + .blueRoundButton, .newsEventsLanding .view-more-link .pager__item.is-active + .blueRoundButton, .newsEventsLanding .pager .is-active.blueRoundButton + .blueRoundButton, .newsEventsLanding .standard-more-link .is-active.blueRoundButton + .blueRoundButton, .newsEventsLanding .news-and-events--landing .more-link .is-active.blueRoundButton + .blueRoundButton, .news-and-events--landing .newsEventsLanding .more-link .is-active.blueRoundButton + .blueRoundButton, .newsEventsLanding .view-more-link .is-active.blueRoundButton + .blueRoundButton, .newsEventsLanding .pager .is-active.redRoundButton + .blueRoundButton, .newsEventsLanding .standard-more-link .is-active.redRoundButton + .blueRoundButton, .newsEventsLanding .news-and-events--landing .more-link .is-active.redRoundButton + .blueRoundButton, .news-and-events--landing .newsEventsLanding .more-link .is-active.redRoundButton + .blueRoundButton, .newsEventsLanding .view-more-link .is-active.redRoundButton + .blueRoundButton, .newsEventsLanding .pager .is-active.standard-more-link + .blueRoundButton, .newsEventsLanding .standard-more-link .is-active.standard-more-link + .blueRoundButton, .newsEventsLanding .news-and-events--landing .more-link .is-active.standard-more-link + .blueRoundButton, .news-and-events--landing .newsEventsLanding .more-link .is-active.standard-more-link + .blueRoundButton, .newsEventsLanding .view-more-link .is-active.standard-more-link + .blueRoundButton, .newsEventsLanding .pager .news-and-events--landing .is-active.more-link + .blueRoundButton, .news-and-events--landing .newsEventsLanding .pager .is-active.more-link + .blueRoundButton, .newsEventsLanding .standard-more-link .news-and-events--landing .is-active.more-link + .blueRoundButton, .news-and-events--landing .newsEventsLanding .standard-more-link .is-active.more-link + .blueRoundButton, .newsEventsLanding .news-and-events--landing .more-link .is-active.more-link + .blueRoundButton, .news-and-events--landing .newsEventsLanding .more-link .is-active.more-link + .blueRoundButton, .newsEventsLanding .view-more-link .news-and-events--landing .is-active.more-link + .blueRoundButton, .news-and-events--landing .newsEventsLanding .view-more-link .is-active.more-link + .blueRoundButton, .newsEventsLanding .pager .is-active.view-more-link + .blueRoundButton, .newsEventsLanding .standard-more-link .is-active.view-more-link + .blueRoundButton, .newsEventsLanding .news-and-events--landing .more-link .is-active.view-more-link + .blueRoundButton, .news-and-events--landing .newsEventsLanding .more-link .is-active.view-more-link + .blueRoundButton, .newsEventsLanding .view-more-link .is-active.view-more-link + .blueRoundButton, .newsEventsLanding .pager .pager__item.is-active + .redRoundButton, .newsEventsLanding .standard-more-link .pager__item.is-active + .redRoundButton, .newsEventsLanding .news-and-events--landing .more-link .pager__item.is-active + .redRoundButton, .news-and-events--landing .newsEventsLanding .more-link .pager__item.is-active + .redRoundButton, .newsEventsLanding .view-more-link .pager__item.is-active + .redRoundButton, .newsEventsLanding .pager .is-active.blueRoundButton + .redRoundButton, .newsEventsLanding .standard-more-link .is-active.blueRoundButton + .redRoundButton, .newsEventsLanding .news-and-events--landing .more-link .is-active.blueRoundButton + .redRoundButton, .news-and-events--landing .newsEventsLanding .more-link .is-active.blueRoundButton + .redRoundButton, .newsEventsLanding .view-more-link .is-active.blueRoundButton + .redRoundButton, .newsEventsLanding .pager .is-active.redRoundButton + .redRoundButton, .newsEventsLanding .standard-more-link .is-active.redRoundButton + .redRoundButton, .newsEventsLanding .news-and-events--landing .more-link .is-active.redRoundButton + .redRoundButton, .news-and-events--landing .newsEventsLanding .more-link .is-active.redRoundButton + .redRoundButton, .newsEventsLanding .view-more-link .is-active.redRoundButton + .redRoundButton, .newsEventsLanding .pager .is-active.standard-more-link + .redRoundButton, .newsEventsLanding .standard-more-link .is-active.standard-more-link + .redRoundButton, .newsEventsLanding .news-and-events--landing .more-link .is-active.standard-more-link + .redRoundButton, .news-and-events--landing .newsEventsLanding .more-link .is-active.standard-more-link + .redRoundButton, .newsEventsLanding .view-more-link .is-active.standard-more-link + .redRoundButton, .newsEventsLanding .pager .news-and-events--landing .is-active.more-link + .redRoundButton, .news-and-events--landing .newsEventsLanding .pager .is-active.more-link + .redRoundButton, .newsEventsLanding .standard-more-link .news-and-events--landing .is-active.more-link + .redRoundButton, .news-and-events--landing .newsEventsLanding .standard-more-link .is-active.more-link + .redRoundButton, .newsEventsLanding .news-and-events--landing .more-link .is-active.more-link + .redRoundButton, .news-and-events--landing .newsEventsLanding .more-link .is-active.more-link + .redRoundButton, .newsEventsLanding .view-more-link .news-and-events--landing .is-active.more-link + .redRoundButton, .news-and-events--landing .newsEventsLanding .view-more-link .is-active.more-link + .redRoundButton, .newsEventsLanding .pager .is-active.view-more-link + .redRoundButton, .newsEventsLanding .standard-more-link .is-active.view-more-link + .redRoundButton, .newsEventsLanding .news-and-events--landing .more-link .is-active.view-more-link + .redRoundButton, .news-and-events--landing .newsEventsLanding .more-link .is-active.view-more-link + .redRoundButton, .newsEventsLanding .view-more-link .is-active.view-more-link + .redRoundButton, .newsEventsLanding .pager .pager__item.is-active + .standard-more-link, .newsEventsLanding .standard-more-link .pager__item.is-active + .standard-more-link, .newsEventsLanding .news-and-events--landing .more-link .pager__item.is-active + .standard-more-link, .news-and-events--landing .newsEventsLanding .more-link .pager__item.is-active + .standard-more-link, .newsEventsLanding .view-more-link .pager__item.is-active + .standard-more-link, .newsEventsLanding .pager .is-active.blueRoundButton + .standard-more-link, .newsEventsLanding .standard-more-link .is-active.blueRoundButton + .standard-more-link, .newsEventsLanding .news-and-events--landing .more-link .is-active.blueRoundButton + .standard-more-link, .news-and-events--landing .newsEventsLanding .more-link .is-active.blueRoundButton + .standard-more-link, .newsEventsLanding .view-more-link .is-active.blueRoundButton + .standard-more-link, .newsEventsLanding .pager .is-active.redRoundButton + .standard-more-link, .newsEventsLanding .standard-more-link .is-active.redRoundButton + .standard-more-link, .newsEventsLanding .news-and-events--landing .more-link .is-active.redRoundButton + .standard-more-link, .news-and-events--landing .newsEventsLanding .more-link .is-active.redRoundButton + .standard-more-link, .newsEventsLanding .view-more-link .is-active.redRoundButton + .standard-more-link, .newsEventsLanding .pager .is-active.standard-more-link + .standard-more-link, .newsEventsLanding .standard-more-link .is-active.standard-more-link + .standard-more-link, .newsEventsLanding .news-and-events--landing .more-link .is-active.standard-more-link + .standard-more-link, .news-and-events--landing .newsEventsLanding .more-link .is-active.standard-more-link + .standard-more-link, .newsEventsLanding .view-more-link .is-active.standard-more-link + .standard-more-link, .newsEventsLanding .pager .news-and-events--landing .is-active.more-link + .standard-more-link, .news-and-events--landing .newsEventsLanding .pager .is-active.more-link + .standard-more-link, .newsEventsLanding .standard-more-link .news-and-events--landing .is-active.more-link + .standard-more-link, .news-and-events--landing .newsEventsLanding .standard-more-link .is-active.more-link + .standard-more-link, .newsEventsLanding .news-and-events--landing .more-link .is-active.more-link + .standard-more-link, .news-and-events--landing .newsEventsLanding .more-link .is-active.more-link + .standard-more-link, .newsEventsLanding .view-more-link .news-and-events--landing .is-active.more-link + .standard-more-link, .news-and-events--landing .newsEventsLanding .view-more-link .is-active.more-link + .standard-more-link, .newsEventsLanding .pager .is-active.view-more-link + .standard-more-link, .newsEventsLanding .standard-more-link .is-active.view-more-link + .standard-more-link, .newsEventsLanding .news-and-events--landing .more-link .is-active.view-more-link + .standard-more-link, .news-and-events--landing .newsEventsLanding .more-link .is-active.view-more-link + .standard-more-link, .newsEventsLanding .view-more-link .is-active.view-more-link + .standard-more-link, .newsEventsLanding .pager .news-and-events--landing .pager__item.is-active + .more-link, .news-and-events--landing .newsEventsLanding .pager .pager__item.is-active + .more-link, .newsEventsLanding .standard-more-link .news-and-events--landing .pager__item.is-active + .more-link, .news-and-events--landing .newsEventsLanding .standard-more-link .pager__item.is-active + .more-link, .newsEventsLanding .news-and-events--landing .more-link .pager__item.is-active + .more-link, .news-and-events--landing .newsEventsLanding .more-link .pager__item.is-active + .more-link, .newsEventsLanding .view-more-link .news-and-events--landing .pager__item.is-active + .more-link, .news-and-events--landing .newsEventsLanding .view-more-link .pager__item.is-active + .more-link, .newsEventsLanding .pager .news-and-events--landing .is-active.blueRoundButton + .more-link, .news-and-events--landing .newsEventsLanding .pager .is-active.blueRoundButton + .more-link, .newsEventsLanding .standard-more-link .news-and-events--landing .is-active.blueRoundButton + .more-link, .news-and-events--landing .newsEventsLanding .standard-more-link .is-active.blueRoundButton + .more-link, .newsEventsLanding .news-and-events--landing .more-link .is-active.blueRoundButton + .more-link, .news-and-events--landing .newsEventsLanding .more-link .is-active.blueRoundButton + .more-link, .newsEventsLanding .view-more-link .news-and-events--landing .is-active.blueRoundButton + .more-link, .news-and-events--landing .newsEventsLanding .view-more-link .is-active.blueRoundButton + .more-link, .newsEventsLanding .pager .news-and-events--landing .is-active.redRoundButton + .more-link, .news-and-events--landing .newsEventsLanding .pager .is-active.redRoundButton + .more-link, .newsEventsLanding .standard-more-link .news-and-events--landing .is-active.redRoundButton + .more-link, .news-and-events--landing .newsEventsLanding .standard-more-link .is-active.redRoundButton + .more-link, .newsEventsLanding .news-and-events--landing .more-link .is-active.redRoundButton + .more-link, .news-and-events--landing .newsEventsLanding .more-link .is-active.redRoundButton + .more-link, .newsEventsLanding .view-more-link .news-and-events--landing .is-active.redRoundButton + .more-link, .news-and-events--landing .newsEventsLanding .view-more-link .is-active.redRoundButton + .more-link, .newsEventsLanding .pager .news-and-events--landing .is-active.standard-more-link + .more-link, .news-and-events--landing .newsEventsLanding .pager .is-active.standard-more-link + .more-link, .newsEventsLanding .standard-more-link .news-and-events--landing .is-active.standard-more-link + .more-link, .news-and-events--landing .newsEventsLanding .standard-more-link .is-active.standard-more-link + .more-link, .newsEventsLanding .news-and-events--landing .more-link .is-active.standard-more-link + .more-link, .news-and-events--landing .newsEventsLanding .more-link .is-active.standard-more-link + .more-link, .newsEventsLanding .view-more-link .news-and-events--landing .is-active.standard-more-link + .more-link, .news-and-events--landing .newsEventsLanding .view-more-link .is-active.standard-more-link + .more-link, .newsEventsLanding .pager .news-and-events--landing .is-active.more-link + .more-link, .news-and-events--landing .newsEventsLanding .pager .is-active.more-link + .more-link, .newsEventsLanding .standard-more-link .news-and-events--landing .is-active.more-link + .more-link, .news-and-events--landing .newsEventsLanding .standard-more-link .is-active.more-link + .more-link, .newsEventsLanding .news-and-events--landing .more-link .is-active.more-link + .more-link, .news-and-events--landing .newsEventsLanding .more-link .is-active.more-link + .more-link, .newsEventsLanding .view-more-link .news-and-events--landing .is-active.more-link + .more-link, .news-and-events--landing .newsEventsLanding .view-more-link .is-active.more-link + .more-link, .newsEventsLanding .pager .news-and-events--landing .is-active.view-more-link + .more-link, .news-and-events--landing .newsEventsLanding .pager .is-active.view-more-link + .more-link, .newsEventsLanding .standard-more-link .news-and-events--landing .is-active.view-more-link + .more-link, .news-and-events--landing .newsEventsLanding .standard-more-link .is-active.view-more-link + .more-link, .newsEventsLanding .news-and-events--landing .more-link .is-active.view-more-link + .more-link, .news-and-events--landing .newsEventsLanding .more-link .is-active.view-more-link + .more-link, .newsEventsLanding .view-more-link .news-and-events--landing .is-active.view-more-link + .more-link, .news-and-events--landing .newsEventsLanding .view-more-link .is-active.view-more-link + .more-link, .newsEventsLanding .pager .pager__item.is-active + .view-more-link, .newsEventsLanding .standard-more-link .pager__item.is-active + .view-more-link, .newsEventsLanding .news-and-events--landing .more-link .pager__item.is-active + .view-more-link, .news-and-events--landing .newsEventsLanding .more-link .pager__item.is-active + .view-more-link, .newsEventsLanding .view-more-link .pager__item.is-active + .view-more-link, .newsEventsLanding .pager .is-active.blueRoundButton + .view-more-link, .newsEventsLanding .standard-more-link .is-active.blueRoundButton + .view-more-link, .newsEventsLanding .news-and-events--landing .more-link .is-active.blueRoundButton + .view-more-link, .news-and-events--landing .newsEventsLanding .more-link .is-active.blueRoundButton + .view-more-link, .newsEventsLanding .view-more-link .is-active.blueRoundButton + .view-more-link, .newsEventsLanding .pager .is-active.redRoundButton + .view-more-link, .newsEventsLanding .standard-more-link .is-active.redRoundButton + .view-more-link, .newsEventsLanding .news-and-events--landing .more-link .is-active.redRoundButton + .view-more-link, .news-and-events--landing .newsEventsLanding .more-link .is-active.redRoundButton + .view-more-link, .newsEventsLanding .view-more-link .is-active.redRoundButton + .view-more-link, .newsEventsLanding .pager .is-active.standard-more-link + .view-more-link, .newsEventsLanding .standard-more-link .is-active.standard-more-link + .view-more-link, .newsEventsLanding .news-and-events--landing .more-link .is-active.standard-more-link + .view-more-link, .news-and-events--landing .newsEventsLanding .more-link .is-active.standard-more-link + .view-more-link, .newsEventsLanding .view-more-link .is-active.standard-more-link + .view-more-link, .newsEventsLanding .pager .news-and-events--landing .is-active.more-link + .view-more-link, .news-and-events--landing .newsEventsLanding .pager .is-active.more-link + .view-more-link, .newsEventsLanding .standard-more-link .news-and-events--landing .is-active.more-link + .view-more-link, .news-and-events--landing .newsEventsLanding .standard-more-link .is-active.more-link + .view-more-link, .newsEventsLanding .news-and-events--landing .more-link .is-active.more-link + .view-more-link, .news-and-events--landing .newsEventsLanding .more-link .is-active.more-link + .view-more-link, .newsEventsLanding .view-more-link .news-and-events--landing .is-active.more-link + .view-more-link, .news-and-events--landing .newsEventsLanding .view-more-link .is-active.more-link + .view-more-link, .newsEventsLanding .pager .is-active.view-more-link + .view-more-link, .newsEventsLanding .standard-more-link .is-active.view-more-link + .view-more-link, .newsEventsLanding .news-and-events--landing .more-link .is-active.view-more-link + .view-more-link, .news-and-events--landing .newsEventsLanding .more-link .is-active.view-more-link + .view-more-link, .newsEventsLanding .view-more-link .is-active.view-more-link + .view-more-link {
    display: inline-block;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 258, ../sass/_mixins.scss */
  .newsEventsLanding .pager__items .pager__item.is-active + .pager__item, .newsEventsLanding .pager__items .is-active.blueRoundButton + .pager__item, .newsEventsLanding .pager__items .is-active.redRoundButton + .pager__item, .newsEventsLanding .pager__items .is-active.standard-more-link + .pager__item, .newsEventsLanding .pager__items .news-and-events--landing .is-active.more-link + .pager__item, .news-and-events--landing .newsEventsLanding .pager__items .is-active.more-link + .pager__item, .newsEventsLanding .pager__items .is-active.view-more-link + .pager__item, .newsEventsLanding .pager__items .pager__item.is-active + .blueRoundButton, .newsEventsLanding .pager__items .is-active.blueRoundButton + .blueRoundButton, .newsEventsLanding .pager__items .is-active.redRoundButton + .blueRoundButton, .newsEventsLanding .pager__items .is-active.standard-more-link + .blueRoundButton, .newsEventsLanding .pager__items .news-and-events--landing .is-active.more-link + .blueRoundButton, .news-and-events--landing .newsEventsLanding .pager__items .is-active.more-link + .blueRoundButton, .newsEventsLanding .pager__items .is-active.view-more-link + .blueRoundButton, .newsEventsLanding .pager__items .pager__item.is-active + .redRoundButton, .newsEventsLanding .pager__items .is-active.blueRoundButton + .redRoundButton, .newsEventsLanding .pager__items .is-active.redRoundButton + .redRoundButton, .newsEventsLanding .pager__items .is-active.standard-more-link + .redRoundButton, .newsEventsLanding .pager__items .news-and-events--landing .is-active.more-link + .redRoundButton, .news-and-events--landing .newsEventsLanding .pager__items .is-active.more-link + .redRoundButton, .newsEventsLanding .pager__items .is-active.view-more-link + .redRoundButton, .newsEventsLanding .pager__items .pager__item.is-active + .standard-more-link, .newsEventsLanding .pager__items .is-active.blueRoundButton + .standard-more-link, .newsEventsLanding .pager__items .is-active.redRoundButton + .standard-more-link, .newsEventsLanding .pager__items .is-active.standard-more-link + .standard-more-link, .newsEventsLanding .pager__items .news-and-events--landing .is-active.more-link + .standard-more-link, .news-and-events--landing .newsEventsLanding .pager__items .is-active.more-link + .standard-more-link, .newsEventsLanding .pager__items .is-active.view-more-link + .standard-more-link, .newsEventsLanding .pager__items .news-and-events--landing .pager__item.is-active + .more-link, .news-and-events--landing .newsEventsLanding .pager__items .pager__item.is-active + .more-link, .newsEventsLanding .pager__items .news-and-events--landing .is-active.blueRoundButton + .more-link, .news-and-events--landing .newsEventsLanding .pager__items .is-active.blueRoundButton + .more-link, .newsEventsLanding .pager__items .news-and-events--landing .is-active.redRoundButton + .more-link, .news-and-events--landing .newsEventsLanding .pager__items .is-active.redRoundButton + .more-link, .newsEventsLanding .pager__items .news-and-events--landing .is-active.standard-more-link + .more-link, .news-and-events--landing .newsEventsLanding .pager__items .is-active.standard-more-link + .more-link, .newsEventsLanding .pager__items .news-and-events--landing .is-active.more-link + .more-link, .news-and-events--landing .newsEventsLanding .pager__items .is-active.more-link + .more-link, .newsEventsLanding .pager__items .news-and-events--landing .is-active.view-more-link + .more-link, .news-and-events--landing .newsEventsLanding .pager__items .is-active.view-more-link + .more-link, .newsEventsLanding .pager__items .pager__item.is-active + .view-more-link, .newsEventsLanding .pager__items .is-active.blueRoundButton + .view-more-link, .newsEventsLanding .pager__items .is-active.redRoundButton + .view-more-link, .newsEventsLanding .pager__items .is-active.standard-more-link + .view-more-link, .newsEventsLanding .pager__items .news-and-events--landing .is-active.more-link + .view-more-link, .news-and-events--landing .newsEventsLanding .pager__items .is-active.more-link + .view-more-link, .newsEventsLanding .pager__items .is-active.view-more-link + .view-more-link, .newsEventsLanding .pager .pager__item.is-active + .pager__item, .newsEventsLanding .standard-more-link .pager__item.is-active + .pager__item, .newsEventsLanding .news-and-events--landing .more-link .pager__item.is-active + .pager__item, .news-and-events--landing .newsEventsLanding .more-link .pager__item.is-active + .pager__item, .newsEventsLanding .view-more-link .pager__item.is-active + .pager__item, .newsEventsLanding .pager .is-active.blueRoundButton + .pager__item, .newsEventsLanding .standard-more-link .is-active.blueRoundButton + .pager__item, .newsEventsLanding .news-and-events--landing .more-link .is-active.blueRoundButton + .pager__item, .news-and-events--landing .newsEventsLanding .more-link .is-active.blueRoundButton + .pager__item, .newsEventsLanding .view-more-link .is-active.blueRoundButton + .pager__item, .newsEventsLanding .pager .is-active.redRoundButton + .pager__item, .newsEventsLanding .standard-more-link .is-active.redRoundButton + .pager__item, .newsEventsLanding .news-and-events--landing .more-link .is-active.redRoundButton + .pager__item, .news-and-events--landing .newsEventsLanding .more-link .is-active.redRoundButton + .pager__item, .newsEventsLanding .view-more-link .is-active.redRoundButton + .pager__item, .newsEventsLanding .pager .is-active.standard-more-link + .pager__item, .newsEventsLanding .standard-more-link .is-active.standard-more-link + .pager__item, .newsEventsLanding .news-and-events--landing .more-link .is-active.standard-more-link + .pager__item, .news-and-events--landing .newsEventsLanding .more-link .is-active.standard-more-link + .pager__item, .newsEventsLanding .view-more-link .is-active.standard-more-link + .pager__item, .newsEventsLanding .pager .news-and-events--landing .is-active.more-link + .pager__item, .news-and-events--landing .newsEventsLanding .pager .is-active.more-link + .pager__item, .newsEventsLanding .standard-more-link .news-and-events--landing .is-active.more-link + .pager__item, .news-and-events--landing .newsEventsLanding .standard-more-link .is-active.more-link + .pager__item, .newsEventsLanding .news-and-events--landing .more-link .is-active.more-link + .pager__item, .news-and-events--landing .newsEventsLanding .more-link .is-active.more-link + .pager__item, .newsEventsLanding .view-more-link .news-and-events--landing .is-active.more-link + .pager__item, .news-and-events--landing .newsEventsLanding .view-more-link .is-active.more-link + .pager__item, .newsEventsLanding .pager .is-active.view-more-link + .pager__item, .newsEventsLanding .standard-more-link .is-active.view-more-link + .pager__item, .newsEventsLanding .news-and-events--landing .more-link .is-active.view-more-link + .pager__item, .news-and-events--landing .newsEventsLanding .more-link .is-active.view-more-link + .pager__item, .newsEventsLanding .view-more-link .is-active.view-more-link + .pager__item, .newsEventsLanding .pager .pager__item.is-active + .blueRoundButton, .newsEventsLanding .standard-more-link .pager__item.is-active + .blueRoundButton, .newsEventsLanding .news-and-events--landing .more-link .pager__item.is-active + .blueRoundButton, .news-and-events--landing .newsEventsLanding .more-link .pager__item.is-active + .blueRoundButton, .newsEventsLanding .view-more-link .pager__item.is-active + .blueRoundButton, .newsEventsLanding .pager .is-active.blueRoundButton + .blueRoundButton, .newsEventsLanding .standard-more-link .is-active.blueRoundButton + .blueRoundButton, .newsEventsLanding .news-and-events--landing .more-link .is-active.blueRoundButton + .blueRoundButton, .news-and-events--landing .newsEventsLanding .more-link .is-active.blueRoundButton + .blueRoundButton, .newsEventsLanding .view-more-link .is-active.blueRoundButton + .blueRoundButton, .newsEventsLanding .pager .is-active.redRoundButton + .blueRoundButton, .newsEventsLanding .standard-more-link .is-active.redRoundButton + .blueRoundButton, .newsEventsLanding .news-and-events--landing .more-link .is-active.redRoundButton + .blueRoundButton, .news-and-events--landing .newsEventsLanding .more-link .is-active.redRoundButton + .blueRoundButton, .newsEventsLanding .view-more-link .is-active.redRoundButton + .blueRoundButton, .newsEventsLanding .pager .is-active.standard-more-link + .blueRoundButton, .newsEventsLanding .standard-more-link .is-active.standard-more-link + .blueRoundButton, .newsEventsLanding .news-and-events--landing .more-link .is-active.standard-more-link + .blueRoundButton, .news-and-events--landing .newsEventsLanding .more-link .is-active.standard-more-link + .blueRoundButton, .newsEventsLanding .view-more-link .is-active.standard-more-link + .blueRoundButton, .newsEventsLanding .pager .news-and-events--landing .is-active.more-link + .blueRoundButton, .news-and-events--landing .newsEventsLanding .pager .is-active.more-link + .blueRoundButton, .newsEventsLanding .standard-more-link .news-and-events--landing .is-active.more-link + .blueRoundButton, .news-and-events--landing .newsEventsLanding .standard-more-link .is-active.more-link + .blueRoundButton, .newsEventsLanding .news-and-events--landing .more-link .is-active.more-link + .blueRoundButton, .news-and-events--landing .newsEventsLanding .more-link .is-active.more-link + .blueRoundButton, .newsEventsLanding .view-more-link .news-and-events--landing .is-active.more-link + .blueRoundButton, .news-and-events--landing .newsEventsLanding .view-more-link .is-active.more-link + .blueRoundButton, .newsEventsLanding .pager .is-active.view-more-link + .blueRoundButton, .newsEventsLanding .standard-more-link .is-active.view-more-link + .blueRoundButton, .newsEventsLanding .news-and-events--landing .more-link .is-active.view-more-link + .blueRoundButton, .news-and-events--landing .newsEventsLanding .more-link .is-active.view-more-link + .blueRoundButton, .newsEventsLanding .view-more-link .is-active.view-more-link + .blueRoundButton, .newsEventsLanding .pager .pager__item.is-active + .redRoundButton, .newsEventsLanding .standard-more-link .pager__item.is-active + .redRoundButton, .newsEventsLanding .news-and-events--landing .more-link .pager__item.is-active + .redRoundButton, .news-and-events--landing .newsEventsLanding .more-link .pager__item.is-active + .redRoundButton, .newsEventsLanding .view-more-link .pager__item.is-active + .redRoundButton, .newsEventsLanding .pager .is-active.blueRoundButton + .redRoundButton, .newsEventsLanding .standard-more-link .is-active.blueRoundButton + .redRoundButton, .newsEventsLanding .news-and-events--landing .more-link .is-active.blueRoundButton + .redRoundButton, .news-and-events--landing .newsEventsLanding .more-link .is-active.blueRoundButton + .redRoundButton, .newsEventsLanding .view-more-link .is-active.blueRoundButton + .redRoundButton, .newsEventsLanding .pager .is-active.redRoundButton + .redRoundButton, .newsEventsLanding .standard-more-link .is-active.redRoundButton + .redRoundButton, .newsEventsLanding .news-and-events--landing .more-link .is-active.redRoundButton + .redRoundButton, .news-and-events--landing .newsEventsLanding .more-link .is-active.redRoundButton + .redRoundButton, .newsEventsLanding .view-more-link .is-active.redRoundButton + .redRoundButton, .newsEventsLanding .pager .is-active.standard-more-link + .redRoundButton, .newsEventsLanding .standard-more-link .is-active.standard-more-link + .redRoundButton, .newsEventsLanding .news-and-events--landing .more-link .is-active.standard-more-link + .redRoundButton, .news-and-events--landing .newsEventsLanding .more-link .is-active.standard-more-link + .redRoundButton, .newsEventsLanding .view-more-link .is-active.standard-more-link + .redRoundButton, .newsEventsLanding .pager .news-and-events--landing .is-active.more-link + .redRoundButton, .news-and-events--landing .newsEventsLanding .pager .is-active.more-link + .redRoundButton, .newsEventsLanding .standard-more-link .news-and-events--landing .is-active.more-link + .redRoundButton, .news-and-events--landing .newsEventsLanding .standard-more-link .is-active.more-link + .redRoundButton, .newsEventsLanding .news-and-events--landing .more-link .is-active.more-link + .redRoundButton, .news-and-events--landing .newsEventsLanding .more-link .is-active.more-link + .redRoundButton, .newsEventsLanding .view-more-link .news-and-events--landing .is-active.more-link + .redRoundButton, .news-and-events--landing .newsEventsLanding .view-more-link .is-active.more-link + .redRoundButton, .newsEventsLanding .pager .is-active.view-more-link + .redRoundButton, .newsEventsLanding .standard-more-link .is-active.view-more-link + .redRoundButton, .newsEventsLanding .news-and-events--landing .more-link .is-active.view-more-link + .redRoundButton, .news-and-events--landing .newsEventsLanding .more-link .is-active.view-more-link + .redRoundButton, .newsEventsLanding .view-more-link .is-active.view-more-link + .redRoundButton, .newsEventsLanding .pager .pager__item.is-active + .standard-more-link, .newsEventsLanding .standard-more-link .pager__item.is-active + .standard-more-link, .newsEventsLanding .news-and-events--landing .more-link .pager__item.is-active + .standard-more-link, .news-and-events--landing .newsEventsLanding .more-link .pager__item.is-active + .standard-more-link, .newsEventsLanding .view-more-link .pager__item.is-active + .standard-more-link, .newsEventsLanding .pager .is-active.blueRoundButton + .standard-more-link, .newsEventsLanding .standard-more-link .is-active.blueRoundButton + .standard-more-link, .newsEventsLanding .news-and-events--landing .more-link .is-active.blueRoundButton + .standard-more-link, .news-and-events--landing .newsEventsLanding .more-link .is-active.blueRoundButton + .standard-more-link, .newsEventsLanding .view-more-link .is-active.blueRoundButton + .standard-more-link, .newsEventsLanding .pager .is-active.redRoundButton + .standard-more-link, .newsEventsLanding .standard-more-link .is-active.redRoundButton + .standard-more-link, .newsEventsLanding .news-and-events--landing .more-link .is-active.redRoundButton + .standard-more-link, .news-and-events--landing .newsEventsLanding .more-link .is-active.redRoundButton + .standard-more-link, .newsEventsLanding .view-more-link .is-active.redRoundButton + .standard-more-link, .newsEventsLanding .pager .is-active.standard-more-link + .standard-more-link, .newsEventsLanding .standard-more-link .is-active.standard-more-link + .standard-more-link, .newsEventsLanding .news-and-events--landing .more-link .is-active.standard-more-link + .standard-more-link, .news-and-events--landing .newsEventsLanding .more-link .is-active.standard-more-link + .standard-more-link, .newsEventsLanding .view-more-link .is-active.standard-more-link + .standard-more-link, .newsEventsLanding .pager .news-and-events--landing .is-active.more-link + .standard-more-link, .news-and-events--landing .newsEventsLanding .pager .is-active.more-link + .standard-more-link, .newsEventsLanding .standard-more-link .news-and-events--landing .is-active.more-link + .standard-more-link, .news-and-events--landing .newsEventsLanding .standard-more-link .is-active.more-link + .standard-more-link, .newsEventsLanding .news-and-events--landing .more-link .is-active.more-link + .standard-more-link, .news-and-events--landing .newsEventsLanding .more-link .is-active.more-link + .standard-more-link, .newsEventsLanding .view-more-link .news-and-events--landing .is-active.more-link + .standard-more-link, .news-and-events--landing .newsEventsLanding .view-more-link .is-active.more-link + .standard-more-link, .newsEventsLanding .pager .is-active.view-more-link + .standard-more-link, .newsEventsLanding .standard-more-link .is-active.view-more-link + .standard-more-link, .newsEventsLanding .news-and-events--landing .more-link .is-active.view-more-link + .standard-more-link, .news-and-events--landing .newsEventsLanding .more-link .is-active.view-more-link + .standard-more-link, .newsEventsLanding .view-more-link .is-active.view-more-link + .standard-more-link, .newsEventsLanding .pager .news-and-events--landing .pager__item.is-active + .more-link, .news-and-events--landing .newsEventsLanding .pager .pager__item.is-active + .more-link, .newsEventsLanding .standard-more-link .news-and-events--landing .pager__item.is-active + .more-link, .news-and-events--landing .newsEventsLanding .standard-more-link .pager__item.is-active + .more-link, .newsEventsLanding .news-and-events--landing .more-link .pager__item.is-active + .more-link, .news-and-events--landing .newsEventsLanding .more-link .pager__item.is-active + .more-link, .newsEventsLanding .view-more-link .news-and-events--landing .pager__item.is-active + .more-link, .news-and-events--landing .newsEventsLanding .view-more-link .pager__item.is-active + .more-link, .newsEventsLanding .pager .news-and-events--landing .is-active.blueRoundButton + .more-link, .news-and-events--landing .newsEventsLanding .pager .is-active.blueRoundButton + .more-link, .newsEventsLanding .standard-more-link .news-and-events--landing .is-active.blueRoundButton + .more-link, .news-and-events--landing .newsEventsLanding .standard-more-link .is-active.blueRoundButton + .more-link, .newsEventsLanding .news-and-events--landing .more-link .is-active.blueRoundButton + .more-link, .news-and-events--landing .newsEventsLanding .more-link .is-active.blueRoundButton + .more-link, .newsEventsLanding .view-more-link .news-and-events--landing .is-active.blueRoundButton + .more-link, .news-and-events--landing .newsEventsLanding .view-more-link .is-active.blueRoundButton + .more-link, .newsEventsLanding .pager .news-and-events--landing .is-active.redRoundButton + .more-link, .news-and-events--landing .newsEventsLanding .pager .is-active.redRoundButton + .more-link, .newsEventsLanding .standard-more-link .news-and-events--landing .is-active.redRoundButton + .more-link, .news-and-events--landing .newsEventsLanding .standard-more-link .is-active.redRoundButton + .more-link, .newsEventsLanding .news-and-events--landing .more-link .is-active.redRoundButton + .more-link, .news-and-events--landing .newsEventsLanding .more-link .is-active.redRoundButton + .more-link, .newsEventsLanding .view-more-link .news-and-events--landing .is-active.redRoundButton + .more-link, .news-and-events--landing .newsEventsLanding .view-more-link .is-active.redRoundButton + .more-link, .newsEventsLanding .pager .news-and-events--landing .is-active.standard-more-link + .more-link, .news-and-events--landing .newsEventsLanding .pager .is-active.standard-more-link + .more-link, .newsEventsLanding .standard-more-link .news-and-events--landing .is-active.standard-more-link + .more-link, .news-and-events--landing .newsEventsLanding .standard-more-link .is-active.standard-more-link + .more-link, .newsEventsLanding .news-and-events--landing .more-link .is-active.standard-more-link + .more-link, .news-and-events--landing .newsEventsLanding .more-link .is-active.standard-more-link + .more-link, .newsEventsLanding .view-more-link .news-and-events--landing .is-active.standard-more-link + .more-link, .news-and-events--landing .newsEventsLanding .view-more-link .is-active.standard-more-link + .more-link, .newsEventsLanding .pager .news-and-events--landing .is-active.more-link + .more-link, .news-and-events--landing .newsEventsLanding .pager .is-active.more-link + .more-link, .newsEventsLanding .standard-more-link .news-and-events--landing .is-active.more-link + .more-link, .news-and-events--landing .newsEventsLanding .standard-more-link .is-active.more-link + .more-link, .newsEventsLanding .news-and-events--landing .more-link .is-active.more-link + .more-link, .news-and-events--landing .newsEventsLanding .more-link .is-active.more-link + .more-link, .newsEventsLanding .view-more-link .news-and-events--landing .is-active.more-link + .more-link, .news-and-events--landing .newsEventsLanding .view-more-link .is-active.more-link + .more-link, .newsEventsLanding .pager .news-and-events--landing .is-active.view-more-link + .more-link, .news-and-events--landing .newsEventsLanding .pager .is-active.view-more-link + .more-link, .newsEventsLanding .standard-more-link .news-and-events--landing .is-active.view-more-link + .more-link, .news-and-events--landing .newsEventsLanding .standard-more-link .is-active.view-more-link + .more-link, .newsEventsLanding .news-and-events--landing .more-link .is-active.view-more-link + .more-link, .news-and-events--landing .newsEventsLanding .more-link .is-active.view-more-link + .more-link, .newsEventsLanding .view-more-link .news-and-events--landing .is-active.view-more-link + .more-link, .news-and-events--landing .newsEventsLanding .view-more-link .is-active.view-more-link + .more-link, .newsEventsLanding .pager .pager__item.is-active + .view-more-link, .newsEventsLanding .standard-more-link .pager__item.is-active + .view-more-link, .newsEventsLanding .news-and-events--landing .more-link .pager__item.is-active + .view-more-link, .news-and-events--landing .newsEventsLanding .more-link .pager__item.is-active + .view-more-link, .newsEventsLanding .view-more-link .pager__item.is-active + .view-more-link, .newsEventsLanding .pager .is-active.blueRoundButton + .view-more-link, .newsEventsLanding .standard-more-link .is-active.blueRoundButton + .view-more-link, .newsEventsLanding .news-and-events--landing .more-link .is-active.blueRoundButton + .view-more-link, .news-and-events--landing .newsEventsLanding .more-link .is-active.blueRoundButton + .view-more-link, .newsEventsLanding .view-more-link .is-active.blueRoundButton + .view-more-link, .newsEventsLanding .pager .is-active.redRoundButton + .view-more-link, .newsEventsLanding .standard-more-link .is-active.redRoundButton + .view-more-link, .newsEventsLanding .news-and-events--landing .more-link .is-active.redRoundButton + .view-more-link, .news-and-events--landing .newsEventsLanding .more-link .is-active.redRoundButton + .view-more-link, .newsEventsLanding .view-more-link .is-active.redRoundButton + .view-more-link, .newsEventsLanding .pager .is-active.standard-more-link + .view-more-link, .newsEventsLanding .standard-more-link .is-active.standard-more-link + .view-more-link, .newsEventsLanding .news-and-events--landing .more-link .is-active.standard-more-link + .view-more-link, .news-and-events--landing .newsEventsLanding .more-link .is-active.standard-more-link + .view-more-link, .newsEventsLanding .view-more-link .is-active.standard-more-link + .view-more-link, .newsEventsLanding .pager .news-and-events--landing .is-active.more-link + .view-more-link, .news-and-events--landing .newsEventsLanding .pager .is-active.more-link + .view-more-link, .newsEventsLanding .standard-more-link .news-and-events--landing .is-active.more-link + .view-more-link, .news-and-events--landing .newsEventsLanding .standard-more-link .is-active.more-link + .view-more-link, .newsEventsLanding .news-and-events--landing .more-link .is-active.more-link + .view-more-link, .news-and-events--landing .newsEventsLanding .more-link .is-active.more-link + .view-more-link, .newsEventsLanding .view-more-link .news-and-events--landing .is-active.more-link + .view-more-link, .news-and-events--landing .newsEventsLanding .view-more-link .is-active.more-link + .view-more-link, .newsEventsLanding .pager .is-active.view-more-link + .view-more-link, .newsEventsLanding .standard-more-link .is-active.view-more-link + .view-more-link, .newsEventsLanding .news-and-events--landing .more-link .is-active.view-more-link + .view-more-link, .news-and-events--landing .newsEventsLanding .more-link .is-active.view-more-link + .view-more-link, .newsEventsLanding .view-more-link .is-active.view-more-link + .view-more-link {
    display: inline-block;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 266, ../sass/_mixins.scss */
  .newsEventsLanding .pager__items .pager__item.pager-is-visible, .newsEventsLanding .pager__items .pager-is-visible.blueRoundButton, .newsEventsLanding .pager__items .pager-is-visible.redRoundButton, .newsEventsLanding .pager__items .pager-is-visible.standard-more-link, .newsEventsLanding .pager__items .news-and-events--landing .pager-is-visible.more-link, .news-and-events--landing .newsEventsLanding .pager__items .pager-is-visible.more-link, .newsEventsLanding .pager__items .pager-is-visible.view-more-link, .newsEventsLanding .pager .pager__item.pager-is-visible, .newsEventsLanding .standard-more-link .pager__item.pager-is-visible, .newsEventsLanding .news-and-events--landing .more-link .pager__item.pager-is-visible, .news-and-events--landing .newsEventsLanding .more-link .pager__item.pager-is-visible, .newsEventsLanding .view-more-link .pager__item.pager-is-visible, .newsEventsLanding .pager .pager-is-visible.blueRoundButton, .newsEventsLanding .standard-more-link .pager-is-visible.blueRoundButton, .newsEventsLanding .news-and-events--landing .more-link .pager-is-visible.blueRoundButton, .news-and-events--landing .newsEventsLanding .more-link .pager-is-visible.blueRoundButton, .newsEventsLanding .view-more-link .pager-is-visible.blueRoundButton, .newsEventsLanding .pager .pager-is-visible.redRoundButton, .newsEventsLanding .standard-more-link .pager-is-visible.redRoundButton, .newsEventsLanding .news-and-events--landing .more-link .pager-is-visible.redRoundButton, .news-and-events--landing .newsEventsLanding .more-link .pager-is-visible.redRoundButton, .newsEventsLanding .view-more-link .pager-is-visible.redRoundButton, .newsEventsLanding .pager .pager-is-visible.standard-more-link, .newsEventsLanding .standard-more-link .pager-is-visible.standard-more-link, .newsEventsLanding .news-and-events--landing .more-link .pager-is-visible.standard-more-link, .news-and-events--landing .newsEventsLanding .more-link .pager-is-visible.standard-more-link, .newsEventsLanding .view-more-link .pager-is-visible.standard-more-link, .newsEventsLanding .pager .news-and-events--landing .pager-is-visible.more-link, .news-and-events--landing .newsEventsLanding .pager .pager-is-visible.more-link, .newsEventsLanding .standard-more-link .news-and-events--landing .pager-is-visible.more-link, .news-and-events--landing .newsEventsLanding .standard-more-link .pager-is-visible.more-link, .newsEventsLanding .news-and-events--landing .more-link .pager-is-visible.more-link, .news-and-events--landing .newsEventsLanding .more-link .pager-is-visible.more-link, .newsEventsLanding .view-more-link .news-and-events--landing .pager-is-visible.more-link, .news-and-events--landing .newsEventsLanding .view-more-link .pager-is-visible.more-link, .newsEventsLanding .pager .pager-is-visible.view-more-link, .newsEventsLanding .standard-more-link .pager-is-visible.view-more-link, .newsEventsLanding .news-and-events--landing .more-link .pager-is-visible.view-more-link, .news-and-events--landing .newsEventsLanding .more-link .pager-is-visible.view-more-link, .newsEventsLanding .view-more-link .pager-is-visible.view-more-link {
    display: inline-block;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 271, ../sass/_mixins.scss */
  .newsEventsLanding .pager__items .pager__item.before-is-active, .newsEventsLanding .pager__items .before-is-active.blueRoundButton, .newsEventsLanding .pager__items .before-is-active.redRoundButton, .newsEventsLanding .pager__items .before-is-active.standard-more-link, .newsEventsLanding .pager__items .news-and-events--landing .before-is-active.more-link, .news-and-events--landing .newsEventsLanding .pager__items .before-is-active.more-link, .newsEventsLanding .pager__items .before-is-active.view-more-link, .newsEventsLanding .pager .pager__item.before-is-active, .newsEventsLanding .standard-more-link .pager__item.before-is-active, .newsEventsLanding .news-and-events--landing .more-link .pager__item.before-is-active, .news-and-events--landing .newsEventsLanding .more-link .pager__item.before-is-active, .newsEventsLanding .view-more-link .pager__item.before-is-active, .newsEventsLanding .pager .before-is-active.blueRoundButton, .newsEventsLanding .standard-more-link .before-is-active.blueRoundButton, .newsEventsLanding .news-and-events--landing .more-link .before-is-active.blueRoundButton, .news-and-events--landing .newsEventsLanding .more-link .before-is-active.blueRoundButton, .newsEventsLanding .view-more-link .before-is-active.blueRoundButton, .newsEventsLanding .pager .before-is-active.redRoundButton, .newsEventsLanding .standard-more-link .before-is-active.redRoundButton, .newsEventsLanding .news-and-events--landing .more-link .before-is-active.redRoundButton, .news-and-events--landing .newsEventsLanding .more-link .before-is-active.redRoundButton, .newsEventsLanding .view-more-link .before-is-active.redRoundButton, .newsEventsLanding .pager .before-is-active.standard-more-link, .newsEventsLanding .standard-more-link .before-is-active.standard-more-link, .newsEventsLanding .news-and-events--landing .more-link .before-is-active.standard-more-link, .news-and-events--landing .newsEventsLanding .more-link .before-is-active.standard-more-link, .newsEventsLanding .view-more-link .before-is-active.standard-more-link, .newsEventsLanding .pager .news-and-events--landing .before-is-active.more-link, .news-and-events--landing .newsEventsLanding .pager .before-is-active.more-link, .newsEventsLanding .standard-more-link .news-and-events--landing .before-is-active.more-link, .news-and-events--landing .newsEventsLanding .standard-more-link .before-is-active.more-link, .newsEventsLanding .news-and-events--landing .more-link .before-is-active.more-link, .news-and-events--landing .newsEventsLanding .more-link .before-is-active.more-link, .newsEventsLanding .view-more-link .news-and-events--landing .before-is-active.more-link, .news-and-events--landing .newsEventsLanding .view-more-link .before-is-active.more-link, .newsEventsLanding .pager .before-is-active.view-more-link, .newsEventsLanding .standard-more-link .before-is-active.view-more-link, .newsEventsLanding .news-and-events--landing .more-link .before-is-active.view-more-link, .news-and-events--landing .newsEventsLanding .more-link .before-is-active.view-more-link, .newsEventsLanding .view-more-link .before-is-active.view-more-link {
    display: inline-block;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 276, ../sass/_mixins.scss */
  .newsEventsLanding .pager__items .pager__item.before-is-active-last, .newsEventsLanding .pager__items .before-is-active-last.blueRoundButton, .newsEventsLanding .pager__items .before-is-active-last.redRoundButton, .newsEventsLanding .pager__items .before-is-active-last.standard-more-link, .newsEventsLanding .pager__items .news-and-events--landing .before-is-active-last.more-link, .news-and-events--landing .newsEventsLanding .pager__items .before-is-active-last.more-link, .newsEventsLanding .pager__items .before-is-active-last.view-more-link, .newsEventsLanding .pager .pager__item.before-is-active-last, .newsEventsLanding .standard-more-link .pager__item.before-is-active-last, .newsEventsLanding .news-and-events--landing .more-link .pager__item.before-is-active-last, .news-and-events--landing .newsEventsLanding .more-link .pager__item.before-is-active-last, .newsEventsLanding .view-more-link .pager__item.before-is-active-last, .newsEventsLanding .pager .before-is-active-last.blueRoundButton, .newsEventsLanding .standard-more-link .before-is-active-last.blueRoundButton, .newsEventsLanding .news-and-events--landing .more-link .before-is-active-last.blueRoundButton, .news-and-events--landing .newsEventsLanding .more-link .before-is-active-last.blueRoundButton, .newsEventsLanding .view-more-link .before-is-active-last.blueRoundButton, .newsEventsLanding .pager .before-is-active-last.redRoundButton, .newsEventsLanding .standard-more-link .before-is-active-last.redRoundButton, .newsEventsLanding .news-and-events--landing .more-link .before-is-active-last.redRoundButton, .news-and-events--landing .newsEventsLanding .more-link .before-is-active-last.redRoundButton, .newsEventsLanding .view-more-link .before-is-active-last.redRoundButton, .newsEventsLanding .pager .before-is-active-last.standard-more-link, .newsEventsLanding .standard-more-link .before-is-active-last.standard-more-link, .newsEventsLanding .news-and-events--landing .more-link .before-is-active-last.standard-more-link, .news-and-events--landing .newsEventsLanding .more-link .before-is-active-last.standard-more-link, .newsEventsLanding .view-more-link .before-is-active-last.standard-more-link, .newsEventsLanding .pager .news-and-events--landing .before-is-active-last.more-link, .news-and-events--landing .newsEventsLanding .pager .before-is-active-last.more-link, .newsEventsLanding .standard-more-link .news-and-events--landing .before-is-active-last.more-link, .news-and-events--landing .newsEventsLanding .standard-more-link .before-is-active-last.more-link, .newsEventsLanding .news-and-events--landing .more-link .before-is-active-last.more-link, .news-and-events--landing .newsEventsLanding .more-link .before-is-active-last.more-link, .newsEventsLanding .view-more-link .news-and-events--landing .before-is-active-last.more-link, .news-and-events--landing .newsEventsLanding .view-more-link .before-is-active-last.more-link, .newsEventsLanding .pager .before-is-active-last.view-more-link, .newsEventsLanding .standard-more-link .before-is-active-last.view-more-link, .newsEventsLanding .news-and-events--landing .more-link .before-is-active-last.view-more-link, .news-and-events--landing .newsEventsLanding .more-link .before-is-active-last.view-more-link, .newsEventsLanding .view-more-link .before-is-active-last.view-more-link {
    display: inline-block;
  }
}
/* line 281, ../sass/_mixins.scss */
.newsEventsLanding .pager__items .pager__item a:focus, .newsEventsLanding .pager__items .blueRoundButton a:focus, .newsEventsLanding .pager__items .redRoundButton a:focus, .newsEventsLanding .pager__items .standard-more-link a:focus, .newsEventsLanding .pager__items .news-and-events--landing .more-link a:focus, .news-and-events--landing .newsEventsLanding .pager__items .more-link a:focus, .newsEventsLanding .pager__items .view-more-link a:focus, .newsEventsLanding .pager__items .pager_item a:active, .newsEventsLanding .pager .pager__item a:focus, .newsEventsLanding .standard-more-link .pager__item a:focus, .newsEventsLanding .news-and-events--landing .more-link .pager__item a:focus, .news-and-events--landing .newsEventsLanding .more-link .pager__item a:focus, .newsEventsLanding .view-more-link .pager__item a:focus, .newsEventsLanding .pager .blueRoundButton a:focus, .newsEventsLanding .standard-more-link .blueRoundButton a:focus, .newsEventsLanding .news-and-events--landing .more-link .blueRoundButton a:focus, .news-and-events--landing .newsEventsLanding .more-link .blueRoundButton a:focus, .newsEventsLanding .view-more-link .blueRoundButton a:focus, .newsEventsLanding .pager .redRoundButton a:focus, .newsEventsLanding .standard-more-link .redRoundButton a:focus, .newsEventsLanding .news-and-events--landing .more-link .redRoundButton a:focus, .news-and-events--landing .newsEventsLanding .more-link .redRoundButton a:focus, .newsEventsLanding .view-more-link .redRoundButton a:focus, .newsEventsLanding .pager .standard-more-link a:focus, .newsEventsLanding .standard-more-link .standard-more-link a:focus, .newsEventsLanding .news-and-events--landing .more-link .standard-more-link a:focus, .news-and-events--landing .newsEventsLanding .more-link .standard-more-link a:focus, .newsEventsLanding .view-more-link .standard-more-link a:focus, .newsEventsLanding .pager .news-and-events--landing .more-link a:focus, .news-and-events--landing .newsEventsLanding .pager .more-link a:focus, .newsEventsLanding .standard-more-link .news-and-events--landing .more-link a:focus, .news-and-events--landing .newsEventsLanding .standard-more-link .more-link a:focus, .newsEventsLanding .news-and-events--landing .more-link .more-link a:focus, .news-and-events--landing .newsEventsLanding .more-link .more-link a:focus, .newsEventsLanding .view-more-link .news-and-events--landing .more-link a:focus, .news-and-events--landing .newsEventsLanding .view-more-link .more-link a:focus, .newsEventsLanding .pager .view-more-link a:focus, .newsEventsLanding .standard-more-link .view-more-link a:focus, .newsEventsLanding .news-and-events--landing .more-link .view-more-link a:focus, .news-and-events--landing .newsEventsLanding .more-link .view-more-link a:focus, .newsEventsLanding .view-more-link .view-more-link a:focus, .newsEventsLanding .pager .pager_item a:active, .newsEventsLanding .standard-more-link .pager_item a:active, .newsEventsLanding .news-and-events--landing .more-link .pager_item a:active, .news-and-events--landing .newsEventsLanding .more-link .pager_item a:active, .newsEventsLanding .view-more-link .pager_item a:active {
  outline: #bf0d2e dotted 3px !important;
}
/* line 285, ../sass/_mixins.scss */
.newsEventsLanding .pager__items .pager-first, .newsEventsLanding .pager .pager-first, .newsEventsLanding .standard-more-link .pager-first, .newsEventsLanding .news-and-events--landing .more-link .pager-first, .news-and-events--landing .newsEventsLanding .more-link .pager-first, .newsEventsLanding .view-more-link .pager-first {
  background-image: url("../images/Pagination Icons/png/dark-grey/angle-left-first solid.png");
  background-repeat: no-repeat;
  background-position: initial;
  background-position-x: center;
  background-position-y: center;
  background-size: contain;
  display: inline-block;
  width: 1em;
  height: 1em;
}
/* line 297, ../sass/_mixins.scss */
.newsEventsLanding .pager__items .pager__item--first:hover .pager-first, .newsEventsLanding .pager .pager__item--first:hover .pager-first, .newsEventsLanding .standard-more-link .pager__item--first:hover .pager-first, .newsEventsLanding .news-and-events--landing .more-link .pager__item--first:hover .pager-first, .news-and-events--landing .newsEventsLanding .more-link .pager__item--first:hover .pager-first, .newsEventsLanding .view-more-link .pager__item--first:hover .pager-first {
  background-image: url("../images/Pagination Icons/png/white/angle-left-first solid.png");
}
/* line 301, ../sass/_mixins.scss */
.newsEventsLanding .pager__items .pager-previous, .newsEventsLanding .pager .pager-previous, .newsEventsLanding .standard-more-link .pager-previous, .newsEventsLanding .news-and-events--landing .more-link .pager-previous, .news-and-events--landing .newsEventsLanding .more-link .pager-previous, .newsEventsLanding .view-more-link .pager-previous {
  background-image: url("../images/Pagination Icons/png/dark-grey/angle-left-prev solid.png");
  background-repeat: no-repeat;
  background-position: initial;
  background-position-x: center;
  background-position-y: center;
  background-size: contain;
  display: inline-block;
  width: 1em;
  height: 1em;
}
/* line 313, ../sass/_mixins.scss */
.newsEventsLanding .pager__items .pager__item--previous:hover .pager-previous, .newsEventsLanding .pager .pager__item--previous:hover .pager-previous, .newsEventsLanding .standard-more-link .pager__item--previous:hover .pager-previous, .newsEventsLanding .news-and-events--landing .more-link .pager__item--previous:hover .pager-previous, .news-and-events--landing .newsEventsLanding .more-link .pager__item--previous:hover .pager-previous, .newsEventsLanding .view-more-link .pager__item--previous:hover .pager-previous {
  background-image: url("../images/Pagination Icons/png/white/angle-left-prev solid.png");
}
/* line 318, ../sass/_mixins.scss */
.newsEventsLanding .pager__items .pager-next, .newsEventsLanding .pager .pager-next, .newsEventsLanding .standard-more-link .pager-next, .newsEventsLanding .news-and-events--landing .more-link .pager-next, .news-and-events--landing .newsEventsLanding .more-link .pager-next, .newsEventsLanding .view-more-link .pager-next {
  background-image: url("../images/Pagination Icons/png/dark-grey/angle-right-next solid.png");
  background-repeat: no-repeat;
  background-position: initial;
  background-position-x: center;
  background-position-y: center;
  background-size: contain;
  display: inline-block;
  width: 1em;
  height: 1em;
}
/* line 330, ../sass/_mixins.scss */
.newsEventsLanding .pager__items .pager__item--next:hover .pager-next, .newsEventsLanding .pager .pager__item--next:hover .pager-next, .newsEventsLanding .standard-more-link .pager__item--next:hover .pager-next, .newsEventsLanding .news-and-events--landing .more-link .pager__item--next:hover .pager-next, .news-and-events--landing .newsEventsLanding .more-link .pager__item--next:hover .pager-next, .newsEventsLanding .view-more-link .pager__item--next:hover .pager-next {
  background-image: url("../images/Pagination Icons/png/white/angle-right-next solid.png");
}
/* line 335, ../sass/_mixins.scss */
.newsEventsLanding .pager__items .pager-last, .newsEventsLanding .pager .pager-last, .newsEventsLanding .standard-more-link .pager-last, .newsEventsLanding .news-and-events--landing .more-link .pager-last, .news-and-events--landing .newsEventsLanding .more-link .pager-last, .newsEventsLanding .view-more-link .pager-last {
  background-image: url("../images/Pagination Icons/png/dark-grey/angle-right-last solid.png");
  background-repeat: no-repeat;
  background-position: initial;
  background-position-x: center;
  background-position-y: center;
  background-size: contain;
  display: inline-block;
  width: 1em;
  height: 1em;
}
/* line 347, ../sass/_mixins.scss */
.newsEventsLanding .pager__items .pager__item--last:hover .pager-last, .newsEventsLanding .pager .pager__item--last:hover .pager-last, .newsEventsLanding .standard-more-link .pager__item--last:hover .pager-last, .newsEventsLanding .news-and-events--landing .more-link .pager__item--last:hover .pager-last, .news-and-events--landing .newsEventsLanding .more-link .pager__item--last:hover .pager-last, .newsEventsLanding .view-more-link .pager__item--last:hover .pager-last {
  background-image: url("../images/Pagination Icons/png/white/angle-right-last solid.png");
}
/* line 691, ../sass/components/_landing_pages.scss */
.newsEventsLanding .result-summary {
  display: block;
  margin: 1em 0 1em 0;
  padding-left: 10px;
}
/* line 696, ../sass/components/_landing_pages.scss */
.newsEventsLanding .form-item-items-per-page {
  display: block;
  float: right;
  padding-right: 10px;
}
/* line 700, ../sass/components/_landing_pages.scss */
.newsEventsLanding .form-item-items-per-page label {
  display: inline-block;
}

/* line 707, ../sass/components/_landing_pages.scss */
.view-filters:after {
  border: none;
}

/* line 712, ../sass/components/_landing_pages.scss */
.viewFilterMultiselect .ui-state-hover,
.viewFilterMultiselect .ui-state-hover label,
.viewFilterMultiselect .ui-widget-content .ui-state-hover,
.viewFilterMultiselect .ui-widget-header .ui-state-hover,
.viewFilterMultiselect .ui-state-focus,
.viewFilterMultiselect .ui-widget-content .ui-state-focus,
.viewFilterMultiselect .ui-widget-header .ui-state-focus {
  background: #d7d7d7;
}

@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 728, ../sass/components/_landing_pages.scss */
  .news-and-events--landing h1 {
    text-align: left;
  }
}
/* line 733, ../sass/components/_landing_pages.scss */
.news-and-events--landing .bluesubhead, .news-and-events--landing .whitesubhead, .news-and-events--landing h2, .news-and-events--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .news-and-events--landing h1, .news-and-events--landing .contact-method-label {
  margin-top: 0.4em;
}
/* line 742, ../sass/components/_landing_pages.scss */
.news-and-events--landing .more-link.all-events a {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #850920;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #fff;
  padding: 0.8em 3em;
  display: table !important;
  background-image: none;
  display: inline-block !important;
}
@media all and (min-width: 1440px) {
  /* line 742, ../sass/components/_landing_pages.scss */
  .news-and-events--landing .more-link.all-events a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 742, ../sass/components/_landing_pages.scss */
  .news-and-events--landing .more-link.all-events a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 742, ../sass/components/_landing_pages.scss */
  .news-and-events--landing .more-link.all-events a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 742, ../sass/components/_landing_pages.scss */
  .news-and-events--landing .more-link.all-events a {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.news-and-events--landing .more-link.all-events a :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 742, ../sass/components/_landing_pages.scss */
  .news-and-events--landing .more-link.all-events a {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 742, ../sass/components/_landing_pages.scss */
  .news-and-events--landing .more-link.all-events a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 742, ../sass/components/_landing_pages.scss */
  .news-and-events--landing .more-link.all-events a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 742, ../sass/components/_landing_pages.scss */
  .news-and-events--landing .more-link.all-events a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 742, ../sass/components/_landing_pages.scss */
  .news-and-events--landing .more-link.all-events a {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.news-and-events--landing .more-link.all-events a:hover {
  background-color: #f6c163;
  border-color: #f6c163;
  color: #222;
  text-decoration: none;
}
/* line 2379, ../sass/_mixins.scss */
.news-and-events--landing .more-link.all-events a:focus, .news-and-events--landing .more-link.all-events a:active {
  outline: #fff dotted 3px !important;
}
/* line 753, ../sass/components/_landing_pages.scss */
.news-and-events--landing .topicFeatured .view-content {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 753, ../sass/components/_landing_pages.scss */
  .news-and-events--landing .topicFeatured .view-content {
    padding-left: 0;
    padding-right: 0;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 753, ../sass/components/_landing_pages.scss */
  .news-and-events--landing .topicFeatured .view-content {
    padding-left: 0;
    padding-right: 0;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 753, ../sass/components/_landing_pages.scss */
  .news-and-events--landing .topicFeatured .view-content {
    padding-left: 0;
    padding-right: 0;
  }
}
/* line 769, ../sass/components/_landing_pages.scss */
.news-and-events--landing .topicFeatured .view-content .views-row {
  margin-top: 0;
}
@media all and (min-width: 768px) {
  /* line 769, ../sass/components/_landing_pages.scss */
  .news-and-events--landing .topicFeatured .view-content .views-row {
    width: auto;
    margin-left: 0;
    margin-right: 0;
  }
}
/* line 783, ../sass/components/_landing_pages.scss */
.news-and-events--landing .topicLanding > .view-content > .views-infinite-scroll-content-wrapper {
  margin-top: 0;
}
@media all and (min-width: 768px) {
  /* line 783, ../sass/components/_landing_pages.scss */
  .news-and-events--landing .topicLanding > .view-content > .views-infinite-scroll-content-wrapper {
    width: auto;
    margin-left: 0;
    margin-right: 0;
  }
}
/* line 791, ../sass/components/_landing_pages.scss */
.news-and-events--landing .views-element-container > .topicLanding.view-display-id-block_2 > .view-header,
.news-and-events--landing .views-element-container > .topicLanding.view-display-id-block_2 > .view-header > .topicFeatured > .view-content {
  width: auto;
}
/* line 797, ../sass/components/_landing_pages.scss */
.news-and-events--landing .view-nhlbi-all-events.view-display-id-block_4 > .view-content,
.news-and-events--landing .views-element-container > .topicLanding > .view-content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -o-justify-content: flex-start;
  justify-content: flex-start;
  margin-top: 0;
  padding-bottom: 1em;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 797, ../sass/components/_landing_pages.scss */
  .news-and-events--landing .view-nhlbi-all-events.view-display-id-block_4 > .view-content,
  .news-and-events--landing .views-element-container > .topicLanding > .view-content {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    -ms-align-items: stretch;
    -o-align-items: stretch;
    align-items: stretch;
  }
}
/* line 812, ../sass/components/_landing_pages.scss */
.news-and-events--landing .landing-social {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -o-justify-content: flex-start;
  justify-content: flex-start;
  margin-top: 0;
  padding-bottom: 1em;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 812, ../sass/components/_landing_pages.scss */
  .news-and-events--landing .landing-social {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    -ms-align-items: stretch;
    -o-align-items: stretch;
    align-items: stretch;
  }
}
/* line 824, ../sass/components/_landing_pages.scss */
.news-and-events--landing .landing-social > .contact-container {
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-grow: 1;
  -o-flex-grow: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  margin: 1em 1em 0 0;
    /*

    @include bp-tablet-and-desktop {
      width: 40%;
      flex-basis: 40%;
      max-width: 40%;
    }
    */
}
@media all and (min-width: 1100px) {
  /* line 824, ../sass/components/_landing_pages.scss */
  .news-and-events--landing .landing-social > .contact-container {
    width: 32%;
    flex-basis: 32%;
    max-width: 32%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 824, ../sass/components/_landing_pages.scss */
  .news-and-events--landing .landing-social > .contact-container {
    width: auto;
    flex-basis: auto;
  }
}
/* line 852, ../sass/components/_landing_pages.scss */
.news-and-events--landing .view-nhlbi-all-events.view-display-id-block_4 > .view-content > .views-row,
.news-and-events--landing .views-element-container > .topicLanding > .view-content > .views-row {
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-grow: 1;
  -o-flex-grow: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin: 1em 1em 0 0;
}
@media all and (min-width: 1100px) {
  /* line 852, ../sass/components/_landing_pages.scss */
  .news-and-events--landing .view-nhlbi-all-events.view-display-id-block_4 > .view-content > .views-row,
  .news-and-events--landing .views-element-container > .topicLanding > .view-content > .views-row {
    width: 32%;
    flex-basis: 32%;
    max-width: 32%;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 852, ../sass/components/_landing_pages.scss */
  .news-and-events--landing .view-nhlbi-all-events.view-display-id-block_4 > .view-content > .views-row,
  .news-and-events--landing .views-element-container > .topicLanding > .view-content > .views-row {
    width: auto;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    margin-right: 0;
  }
}
@media all and (min-width: 1100px) {
  /* line 869, ../sass/components/_landing_pages.scss */
  .news-and-events--landing .view-nhlbi-all-events.view-display-id-block_4 > .view-content > .views-row:last-child,
  .news-and-events--landing .views-element-container > .topicLanding > .view-content > .views-row:last-child {
    margin-right: 0;
  }
}
/* line 877, ../sass/components/_landing_pages.scss */
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .content-container {
  margin-top: 1em;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 881, ../sass/components/_landing_pages.scss */
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .flexcontainer, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .related-ht-ser-container, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-sfa-card, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-speaker,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-executives, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-card-field, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-advisory-committees, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .contact-nhlbi-titleblock, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-cards, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-employment-opportunity-car, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .all-grants-foa-container,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-program-officers,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-individual-contact .field--name-field-contact-methods, .node--type-individual-contact .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-division.node--view-mode-full .field--name-field-contact-methods,
  .node--type-division.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods,
  .node--type-division.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-branch.node--view-mode-full .field--name-field-contact-methods,
  .node--type-branch.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods,
  .node--type-branch.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general.node--view-mode-full .field--name-field-contact-methods,
  .node--type-general.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods,
  .node--type-general.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods,
  .node--type-health-education-initiative.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods,
  .node--type-health-education-initiative.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-committee .field--name-field-card-text, .node--type-committee .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-card-text, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .landing-social, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-sfa-cards, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .locationMap.contact-location-map-container, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .locationMap, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .grants-and-training-card-wrapper, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .about-nhlbi-division-card-wrapper, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .hei-tools-icon-card-wrapper, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-grants-and-training-card, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-division-card, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-tool-icon-card, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-promotional-card, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-sv-promotional-cards, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-about-nhlbi-promotional-ca, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .strategic-vision-titleblock, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .ppg-titleblock-wrapper, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .ppg-guidelines-card-wrapper, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-human-subject-cards, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-section-card, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-highlight-card, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .health-topic-teaser-container, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .about-nhlbi-our-mission-wrapper, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard, .about-nhlbi-our-mission-wrapper .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-leadership > .director-bioCard, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ, .nhlbi-publications-and-resources--landing .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-health-consumer-nhlbi-publ,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi,
  .nhlbi-publications-and-resources--landing .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-health-professionals-nhlbi, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .publicationsBlock.view-nhlbi-publications > .view-content,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-publications, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .healthEducationBlock .standard-teaser, .healthEducationBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .systematicEvidenceReviewsBlock .view-content, .systematicEvidenceReviewsBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-content,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .clinicalPracticeGuidelinesBlock .view-content,
  .clinicalPracticeGuidelinesBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-content,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .publicationsAndFactSheetsBlock .view-content,
  .publicationsAndFactSheetsBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-content, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .rtFlexContainer, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .field--name-field-science-supplemental-page, .node--type-research-topic .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-science-supplemental-page, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .researchTopicPublications, .node--type-research-topic .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .researchTopicPublications, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard, .node--type-research-topic .field--name-field-content > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article.listTeaserCard, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser, .node--type-research-topic .field--name-field-content > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article.standard-teaser,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard,
  .node--type-research-topic .field--name-field-content > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article.newsEventsCard, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .esi-feature-card, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .featured-science-instance-teaser-container, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .sfa-teaser-container, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .training-opportunity-card .field--name-field-associated-people, .training-opportunity-card .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-associated-people, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-featured-training-opportun, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-career-stages, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-workforce-development-card, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-update.node--view-mode-executive-teaser, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .news-and-events-titleblock, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .contact-box > .field--name-field-contact-methods, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .leadership-container, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership, .leadership-container .leadership-deputy-director-container .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-additional-leadership, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .branch-leadership-container, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership, .branch-leadership-container .leadership-deputy-director-container .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-additional-leadership, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general .field--name-field-related-publications, .node--type-general .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-publications, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general .field--name-field-general-publications-rlt, .node--type-general .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-general-publications-rlt, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser, .node--type-general .field--name-field-general-publications-rlt > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general .field--name-field-related-publications > .field__item .standard-teaser, .node--type-general .field--name-field-related-publications > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .objective-text-container, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .objective-list-container, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-goal-card, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .strategic-vision-landing-goals-wrapper, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-principal-investigator .striped-container-wrapper, .node--type-principal-investigator .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .striped-container-wrapper, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-principal-investigator .striped-container, .node--type-principal-investigator .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .striped-container, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article,
  .news-and-events--landing .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article,
  .node--type-principal-investigator .news-and-events--landing .views-element-container > .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser.node--view-mode-short-teaser, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-awards, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .registerSocialContainer, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .eventdatesLocationType, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .news-article-container, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-feature-article.node--view-mode-press-release-teaser,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-press-release.node--view-mode-press-release-teaser,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-events.node--view-mode-press-release-teaser,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-feature-article.node--view-mode-hp-press-release-teaser,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-press-release.node--view-mode-hp-press-release-teaser,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-events.node--view-mode-hp-press-release-teaser,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-news-mention.node--view-mode-hp-press-release-teaser, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .news-header-container, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .contacts-container .field--name-field-contacts, .contacts-container .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contacts, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .publicationsBox .field--name-field-related-publications, .publicationsBox .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-publications, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-primary-featured-item, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-additional-featured-items, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .homepage-health-topics-container, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .homepage-mission-areas-container, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .homepage-location-container, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-alumni, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container, .node--type-nhlbi-publication.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publication-details-container,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container,
  .node--type-nhlbi-publication.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publication-details-container, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications, .node--type-nhlbi-publication.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-nhlbi-publications,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications,
  .node--type-nhlbi-publication.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-nhlbi-publications, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 885, ../sass/components/_landing_pages.scss */
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .flexcontainer .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .related-ht-ser-container .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-sfa-card .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-speaker .flexItemImage,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-executives .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-card-field .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-advisory-committees .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .contact-nhlbi-titleblock .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-cards .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-employment-opportunity-car .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .all-grants-foa-container .flexItemImage,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-program-officers .flexItemImage,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImage,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-individual-contact .field--name-field-contact-methods .flexItemImage, .node--type-individual-contact .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemImage,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemImage,
  .node--type-division.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemImage,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImage,
  .node--type-division.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemImage,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemImage,
  .node--type-branch.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemImage,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImage,
  .node--type-branch.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemImage,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemImage,
  .node--type-general.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemImage,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImage,
  .node--type-general.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemImage,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemImage,
  .node--type-health-education-initiative.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemImage,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImage,
  .node--type-health-education-initiative.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-committee .field--name-field-card-text .flexItemImage, .node--type-committee .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-card-text .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .landing-social .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-sfa-cards .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .locationMap.contact-location-map-container .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .locationMap .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .grants-and-training-card-wrapper .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .about-nhlbi-division-card-wrapper .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .hei-tools-icon-card-wrapper .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-grants-and-training-card .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-division-card .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-tool-icon-card .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-promotional-card .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-sv-promotional-cards .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-about-nhlbi-promotional-ca .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .strategic-vision-titleblock .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .ppg-titleblock-wrapper .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .ppg-guidelines-card-wrapper .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-human-subject-cards .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-section-card .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-highlight-card .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .health-topic-teaser-container .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .about-nhlbi-our-mission-wrapper .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImage, .about-nhlbi-our-mission-wrapper .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-leadership > .director-bioCard .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImage, .nhlbi-publications-and-resources--landing .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-health-consumer-nhlbi-publ .flexItemImage,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImage,
  .nhlbi-publications-and-resources--landing .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-health-professionals-nhlbi .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImage, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemImage,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImage,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .publicationsBlock.view-nhlbi-publications > .view-content .flexItemImage,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-publications .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .healthEducationBlock .standard-teaser .flexItemImage, .healthEducationBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .systematicEvidenceReviewsBlock .view-content .flexItemImage, .systematicEvidenceReviewsBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-content .flexItemImage,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .clinicalPracticeGuidelinesBlock .view-content .flexItemImage,
  .clinicalPracticeGuidelinesBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-content .flexItemImage,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .publicationsAndFactSheetsBlock .view-content .flexItemImage,
  .publicationsAndFactSheetsBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-content .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .rtFlexContainer .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImage, .node--type-research-topic .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-science-supplemental-page .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .researchTopicPublications .flexItemImage, .node--type-research-topic .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .researchTopicPublications .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemImage, .node--type-research-topic .field--name-field-content > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article.listTeaserCard .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImage, .node--type-research-topic .field--name-field-content > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article.standard-teaser .flexItemImage,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImage,
  .node--type-research-topic .field--name-field-content > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article.newsEventsCard .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .esi-feature-card .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .featured-science-instance-teaser-container .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .sfa-teaser-container .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .training-opportunity-card .field--name-field-associated-people .flexItemImage, .training-opportunity-card .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-associated-people .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-featured-training-opportun .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-career-stages .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-workforce-development-card .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-update.node--view-mode-executive-teaser .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .news-and-events-titleblock .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .contact-box > .field--name-field-contact-methods .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .leadership-container .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImage, .leadership-container .leadership-deputy-director-container .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-additional-leadership .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .branch-leadership-container .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImage, .branch-leadership-container .leadership-deputy-director-container .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-additional-leadership .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general .field--name-field-related-publications .flexItemImage, .node--type-general .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-publications .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general .field--name-field-general-publications-rlt .flexItemImage, .node--type-general .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-general-publications-rlt .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImage, .node--type-general .field--name-field-general-publications-rlt > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImage, .node--type-general .field--name-field-related-publications > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .objective-text-container .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .objective-list-container .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-goal-card .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .strategic-vision-landing-goals-wrapper .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-principal-investigator .striped-container-wrapper .flexItemImage, .node--type-principal-investigator .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .striped-container-wrapper .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-principal-investigator .striped-container .flexItemImage, .node--type-principal-investigator .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .striped-container .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImage, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article .flexItemImage,
  .news-and-events--landing .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article .flexItemImage,
  .node--type-principal-investigator .news-and-events--landing .views-element-container > .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImage, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-awards .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .registerSocialContainer .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .eventdatesLocationType .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .news-article-container .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImage,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-press-release.node--view-mode-press-release-teaser .flexItemImage,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-events.node--view-mode-press-release-teaser .flexItemImage,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImage,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImage,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImage,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .news-header-container .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .contacts-container .field--name-field-contacts .flexItemImage, .contacts-container .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contacts .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .publicationsBox .field--name-field-related-publications .flexItemImage, .publicationsBox .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-publications .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-primary-featured-item .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-additional-featured-items .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .homepage-health-topics-container .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .homepage-mission-areas-container .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .homepage-location-container .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-alumni .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemImage, .node--type-nhlbi-publication.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publication-details-container .flexItemImage,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemImage,
  .node--type-nhlbi-publication.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publication-details-container .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemImage, .node--type-nhlbi-publication.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-nhlbi-publications .flexItemImage,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemImage,
  .node--type-nhlbi-publication.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-nhlbi-publications .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImage, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemImage,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImage,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .flexcontainer .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .related-ht-ser-container .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-sfa-card .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-speaker .flexItemImageHalf,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-executives .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-card-field .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-advisory-committees .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .contact-nhlbi-titleblock .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-cards .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-employment-opportunity-car .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .all-grants-foa-container .flexItemImageHalf,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-program-officers .flexItemImageHalf,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageHalf,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-individual-contact .field--name-field-contact-methods .flexItemImageHalf, .node--type-individual-contact .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemImageHalf,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-division.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemImageHalf,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-division.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemImageHalf,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-branch.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemImageHalf,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-branch.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemImageHalf,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-general.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemImageHalf,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-general.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemImageHalf,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-health-education-initiative.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemImageHalf,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-health-education-initiative.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-committee .field--name-field-card-text .flexItemImageHalf, .node--type-committee .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-card-text .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .landing-social .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-sfa-cards .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .locationMap.contact-location-map-container .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .locationMap .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .grants-and-training-card-wrapper .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .about-nhlbi-division-card-wrapper .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .hei-tools-icon-card-wrapper .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-grants-and-training-card .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-division-card .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-tool-icon-card .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-promotional-card .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-sv-promotional-cards .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-about-nhlbi-promotional-ca .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .strategic-vision-titleblock .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .ppg-titleblock-wrapper .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .ppg-guidelines-card-wrapper .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-human-subject-cards .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-section-card .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-highlight-card .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .health-topic-teaser-container .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .about-nhlbi-our-mission-wrapper .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageHalf, .about-nhlbi-our-mission-wrapper .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-leadership > .director-bioCard .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageHalf, .nhlbi-publications-and-resources--landing .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-health-consumer-nhlbi-publ .flexItemImageHalf,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageHalf,
  .nhlbi-publications-and-resources--landing .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-health-professionals-nhlbi .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageHalf, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemImageHalf,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageHalf,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .publicationsBlock.view-nhlbi-publications > .view-content .flexItemImageHalf,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-publications .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .healthEducationBlock .standard-teaser .flexItemImageHalf, .healthEducationBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .systematicEvidenceReviewsBlock .view-content .flexItemImageHalf, .systematicEvidenceReviewsBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-content .flexItemImageHalf,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .clinicalPracticeGuidelinesBlock .view-content .flexItemImageHalf,
  .clinicalPracticeGuidelinesBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-content .flexItemImageHalf,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .publicationsAndFactSheetsBlock .view-content .flexItemImageHalf,
  .publicationsAndFactSheetsBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-content .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .rtFlexContainer .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageHalf, .node--type-research-topic .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-science-supplemental-page .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .researchTopicPublications .flexItemImageHalf, .node--type-research-topic .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .researchTopicPublications .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemImageHalf, .node--type-research-topic .field--name-field-content > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article.listTeaserCard .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageHalf, .node--type-research-topic .field--name-field-content > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article.standard-teaser .flexItemImageHalf,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageHalf,
  .node--type-research-topic .field--name-field-content > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article.newsEventsCard .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .esi-feature-card .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .featured-science-instance-teaser-container .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .sfa-teaser-container .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .training-opportunity-card .field--name-field-associated-people .flexItemImageHalf, .training-opportunity-card .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-associated-people .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-featured-training-opportun .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-career-stages .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-workforce-development-card .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-update.node--view-mode-executive-teaser .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .news-and-events-titleblock .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .contact-box > .field--name-field-contact-methods .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .leadership-container .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageHalf, .leadership-container .leadership-deputy-director-container .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-additional-leadership .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .branch-leadership-container .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageHalf, .branch-leadership-container .leadership-deputy-director-container .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-additional-leadership .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general .field--name-field-related-publications .flexItemImageHalf, .node--type-general .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-publications .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general .field--name-field-general-publications-rlt .flexItemImageHalf, .node--type-general .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-general-publications-rlt .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageHalf, .node--type-general .field--name-field-general-publications-rlt > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageHalf, .node--type-general .field--name-field-related-publications > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .objective-text-container .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .objective-list-container .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-goal-card .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .strategic-vision-landing-goals-wrapper .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-principal-investigator .striped-container-wrapper .flexItemImageHalf, .node--type-principal-investigator .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .striped-container-wrapper .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-principal-investigator .striped-container .flexItemImageHalf, .node--type-principal-investigator .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .striped-container .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImageHalf, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article .flexItemImageHalf,
  .news-and-events--landing .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article .flexItemImageHalf,
  .node--type-principal-investigator .news-and-events--landing .views-element-container > .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageHalf, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-awards .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .registerSocialContainer .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .eventdatesLocationType .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .news-article-container .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageHalf,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageHalf,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-events.node--view-mode-press-release-teaser .flexItemImageHalf,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageHalf,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageHalf,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageHalf,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .news-header-container .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .contacts-container .field--name-field-contacts .flexItemImageHalf, .contacts-container .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contacts .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .publicationsBox .field--name-field-related-publications .flexItemImageHalf, .publicationsBox .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-publications .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-primary-featured-item .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-additional-featured-items .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .homepage-health-topics-container .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .homepage-mission-areas-container .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .homepage-location-container .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-alumni .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemImageHalf, .node--type-nhlbi-publication.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publication-details-container .flexItemImageHalf,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemImageHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publication-details-container .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemImageHalf, .node--type-nhlbi-publication.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-nhlbi-publications .flexItemImageHalf,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemImageHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-nhlbi-publications .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageHalf, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemImageHalf,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .flexcontainer .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .related-ht-ser-container .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-sfa-card .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-speaker .flexItemImageTenth,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-executives .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-card-field .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-advisory-committees .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .contact-nhlbi-titleblock .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-cards .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-employment-opportunity-car .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .all-grants-foa-container .flexItemImageTenth,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-program-officers .flexItemImageTenth,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageTenth,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-individual-contact .field--name-field-contact-methods .flexItemImageTenth, .node--type-individual-contact .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemImageTenth,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-division.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemImageTenth,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-division.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemImageTenth,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-branch.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemImageTenth,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-branch.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemImageTenth,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-general.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemImageTenth,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-general.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemImageTenth,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-health-education-initiative.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemImageTenth,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-health-education-initiative.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-committee .field--name-field-card-text .flexItemImageTenth, .node--type-committee .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-card-text .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .landing-social .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-sfa-cards .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .locationMap.contact-location-map-container .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .locationMap .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .grants-and-training-card-wrapper .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .about-nhlbi-division-card-wrapper .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .hei-tools-icon-card-wrapper .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-grants-and-training-card .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-division-card .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-tool-icon-card .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-promotional-card .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-sv-promotional-cards .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-about-nhlbi-promotional-ca .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .strategic-vision-titleblock .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .ppg-titleblock-wrapper .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .ppg-guidelines-card-wrapper .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-human-subject-cards .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-section-card .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-highlight-card .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .health-topic-teaser-container .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .about-nhlbi-our-mission-wrapper .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageTenth, .about-nhlbi-our-mission-wrapper .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-leadership > .director-bioCard .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageTenth, .nhlbi-publications-and-resources--landing .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-health-consumer-nhlbi-publ .flexItemImageTenth,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageTenth,
  .nhlbi-publications-and-resources--landing .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-health-professionals-nhlbi .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageTenth, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemImageTenth,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageTenth,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .publicationsBlock.view-nhlbi-publications > .view-content .flexItemImageTenth,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-publications .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .healthEducationBlock .standard-teaser .flexItemImageTenth, .healthEducationBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .systematicEvidenceReviewsBlock .view-content .flexItemImageTenth, .systematicEvidenceReviewsBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-content .flexItemImageTenth,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .clinicalPracticeGuidelinesBlock .view-content .flexItemImageTenth,
  .clinicalPracticeGuidelinesBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-content .flexItemImageTenth,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .publicationsAndFactSheetsBlock .view-content .flexItemImageTenth,
  .publicationsAndFactSheetsBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-content .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .rtFlexContainer .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageTenth, .node--type-research-topic .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-science-supplemental-page .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .researchTopicPublications .flexItemImageTenth, .node--type-research-topic .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .researchTopicPublications .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemImageTenth, .node--type-research-topic .field--name-field-content > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article.listTeaserCard .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageTenth, .node--type-research-topic .field--name-field-content > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article.standard-teaser .flexItemImageTenth,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageTenth,
  .node--type-research-topic .field--name-field-content > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article.newsEventsCard .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .esi-feature-card .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .featured-science-instance-teaser-container .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .sfa-teaser-container .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .training-opportunity-card .field--name-field-associated-people .flexItemImageTenth, .training-opportunity-card .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-associated-people .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-featured-training-opportun .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-career-stages .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-workforce-development-card .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-update.node--view-mode-executive-teaser .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .news-and-events-titleblock .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .contact-box > .field--name-field-contact-methods .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .leadership-container .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageTenth, .leadership-container .leadership-deputy-director-container .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-additional-leadership .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .branch-leadership-container .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageTenth, .branch-leadership-container .leadership-deputy-director-container .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-additional-leadership .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general .field--name-field-related-publications .flexItemImageTenth, .node--type-general .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-publications .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general .field--name-field-general-publications-rlt .flexItemImageTenth, .node--type-general .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-general-publications-rlt .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageTenth, .node--type-general .field--name-field-general-publications-rlt > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageTenth, .node--type-general .field--name-field-related-publications > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .objective-text-container .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .objective-list-container .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-goal-card .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .strategic-vision-landing-goals-wrapper .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-principal-investigator .striped-container-wrapper .flexItemImageTenth, .node--type-principal-investigator .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .striped-container-wrapper .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-principal-investigator .striped-container .flexItemImageTenth, .node--type-principal-investigator .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .striped-container .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImageTenth, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article .flexItemImageTenth,
  .news-and-events--landing .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article .flexItemImageTenth,
  .node--type-principal-investigator .news-and-events--landing .views-element-container > .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageTenth, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-awards .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .registerSocialContainer .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .eventdatesLocationType .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .news-article-container .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageTenth,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageTenth,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-events.node--view-mode-press-release-teaser .flexItemImageTenth,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageTenth,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageTenth,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageTenth,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .news-header-container .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .contacts-container .field--name-field-contacts .flexItemImageTenth, .contacts-container .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contacts .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .publicationsBox .field--name-field-related-publications .flexItemImageTenth, .publicationsBox .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-publications .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-primary-featured-item .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-additional-featured-items .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .homepage-health-topics-container .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .homepage-mission-areas-container .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .homepage-location-container .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-alumni .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemImageTenth, .node--type-nhlbi-publication.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publication-details-container .flexItemImageTenth,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemImageTenth,
  .node--type-nhlbi-publication.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publication-details-container .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemImageTenth, .node--type-nhlbi-publication.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-nhlbi-publications .flexItemImageTenth,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemImageTenth,
  .node--type-nhlbi-publication.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-nhlbi-publications .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageTenth, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemImageTenth,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageTenth,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .flexcontainer .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .related-ht-ser-container .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-sfa-card .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-speaker .flexItemImageFourth,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-executives .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-card-field .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-advisory-committees .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .contact-nhlbi-titleblock .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-cards .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-employment-opportunity-car .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .all-grants-foa-container .flexItemImageFourth,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-program-officers .flexItemImageFourth,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageFourth,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-individual-contact .field--name-field-contact-methods .flexItemImageFourth, .node--type-individual-contact .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemImageFourth,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-division.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemImageFourth,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-division.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemImageFourth,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-branch.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemImageFourth,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-branch.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemImageFourth,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-general.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemImageFourth,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-general.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemImageFourth,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-health-education-initiative.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemImageFourth,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-health-education-initiative.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-committee .field--name-field-card-text .flexItemImageFourth, .node--type-committee .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-card-text .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .landing-social .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-sfa-cards .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .locationMap.contact-location-map-container .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .locationMap .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .grants-and-training-card-wrapper .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .about-nhlbi-division-card-wrapper .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .hei-tools-icon-card-wrapper .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-grants-and-training-card .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-division-card .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-tool-icon-card .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-promotional-card .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-sv-promotional-cards .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-about-nhlbi-promotional-ca .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .strategic-vision-titleblock .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .ppg-titleblock-wrapper .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .ppg-guidelines-card-wrapper .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-human-subject-cards .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-section-card .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-highlight-card .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .health-topic-teaser-container .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .about-nhlbi-our-mission-wrapper .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageFourth, .about-nhlbi-our-mission-wrapper .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-leadership > .director-bioCard .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageFourth, .nhlbi-publications-and-resources--landing .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-health-consumer-nhlbi-publ .flexItemImageFourth,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageFourth,
  .nhlbi-publications-and-resources--landing .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-health-professionals-nhlbi .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageFourth, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemImageFourth,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageFourth,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .publicationsBlock.view-nhlbi-publications > .view-content .flexItemImageFourth,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-publications .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .healthEducationBlock .standard-teaser .flexItemImageFourth, .healthEducationBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .systematicEvidenceReviewsBlock .view-content .flexItemImageFourth, .systematicEvidenceReviewsBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-content .flexItemImageFourth,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .clinicalPracticeGuidelinesBlock .view-content .flexItemImageFourth,
  .clinicalPracticeGuidelinesBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-content .flexItemImageFourth,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .publicationsAndFactSheetsBlock .view-content .flexItemImageFourth,
  .publicationsAndFactSheetsBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-content .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .rtFlexContainer .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageFourth, .node--type-research-topic .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-science-supplemental-page .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .researchTopicPublications .flexItemImageFourth, .node--type-research-topic .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .researchTopicPublications .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemImageFourth, .node--type-research-topic .field--name-field-content > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article.listTeaserCard .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageFourth, .node--type-research-topic .field--name-field-content > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article.standard-teaser .flexItemImageFourth,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageFourth,
  .node--type-research-topic .field--name-field-content > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article.newsEventsCard .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .esi-feature-card .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .featured-science-instance-teaser-container .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .sfa-teaser-container .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .training-opportunity-card .field--name-field-associated-people .flexItemImageFourth, .training-opportunity-card .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-associated-people .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-featured-training-opportun .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-career-stages .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-workforce-development-card .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-update.node--view-mode-executive-teaser .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .news-and-events-titleblock .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .contact-box > .field--name-field-contact-methods .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .leadership-container .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageFourth, .leadership-container .leadership-deputy-director-container .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-additional-leadership .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .branch-leadership-container .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageFourth, .branch-leadership-container .leadership-deputy-director-container .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-additional-leadership .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general .field--name-field-related-publications .flexItemImageFourth, .node--type-general .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-publications .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general .field--name-field-general-publications-rlt .flexItemImageFourth, .node--type-general .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-general-publications-rlt .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageFourth, .node--type-general .field--name-field-general-publications-rlt > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageFourth, .node--type-general .field--name-field-related-publications > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .objective-text-container .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .objective-list-container .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-goal-card .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .strategic-vision-landing-goals-wrapper .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-principal-investigator .striped-container-wrapper .flexItemImageFourth, .node--type-principal-investigator .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .striped-container-wrapper .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-principal-investigator .striped-container .flexItemImageFourth, .node--type-principal-investigator .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .striped-container .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImageFourth, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article .flexItemImageFourth,
  .news-and-events--landing .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article .flexItemImageFourth,
  .node--type-principal-investigator .news-and-events--landing .views-element-container > .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageFourth, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-awards .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .registerSocialContainer .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .eventdatesLocationType .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .news-article-container .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageFourth,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageFourth,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-events.node--view-mode-press-release-teaser .flexItemImageFourth,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageFourth,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageFourth,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageFourth,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .news-header-container .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .contacts-container .field--name-field-contacts .flexItemImageFourth, .contacts-container .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contacts .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .publicationsBox .field--name-field-related-publications .flexItemImageFourth, .publicationsBox .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-publications .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-primary-featured-item .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-additional-featured-items .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .homepage-health-topics-container .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .homepage-mission-areas-container .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .homepage-location-container .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-alumni .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemImageFourth, .node--type-nhlbi-publication.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publication-details-container .flexItemImageFourth,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemImageFourth,
  .node--type-nhlbi-publication.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publication-details-container .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemImageFourth, .node--type-nhlbi-publication.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-nhlbi-publications .flexItemImageFourth,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemImageFourth,
  .node--type-nhlbi-publication.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-nhlbi-publications .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageFourth, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemImageFourth,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageFourth,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .flexcontainer .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .related-ht-ser-container .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-sfa-card .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-speaker .flexItemImageThird,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-executives .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-card-field .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-advisory-committees .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .contact-nhlbi-titleblock .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-cards .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-employment-opportunity-car .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .all-grants-foa-container .flexItemImageThird,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-program-officers .flexItemImageThird,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageThird,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-individual-contact .field--name-field-contact-methods .flexItemImageThird, .node--type-individual-contact .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemImageThird,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemImageThird,
  .node--type-division.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemImageThird,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThird,
  .node--type-division.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemImageThird,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemImageThird,
  .node--type-branch.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemImageThird,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThird,
  .node--type-branch.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemImageThird,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemImageThird,
  .node--type-general.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemImageThird,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThird,
  .node--type-general.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemImageThird,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemImageThird,
  .node--type-health-education-initiative.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemImageThird,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThird,
  .node--type-health-education-initiative.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-committee .field--name-field-card-text .flexItemImageThird, .node--type-committee .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-card-text .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .landing-social .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-sfa-cards .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .locationMap.contact-location-map-container .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .locationMap .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .grants-and-training-card-wrapper .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .about-nhlbi-division-card-wrapper .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .hei-tools-icon-card-wrapper .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-grants-and-training-card .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-division-card .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-tool-icon-card .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-promotional-card .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-sv-promotional-cards .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-about-nhlbi-promotional-ca .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .strategic-vision-titleblock .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .ppg-titleblock-wrapper .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .ppg-guidelines-card-wrapper .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-human-subject-cards .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-section-card .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-highlight-card .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .health-topic-teaser-container .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .about-nhlbi-our-mission-wrapper .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageThird, .about-nhlbi-our-mission-wrapper .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-leadership > .director-bioCard .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageThird, .nhlbi-publications-and-resources--landing .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-health-consumer-nhlbi-publ .flexItemImageThird,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageThird,
  .nhlbi-publications-and-resources--landing .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-health-professionals-nhlbi .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageThird, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemImageThird,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageThird,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .publicationsBlock.view-nhlbi-publications > .view-content .flexItemImageThird,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-publications .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .healthEducationBlock .standard-teaser .flexItemImageThird, .healthEducationBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .systematicEvidenceReviewsBlock .view-content .flexItemImageThird, .systematicEvidenceReviewsBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-content .flexItemImageThird,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .clinicalPracticeGuidelinesBlock .view-content .flexItemImageThird,
  .clinicalPracticeGuidelinesBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-content .flexItemImageThird,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .publicationsAndFactSheetsBlock .view-content .flexItemImageThird,
  .publicationsAndFactSheetsBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-content .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .rtFlexContainer .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageThird, .node--type-research-topic .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-science-supplemental-page .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .researchTopicPublications .flexItemImageThird, .node--type-research-topic .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .researchTopicPublications .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemImageThird, .node--type-research-topic .field--name-field-content > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article.listTeaserCard .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageThird, .node--type-research-topic .field--name-field-content > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article.standard-teaser .flexItemImageThird,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageThird,
  .node--type-research-topic .field--name-field-content > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article.newsEventsCard .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .esi-feature-card .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .featured-science-instance-teaser-container .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .sfa-teaser-container .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .training-opportunity-card .field--name-field-associated-people .flexItemImageThird, .training-opportunity-card .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-associated-people .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-featured-training-opportun .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-career-stages .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-workforce-development-card .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-update.node--view-mode-executive-teaser .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .news-and-events-titleblock .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .contact-box > .field--name-field-contact-methods .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .leadership-container .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageThird, .leadership-container .leadership-deputy-director-container .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-additional-leadership .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .branch-leadership-container .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageThird, .branch-leadership-container .leadership-deputy-director-container .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-additional-leadership .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general .field--name-field-related-publications .flexItemImageThird, .node--type-general .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-publications .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general .field--name-field-general-publications-rlt .flexItemImageThird, .node--type-general .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-general-publications-rlt .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageThird, .node--type-general .field--name-field-general-publications-rlt > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageThird, .node--type-general .field--name-field-related-publications > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .objective-text-container .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .objective-list-container .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-goal-card .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .strategic-vision-landing-goals-wrapper .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-principal-investigator .striped-container-wrapper .flexItemImageThird, .node--type-principal-investigator .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .striped-container-wrapper .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-principal-investigator .striped-container .flexItemImageThird, .node--type-principal-investigator .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .striped-container .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImageThird, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article .flexItemImageThird,
  .news-and-events--landing .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article .flexItemImageThird,
  .node--type-principal-investigator .news-and-events--landing .views-element-container > .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageThird, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-awards .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .registerSocialContainer .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .eventdatesLocationType .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .news-article-container .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageThird,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageThird,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-events.node--view-mode-press-release-teaser .flexItemImageThird,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageThird,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageThird,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageThird,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .news-header-container .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .contacts-container .field--name-field-contacts .flexItemImageThird, .contacts-container .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contacts .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .publicationsBox .field--name-field-related-publications .flexItemImageThird, .publicationsBox .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-publications .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-primary-featured-item .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-additional-featured-items .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .homepage-health-topics-container .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .homepage-mission-areas-container .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .homepage-location-container .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-alumni .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemImageThird, .node--type-nhlbi-publication.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publication-details-container .flexItemImageThird,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemImageThird,
  .node--type-nhlbi-publication.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publication-details-container .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemImageThird, .node--type-nhlbi-publication.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-nhlbi-publications .flexItemImageThird,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemImageThird,
  .node--type-nhlbi-publication.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-nhlbi-publications .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageThird, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemImageThird,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageThird,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .flexcontainer .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .related-ht-ser-container .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-sfa-card .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-speaker .flexItemImageThirdHalf,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-executives .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-card-field .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-advisory-committees .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .contact-nhlbi-titleblock .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-cards .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-employment-opportunity-car .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .all-grants-foa-container .flexItemImageThirdHalf,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-program-officers .flexItemImageThirdHalf,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageThirdHalf,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-individual-contact .field--name-field-contact-methods .flexItemImageThirdHalf, .node--type-individual-contact .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemImageThirdHalf,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-division.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemImageThirdHalf,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-division.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemImageThirdHalf,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-branch.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemImageThirdHalf,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-branch.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemImageThirdHalf,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-general.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemImageThirdHalf,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-general.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemImageThirdHalf,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-health-education-initiative.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemImageThirdHalf,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-health-education-initiative.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-committee .field--name-field-card-text .flexItemImageThirdHalf, .node--type-committee .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-card-text .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .landing-social .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-sfa-cards .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .locationMap.contact-location-map-container .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .locationMap .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .grants-and-training-card-wrapper .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .about-nhlbi-division-card-wrapper .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .hei-tools-icon-card-wrapper .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-grants-and-training-card .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-division-card .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-tool-icon-card .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-promotional-card .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-sv-promotional-cards .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-about-nhlbi-promotional-ca .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .strategic-vision-titleblock .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .ppg-titleblock-wrapper .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .ppg-guidelines-card-wrapper .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-human-subject-cards .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-section-card .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-highlight-card .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .health-topic-teaser-container .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .about-nhlbi-our-mission-wrapper .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageThirdHalf, .about-nhlbi-our-mission-wrapper .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-leadership > .director-bioCard .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageThirdHalf, .nhlbi-publications-and-resources--landing .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-health-consumer-nhlbi-publ .flexItemImageThirdHalf,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageThirdHalf,
  .nhlbi-publications-and-resources--landing .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-health-professionals-nhlbi .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageThirdHalf, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemImageThirdHalf,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageThirdHalf,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .publicationsBlock.view-nhlbi-publications > .view-content .flexItemImageThirdHalf,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-publications .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .healthEducationBlock .standard-teaser .flexItemImageThirdHalf, .healthEducationBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .systematicEvidenceReviewsBlock .view-content .flexItemImageThirdHalf, .systematicEvidenceReviewsBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-content .flexItemImageThirdHalf,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .clinicalPracticeGuidelinesBlock .view-content .flexItemImageThirdHalf,
  .clinicalPracticeGuidelinesBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-content .flexItemImageThirdHalf,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .publicationsAndFactSheetsBlock .view-content .flexItemImageThirdHalf,
  .publicationsAndFactSheetsBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-content .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .rtFlexContainer .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageThirdHalf, .node--type-research-topic .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-science-supplemental-page .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .researchTopicPublications .flexItemImageThirdHalf, .node--type-research-topic .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .researchTopicPublications .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemImageThirdHalf, .node--type-research-topic .field--name-field-content > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article.listTeaserCard .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageThirdHalf, .node--type-research-topic .field--name-field-content > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article.standard-teaser .flexItemImageThirdHalf,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageThirdHalf,
  .node--type-research-topic .field--name-field-content > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article.newsEventsCard .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .esi-feature-card .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .featured-science-instance-teaser-container .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .sfa-teaser-container .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .training-opportunity-card .field--name-field-associated-people .flexItemImageThirdHalf, .training-opportunity-card .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-associated-people .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-featured-training-opportun .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-career-stages .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-workforce-development-card .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-update.node--view-mode-executive-teaser .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .news-and-events-titleblock .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .contact-box > .field--name-field-contact-methods .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .leadership-container .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageThirdHalf, .leadership-container .leadership-deputy-director-container .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-additional-leadership .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .branch-leadership-container .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageThirdHalf, .branch-leadership-container .leadership-deputy-director-container .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-additional-leadership .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general .field--name-field-related-publications .flexItemImageThirdHalf, .node--type-general .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-publications .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general .field--name-field-general-publications-rlt .flexItemImageThirdHalf, .node--type-general .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-general-publications-rlt .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageThirdHalf, .node--type-general .field--name-field-general-publications-rlt > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageThirdHalf, .node--type-general .field--name-field-related-publications > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .objective-text-container .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .objective-list-container .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-goal-card .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .strategic-vision-landing-goals-wrapper .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-principal-investigator .striped-container-wrapper .flexItemImageThirdHalf, .node--type-principal-investigator .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .striped-container-wrapper .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-principal-investigator .striped-container .flexItemImageThirdHalf, .node--type-principal-investigator .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .striped-container .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImageThirdHalf, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article .flexItemImageThirdHalf,
  .news-and-events--landing .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article .flexItemImageThirdHalf,
  .node--type-principal-investigator .news-and-events--landing .views-element-container > .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageThirdHalf, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-awards .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .registerSocialContainer .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .eventdatesLocationType .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .news-article-container .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageThirdHalf,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageThirdHalf,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-events.node--view-mode-press-release-teaser .flexItemImageThirdHalf,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .news-header-container .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .contacts-container .field--name-field-contacts .flexItemImageThirdHalf, .contacts-container .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contacts .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .publicationsBox .field--name-field-related-publications .flexItemImageThirdHalf, .publicationsBox .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-publications .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-primary-featured-item .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-additional-featured-items .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .homepage-health-topics-container .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .homepage-mission-areas-container .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .homepage-location-container .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-alumni .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemImageThirdHalf, .node--type-nhlbi-publication.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publication-details-container .flexItemImageThirdHalf,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemImageThirdHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publication-details-container .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemImageThirdHalf, .node--type-nhlbi-publication.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-nhlbi-publications .flexItemImageThirdHalf,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemImageThirdHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-nhlbi-publications .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageThirdHalf, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemImageThirdHalf,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageThirdHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .flexcontainer .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .related-ht-ser-container .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-sfa-card .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-speaker .hero-image,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-executives .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-card-field .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-advisory-committees .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .contact-nhlbi-titleblock .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-cards .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-employment-opportunity-car .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .all-grants-foa-container .hero-image,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-program-officers .hero-image,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .hero-image,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-individual-contact .field--name-field-contact-methods .hero-image, .node--type-individual-contact .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .hero-image,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-division.node--view-mode-full .field--name-field-contact-methods .hero-image,
  .node--type-division.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .hero-image,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .hero-image,
  .node--type-division.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .hero-image,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-branch.node--view-mode-full .field--name-field-contact-methods .hero-image,
  .node--type-branch.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .hero-image,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .hero-image,
  .node--type-branch.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .hero-image,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general.node--view-mode-full .field--name-field-contact-methods .hero-image,
  .node--type-general.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .hero-image,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .hero-image,
  .node--type-general.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .hero-image,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .hero-image,
  .node--type-health-education-initiative.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .hero-image,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .hero-image,
  .node--type-health-education-initiative.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-committee .field--name-field-card-text .hero-image, .node--type-committee .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-card-text .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .landing-social .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-sfa-cards .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .locationMap.contact-location-map-container .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .locationMap .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .grants-and-training-card-wrapper .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .about-nhlbi-division-card-wrapper .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .hei-tools-icon-card-wrapper .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-grants-and-training-card .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-division-card .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-tool-icon-card .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-promotional-card .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-sv-promotional-cards .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-about-nhlbi-promotional-ca .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .strategic-vision-titleblock .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .ppg-titleblock-wrapper .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .ppg-guidelines-card-wrapper .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-human-subject-cards .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-section-card .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-highlight-card .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .health-topic-teaser-container .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .about-nhlbi-our-mission-wrapper .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .hero-image, .about-nhlbi-our-mission-wrapper .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-leadership > .director-bioCard .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .hero-image, .nhlbi-publications-and-resources--landing .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-health-consumer-nhlbi-publ .hero-image,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .hero-image,
  .nhlbi-publications-and-resources--landing .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-health-professionals-nhlbi .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .hero-image, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .hero-image,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .hero-image,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .publicationsBlock.view-nhlbi-publications > .view-content .hero-image,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-publications .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .healthEducationBlock .standard-teaser .hero-image, .healthEducationBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .systematicEvidenceReviewsBlock .view-content .hero-image, .systematicEvidenceReviewsBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-content .hero-image,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .clinicalPracticeGuidelinesBlock .view-content .hero-image,
  .clinicalPracticeGuidelinesBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-content .hero-image,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .publicationsAndFactSheetsBlock .view-content .hero-image,
  .publicationsAndFactSheetsBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-content .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .rtFlexContainer .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .field--name-field-science-supplemental-page .hero-image, .node--type-research-topic .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-science-supplemental-page .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .researchTopicPublications .hero-image, .node--type-research-topic .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .researchTopicPublications .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .hero-image, .node--type-research-topic .field--name-field-content > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article.listTeaserCard .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .hero-image, .node--type-research-topic .field--name-field-content > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article.standard-teaser .hero-image,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .hero-image,
  .node--type-research-topic .field--name-field-content > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article.newsEventsCard .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .esi-feature-card .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .featured-science-instance-teaser-container .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .sfa-teaser-container .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .training-opportunity-card .field--name-field-associated-people .hero-image, .training-opportunity-card .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-associated-people .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-featured-training-opportun .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-career-stages .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-workforce-development-card .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-update.node--view-mode-executive-teaser .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .news-and-events-titleblock .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .contact-box > .field--name-field-contact-methods .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .leadership-container .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .hero-image, .leadership-container .leadership-deputy-director-container .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-additional-leadership .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .branch-leadership-container .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .hero-image, .branch-leadership-container .leadership-deputy-director-container .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-additional-leadership .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general .field--name-field-related-publications .hero-image, .node--type-general .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-publications .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general .field--name-field-general-publications-rlt .hero-image, .node--type-general .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-general-publications-rlt .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .hero-image, .node--type-general .field--name-field-general-publications-rlt > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .hero-image, .node--type-general .field--name-field-related-publications > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .objective-text-container .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .objective-list-container .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-goal-card .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .strategic-vision-landing-goals-wrapper .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-principal-investigator .striped-container-wrapper .hero-image, .node--type-principal-investigator .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .striped-container-wrapper .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-principal-investigator .striped-container .hero-image, .node--type-principal-investigator .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .striped-container .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .hero-image, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article .hero-image,
  .news-and-events--landing .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article .hero-image,
  .node--type-principal-investigator .news-and-events--landing .views-element-container > .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .hero-image, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser.node--view-mode-short-teaser .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-awards .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .registerSocialContainer .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .eventdatesLocationType .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .news-article-container .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-feature-article.node--view-mode-press-release-teaser .hero-image,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-press-release.node--view-mode-press-release-teaser .hero-image,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-events.node--view-mode-press-release-teaser .hero-image,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-feature-article.node--view-mode-hp-press-release-teaser .hero-image,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-press-release.node--view-mode-hp-press-release-teaser .hero-image,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-events.node--view-mode-hp-press-release-teaser .hero-image,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-news-mention.node--view-mode-hp-press-release-teaser .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .news-header-container .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .contacts-container .field--name-field-contacts .hero-image, .contacts-container .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contacts .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .publicationsBox .field--name-field-related-publications .hero-image, .publicationsBox .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-publications .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-primary-featured-item .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-additional-featured-items .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .homepage-health-topics-container .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .homepage-mission-areas-container .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .homepage-location-container .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-alumni .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .hero-image, .node--type-nhlbi-publication.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publication-details-container .hero-image,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .hero-image,
  .node--type-nhlbi-publication.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publication-details-container .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .hero-image, .node--type-nhlbi-publication.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-nhlbi-publications .hero-image,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .hero-image,
  .node--type-nhlbi-publication.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-nhlbi-publications .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .hero-image, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .hero-image,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .hero-image,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .hero-image {
    padding: 1em 0 1em 1em;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 890, ../sass/components/_landing_pages.scss */
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .flexcontainer .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .related-ht-ser-container .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-sfa-card .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-speaker .flexItemText,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-executives .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-card-field .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-advisory-committees .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .contact-nhlbi-titleblock .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-cards .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-employment-opportunity-car .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .all-grants-foa-container .flexItemText,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-program-officers .flexItemText,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-individual-contact .field--name-field-contact-methods .flexItemText, .node--type-individual-contact .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemText,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemText,
  .node--type-division.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemText,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText,
  .node--type-division.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemText,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemText,
  .node--type-branch.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemText,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText,
  .node--type-branch.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemText,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemText,
  .node--type-general.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemText,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText,
  .node--type-general.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemText,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemText,
  .node--type-health-education-initiative.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemText,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText,
  .node--type-health-education-initiative.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-committee .field--name-field-card-text .flexItemText, .node--type-committee .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-card-text .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .landing-social .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-sfa-cards .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .locationMap.contact-location-map-container .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .locationMap .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .grants-and-training-card-wrapper .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .about-nhlbi-division-card-wrapper .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .hei-tools-icon-card-wrapper .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-grants-and-training-card .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-division-card .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-tool-icon-card .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-promotional-card .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-sv-promotional-cards .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-about-nhlbi-promotional-ca .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .strategic-vision-titleblock .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .ppg-titleblock-wrapper .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .ppg-guidelines-card-wrapper .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-human-subject-cards .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-section-card .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-highlight-card .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .health-topic-teaser-container .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .about-nhlbi-our-mission-wrapper .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText, .about-nhlbi-our-mission-wrapper .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-leadership > .director-bioCard .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemText, .nhlbi-publications-and-resources--landing .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-health-consumer-nhlbi-publ .flexItemText,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemText,
  .nhlbi-publications-and-resources--landing .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-health-professionals-nhlbi .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemText, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemText,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemText,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .publicationsBlock.view-nhlbi-publications > .view-content .flexItemText,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-publications .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .healthEducationBlock .standard-teaser .flexItemText, .healthEducationBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .systematicEvidenceReviewsBlock .view-content .flexItemText, .systematicEvidenceReviewsBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-content .flexItemText,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .clinicalPracticeGuidelinesBlock .view-content .flexItemText,
  .clinicalPracticeGuidelinesBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-content .flexItemText,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .publicationsAndFactSheetsBlock .view-content .flexItemText,
  .publicationsAndFactSheetsBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-content .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .rtFlexContainer .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText, .node--type-research-topic .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-science-supplemental-page .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .researchTopicPublications .flexItemText, .node--type-research-topic .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .researchTopicPublications .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemText, .node--type-research-topic .field--name-field-content > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article.listTeaserCard .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemText, .node--type-research-topic .field--name-field-content > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article.standard-teaser .flexItemText,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemText,
  .node--type-research-topic .field--name-field-content > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article.newsEventsCard .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .esi-feature-card .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .featured-science-instance-teaser-container .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .sfa-teaser-container .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .training-opportunity-card .field--name-field-associated-people .flexItemText, .training-opportunity-card .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-associated-people .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-featured-training-opportun .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-career-stages .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-workforce-development-card .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-update.node--view-mode-executive-teaser .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .news-and-events-titleblock .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .contact-box > .field--name-field-contact-methods .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .leadership-container .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText, .leadership-container .leadership-deputy-director-container .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-additional-leadership .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .branch-leadership-container .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText, .branch-leadership-container .leadership-deputy-director-container .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-additional-leadership .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general .field--name-field-related-publications .flexItemText, .node--type-general .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-publications .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general .field--name-field-general-publications-rlt .flexItemText, .node--type-general .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-general-publications-rlt .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemText, .node--type-general .field--name-field-general-publications-rlt > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemText, .node--type-general .field--name-field-related-publications > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .objective-text-container .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .objective-list-container .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-goal-card .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .strategic-vision-landing-goals-wrapper .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-principal-investigator .striped-container-wrapper .flexItemText, .node--type-principal-investigator .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .striped-container-wrapper .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-principal-investigator .striped-container .flexItemText, .node--type-principal-investigator .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .striped-container .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemText, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article .flexItemText,
  .news-and-events--landing .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article .flexItemText,
  .node--type-principal-investigator .news-and-events--landing .views-element-container > .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemText, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser.node--view-mode-short-teaser .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-awards .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .registerSocialContainer .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .eventdatesLocationType .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .news-article-container .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-press-release.node--view-mode-press-release-teaser .flexItemText,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-events.node--view-mode-press-release-teaser .flexItemText,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .news-header-container .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .contacts-container .field--name-field-contacts .flexItemText, .contacts-container .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contacts .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .publicationsBox .field--name-field-related-publications .flexItemText, .publicationsBox .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-publications .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-primary-featured-item .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-additional-featured-items .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .homepage-health-topics-container .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .homepage-mission-areas-container .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .homepage-location-container .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-alumni .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemText, .node--type-nhlbi-publication.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publication-details-container .flexItemText,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemText,
  .node--type-nhlbi-publication.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publication-details-container .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemText, .node--type-nhlbi-publication.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-nhlbi-publications .flexItemText,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemText,
  .node--type-nhlbi-publication.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-nhlbi-publications .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemText,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemText {
    width: -webkit-fill-available;
    width: -moz-fill-available;
    width: -ms-fill-available;
    width: -o-fill-available;
    width: fill-available;
    width: -moz-available;
    width: available;
  }
}
/* line 895, ../sass/components/_landing_pages.scss */
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .flexcontainer .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .related-ht-ser-container .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-sfa-card .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-speaker .flexItemText .bodytext,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-executives .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-card-field .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-advisory-committees .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .contact-nhlbi-titleblock .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-cards .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-employment-opportunity-car .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .all-grants-foa-container .flexItemText .bodytext,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-program-officers .flexItemText .bodytext,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText .bodytext,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-individual-contact .field--name-field-contact-methods .flexItemText .bodytext, .node--type-individual-contact .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemText .bodytext,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemText .bodytext,
.node--type-division.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemText .bodytext,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .bodytext,
.node--type-division.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemText .bodytext,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemText .bodytext,
.node--type-branch.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemText .bodytext,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .bodytext,
.node--type-branch.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemText .bodytext,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemText .bodytext,
.node--type-general.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemText .bodytext,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .bodytext,
.node--type-general.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemText .bodytext,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemText .bodytext,
.node--type-health-education-initiative.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemText .bodytext,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .bodytext,
.node--type-health-education-initiative.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-committee .field--name-field-card-text .flexItemText .bodytext, .node--type-committee .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-card-text .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .landing-social .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-sfa-cards .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .locationMap.contact-location-map-container .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .locationMap .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .grants-and-training-card-wrapper .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .about-nhlbi-division-card-wrapper .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .hei-tools-icon-card-wrapper .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-grants-and-training-card .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-division-card .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-tool-icon-card .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-promotional-card .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-sv-promotional-cards .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-about-nhlbi-promotional-ca .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .strategic-vision-titleblock .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .ppg-titleblock-wrapper .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .ppg-guidelines-card-wrapper .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-human-subject-cards .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-section-card .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-highlight-card .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .health-topic-teaser-container .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .about-nhlbi-our-mission-wrapper .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText .bodytext, .about-nhlbi-our-mission-wrapper .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-leadership > .director-bioCard .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemText .bodytext, .nhlbi-publications-and-resources--landing .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-health-consumer-nhlbi-publ .flexItemText .bodytext,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemText .bodytext,
.nhlbi-publications-and-resources--landing .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-health-professionals-nhlbi .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemText .bodytext, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemText .bodytext,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemText .bodytext,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .publicationsBlock.view-nhlbi-publications > .view-content .flexItemText .bodytext,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-publications .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .healthEducationBlock .standard-teaser .flexItemText .bodytext, .healthEducationBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .systematicEvidenceReviewsBlock .view-content .flexItemText .bodytext, .systematicEvidenceReviewsBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-content .flexItemText .bodytext,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .clinicalPracticeGuidelinesBlock .view-content .flexItemText .bodytext,
.clinicalPracticeGuidelinesBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-content .flexItemText .bodytext,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .publicationsAndFactSheetsBlock .view-content .flexItemText .bodytext,
.publicationsAndFactSheetsBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-content .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .rtFlexContainer .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText .bodytext, .node--type-research-topic .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-science-supplemental-page .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .researchTopicPublications .flexItemText .bodytext, .node--type-research-topic .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .researchTopicPublications .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemText .bodytext, .node--type-research-topic .field--name-field-content > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article.listTeaserCard .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemText .bodytext, .node--type-research-topic .field--name-field-content > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article.standard-teaser .flexItemText .bodytext,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemText .bodytext,
.node--type-research-topic .field--name-field-content > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article.newsEventsCard .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .esi-feature-card .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .featured-science-instance-teaser-container .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .sfa-teaser-container .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .training-opportunity-card .field--name-field-associated-people .flexItemText .bodytext, .training-opportunity-card .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-associated-people .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-featured-training-opportun .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-career-stages .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-workforce-development-card .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-update.node--view-mode-executive-teaser .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .news-and-events-titleblock .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .contact-box > .field--name-field-contact-methods .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .leadership-container .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .bodytext, .leadership-container .leadership-deputy-director-container .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-additional-leadership .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .branch-leadership-container .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .bodytext, .branch-leadership-container .leadership-deputy-director-container .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-additional-leadership .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general .field--name-field-related-publications .flexItemText .bodytext, .node--type-general .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-publications .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general .field--name-field-general-publications-rlt .flexItemText .bodytext, .node--type-general .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-general-publications-rlt .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemText .bodytext, .node--type-general .field--name-field-general-publications-rlt > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemText .bodytext, .node--type-general .field--name-field-related-publications > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .objective-text-container .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .objective-list-container .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-goal-card .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .strategic-vision-landing-goals-wrapper .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-principal-investigator .striped-container-wrapper .flexItemText .bodytext, .node--type-principal-investigator .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .striped-container-wrapper .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-principal-investigator .striped-container .flexItemText .bodytext, .node--type-principal-investigator .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .striped-container .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemText .bodytext, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article .flexItemText .bodytext,
.news-and-events--landing .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article .flexItemText .bodytext,
.node--type-principal-investigator .news-and-events--landing .views-element-container > .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemText .bodytext, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser.node--view-mode-short-teaser .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-awards .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .registerSocialContainer .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .eventdatesLocationType .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .news-article-container .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText .bodytext,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-press-release.node--view-mode-press-release-teaser .flexItemText .bodytext,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-events.node--view-mode-press-release-teaser .flexItemText .bodytext,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText .bodytext,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText .bodytext,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText .bodytext,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .news-header-container .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .contacts-container .field--name-field-contacts .flexItemText .bodytext, .contacts-container .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contacts .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .publicationsBox .field--name-field-related-publications .flexItemText .bodytext, .publicationsBox .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-publications .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-primary-featured-item .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-additional-featured-items .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .homepage-health-topics-container .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .homepage-mission-areas-container .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .homepage-location-container .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-alumni .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemText .bodytext, .node--type-nhlbi-publication.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publication-details-container .flexItemText .bodytext,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemText .bodytext,
.node--type-nhlbi-publication.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publication-details-container .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemText .bodytext, .node--type-nhlbi-publication.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-nhlbi-publications .flexItemText .bodytext,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemText .bodytext,
.node--type-nhlbi-publication.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-nhlbi-publications .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText .bodytext, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemText .bodytext,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText .bodytext,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .flexcontainer .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .related-ht-ser-container .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-sfa-card .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-speaker .flexItemText .darkGrayBodyText,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-executives .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-card-field .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-advisory-committees .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .contact-nhlbi-titleblock .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-cards .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-employment-opportunity-car .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .all-grants-foa-container .flexItemText .darkGrayBodyText,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-program-officers .flexItemText .darkGrayBodyText,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText .darkGrayBodyText,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-individual-contact .field--name-field-contact-methods .flexItemText .darkGrayBodyText, .node--type-individual-contact .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemText .darkGrayBodyText,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemText .darkGrayBodyText,
.node--type-division.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemText .darkGrayBodyText,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .darkGrayBodyText,
.node--type-division.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemText .darkGrayBodyText,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemText .darkGrayBodyText,
.node--type-branch.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemText .darkGrayBodyText,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .darkGrayBodyText,
.node--type-branch.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemText .darkGrayBodyText,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemText .darkGrayBodyText,
.node--type-general.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemText .darkGrayBodyText,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .darkGrayBodyText,
.node--type-general.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemText .darkGrayBodyText,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemText .darkGrayBodyText,
.node--type-health-education-initiative.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemText .darkGrayBodyText,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .darkGrayBodyText,
.node--type-health-education-initiative.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-committee .field--name-field-card-text .flexItemText .darkGrayBodyText, .node--type-committee .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-card-text .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .landing-social .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-sfa-cards .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .locationMap.contact-location-map-container .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .locationMap .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .grants-and-training-card-wrapper .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .about-nhlbi-division-card-wrapper .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .hei-tools-icon-card-wrapper .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-grants-and-training-card .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-division-card .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-tool-icon-card .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-promotional-card .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-sv-promotional-cards .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-about-nhlbi-promotional-ca .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .strategic-vision-titleblock .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .ppg-titleblock-wrapper .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .ppg-guidelines-card-wrapper .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-human-subject-cards .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-section-card .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-highlight-card .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .health-topic-teaser-container .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .about-nhlbi-our-mission-wrapper .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText .darkGrayBodyText, .about-nhlbi-our-mission-wrapper .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-leadership > .director-bioCard .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemText .darkGrayBodyText, .nhlbi-publications-and-resources--landing .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-health-consumer-nhlbi-publ .flexItemText .darkGrayBodyText,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemText .darkGrayBodyText,
.nhlbi-publications-and-resources--landing .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-health-professionals-nhlbi .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemText .darkGrayBodyText, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemText .darkGrayBodyText,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemText .darkGrayBodyText,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .publicationsBlock.view-nhlbi-publications > .view-content .flexItemText .darkGrayBodyText,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-publications .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .healthEducationBlock .standard-teaser .flexItemText .darkGrayBodyText, .healthEducationBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .systematicEvidenceReviewsBlock .view-content .flexItemText .darkGrayBodyText, .systematicEvidenceReviewsBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-content .flexItemText .darkGrayBodyText,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .clinicalPracticeGuidelinesBlock .view-content .flexItemText .darkGrayBodyText,
.clinicalPracticeGuidelinesBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-content .flexItemText .darkGrayBodyText,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .publicationsAndFactSheetsBlock .view-content .flexItemText .darkGrayBodyText,
.publicationsAndFactSheetsBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-content .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .rtFlexContainer .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText .darkGrayBodyText, .node--type-research-topic .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-science-supplemental-page .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .researchTopicPublications .flexItemText .darkGrayBodyText, .node--type-research-topic .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .researchTopicPublications .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemText .darkGrayBodyText, .node--type-research-topic .field--name-field-content > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article.listTeaserCard .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemText .darkGrayBodyText, .node--type-research-topic .field--name-field-content > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article.standard-teaser .flexItemText .darkGrayBodyText,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemText .darkGrayBodyText,
.node--type-research-topic .field--name-field-content > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article.newsEventsCard .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .esi-feature-card .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .featured-science-instance-teaser-container .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .sfa-teaser-container .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .training-opportunity-card .field--name-field-associated-people .flexItemText .darkGrayBodyText, .training-opportunity-card .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-associated-people .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-featured-training-opportun .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-career-stages .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-workforce-development-card .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-update.node--view-mode-executive-teaser .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .news-and-events-titleblock .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .contact-box > .field--name-field-contact-methods .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .leadership-container .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .darkGrayBodyText, .leadership-container .leadership-deputy-director-container .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-additional-leadership .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .branch-leadership-container .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .darkGrayBodyText, .branch-leadership-container .leadership-deputy-director-container .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-additional-leadership .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general .field--name-field-related-publications .flexItemText .darkGrayBodyText, .node--type-general .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-publications .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general .field--name-field-general-publications-rlt .flexItemText .darkGrayBodyText, .node--type-general .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-general-publications-rlt .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemText .darkGrayBodyText, .node--type-general .field--name-field-general-publications-rlt > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemText .darkGrayBodyText, .node--type-general .field--name-field-related-publications > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .objective-text-container .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .objective-list-container .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-goal-card .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .strategic-vision-landing-goals-wrapper .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-principal-investigator .striped-container-wrapper .flexItemText .darkGrayBodyText, .node--type-principal-investigator .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .striped-container-wrapper .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-principal-investigator .striped-container .flexItemText .darkGrayBodyText, .node--type-principal-investigator .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .striped-container .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemText .darkGrayBodyText, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article .flexItemText .darkGrayBodyText,
.news-and-events--landing .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article .flexItemText .darkGrayBodyText,
.node--type-principal-investigator .news-and-events--landing .views-element-container > .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemText .darkGrayBodyText, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser.node--view-mode-short-teaser .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-awards .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .registerSocialContainer .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .eventdatesLocationType .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .news-article-container .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText .darkGrayBodyText,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-press-release.node--view-mode-press-release-teaser .flexItemText .darkGrayBodyText,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-events.node--view-mode-press-release-teaser .flexItemText .darkGrayBodyText,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText .darkGrayBodyText,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText .darkGrayBodyText,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText .darkGrayBodyText,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .news-header-container .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .contacts-container .field--name-field-contacts .flexItemText .darkGrayBodyText, .contacts-container .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contacts .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .publicationsBox .field--name-field-related-publications .flexItemText .darkGrayBodyText, .publicationsBox .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-publications .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-primary-featured-item .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-additional-featured-items .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .homepage-health-topics-container .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .homepage-mission-areas-container .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .homepage-location-container .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-alumni .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemText .darkGrayBodyText, .node--type-nhlbi-publication.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publication-details-container .flexItemText .darkGrayBodyText,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemText .darkGrayBodyText,
.node--type-nhlbi-publication.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publication-details-container .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemText .darkGrayBodyText, .node--type-nhlbi-publication.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-nhlbi-publications .flexItemText .darkGrayBodyText,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemText .darkGrayBodyText,
.node--type-nhlbi-publication.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-nhlbi-publications .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText .darkGrayBodyText, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemText .darkGrayBodyText,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText .darkGrayBodyText,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .flexcontainer .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .related-ht-ser-container .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-sfa-card .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-speaker .flexItemText .foa-expiration-date,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-executives .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-card-field .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-advisory-committees .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .contact-nhlbi-titleblock .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-cards .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-employment-opportunity-car .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .all-grants-foa-container .flexItemText .foa-expiration-date,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-program-officers .flexItemText .foa-expiration-date,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText .foa-expiration-date,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-individual-contact .field--name-field-contact-methods .flexItemText .foa-expiration-date, .node--type-individual-contact .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemText .foa-expiration-date,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemText .foa-expiration-date,
.node--type-division.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemText .foa-expiration-date,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .foa-expiration-date,
.node--type-division.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemText .foa-expiration-date,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemText .foa-expiration-date,
.node--type-branch.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemText .foa-expiration-date,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .foa-expiration-date,
.node--type-branch.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemText .foa-expiration-date,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemText .foa-expiration-date,
.node--type-general.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemText .foa-expiration-date,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .foa-expiration-date,
.node--type-general.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemText .foa-expiration-date,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemText .foa-expiration-date,
.node--type-health-education-initiative.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemText .foa-expiration-date,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .foa-expiration-date,
.node--type-health-education-initiative.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-committee .field--name-field-card-text .flexItemText .foa-expiration-date, .node--type-committee .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-card-text .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .landing-social .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-sfa-cards .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .locationMap.contact-location-map-container .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .locationMap .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .grants-and-training-card-wrapper .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .about-nhlbi-division-card-wrapper .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .hei-tools-icon-card-wrapper .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-grants-and-training-card .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-division-card .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-tool-icon-card .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-promotional-card .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-sv-promotional-cards .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-about-nhlbi-promotional-ca .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .strategic-vision-titleblock .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .ppg-titleblock-wrapper .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .ppg-guidelines-card-wrapper .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-human-subject-cards .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-section-card .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-highlight-card .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .health-topic-teaser-container .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .about-nhlbi-our-mission-wrapper .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText .foa-expiration-date, .about-nhlbi-our-mission-wrapper .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-leadership > .director-bioCard .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemText .foa-expiration-date, .nhlbi-publications-and-resources--landing .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-health-consumer-nhlbi-publ .flexItemText .foa-expiration-date,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemText .foa-expiration-date,
.nhlbi-publications-and-resources--landing .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-health-professionals-nhlbi .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemText .foa-expiration-date, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemText .foa-expiration-date,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemText .foa-expiration-date,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .publicationsBlock.view-nhlbi-publications > .view-content .flexItemText .foa-expiration-date,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-publications .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .healthEducationBlock .standard-teaser .flexItemText .foa-expiration-date, .healthEducationBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .systematicEvidenceReviewsBlock .view-content .flexItemText .foa-expiration-date, .systematicEvidenceReviewsBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-content .flexItemText .foa-expiration-date,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .clinicalPracticeGuidelinesBlock .view-content .flexItemText .foa-expiration-date,
.clinicalPracticeGuidelinesBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-content .flexItemText .foa-expiration-date,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .publicationsAndFactSheetsBlock .view-content .flexItemText .foa-expiration-date,
.publicationsAndFactSheetsBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-content .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .rtFlexContainer .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText .foa-expiration-date, .node--type-research-topic .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-science-supplemental-page .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .researchTopicPublications .flexItemText .foa-expiration-date, .node--type-research-topic .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .researchTopicPublications .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemText .foa-expiration-date, .node--type-research-topic .field--name-field-content > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article.listTeaserCard .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemText .foa-expiration-date, .node--type-research-topic .field--name-field-content > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article.standard-teaser .flexItemText .foa-expiration-date,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemText .foa-expiration-date,
.node--type-research-topic .field--name-field-content > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article.newsEventsCard .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .esi-feature-card .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .featured-science-instance-teaser-container .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .sfa-teaser-container .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .training-opportunity-card .field--name-field-associated-people .flexItemText .foa-expiration-date, .training-opportunity-card .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-associated-people .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-featured-training-opportun .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-career-stages .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-workforce-development-card .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-update.node--view-mode-executive-teaser .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .news-and-events-titleblock .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .contact-box > .field--name-field-contact-methods .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .leadership-container .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .foa-expiration-date, .leadership-container .leadership-deputy-director-container .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-additional-leadership .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .branch-leadership-container .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .foa-expiration-date, .branch-leadership-container .leadership-deputy-director-container .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-additional-leadership .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general .field--name-field-related-publications .flexItemText .foa-expiration-date, .node--type-general .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-publications .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general .field--name-field-general-publications-rlt .flexItemText .foa-expiration-date, .node--type-general .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-general-publications-rlt .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemText .foa-expiration-date, .node--type-general .field--name-field-general-publications-rlt > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemText .foa-expiration-date, .node--type-general .field--name-field-related-publications > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .objective-text-container .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .objective-list-container .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-goal-card .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .strategic-vision-landing-goals-wrapper .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-principal-investigator .striped-container-wrapper .flexItemText .foa-expiration-date, .node--type-principal-investigator .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .striped-container-wrapper .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-principal-investigator .striped-container .flexItemText .foa-expiration-date, .node--type-principal-investigator .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .striped-container .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemText .foa-expiration-date, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article .flexItemText .foa-expiration-date,
.news-and-events--landing .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article .flexItemText .foa-expiration-date,
.node--type-principal-investigator .news-and-events--landing .views-element-container > .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemText .foa-expiration-date, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser.node--view-mode-short-teaser .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-awards .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .registerSocialContainer .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .eventdatesLocationType .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .news-article-container .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText .foa-expiration-date,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-press-release.node--view-mode-press-release-teaser .flexItemText .foa-expiration-date,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-events.node--view-mode-press-release-teaser .flexItemText .foa-expiration-date,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText .foa-expiration-date,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText .foa-expiration-date,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText .foa-expiration-date,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .news-header-container .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .contacts-container .field--name-field-contacts .flexItemText .foa-expiration-date, .contacts-container .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contacts .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .publicationsBox .field--name-field-related-publications .flexItemText .foa-expiration-date, .publicationsBox .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-publications .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-primary-featured-item .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-additional-featured-items .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .homepage-health-topics-container .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .homepage-mission-areas-container .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .homepage-location-container .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-alumni .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemText .foa-expiration-date, .node--type-nhlbi-publication.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publication-details-container .flexItemText .foa-expiration-date,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemText .foa-expiration-date,
.node--type-nhlbi-publication.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publication-details-container .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemText .foa-expiration-date, .node--type-nhlbi-publication.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-nhlbi-publications .flexItemText .foa-expiration-date,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemText .foa-expiration-date,
.node--type-nhlbi-publication.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-nhlbi-publications .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText .foa-expiration-date, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemText .foa-expiration-date,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText .foa-expiration-date,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemText .foa-expiration-date {
  display: block;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 895, ../sass/components/_landing_pages.scss */
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .flexcontainer .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .related-ht-ser-container .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-sfa-card .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-speaker .flexItemText .bodytext,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-executives .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-card-field .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-advisory-committees .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .contact-nhlbi-titleblock .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-cards .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-employment-opportunity-car .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .all-grants-foa-container .flexItemText .bodytext,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-program-officers .flexItemText .bodytext,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText .bodytext,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-individual-contact .field--name-field-contact-methods .flexItemText .bodytext, .node--type-individual-contact .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemText .bodytext,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemText .bodytext,
  .node--type-division.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemText .bodytext,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .bodytext,
  .node--type-division.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemText .bodytext,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemText .bodytext,
  .node--type-branch.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemText .bodytext,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .bodytext,
  .node--type-branch.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemText .bodytext,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemText .bodytext,
  .node--type-general.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemText .bodytext,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .bodytext,
  .node--type-general.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemText .bodytext,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemText .bodytext,
  .node--type-health-education-initiative.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemText .bodytext,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .bodytext,
  .node--type-health-education-initiative.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-committee .field--name-field-card-text .flexItemText .bodytext, .node--type-committee .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-card-text .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .landing-social .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-sfa-cards .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .locationMap.contact-location-map-container .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .locationMap .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .grants-and-training-card-wrapper .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .about-nhlbi-division-card-wrapper .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .hei-tools-icon-card-wrapper .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-grants-and-training-card .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-division-card .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-tool-icon-card .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-promotional-card .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-sv-promotional-cards .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-about-nhlbi-promotional-ca .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .strategic-vision-titleblock .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .ppg-titleblock-wrapper .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .ppg-guidelines-card-wrapper .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-human-subject-cards .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-section-card .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-highlight-card .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .health-topic-teaser-container .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .about-nhlbi-our-mission-wrapper .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText .bodytext, .about-nhlbi-our-mission-wrapper .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-leadership > .director-bioCard .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemText .bodytext, .nhlbi-publications-and-resources--landing .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-health-consumer-nhlbi-publ .flexItemText .bodytext,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemText .bodytext,
  .nhlbi-publications-and-resources--landing .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-health-professionals-nhlbi .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemText .bodytext, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemText .bodytext,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemText .bodytext,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .publicationsBlock.view-nhlbi-publications > .view-content .flexItemText .bodytext,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-publications .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .healthEducationBlock .standard-teaser .flexItemText .bodytext, .healthEducationBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .systematicEvidenceReviewsBlock .view-content .flexItemText .bodytext, .systematicEvidenceReviewsBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-content .flexItemText .bodytext,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .clinicalPracticeGuidelinesBlock .view-content .flexItemText .bodytext,
  .clinicalPracticeGuidelinesBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-content .flexItemText .bodytext,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .publicationsAndFactSheetsBlock .view-content .flexItemText .bodytext,
  .publicationsAndFactSheetsBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-content .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .rtFlexContainer .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText .bodytext, .node--type-research-topic .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-science-supplemental-page .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .researchTopicPublications .flexItemText .bodytext, .node--type-research-topic .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .researchTopicPublications .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemText .bodytext, .node--type-research-topic .field--name-field-content > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article.listTeaserCard .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemText .bodytext, .node--type-research-topic .field--name-field-content > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article.standard-teaser .flexItemText .bodytext,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemText .bodytext,
  .node--type-research-topic .field--name-field-content > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article.newsEventsCard .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .esi-feature-card .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .featured-science-instance-teaser-container .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .sfa-teaser-container .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .training-opportunity-card .field--name-field-associated-people .flexItemText .bodytext, .training-opportunity-card .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-associated-people .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-featured-training-opportun .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-career-stages .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-workforce-development-card .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-update.node--view-mode-executive-teaser .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .news-and-events-titleblock .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .contact-box > .field--name-field-contact-methods .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .leadership-container .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .bodytext, .leadership-container .leadership-deputy-director-container .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-additional-leadership .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .branch-leadership-container .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .bodytext, .branch-leadership-container .leadership-deputy-director-container .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-additional-leadership .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general .field--name-field-related-publications .flexItemText .bodytext, .node--type-general .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-publications .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general .field--name-field-general-publications-rlt .flexItemText .bodytext, .node--type-general .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-general-publications-rlt .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemText .bodytext, .node--type-general .field--name-field-general-publications-rlt > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemText .bodytext, .node--type-general .field--name-field-related-publications > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .objective-text-container .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .objective-list-container .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-goal-card .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .strategic-vision-landing-goals-wrapper .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-principal-investigator .striped-container-wrapper .flexItemText .bodytext, .node--type-principal-investigator .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .striped-container-wrapper .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-principal-investigator .striped-container .flexItemText .bodytext, .node--type-principal-investigator .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .striped-container .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemText .bodytext, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article .flexItemText .bodytext,
  .news-and-events--landing .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article .flexItemText .bodytext,
  .node--type-principal-investigator .news-and-events--landing .views-element-container > .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemText .bodytext, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser.node--view-mode-short-teaser .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-awards .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .registerSocialContainer .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .eventdatesLocationType .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .news-article-container .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText .bodytext,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-press-release.node--view-mode-press-release-teaser .flexItemText .bodytext,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-events.node--view-mode-press-release-teaser .flexItemText .bodytext,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText .bodytext,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText .bodytext,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText .bodytext,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .news-header-container .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .contacts-container .field--name-field-contacts .flexItemText .bodytext, .contacts-container .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contacts .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .publicationsBox .field--name-field-related-publications .flexItemText .bodytext, .publicationsBox .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-publications .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-primary-featured-item .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-additional-featured-items .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .homepage-health-topics-container .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .homepage-mission-areas-container .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .homepage-location-container .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-alumni .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemText .bodytext, .node--type-nhlbi-publication.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publication-details-container .flexItemText .bodytext,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemText .bodytext,
  .node--type-nhlbi-publication.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publication-details-container .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemText .bodytext, .node--type-nhlbi-publication.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-nhlbi-publications .flexItemText .bodytext,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemText .bodytext,
  .node--type-nhlbi-publication.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-nhlbi-publications .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText .bodytext, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemText .bodytext,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText .bodytext,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .flexcontainer .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .related-ht-ser-container .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-sfa-card .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-speaker .flexItemText .darkGrayBodyText,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-executives .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-card-field .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-advisory-committees .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .contact-nhlbi-titleblock .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-cards .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-employment-opportunity-car .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .all-grants-foa-container .flexItemText .darkGrayBodyText,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-program-officers .flexItemText .darkGrayBodyText,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText .darkGrayBodyText,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-individual-contact .field--name-field-contact-methods .flexItemText .darkGrayBodyText, .node--type-individual-contact .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemText .darkGrayBodyText,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemText .darkGrayBodyText,
  .node--type-division.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemText .darkGrayBodyText,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .darkGrayBodyText,
  .node--type-division.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemText .darkGrayBodyText,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemText .darkGrayBodyText,
  .node--type-branch.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemText .darkGrayBodyText,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .darkGrayBodyText,
  .node--type-branch.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemText .darkGrayBodyText,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemText .darkGrayBodyText,
  .node--type-general.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemText .darkGrayBodyText,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .darkGrayBodyText,
  .node--type-general.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemText .darkGrayBodyText,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemText .darkGrayBodyText,
  .node--type-health-education-initiative.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemText .darkGrayBodyText,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .darkGrayBodyText,
  .node--type-health-education-initiative.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-committee .field--name-field-card-text .flexItemText .darkGrayBodyText, .node--type-committee .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-card-text .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .landing-social .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-sfa-cards .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .locationMap.contact-location-map-container .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .locationMap .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .grants-and-training-card-wrapper .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .about-nhlbi-division-card-wrapper .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .hei-tools-icon-card-wrapper .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-grants-and-training-card .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-division-card .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-tool-icon-card .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-promotional-card .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-sv-promotional-cards .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-about-nhlbi-promotional-ca .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .strategic-vision-titleblock .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .ppg-titleblock-wrapper .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .ppg-guidelines-card-wrapper .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-human-subject-cards .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-section-card .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-highlight-card .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .health-topic-teaser-container .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .about-nhlbi-our-mission-wrapper .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText .darkGrayBodyText, .about-nhlbi-our-mission-wrapper .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-leadership > .director-bioCard .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemText .darkGrayBodyText, .nhlbi-publications-and-resources--landing .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-health-consumer-nhlbi-publ .flexItemText .darkGrayBodyText,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemText .darkGrayBodyText,
  .nhlbi-publications-and-resources--landing .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-health-professionals-nhlbi .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemText .darkGrayBodyText, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemText .darkGrayBodyText,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemText .darkGrayBodyText,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .publicationsBlock.view-nhlbi-publications > .view-content .flexItemText .darkGrayBodyText,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-publications .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .healthEducationBlock .standard-teaser .flexItemText .darkGrayBodyText, .healthEducationBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .systematicEvidenceReviewsBlock .view-content .flexItemText .darkGrayBodyText, .systematicEvidenceReviewsBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-content .flexItemText .darkGrayBodyText,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .clinicalPracticeGuidelinesBlock .view-content .flexItemText .darkGrayBodyText,
  .clinicalPracticeGuidelinesBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-content .flexItemText .darkGrayBodyText,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .publicationsAndFactSheetsBlock .view-content .flexItemText .darkGrayBodyText,
  .publicationsAndFactSheetsBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-content .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .rtFlexContainer .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText .darkGrayBodyText, .node--type-research-topic .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-science-supplemental-page .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .researchTopicPublications .flexItemText .darkGrayBodyText, .node--type-research-topic .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .researchTopicPublications .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemText .darkGrayBodyText, .node--type-research-topic .field--name-field-content > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article.listTeaserCard .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemText .darkGrayBodyText, .node--type-research-topic .field--name-field-content > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article.standard-teaser .flexItemText .darkGrayBodyText,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemText .darkGrayBodyText,
  .node--type-research-topic .field--name-field-content > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article.newsEventsCard .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .esi-feature-card .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .featured-science-instance-teaser-container .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .sfa-teaser-container .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .training-opportunity-card .field--name-field-associated-people .flexItemText .darkGrayBodyText, .training-opportunity-card .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-associated-people .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-featured-training-opportun .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-career-stages .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-workforce-development-card .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-update.node--view-mode-executive-teaser .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .news-and-events-titleblock .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .contact-box > .field--name-field-contact-methods .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .leadership-container .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .darkGrayBodyText, .leadership-container .leadership-deputy-director-container .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-additional-leadership .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .branch-leadership-container .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .darkGrayBodyText, .branch-leadership-container .leadership-deputy-director-container .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-additional-leadership .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general .field--name-field-related-publications .flexItemText .darkGrayBodyText, .node--type-general .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-publications .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general .field--name-field-general-publications-rlt .flexItemText .darkGrayBodyText, .node--type-general .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-general-publications-rlt .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemText .darkGrayBodyText, .node--type-general .field--name-field-general-publications-rlt > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemText .darkGrayBodyText, .node--type-general .field--name-field-related-publications > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .objective-text-container .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .objective-list-container .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-goal-card .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .strategic-vision-landing-goals-wrapper .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-principal-investigator .striped-container-wrapper .flexItemText .darkGrayBodyText, .node--type-principal-investigator .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .striped-container-wrapper .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-principal-investigator .striped-container .flexItemText .darkGrayBodyText, .node--type-principal-investigator .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .striped-container .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemText .darkGrayBodyText, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article .flexItemText .darkGrayBodyText,
  .news-and-events--landing .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article .flexItemText .darkGrayBodyText,
  .node--type-principal-investigator .news-and-events--landing .views-element-container > .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemText .darkGrayBodyText, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser.node--view-mode-short-teaser .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-awards .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .registerSocialContainer .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .eventdatesLocationType .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .news-article-container .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText .darkGrayBodyText,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-press-release.node--view-mode-press-release-teaser .flexItemText .darkGrayBodyText,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-events.node--view-mode-press-release-teaser .flexItemText .darkGrayBodyText,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText .darkGrayBodyText,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText .darkGrayBodyText,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText .darkGrayBodyText,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .news-header-container .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .contacts-container .field--name-field-contacts .flexItemText .darkGrayBodyText, .contacts-container .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contacts .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .publicationsBox .field--name-field-related-publications .flexItemText .darkGrayBodyText, .publicationsBox .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-publications .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-primary-featured-item .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-additional-featured-items .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .homepage-health-topics-container .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .homepage-mission-areas-container .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .homepage-location-container .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-alumni .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemText .darkGrayBodyText, .node--type-nhlbi-publication.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publication-details-container .flexItemText .darkGrayBodyText,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemText .darkGrayBodyText,
  .node--type-nhlbi-publication.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publication-details-container .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemText .darkGrayBodyText, .node--type-nhlbi-publication.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-nhlbi-publications .flexItemText .darkGrayBodyText,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemText .darkGrayBodyText,
  .node--type-nhlbi-publication.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-nhlbi-publications .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText .darkGrayBodyText, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemText .darkGrayBodyText,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText .darkGrayBodyText,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .flexcontainer .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .related-ht-ser-container .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-sfa-card .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-speaker .flexItemText .foa-expiration-date,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-executives .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-card-field .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-advisory-committees .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .contact-nhlbi-titleblock .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-cards .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-employment-opportunity-car .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .all-grants-foa-container .flexItemText .foa-expiration-date,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-program-officers .flexItemText .foa-expiration-date,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText .foa-expiration-date,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-individual-contact .field--name-field-contact-methods .flexItemText .foa-expiration-date, .node--type-individual-contact .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemText .foa-expiration-date,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemText .foa-expiration-date,
  .node--type-division.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemText .foa-expiration-date,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .foa-expiration-date,
  .node--type-division.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemText .foa-expiration-date,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemText .foa-expiration-date,
  .node--type-branch.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemText .foa-expiration-date,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .foa-expiration-date,
  .node--type-branch.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemText .foa-expiration-date,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemText .foa-expiration-date,
  .node--type-general.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemText .foa-expiration-date,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .foa-expiration-date,
  .node--type-general.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemText .foa-expiration-date,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemText .foa-expiration-date,
  .node--type-health-education-initiative.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemText .foa-expiration-date,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .foa-expiration-date,
  .node--type-health-education-initiative.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contact-methods .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-committee .field--name-field-card-text .flexItemText .foa-expiration-date, .node--type-committee .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-card-text .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .landing-social .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-sfa-cards .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .locationMap.contact-location-map-container .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .locationMap .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .grants-and-training-card-wrapper .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .about-nhlbi-division-card-wrapper .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .hei-tools-icon-card-wrapper .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-grants-and-training-card .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-division-card .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-tool-icon-card .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-promotional-card .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-sv-promotional-cards .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-about-nhlbi-promotional-ca .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .strategic-vision-titleblock .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .ppg-titleblock-wrapper .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .ppg-guidelines-card-wrapper .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-human-subject-cards .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-section-card .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-highlight-card .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .health-topic-teaser-container .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .about-nhlbi-our-mission-wrapper .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText .foa-expiration-date, .about-nhlbi-our-mission-wrapper .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-leadership > .director-bioCard .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemText .foa-expiration-date, .nhlbi-publications-and-resources--landing .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-health-consumer-nhlbi-publ .flexItemText .foa-expiration-date,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemText .foa-expiration-date,
  .nhlbi-publications-and-resources--landing .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-health-professionals-nhlbi .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemText .foa-expiration-date, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemText .foa-expiration-date,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemText .foa-expiration-date,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .publicationsBlock.view-nhlbi-publications > .view-content .flexItemText .foa-expiration-date,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-publications .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .healthEducationBlock .standard-teaser .flexItemText .foa-expiration-date, .healthEducationBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .systematicEvidenceReviewsBlock .view-content .flexItemText .foa-expiration-date, .systematicEvidenceReviewsBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-content .flexItemText .foa-expiration-date,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .clinicalPracticeGuidelinesBlock .view-content .flexItemText .foa-expiration-date,
  .clinicalPracticeGuidelinesBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-content .flexItemText .foa-expiration-date,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .publicationsAndFactSheetsBlock .view-content .flexItemText .foa-expiration-date,
  .publicationsAndFactSheetsBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .view-content .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .rtFlexContainer .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText .foa-expiration-date, .node--type-research-topic .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-science-supplemental-page .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .researchTopicPublications .flexItemText .foa-expiration-date, .node--type-research-topic .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .researchTopicPublications .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemText .foa-expiration-date, .node--type-research-topic .field--name-field-content > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article.listTeaserCard .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemText .foa-expiration-date, .node--type-research-topic .field--name-field-content > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article.standard-teaser .flexItemText .foa-expiration-date,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemText .foa-expiration-date,
  .node--type-research-topic .field--name-field-content > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article.newsEventsCard .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .esi-feature-card .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .featured-science-instance-teaser-container .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .sfa-teaser-container .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .training-opportunity-card .field--name-field-associated-people .flexItemText .foa-expiration-date, .training-opportunity-card .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-associated-people .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-featured-training-opportun .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-career-stages .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-workforce-development-card .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-update.node--view-mode-executive-teaser .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .news-and-events-titleblock .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .contact-box > .field--name-field-contact-methods .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .leadership-container .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .foa-expiration-date, .leadership-container .leadership-deputy-director-container .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-additional-leadership .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .branch-leadership-container .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .foa-expiration-date, .branch-leadership-container .leadership-deputy-director-container .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-additional-leadership .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general .field--name-field-related-publications .flexItemText .foa-expiration-date, .node--type-general .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-publications .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general .field--name-field-general-publications-rlt .flexItemText .foa-expiration-date, .node--type-general .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-general-publications-rlt .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemText .foa-expiration-date, .node--type-general .field--name-field-general-publications-rlt > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemText .foa-expiration-date, .node--type-general .field--name-field-related-publications > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .objective-text-container .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .objective-list-container .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-goal-card .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .strategic-vision-landing-goals-wrapper .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-principal-investigator .striped-container-wrapper .flexItemText .foa-expiration-date, .node--type-principal-investigator .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .striped-container-wrapper .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-principal-investigator .striped-container .flexItemText .foa-expiration-date, .node--type-principal-investigator .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .striped-container .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemText .foa-expiration-date, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article .flexItemText .foa-expiration-date,
  .news-and-events--landing .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article .flexItemText .foa-expiration-date,
  .node--type-principal-investigator .news-and-events--landing .views-element-container > .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemText .foa-expiration-date, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser.node--view-mode-short-teaser .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-awards .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .registerSocialContainer .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .eventdatesLocationType .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .news-article-container .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText .foa-expiration-date,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-press-release.node--view-mode-press-release-teaser .flexItemText .foa-expiration-date,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-events.node--view-mode-press-release-teaser .flexItemText .foa-expiration-date,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText .foa-expiration-date,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText .foa-expiration-date,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText .foa-expiration-date,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .news-header-container .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .contacts-container .field--name-field-contacts .flexItemText .foa-expiration-date, .contacts-container .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-contacts .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .publicationsBox .field--name-field-related-publications .flexItemText .foa-expiration-date, .publicationsBox .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-publications .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-primary-featured-item .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-additional-featured-items .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .homepage-health-topics-container .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .homepage-mission-areas-container .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .homepage-location-container .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-alumni .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemText .foa-expiration-date, .node--type-nhlbi-publication.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publication-details-container .flexItemText .foa-expiration-date,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemText .foa-expiration-date,
  .node--type-nhlbi-publication.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .nhlbi-publication-details-container .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemText .foa-expiration-date, .node--type-nhlbi-publication.node--view-mode-full .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-nhlbi-publications .flexItemText .foa-expiration-date,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemText .foa-expiration-date,
  .node--type-nhlbi-publication.node--view-mode-subscribe .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-related-nhlbi-publications .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText .foa-expiration-date, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemText .foa-expiration-date,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText .foa-expiration-date,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .standard-teaser .flexItemText .foa-expiration-date {
    display: none;
  }
}
/* line 906, ../sass/components/_landing_pages.scss */
.news-and-events--landing .view-nhlbi-all-news .view-content .newsEventsCard {
  background-color: #eaf3fa;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 906, ../sass/components/_landing_pages.scss */
  .news-and-events--landing .view-nhlbi-all-news .view-content .newsEventsCard {
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 906, ../sass/components/_landing_pages.scss */
  .news-and-events--landing .view-nhlbi-all-news .view-content .newsEventsCard {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 914, ../sass/components/_landing_pages.scss */
  .news-and-events--landing .view-nhlbi-all-news .view-content .newsEventsCard .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-content .newsEventsCard .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-content .newsEventsCard .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-content .newsEventsCard .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-content .newsEventsCard .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-content .newsEventsCard .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-content .newsEventsCard .hero-image {
    min-width: 25%;
    max-width: 25%;
    padding: 0;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 914, ../sass/components/_landing_pages.scss */
  .news-and-events--landing .view-nhlbi-all-news .view-content .newsEventsCard .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-content .newsEventsCard .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-content .newsEventsCard .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-content .newsEventsCard .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-news .view-content .newsEventsCard .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-content .newsEventsCard .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-content .newsEventsCard .hero-image {
    min-width: 100%;
    max-width: 100%;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 928, ../sass/components/_landing_pages.scss */
  .news-and-events--landing .view-nhlbi-all-news .view-content .newsEventsCard .flexItemText {
    min-width: 67%;
    flex-basis: 67%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 928, ../sass/components/_landing_pages.scss */
  .news-and-events--landing .view-nhlbi-all-news .view-content .newsEventsCard .flexItemText {
    min-width: 60%;
    flex-basis: 60%;
  }
}
/* line 939, ../sass/components/_landing_pages.scss */
.news-and-events--landing .view-nhlbi-all-news .view-content .newsEventsCard .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-content .newsEventsCard .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-content .newsEventsCard .flexItemText .foa-expiration-date {
  display: none;
}
/* line 945, ../sass/components/_landing_pages.scss */
.news-and-events--landing .view-nhlbi-all-news .view-content .readMoreTeaserLink {
  display: none;
}
/* line 951, ../sass/components/_landing_pages.scss */
.news-and-events--landing .view-nhlbi-all-events .whitesubhead {
  padding-top: 1em;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 954, ../sass/components/_landing_pages.scss */
  .news-and-events--landing .view-nhlbi-all-events .newsEventsCard {
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
  }
}
/* line 958, ../sass/components/_landing_pages.scss */
.news-and-events--landing .view-nhlbi-all-events .newsEventsCard .eventdatesLocationType {
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
}
@media all and (min-width: 768px) {
  /* line 958, ../sass/components/_landing_pages.scss */
  .news-and-events--landing .view-nhlbi-all-events .newsEventsCard .eventdatesLocationType {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 965, ../sass/components/_landing_pages.scss */
  .news-and-events--landing .view-nhlbi-all-events .flexItemImage, .news-and-events--landing .view-nhlbi-all-events .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-events .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-events .flexItemImageFourth, .news-and-events--landing .view-nhlbi-all-events .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-events .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-events .hero-image {
    min-width: 33%;
    max-width: 33%;
  }
}
/* line 972, ../sass/components/_landing_pages.scss */
.news-and-events--landing .view-nhlbi-all-events .flexItemText {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 972, ../sass/components/_landing_pages.scss */
  .news-and-events--landing .view-nhlbi-all-events .flexItemText {
    width: -webkit-fill-available;
    width: -moz-fill-available;
    width: -ms-fill-available;
    width: -o-fill-available;
    width: fill-available;
    width: -moz-available;
    width: available;
  }
}
/* line 980, ../sass/components/_landing_pages.scss */
.news-and-events--landing .view-nhlbi-all-events .bodytext, .news-and-events--landing .view-nhlbi-all-events .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-events .foa-expiration-date {
  display: none;
}
/* line 984, ../sass/components/_landing_pages.scss */
.news-and-events--landing .landing-social {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}
/* line 988, ../sass/components/_landing_pages.scss */
.news-and-events--landing .landing-social .contact-container {
  margin: 1em 1em 1em 0;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 988, ../sass/components/_landing_pages.scss */
  .news-and-events--landing .landing-social .contact-container {
    width: 30%;
    max-width: auto;
  }
}
/* line 997, ../sass/components/_landing_pages.scss */
.news-and-events--landing .landing-social .contact-container .contact-brief-description {
  display: block;
}
/* line 1001, ../sass/components/_landing_pages.scss */
.news-and-events--landing .landing-social .contact-container-inner-container {
  padding: 1em;
}
/* line 1004, ../sass/components/_landing_pages.scss */
.news-and-events--landing .landing-social .contact-container-border-container {
  border: #d7e7f4 3px solid;
}
/* line 1007, ../sass/components/_landing_pages.scss */
.news-and-events--landing .landing-social .press-team {
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
}
/* line 1009, ../sass/components/_landing_pages.scss */
.news-and-events--landing .landing-social .press-team .contact-box {
  border: none;
}
/* line 1011, ../sass/components/_landing_pages.scss */
.news-and-events--landing .landing-social .press-team .contact-box .field--name-field-contact-methods {
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  -o-align-items: flex-start;
  align-items: flex-start;
}
/* line 1015, ../sass/components/_landing_pages.scss */
.news-and-events--landing .landing-social .press-team .contact-box .field--name-field-contact-methods > .field__item {
  width: -webkit-fill-available;
  width: -moz-fill-available;
  width: -ms-fill-available;
  width: -o-fill-available;
  width: fill-available;
  width: -moz-available;
  width: available;
  padding: 0 0 1em 0;
  margin-right: 0;
}
/* line 1021, ../sass/components/_landing_pages.scss */
.news-and-events--landing .landing-social .press-team .contact-box .contact-method-short-label.contact-method-icon-phone,
.news-and-events--landing .landing-social .press-team .contact-box .contact-method-short-label.contact-method-icon-fax {
  width: 45px;
  background-position: 25% center;
}
/* line 1026, ../sass/components/_landing_pages.scss */
.news-and-events--landing .landing-social .press-team .contact-box .blackstandardsubhead {
  display: none;
}
/* line 1032, ../sass/components/_landing_pages.scss */
.news-and-events--landing .landing-social .social {
  -webkit-box-ordinal-group: 2;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
}

/* line 1044, ../sass/components/_landing_pages.scss */
.updates--landing h1 {
  margin-top: 0;
}
/* line 1047, ../sass/components/_landing_pages.scss */
.updates--landing .updatesHeader {
  margin-top: 1.4em;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  clear: both;
  /*
  @include bp-desktop-mid {
    width: $desktopWidth;
    margin-left: auto;
    margin-right: auto;
  }

  @include bp-desktop-constrained {
    width: 95%;
  }
   */
  padding-bottom: 2em;
}
@media all and (min-width: 1100px) {
  /* line 1047, ../sass/components/_landing_pages.scss */
  .updates--landing .updatesHeader {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1047, ../sass/components/_landing_pages.scss */
  .updates--landing .updatesHeader {
    width: 95%;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 1051, ../sass/components/_landing_pages.scss */
  .updates--landing .content-indent.list-title-block {
    margin-left: 0;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1051, ../sass/components/_landing_pages.scss */
  .updates--landing .content-indent.list-title-block {
    padding-left: 0;
  }
}

/* line 1061, ../sass/components/_landing_pages.scss */
.rtUpdatesView .views-infinite-scroll-content-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -o-justify-content: flex-start;
  justify-content: flex-start;
  background-color: transparent;
  color: #222;
  width: 100%;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1061, ../sass/components/_landing_pages.scss */
  .rtUpdatesView .views-infinite-scroll-content-wrapper {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    -ms-align-items: stretch;
    -o-align-items: stretch;
    align-items: stretch;
  }
}
/* line 1065, ../sass/components/_landing_pages.scss */
.rtUpdatesView .views-infinite-scroll-content-wrapper .views-row {
  break-inside: avoid;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin: 0 0.4em 0.6em 0.2em;
  padding: 0;
  padding-left: 0;
}
@media all and (min-width: 1100px) {
  /* line 1065, ../sass/components/_landing_pages.scss */
  .rtUpdatesView .views-infinite-scroll-content-wrapper .views-row {
    width: 32%;
    flex-basis: 32%;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1065, ../sass/components/_landing_pages.scss */
  .rtUpdatesView .views-infinite-scroll-content-wrapper .views-row {
    width: 48%;
    flex-basis: 48%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1065, ../sass/components/_landing_pages.scss */
  .rtUpdatesView .views-infinite-scroll-content-wrapper .views-row {
    width: auto;
    flex-basis: auto;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1065, ../sass/components/_landing_pages.scss */
  .rtUpdatesView .views-infinite-scroll-content-wrapper .views-row {
    margin-right: 0;
  }
}
@media all and (min-width: 1100px) {
  /* line 1073, ../sass/components/_landing_pages.scss */
  .rtUpdatesView .views-infinite-scroll-content-wrapper .views-row:nth-child(3n) {
    margin-right: 0;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1078, ../sass/components/_landing_pages.scss */
  .rtUpdatesView .views-infinite-scroll-content-wrapper .views-row:nth-child(2n) {
    margin-right: 0;
  }
}
/* line 1085, ../sass/components/_landing_pages.scss */
.rtUpdatesView .pager a.button, .rtUpdatesView .standard-more-link a.button, .rtUpdatesView .news-and-events--landing .more-link a.button, .news-and-events--landing .rtUpdatesView .more-link a.button, .rtUpdatesView .view-more-link a.button {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  background-color: #102d66;
  border: 1px solid #999;
  clear: both;
  margin: 1em auto;
  padding: 0.8em 3em;
}
@media all and (min-width: 1440px) {
  /* line 1085, ../sass/components/_landing_pages.scss */
  .rtUpdatesView .pager a.button, .rtUpdatesView .standard-more-link a.button, .rtUpdatesView .news-and-events--landing .more-link a.button, .news-and-events--landing .rtUpdatesView .more-link a.button, .rtUpdatesView .view-more-link a.button {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1085, ../sass/components/_landing_pages.scss */
  .rtUpdatesView .pager a.button, .rtUpdatesView .standard-more-link a.button, .rtUpdatesView .news-and-events--landing .more-link a.button, .news-and-events--landing .rtUpdatesView .more-link a.button, .rtUpdatesView .view-more-link a.button {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1085, ../sass/components/_landing_pages.scss */
  .rtUpdatesView .pager a.button, .rtUpdatesView .standard-more-link a.button, .rtUpdatesView .news-and-events--landing .more-link a.button, .news-and-events--landing .rtUpdatesView .more-link a.button, .rtUpdatesView .view-more-link a.button {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1085, ../sass/components/_landing_pages.scss */
  .rtUpdatesView .pager a.button, .rtUpdatesView .standard-more-link a.button, .rtUpdatesView .news-and-events--landing .more-link a.button, .news-and-events--landing .rtUpdatesView .more-link a.button, .rtUpdatesView .view-more-link a.button {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.rtUpdatesView .pager a.button :hover, .rtUpdatesView .standard-more-link a.button :hover, .rtUpdatesView .news-and-events--landing .more-link a.button :hover, .news-and-events--landing .rtUpdatesView .more-link a.button :hover, .rtUpdatesView .view-more-link a.button :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 1085, ../sass/components/_landing_pages.scss */
  .rtUpdatesView .pager a.button, .rtUpdatesView .standard-more-link a.button, .rtUpdatesView .news-and-events--landing .more-link a.button, .news-and-events--landing .rtUpdatesView .more-link a.button, .rtUpdatesView .view-more-link a.button {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1085, ../sass/components/_landing_pages.scss */
  .rtUpdatesView .pager a.button, .rtUpdatesView .standard-more-link a.button, .rtUpdatesView .news-and-events--landing .more-link a.button, .news-and-events--landing .rtUpdatesView .more-link a.button, .rtUpdatesView .view-more-link a.button {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1085, ../sass/components/_landing_pages.scss */
  .rtUpdatesView .pager a.button, .rtUpdatesView .standard-more-link a.button, .rtUpdatesView .news-and-events--landing .more-link a.button, .news-and-events--landing .rtUpdatesView .more-link a.button, .rtUpdatesView .view-more-link a.button {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1085, ../sass/components/_landing_pages.scss */
  .rtUpdatesView .pager a.button, .rtUpdatesView .standard-more-link a.button, .rtUpdatesView .news-and-events--landing .more-link a.button, .news-and-events--landing .rtUpdatesView .more-link a.button, .rtUpdatesView .view-more-link a.button {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1085, ../sass/components/_landing_pages.scss */
  .rtUpdatesView .pager a.button, .rtUpdatesView .standard-more-link a.button, .rtUpdatesView .news-and-events--landing .more-link a.button, .news-and-events--landing .rtUpdatesView .more-link a.button, .rtUpdatesView .view-more-link a.button {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.rtUpdatesView .pager a.button:hover, .rtUpdatesView .standard-more-link a.button:hover, .rtUpdatesView .news-and-events--landing .more-link a.button:hover, .news-and-events--landing .rtUpdatesView .more-link a.button:hover, .rtUpdatesView .view-more-link a.button:hover {
  background-color: #3885ca;
  border-color: #3885ca;
  color: #fff;
  text-decoration: none;
}
/* line 1547, ../sass/_mixins.scss */
.rtUpdatesView .pager a.button a:hover, .rtUpdatesView .standard-more-link a.button a:hover, .rtUpdatesView .news-and-events--landing .more-link a.button a:hover, .news-and-events--landing .rtUpdatesView .more-link a.button a:hover, .rtUpdatesView .view-more-link a.button a:hover {
  text-decoration: none;
  border-color: #3885ca;
}

/* line 1092, ../sass/components/_landing_pages.scss */
.all-science--landing .all-science-header {
  padding: 2em 0;
}
/* line 1095, ../sass/components/_landing_pages.scss */
.all-science--landing .all-science-header .flexItemImageThird img, .all-science--landing .all-science-header .flexItemImageThirdHalf img, .all-science--landing .all-science-header .hero-image img {
  max-width: 90%;
  width: 90%;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1095, ../sass/components/_landing_pages.scss */
  .all-science--landing .all-science-header .flexItemImageThird img, .all-science--landing .all-science-header .flexItemImageThirdHalf img, .all-science--landing .all-science-header .hero-image img {
    width: 90%;
  }
}
/* line 1107, ../sass/components/_landing_pages.scss */
.all-science--landing .all-science-header .flexItemText {
  padding: 0 2.5em 0.5em 1.5em;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1107, ../sass/components/_landing_pages.scss */
  .all-science--landing .all-science-header .flexItemText {
    padding: 1.5em 0 0.5em 0;
  }
}
/* line 1113, ../sass/components/_landing_pages.scss */
.all-science--landing .all-science-header .bodytext, .all-science--landing .all-science-header .darkGrayBodyText, .all-science--landing .all-science-header .foa-expiration-date {
  color: #fff;
}
/* line 1117, ../sass/components/_landing_pages.scss */
.all-science--landing .all-science-index {
  margin-top: 0;
}
@media all and (min-width: 1440px) {
  /* line 1117, ../sass/components/_landing_pages.scss */
  .all-science--landing .all-science-index {
    padding-left: 40px;
    width: 1170px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1117, ../sass/components/_landing_pages.scss */
  .all-science--landing .all-science-index {
    width: 980px;
    padding-left: 40px;
    padding-right: 0;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1117, ../sass/components/_landing_pages.scss */
  .all-science--landing .all-science-index {
    width: 710px;
    padding-left: 40px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1117, ../sass/components/_landing_pages.scss */
  .all-science--landing .all-science-index {
    width: 90%;
    padding-left: 0;
  }
}
/* line 1144, ../sass/components/_landing_pages.scss */
.all-science--landing .accordion-header h3, .all-science--landing .accordion-header .field--name-field-social-phrase-group-title, .all-science--landing .accordion-header .field--name-field-image-gallery-title {
  margin: 0;
}

/* line 1148, ../sass/components/_landing_pages.scss */
.sfa-card-container {
  padding-bottom: 2em;
  padding-top: 2em;
}

/* line 1156, ../sass/components/_landing_pages.scss */
.field--name-field-sfa-cards {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}

/* line 1160, ../sass/components/_landing_pages.scss */
.field--name-field-sfa-cards > .field__item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
@media all and (min-width: 1100px) {
  /* line 1160, ../sass/components/_landing_pages.scss */
  .field--name-field-sfa-cards > .field__item {
    width: 25%;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1160, ../sass/components/_landing_pages.scss */
  .field--name-field-sfa-cards > .field__item {
    width: 33%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1160, ../sass/components/_landing_pages.scss */
  .field--name-field-sfa-cards > .field__item {
    width: auto;
  }
}
/* line 1172, ../sass/components/_landing_pages.scss */
.field--name-field-sfa-cards > .field__item .sfa-short-card {
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  -o-flex: 1;
  flex: 1;
  overflow: hidden;
  background: #fff;
  margin: 0 1em 1em 0;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1172, ../sass/components/_landing_pages.scss */
  .field--name-field-sfa-cards > .field__item .sfa-short-card {
    margin-right: 0;
  }
}
/* line 1182, ../sass/components/_landing_pages.scss */
.field--name-field-sfa-cards > .field__item .sfa-short-card .sfaname-container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  padding: 0.5em 1em;
}
@media all and (min-width: 768px) {
  /* line 1182, ../sass/components/_landing_pages.scss */
  .field--name-field-sfa-cards > .field__item .sfa-short-card .sfaname-container {
    height: 4em;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1182, ../sass/components/_landing_pages.scss */
  .field--name-field-sfa-cards > .field__item .sfa-short-card .sfaname-container {
    height: auto;
  }
}
/* line 1194, ../sass/components/_landing_pages.scss */
.field--name-field-sfa-cards > .field__item .sfa-short-card .sfaname {
  height: auto;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1194, ../sass/components/_landing_pages.scss */
  .field--name-field-sfa-cards > .field__item .sfa-short-card .sfaname {
    padding: 1em;
    height: auto;
    margin-top: 0;
  }
}
/* line 1206, ../sass/components/_landing_pages.scss */
.field--name-field-sfa-cards > .field__item .sfa-short-card .sfaname a:active, .field--name-field-sfa-cards > .field__item .sfa-short-card .sfaname a:focus {
  outline: #bf0d2e 3px dotted;
}

@media all and (min-width: 1100px) {
  /* line 1215, ../sass/components/_landing_pages.scss */
  .field--name-field-sfa-cards > .field__item:nth-child(4n) .sfa-short-card {
    margin-right: 0;
  }
}

@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1222, ../sass/components/_landing_pages.scss */
  .field--name-field-sfa-cards > .field__item:nth-child(3n) .sfa-short-card {
    margin-right: 0;
  }
}

/* line 1230, ../sass/components/_landing_pages.scss */
.all-science--landing .calloutdescription, .all-science--landing .calloutdescriptionwhite, .all-science--landing .calloutflattextwhite, .all-science--landing .calloutflattext, .all-science--landing .node--type-webform .field--name-field-status-message, .node--type-webform .all-science--landing .field--name-field-status-message, .all-science--landing .webform-submission-form .field--name-field-status-message, .webform-submission-form .all-science--landing .field--name-field-status-message, .all-science--landing .node--type-research-topic .rtDescription .readMoreContainer > .field--name-field-standard-description, .node--type-research-topic .rtDescription .all-science--landing .readMoreContainer > .field--name-field-standard-description,
.all-science--landing .node--type-research-topic .rtDescription .field--name-field-additional-text p,
.node--type-research-topic .rtDescription .field--name-field-additional-text .all-science--landing p, .all-science--landing h1 {
  color: #fff;
}

/* line 1237, ../sass/components/_landing_pages.scss */
.field--name-field-clinical-trial-program-pro {
  background-color: #1d8ed0;
}
/* line 1239, ../sass/components/_landing_pages.scss */
.field--name-field-clinical-trial-program-pro .bodytext, .field--name-field-clinical-trial-program-pro .darkGrayBodyText, .field--name-field-clinical-trial-program-pro .foa-expiration-date {
  color: #fff;
}

/* line 1246, ../sass/components/_landing_pages.scss */
.executive-leadership-landing-page--landing .membername h1, .executive-leadership-landing-page--landing h1 {
  margin-top: 0;
}
/* line 1249, ../sass/components/_landing_pages.scss */
.executive-leadership-landing-page--landing .field--name-field-description {
  padding-top: 1em;
  padding-bottom: 2em;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 1249, ../sass/components/_landing_pages.scss */
  .executive-leadership-landing-page--landing .field--name-field-description {
    padding-top: 0;
    padding-bottom: 1em;
  }
}

/* line 1258, ../sass/components/_landing_pages.scss */
.executive-leadership-card-container {
  padding-top: 2.5em;
  padding-bottom: 2.5em;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 1258, ../sass/components/_landing_pages.scss */
  .executive-leadership-card-container {
    padding-top: 1em;
    padding-bottom: 1em;
  }
}

/* line 1266, ../sass/components/_landing_pages.scss */
.field--name-field-director {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
}

/* line 1271, ../sass/components/_landing_pages.scss */
.bioCard {
  background-color: #fff;
}
/* line 1273, ../sass/components/_landing_pages.scss */
.bioCard .flexItemImage, .bioCard .flexItemImageHalf, .bioCard .flexItemImageTenth, .bioCard .flexItemImageFourth, .bioCard .flexItemImageThird, .bioCard .flexItemImageThirdHalf, .bioCard .hero-image {
  min-width: auto;
}

/* line 1278, ../sass/components/_landing_pages.scss */
.director-bioCard {
  background-color: transparent;
  margin-top: 1em;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 1278, ../sass/components/_landing_pages.scss */
  .director-bioCard {
    margin-top: 0;
  }
}
/* line 1284, ../sass/components/_landing_pages.scss */
.director-bioCard h1 {
  margin-bottom: 0;
  text-align: center;
}
/* line 1288, ../sass/components/_landing_pages.scss */
.director-bioCard .flexItemImage, .director-bioCard .flexItemImageHalf, .director-bioCard .flexItemImageTenth, .director-bioCard .flexItemImageFourth, .director-bioCard .flexItemImageThird, .director-bioCard .flexItemImageThirdHalf, .director-bioCard .hero-image {
  min-width: auto;
}
/* line 1292, ../sass/components/_landing_pages.scss */
.director-bioCard h2, .director-bioCard .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .director-bioCard h1, .director-bioCard .contact-method-label {
  margin: 0 0 11px;
}
/* line 1295, ../sass/components/_landing_pages.scss */
.director-bioCard .field--name-field-employment-title {
  font-size: 1rem;
  line-height: 1.5;
}
/* line 1301, ../sass/components/_landing_pages.scss */
.director-bioCard a:focus .field--name-field-name, .director-bioCard a:active .field--name-field-name {
  outline: #BF0D2E 3px dotted;
}

/* line 1306, ../sass/components/_landing_pages.scss */
.bioCard, .director-bioCard {
  text-align: center;
  padding: 1em;
}

/* line 1311, ../sass/components/_landing_pages.scss */
.bioCard, .director-bioCard, .leadership-bioCard {
  margin-bottom: 1em;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 1311, ../sass/components/_landing_pages.scss */
  .bioCard, .director-bioCard, .leadership-bioCard {
    margin-bottom: 0;
  }
}
/* line 1318, ../sass/components/_landing_pages.scss */
.bioCard .field--name-field-name, .bioCard .field--name-field-degrees,
.bioCard .field--name-field-employment-title,
.bioCard .field--name-field-division,
.bioCard .field--name-field-starting-year, .bioCard .field--name-field-ending-year, .director-bioCard .field--name-field-name, .director-bioCard .field--name-field-degrees,
.director-bioCard .field--name-field-employment-title,
.director-bioCard .field--name-field-division,
.director-bioCard .field--name-field-starting-year, .director-bioCard .field--name-field-ending-year, .leadership-bioCard .field--name-field-name, .leadership-bioCard .field--name-field-degrees,
.leadership-bioCard .field--name-field-employment-title,
.leadership-bioCard .field--name-field-division,
.leadership-bioCard .field--name-field-starting-year, .leadership-bioCard .field--name-field-ending-year {
  display: inline;
}
/* line 1324, ../sass/components/_landing_pages.scss */
.bioCard .membername, .director-bioCard .membername, .leadership-bioCard .membername {
  padding-bottom: 0.5em;
}
/* line 1327, ../sass/components/_landing_pages.scss */
.bioCard .title-and-years-active, .director-bioCard .title-and-years-active, .leadership-bioCard .title-and-years-active {
  margin-top: 1em;
}
/* line 1330, ../sass/components/_landing_pages.scss */
.bioCard a.no-hover-color, .director-bioCard a.no-hover-color, .leadership-bioCard a.no-hover-color {
  text-decoration: underline;
}
/* line 1333, ../sass/components/_landing_pages.scss */
.bioCard a.no-hover-color:hover, .director-bioCard a.no-hover-color:hover, .leadership-bioCard a.no-hover-color:hover {
  font-weight: bold;
}

/* line 1339, ../sass/components/_landing_pages.scss */
.previous-directors-landing-page--landing h1 {
  margin-top: 0;
}

/* line 1345, ../sass/components/_landing_pages.scss */
.executive-news--landing .topicFeatured > .view-content {
  margin-top: 0;
}
/* line 1352, ../sass/components/_landing_pages.scss */
.executive-news--landing .node--view-mode-executive-teaser {
  background: #fff;
  padding: 1em;
}
/* line 1355, ../sass/components/_landing_pages.scss */
.executive-news--landing .node--view-mode-executive-teaser .flexItemText {
  padding-top: 0.875rem;
}

/* line 1365, ../sass/components/_landing_pages.scss */
.advisory-and-peer-review-committees--landing .primaryRedBackground h2, .advisory-and-peer-review-committees--landing .primaryRedBackground .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .advisory-and-peer-review-committees--landing .primaryRedBackground h1, .advisory-and-peer-review-committees--landing .primaryRedBackground .contact-method-label, .contact-nhlbi--landing .primaryRedBackground h2, .contact-nhlbi--landing .primaryRedBackground .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .contact-nhlbi--landing .primaryRedBackground h1, .contact-nhlbi--landing .primaryRedBackground .contact-method-label {
  color: #fff;
}

/* line 1370, ../sass/components/_landing_pages.scss */
.field--name-field-advisory-committees {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

/* line 1375, ../sass/components/_landing_pages.scss */
.field--name-field-advisory-committees > .field__item {
  background-color: #fff;
  padding: 1em;
}
@media all and (min-width: 1100px) {
  /* line 1375, ../sass/components/_landing_pages.scss */
  .field--name-field-advisory-committees > .field__item {
    width: 20%;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1375, ../sass/components/_landing_pages.scss */
  .field--name-field-advisory-committees > .field__item {
    width: 40%;
  }
}
/* line 1385, ../sass/components/_landing_pages.scss */
.field--name-field-advisory-committees > .field__item h5 > a, .field--name-field-advisory-committees > .field__item .image-gallery-item-modal-wrapper h1.image-gallery-item-image-title > a, .image-gallery-item-modal-wrapper .field--name-field-advisory-committees > .field__item h1.image-gallery-item-image-title > a {
  color: #222;
}
/* line 1389, ../sass/components/_landing_pages.scss */
.field--name-field-advisory-committees > .field__item .standard-card {
  overflow: visible;
}

/* line 1393, ../sass/components/_landing_pages.scss */
.contact-nhlbi-titleblock {
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -o-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  /*
  .contact-nhlbi-center {
    @include property-prefix(flex-grow,1);
    @include bp-desktop {
      @include flex-order(2);
    }
    width:21.5rem;
    @include bp-desktop-constrained {
      width:16rem;
    }
    @include bp-tablet {
      width:9rem;
      @include flex-order(2);
    }
    @include bp-phone {
      display: none;
    }
  } */
}
@media all and (min-width: 768px) {
  /* line 1393, ../sass/components/_landing_pages.scss */
  .contact-nhlbi-titleblock {
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    -o-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1393, ../sass/components/_landing_pages.scss */
  .contact-nhlbi-titleblock {
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    -ms-align-items: stretch;
    -o-align-items: stretch;
    align-items: stretch;
  }
}
/* line 1403, ../sass/components/_landing_pages.scss */
.contact-nhlbi-titleblock .contact-nhlbi-title {
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-grow: 1;
  -o-flex-grow: 1;
  flex-grow: 1;
}
@media all and (min-width: 768px) {
  /* line 1403, ../sass/components/_landing_pages.scss */
  .contact-nhlbi-titleblock .contact-nhlbi-title {
    padding-right: 1em;
  }
}
/* line 1442, ../sass/components/_landing_pages.scss */
.contact-nhlbi-titleblock .callout-contact-link {
  -webkit-box-ordinal-group: 3;
  -moz-box-ordinal-group: 3;
  -ms-flex-order: 3;
  -webkit-order: 3;
  order: 3;
  background-color: #f1f7fb;
  padding: 1em;
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-grow: 1;
  -o-flex-grow: 1;
  flex-grow: 1;
  max-width: 27%;
  flex-basis: 27%;
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1442, ../sass/components/_landing_pages.scss */
  .contact-nhlbi-titleblock .callout-contact-link {
    width: 16rem;
    max-width: 25%;
    flex-basis: 25%;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1442, ../sass/components/_landing_pages.scss */
  .contact-nhlbi-titleblock .callout-contact-link {
    width: 17rem;
    max-width: 39%;
    flex-basis: 39%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1442, ../sass/components/_landing_pages.scss */
  .contact-nhlbi-titleblock .callout-contact-link {
    -webkit-box-ordinal-group: 2;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
    max-width: none;
    min-width: auto;
    flex-basis: auto;
    width: auto;
    margin-right: 0;
  }
}
/* line 1469, ../sass/components/_landing_pages.scss */
.contact-nhlbi-titleblock .callout-contact-link h2, .contact-nhlbi-titleblock .callout-contact-link .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .contact-nhlbi-titleblock .callout-contact-link h1, .contact-nhlbi-titleblock .callout-contact-link .contact-method-label {
  font-size: 1rem;
  margin: 0;
}
@media all and (min-width: 1440px) {
  /* line 1469, ../sass/components/_landing_pages.scss */
  .contact-nhlbi-titleblock .callout-contact-link h2, .contact-nhlbi-titleblock .callout-contact-link .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .contact-nhlbi-titleblock .callout-contact-link h1, .contact-nhlbi-titleblock .callout-contact-link .contact-method-label {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1469, ../sass/components/_landing_pages.scss */
  .contact-nhlbi-titleblock .callout-contact-link h2, .contact-nhlbi-titleblock .callout-contact-link .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .contact-nhlbi-titleblock .callout-contact-link h1, .contact-nhlbi-titleblock .callout-contact-link .contact-method-label {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1469, ../sass/components/_landing_pages.scss */
  .contact-nhlbi-titleblock .callout-contact-link h2, .contact-nhlbi-titleblock .callout-contact-link .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .contact-nhlbi-titleblock .callout-contact-link h1, .contact-nhlbi-titleblock .callout-contact-link .contact-method-label {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1469, ../sass/components/_landing_pages.scss */
  .contact-nhlbi-titleblock .callout-contact-link h2, .contact-nhlbi-titleblock .callout-contact-link .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .contact-nhlbi-titleblock .callout-contact-link h1, .contact-nhlbi-titleblock .callout-contact-link .contact-method-label {
    font-size: 1rem;
  }
}
/* line 1474, ../sass/components/_landing_pages.scss */
.contact-nhlbi-titleblock .callout-contact-link .contact-method-label {
  font-size: 1rem;
}
@media all and (min-width: 1440px) {
  /* line 1474, ../sass/components/_landing_pages.scss */
  .contact-nhlbi-titleblock .callout-contact-link .contact-method-label {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1474, ../sass/components/_landing_pages.scss */
  .contact-nhlbi-titleblock .callout-contact-link .contact-method-label {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1474, ../sass/components/_landing_pages.scss */
  .contact-nhlbi-titleblock .callout-contact-link .contact-method-label {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1474, ../sass/components/_landing_pages.scss */
  .contact-nhlbi-titleblock .callout-contact-link .contact-method-label {
    font-size: 1rem;
  }
}
/* line 1478, ../sass/components/_landing_pages.scss */
.contact-nhlbi-titleblock .callout-contact-link a {
  background-position: center left;
  padding-left: 50px;
}
@media all and (min-width: 1100px) {
  /* line 1478, ../sass/components/_landing_pages.scss */
  .contact-nhlbi-titleblock .callout-contact-link a {
    background-size: 35px 35px;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 1478, ../sass/components/_landing_pages.scss */
  .contact-nhlbi-titleblock .callout-contact-link a {
    background-size: 30px 30px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1478, ../sass/components/_landing_pages.scss */
  .contact-nhlbi-titleblock .callout-contact-link a {
    line-height: 2.50rem;
  }
}

/* line 1495, ../sass/components/_landing_pages.scss */
.field--name-field-contact-cards {
  margin-top: 2.5em;
  margin-bottom: 1.5em;
}

/* line 1501, ../sass/components/_landing_pages.scss */
.field--name-field-contact-cards > .field__item {
  margin-top: 0;
  background-color: #fff;
  padding: 1em 2em 1.5em 2em;
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  -o-flex: 1;
  flex: 1;
  max-width: 27%;
  flex-basis: 27%;
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1501, ../sass/components/_landing_pages.scss */
  .field--name-field-contact-cards > .field__item {
    max-width: 25%;
    flex-basis: 25%;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1501, ../sass/components/_landing_pages.scss */
  .field--name-field-contact-cards > .field__item {
    max-width: 39%;
    flex-basis: 39%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1501, ../sass/components/_landing_pages.scss */
  .field--name-field-contact-cards > .field__item {
    max-width: none;
    min-width: auto;
    flex-basis: auto;
    width: auto;
    margin-right: 0;
  }
}
/* line 1536, ../sass/components/_landing_pages.scss */
.field--name-field-contact-cards > .field__item .herobannertitle-grey {
  text-align: center;
}

/*
.field--name-field-contact-cards > .field__item:last-child {
  max-width: 27%;
  flex-basis:27%;
  @include bp-desktop-constrained {
    max-width: 25%;
    flex-basis:25%;
  }
  @include bp-tablet {
    max-width: 39%;
    flex-basis:39%;
  }
}
*/
@media all and (min-width: 1100px) {
  /* line 1555, ../sass/components/_landing_pages.scss */
  .field--name-field-contact-cards > .field__item:nth-child(3n) {
    margin-right: 0;
  }
}

@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1560, ../sass/components/_landing_pages.scss */
  .field--name-field-contact-cards > .field__item:nth-child(2n) {
    margin-right: 0;
  }
}

/* line 1566, ../sass/components/_landing_pages.scss */
.locationMap.contact-location-map-container, .locationMap {
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -o-justify-content: flex-start;
  justify-content: flex-start;
  padding-bottom: 1.5rem;
}
@media all and (min-width: 1100px) {
  /* line 1566, ../sass/components/_landing_pages.scss */
  .locationMap.contact-location-map-container, .locationMap {
    padding-top: 0;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1566, ../sass/components/_landing_pages.scss */
  .locationMap.contact-location-map-container, .locationMap {
    padding-top: 0;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1566, ../sass/components/_landing_pages.scss */
  .locationMap.contact-location-map-container, .locationMap {
    padding-top: 0;
  }
}
/* line 1579, ../sass/components/_landing_pages.scss */
.locationMap.contact-location-map-container #map, .locationMap.contact-location-map-container .mapLocation, .locationMap #map, .locationMap .mapLocation {
  float: none;
}
/* line 1582, ../sass/components/_landing_pages.scss */
.locationMap.contact-location-map-container .mapLocation, .locationMap .mapLocation {
  margin-left: 1.5rem;
  margin-top: 1.5rem;
  padding-left: 40px;
  height: auto;
}
/* line 1589, ../sass/components/_landing_pages.scss */
.locationMap.contact-location-map-container .mapLocation a.button, .locationMap .mapLocation a.button {
  margin-left: 0;
}

/* line 1603, ../sass/components/_landing_pages.scss */
.job-opportunities--landing h1 {
  margin-top: 0;
}

/* line 1609, ../sass/components/_landing_pages.scss */
.job-opportunities--landing .view-id-nhlbi_jobs, .isi-job-opportunities--landing .view-id-nhlbi_jobs {
  padding-bottom: 1em;
  padding-top: 1em;
}
/* line 1615, ../sass/components/_landing_pages.scss */
.job-opportunities--landing article.standard-card, .isi-job-opportunities--landing article.standard-card {
  background-color: #fff;
  color: #222;
  margin-bottom: 1em;
  padding: 0 1em;
}
/* line 1620, ../sass/components/_landing_pages.scss */
.job-opportunities--landing article.standard-card .flexItemText, .isi-job-opportunities--landing article.standard-card .flexItemText {
  padding-top: 0.875rem;
}

/* line 1626, ../sass/components/_landing_pages.scss */
.isi-job-opportunities--landing h1 {
  margin-bottom: 0.1em;
}
/* line 1630, ../sass/components/_landing_pages.scss */
.isi-job-opportunities--landing h2, .isi-job-opportunities--landing .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .isi-job-opportunities--landing h1, .isi-job-opportunities--landing .contact-method-label {
  color: #fff;
}

/* line 1640, ../sass/components/_landing_pages.scss */
.training-and-career-development--landing h1 {
  margin-top: 0;
}
/* line 1643, ../sass/components/_landing_pages.scss */
.training-and-career-development--landing h3, .training-and-career-development--landing .field--name-field-social-phrase-group-title, .training-and-career-development--landing .field--name-field-image-gallery-title {
  margin: 0 0 0.25em;
}

/* line 1648, ../sass/components/_landing_pages.scss */
.working-at-nhlbi--landing .newsRedBackground, .working-at-nhlbi--landing .calloutdescription, .working-at-nhlbi--landing .calloutdescriptionwhite, .working-at-nhlbi--landing .calloutflattextwhite, .working-at-nhlbi--landing .calloutflattext, .working-at-nhlbi--landing .node--type-webform .field--name-field-status-message, .node--type-webform .working-at-nhlbi--landing .field--name-field-status-message, .working-at-nhlbi--landing .webform-submission-form .field--name-field-status-message, .webform-submission-form .working-at-nhlbi--landing .field--name-field-status-message, .working-at-nhlbi--landing .node--type-research-topic .rtDescription .readMoreContainer > .field--name-field-standard-description, .node--type-research-topic .rtDescription .working-at-nhlbi--landing .readMoreContainer > .field--name-field-standard-description,
.working-at-nhlbi--landing .node--type-research-topic .rtDescription .field--name-field-additional-text p,
.node--type-research-topic .rtDescription .field--name-field-additional-text .working-at-nhlbi--landing p {
  color: #fff;
  background-color: #bf0d2e;
}
/* line 126, ../sass/_mixins.scss */
.working-at-nhlbi--landing .newsRedBackground a, .working-at-nhlbi--landing .newsRedBackground a:link, .working-at-nhlbi--landing .calloutdescription a, .working-at-nhlbi--landing .calloutdescriptionwhite a, .working-at-nhlbi--landing .calloutflattextwhite a, .working-at-nhlbi--landing .calloutflattext a, .working-at-nhlbi--landing .node--type-webform .field--name-field-status-message a, .node--type-webform .working-at-nhlbi--landing .field--name-field-status-message a, .working-at-nhlbi--landing .webform-submission-form .field--name-field-status-message a, .webform-submission-form .working-at-nhlbi--landing .field--name-field-status-message a, .working-at-nhlbi--landing .node--type-research-topic .rtDescription .readMoreContainer > .field--name-field-standard-description a, .node--type-research-topic .rtDescription .working-at-nhlbi--landing .readMoreContainer > .field--name-field-standard-description a,
.working-at-nhlbi--landing .node--type-research-topic .rtDescription .field--name-field-additional-text p a,
.node--type-research-topic .rtDescription .field--name-field-additional-text .working-at-nhlbi--landing p a, .working-at-nhlbi--landing .calloutdescription a:link, .working-at-nhlbi--landing .calloutdescriptionwhite a:link, .working-at-nhlbi--landing .calloutflattextwhite a:link, .working-at-nhlbi--landing .calloutflattext a:link, .working-at-nhlbi--landing .node--type-webform .field--name-field-status-message a:link, .node--type-webform .working-at-nhlbi--landing .field--name-field-status-message a:link, .working-at-nhlbi--landing .webform-submission-form .field--name-field-status-message a:link, .webform-submission-form .working-at-nhlbi--landing .field--name-field-status-message a:link, .working-at-nhlbi--landing .node--type-research-topic .rtDescription .readMoreContainer > .field--name-field-standard-description a:link, .node--type-research-topic .rtDescription .working-at-nhlbi--landing .readMoreContainer > .field--name-field-standard-description a:link,
.working-at-nhlbi--landing .node--type-research-topic .rtDescription .field--name-field-additional-text p a:link,
.node--type-research-topic .rtDescription .field--name-field-additional-text .working-at-nhlbi--landing p a:link {
  color: #fff;
  text-decoration: underline;
}
/* line 132, ../sass/_mixins.scss */
.working-at-nhlbi--landing .newsRedBackground a:visited, .working-at-nhlbi--landing .calloutdescription a:visited, .working-at-nhlbi--landing .calloutdescriptionwhite a:visited, .working-at-nhlbi--landing .calloutflattextwhite a:visited, .working-at-nhlbi--landing .calloutflattext a:visited, .working-at-nhlbi--landing .node--type-webform .field--name-field-status-message a:visited, .node--type-webform .working-at-nhlbi--landing .field--name-field-status-message a:visited, .working-at-nhlbi--landing .webform-submission-form .field--name-field-status-message a:visited, .webform-submission-form .working-at-nhlbi--landing .field--name-field-status-message a:visited, .working-at-nhlbi--landing .node--type-research-topic .rtDescription .readMoreContainer > .field--name-field-standard-description a:visited, .node--type-research-topic .rtDescription .working-at-nhlbi--landing .readMoreContainer > .field--name-field-standard-description a:visited,
.working-at-nhlbi--landing .node--type-research-topic .rtDescription .field--name-field-additional-text p a:visited,
.node--type-research-topic .rtDescription .field--name-field-additional-text .working-at-nhlbi--landing p a:visited {
  color: #D7E7F4;
}
/* line 145, ../sass/_mixins.scss */
.working-at-nhlbi--landing .newsRedBackground a:hover, .working-at-nhlbi--landing .calloutdescription a:hover, .working-at-nhlbi--landing .calloutdescriptionwhite a:hover, .working-at-nhlbi--landing .calloutflattextwhite a:hover, .working-at-nhlbi--landing .calloutflattext a:hover, .working-at-nhlbi--landing .node--type-webform .field--name-field-status-message a:hover, .node--type-webform .working-at-nhlbi--landing .field--name-field-status-message a:hover, .working-at-nhlbi--landing .webform-submission-form .field--name-field-status-message a:hover, .webform-submission-form .working-at-nhlbi--landing .field--name-field-status-message a:hover, .working-at-nhlbi--landing .node--type-research-topic .rtDescription .readMoreContainer > .field--name-field-standard-description a:hover, .node--type-research-topic .rtDescription .working-at-nhlbi--landing .readMoreContainer > .field--name-field-standard-description a:hover,
.working-at-nhlbi--landing .node--type-research-topic .rtDescription .field--name-field-additional-text p a:hover,
.node--type-research-topic .rtDescription .field--name-field-additional-text .working-at-nhlbi--landing p a:hover {
  font-weight: bold;
}
/* line 154, ../sass/_mixins.scss */
.working-at-nhlbi--landing .newsRedBackground h1, .working-at-nhlbi--landing .newsRedBackground .photocredit, .working-at-nhlbi--landing .calloutdescription h1, .working-at-nhlbi--landing .calloutdescriptionwhite h1, .working-at-nhlbi--landing .calloutflattextwhite h1, .working-at-nhlbi--landing .calloutflattext h1, .working-at-nhlbi--landing .node--type-webform .field--name-field-status-message h1, .node--type-webform .working-at-nhlbi--landing .field--name-field-status-message h1, .working-at-nhlbi--landing .webform-submission-form .field--name-field-status-message h1, .webform-submission-form .working-at-nhlbi--landing .field--name-field-status-message h1, .working-at-nhlbi--landing .node--type-research-topic .rtDescription .readMoreContainer > .field--name-field-standard-description h1, .node--type-research-topic .rtDescription .working-at-nhlbi--landing .readMoreContainer > .field--name-field-standard-description h1,
.working-at-nhlbi--landing .node--type-research-topic .rtDescription .field--name-field-additional-text p h1,
.node--type-research-topic .rtDescription .field--name-field-additional-text .working-at-nhlbi--landing p h1, .working-at-nhlbi--landing .calloutdescription .photocredit, .working-at-nhlbi--landing .calloutdescriptionwhite .photocredit, .working-at-nhlbi--landing .calloutflattextwhite .photocredit, .working-at-nhlbi--landing .calloutflattext .photocredit, .working-at-nhlbi--landing .node--type-webform .field--name-field-status-message .photocredit, .node--type-webform .working-at-nhlbi--landing .field--name-field-status-message .photocredit, .working-at-nhlbi--landing .webform-submission-form .field--name-field-status-message .photocredit, .webform-submission-form .working-at-nhlbi--landing .field--name-field-status-message .photocredit, .working-at-nhlbi--landing .node--type-research-topic .rtDescription .readMoreContainer > .field--name-field-standard-description .photocredit, .node--type-research-topic .rtDescription .working-at-nhlbi--landing .readMoreContainer > .field--name-field-standard-description .photocredit,
.working-at-nhlbi--landing .node--type-research-topic .rtDescription .field--name-field-additional-text p .photocredit,
.node--type-research-topic .rtDescription .field--name-field-additional-text .working-at-nhlbi--landing p .photocredit {
  color: #fff;
}
/* line 1652, ../sass/components/_landing_pages.scss */
.working-at-nhlbi--landing .flexItemText {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  padding: 0.875rem 1.5rem;
  /*  IE10+ */
  /* IE8  */
  /* IE9,10  */
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  /* line 1652, ../sass/components/_landing_pages.scss */
  .working-at-nhlbi--landing .flexItemText {
    width: 100%;
  }
}
@media \0screen {
  /* line 1652, ../sass/components/_landing_pages.scss */
  .working-at-nhlbi--landing .flexItemText {
    width: 100%;
  }
}
@media screen and (min-width: 640px), screen\9 {
  /* line 1652, ../sass/components/_landing_pages.scss */
  .working-at-nhlbi--landing .flexItemText {
    width: 100%;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1671, ../sass/components/_landing_pages.scss */
  .working-at-nhlbi--landing .flexItemImageThird, .working-at-nhlbi--landing .flexItemImageThirdHalf, .working-at-nhlbi--landing .hero-image {
    min-width: 50%;
    max-width: 50%;
  }
}

/* line 1683, ../sass/components/_landing_pages.scss */
.field--name-field-employment-opportunity-car > .field__item {
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-grow: 1;
  -o-flex-grow: 1;
  flex-grow: 1;
  background-color: #fff;
}
@media all and (min-width: 1100px) {
  /* line 1683, ../sass/components/_landing_pages.scss */
  .field--name-field-employment-opportunity-car > .field__item {
    max-width: 29%;
    flex-basis: 29%;
    width: auto;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1683, ../sass/components/_landing_pages.scss */
  .field--name-field-employment-opportunity-car > .field__item {
    max-width: 43%;
    flex-basis: 43%;
    width: auto;
  }
}
/* line 1699, ../sass/components/_landing_pages.scss */
.field--name-field-employment-opportunity-car > .field__item .standard-icon-card {
  display: flex;
}
/* line 1701, ../sass/components/_landing_pages.scss */
.field--name-field-employment-opportunity-car > .field__item .standard-icon-card .herobannertitle-grey {
  margin-bottom: 0;
  padding-bottom: 0.25em;
}

/* line 1707, ../sass/components/_landing_pages.scss */
.field--name-field-employment-opportunity-car > .field__item:last-child {
  margin-right: 0;
}

@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 177, ../sass/_mixins.scss */
  .all-foas--landing .pager__items {
    padding: 0;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 177, ../sass/_mixins.scss */
  .all-foas--landing .pager__items {
    padding-left: 0;
    padding-right: 15px;
  }
}
/* line 188, ../sass/_mixins.scss */
.all-foas--landing .pager__items .pager__item, .all-foas--landing .pager__items .blueRoundButton, .all-foas--landing .pager__items .redRoundButton, .all-foas--landing .pager__items .standard-more-link, .all-foas--landing .pager__items .news-and-events--landing .more-link, .news-and-events--landing .all-foas--landing .pager__items .more-link, .all-foas--landing .pager__items .view-more-link, .all-foas--landing .pager .pager__item, .all-foas--landing .standard-more-link .pager__item, .all-foas--landing .news-and-events--landing .more-link .pager__item, .news-and-events--landing .all-foas--landing .more-link .pager__item, .all-foas--landing .view-more-link .pager__item, .all-foas--landing .pager .blueRoundButton, .all-foas--landing .standard-more-link .blueRoundButton, .all-foas--landing .news-and-events--landing .more-link .blueRoundButton, .news-and-events--landing .all-foas--landing .more-link .blueRoundButton, .all-foas--landing .view-more-link .blueRoundButton, .all-foas--landing .pager .redRoundButton, .all-foas--landing .standard-more-link .redRoundButton, .all-foas--landing .news-and-events--landing .more-link .redRoundButton, .news-and-events--landing .all-foas--landing .more-link .redRoundButton, .all-foas--landing .view-more-link .redRoundButton, .all-foas--landing .pager .standard-more-link, .all-foas--landing .standard-more-link .standard-more-link, .all-foas--landing .news-and-events--landing .more-link .standard-more-link, .news-and-events--landing .all-foas--landing .more-link .standard-more-link, .all-foas--landing .view-more-link .standard-more-link, .all-foas--landing .pager .news-and-events--landing .more-link, .news-and-events--landing .all-foas--landing .pager .more-link, .all-foas--landing .standard-more-link .news-and-events--landing .more-link, .news-and-events--landing .all-foas--landing .standard-more-link .more-link, .all-foas--landing .news-and-events--landing .more-link .more-link, .news-and-events--landing .all-foas--landing .more-link .more-link, .all-foas--landing .view-more-link .news-and-events--landing .more-link, .news-and-events--landing .all-foas--landing .view-more-link .more-link, .all-foas--landing .pager .view-more-link, .all-foas--landing .standard-more-link .view-more-link, .all-foas--landing .news-and-events--landing .more-link .view-more-link, .news-and-events--landing .all-foas--landing .more-link .view-more-link, .all-foas--landing .view-more-link .view-more-link {
  display: inline-block;
  border: 1px solid #d7d7d7;
  background-color: #fff;
  padding: 0;
  margin: 0 -.13em;
  text-align: center;
  width: auto;
  height: auto;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 188, ../sass/_mixins.scss */
  .all-foas--landing .pager__items .pager__item, .all-foas--landing .pager__items .blueRoundButton, .all-foas--landing .pager__items .redRoundButton, .all-foas--landing .pager__items .standard-more-link, .all-foas--landing .pager__items .news-and-events--landing .more-link, .news-and-events--landing .all-foas--landing .pager__items .more-link, .all-foas--landing .pager__items .view-more-link, .all-foas--landing .pager .pager__item, .all-foas--landing .standard-more-link .pager__item, .all-foas--landing .news-and-events--landing .more-link .pager__item, .news-and-events--landing .all-foas--landing .more-link .pager__item, .all-foas--landing .view-more-link .pager__item, .all-foas--landing .pager .blueRoundButton, .all-foas--landing .standard-more-link .blueRoundButton, .all-foas--landing .news-and-events--landing .more-link .blueRoundButton, .news-and-events--landing .all-foas--landing .more-link .blueRoundButton, .all-foas--landing .view-more-link .blueRoundButton, .all-foas--landing .pager .redRoundButton, .all-foas--landing .standard-more-link .redRoundButton, .all-foas--landing .news-and-events--landing .more-link .redRoundButton, .news-and-events--landing .all-foas--landing .more-link .redRoundButton, .all-foas--landing .view-more-link .redRoundButton, .all-foas--landing .pager .standard-more-link, .all-foas--landing .standard-more-link .standard-more-link, .all-foas--landing .news-and-events--landing .more-link .standard-more-link, .news-and-events--landing .all-foas--landing .more-link .standard-more-link, .all-foas--landing .view-more-link .standard-more-link, .all-foas--landing .pager .news-and-events--landing .more-link, .news-and-events--landing .all-foas--landing .pager .more-link, .all-foas--landing .standard-more-link .news-and-events--landing .more-link, .news-and-events--landing .all-foas--landing .standard-more-link .more-link, .all-foas--landing .news-and-events--landing .more-link .more-link, .news-and-events--landing .all-foas--landing .more-link .more-link, .all-foas--landing .view-more-link .news-and-events--landing .more-link, .news-and-events--landing .all-foas--landing .view-more-link .more-link, .all-foas--landing .pager .view-more-link, .all-foas--landing .standard-more-link .view-more-link, .all-foas--landing .news-and-events--landing .more-link .view-more-link, .news-and-events--landing .all-foas--landing .more-link .view-more-link, .all-foas--landing .view-more-link .view-more-link {
    width: 45px;
    height: 45px;
    display: none;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 188, ../sass/_mixins.scss */
  .all-foas--landing .pager__items .pager__item, .all-foas--landing .pager__items .blueRoundButton, .all-foas--landing .pager__items .redRoundButton, .all-foas--landing .pager__items .standard-more-link, .all-foas--landing .pager__items .news-and-events--landing .more-link, .news-and-events--landing .all-foas--landing .pager__items .more-link, .all-foas--landing .pager__items .view-more-link, .all-foas--landing .pager .pager__item, .all-foas--landing .standard-more-link .pager__item, .all-foas--landing .news-and-events--landing .more-link .pager__item, .news-and-events--landing .all-foas--landing .more-link .pager__item, .all-foas--landing .view-more-link .pager__item, .all-foas--landing .pager .blueRoundButton, .all-foas--landing .standard-more-link .blueRoundButton, .all-foas--landing .news-and-events--landing .more-link .blueRoundButton, .news-and-events--landing .all-foas--landing .more-link .blueRoundButton, .all-foas--landing .view-more-link .blueRoundButton, .all-foas--landing .pager .redRoundButton, .all-foas--landing .standard-more-link .redRoundButton, .all-foas--landing .news-and-events--landing .more-link .redRoundButton, .news-and-events--landing .all-foas--landing .more-link .redRoundButton, .all-foas--landing .view-more-link .redRoundButton, .all-foas--landing .pager .standard-more-link, .all-foas--landing .standard-more-link .standard-more-link, .all-foas--landing .news-and-events--landing .more-link .standard-more-link, .news-and-events--landing .all-foas--landing .more-link .standard-more-link, .all-foas--landing .view-more-link .standard-more-link, .all-foas--landing .pager .news-and-events--landing .more-link, .news-and-events--landing .all-foas--landing .pager .more-link, .all-foas--landing .standard-more-link .news-and-events--landing .more-link, .news-and-events--landing .all-foas--landing .standard-more-link .more-link, .all-foas--landing .news-and-events--landing .more-link .more-link, .news-and-events--landing .all-foas--landing .more-link .more-link, .all-foas--landing .view-more-link .news-and-events--landing .more-link, .news-and-events--landing .all-foas--landing .view-more-link .more-link, .all-foas--landing .pager .view-more-link, .all-foas--landing .standard-more-link .view-more-link, .all-foas--landing .news-and-events--landing .more-link .view-more-link, .news-and-events--landing .all-foas--landing .more-link .view-more-link, .all-foas--landing .view-more-link .view-more-link {
    display: none;
  }
}
/* line 207, ../sass/_mixins.scss */
.all-foas--landing .pager__items .pager__item a, .all-foas--landing .pager__items .blueRoundButton a, .all-foas--landing .pager__items .redRoundButton a, .all-foas--landing .pager__items .standard-more-link a, .all-foas--landing .pager__items .news-and-events--landing .more-link a, .news-and-events--landing .all-foas--landing .pager__items .more-link a, .all-foas--landing .pager__items .view-more-link a, .all-foas--landing .pager .pager__item a, .all-foas--landing .standard-more-link .pager__item a, .all-foas--landing .news-and-events--landing .more-link .pager__item a, .news-and-events--landing .all-foas--landing .more-link .pager__item a, .all-foas--landing .view-more-link .pager__item a, .all-foas--landing .pager .blueRoundButton a, .all-foas--landing .standard-more-link .blueRoundButton a, .all-foas--landing .news-and-events--landing .more-link .blueRoundButton a, .news-and-events--landing .all-foas--landing .more-link .blueRoundButton a, .all-foas--landing .view-more-link .blueRoundButton a, .all-foas--landing .pager .redRoundButton a, .all-foas--landing .standard-more-link .redRoundButton a, .all-foas--landing .news-and-events--landing .more-link .redRoundButton a, .news-and-events--landing .all-foas--landing .more-link .redRoundButton a, .all-foas--landing .view-more-link .redRoundButton a, .all-foas--landing .pager .standard-more-link a, .all-foas--landing .standard-more-link .standard-more-link a, .all-foas--landing .news-and-events--landing .more-link .standard-more-link a, .news-and-events--landing .all-foas--landing .more-link .standard-more-link a, .all-foas--landing .view-more-link .standard-more-link a, .all-foas--landing .pager .news-and-events--landing .more-link a, .news-and-events--landing .all-foas--landing .pager .more-link a, .all-foas--landing .standard-more-link .news-and-events--landing .more-link a, .news-and-events--landing .all-foas--landing .standard-more-link .more-link a, .all-foas--landing .news-and-events--landing .more-link .more-link a, .news-and-events--landing .all-foas--landing .more-link .more-link a, .all-foas--landing .view-more-link .news-and-events--landing .more-link a, .news-and-events--landing .all-foas--landing .view-more-link .more-link a, .all-foas--landing .pager .view-more-link a, .all-foas--landing .standard-more-link .view-more-link a, .all-foas--landing .news-and-events--landing .more-link .view-more-link a, .news-and-events--landing .all-foas--landing .more-link .view-more-link a, .all-foas--landing .view-more-link .view-more-link a {
  display: block;
  padding: 1em 1.5em;
  color: #222;
  text-decoration: none;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 207, ../sass/_mixins.scss */
  .all-foas--landing .pager__items .pager__item a, .all-foas--landing .pager__items .blueRoundButton a, .all-foas--landing .pager__items .redRoundButton a, .all-foas--landing .pager__items .standard-more-link a, .all-foas--landing .pager__items .news-and-events--landing .more-link a, .news-and-events--landing .all-foas--landing .pager__items .more-link a, .all-foas--landing .pager__items .view-more-link a, .all-foas--landing .pager .pager__item a, .all-foas--landing .standard-more-link .pager__item a, .all-foas--landing .news-and-events--landing .more-link .pager__item a, .news-and-events--landing .all-foas--landing .more-link .pager__item a, .all-foas--landing .view-more-link .pager__item a, .all-foas--landing .pager .blueRoundButton a, .all-foas--landing .standard-more-link .blueRoundButton a, .all-foas--landing .news-and-events--landing .more-link .blueRoundButton a, .news-and-events--landing .all-foas--landing .more-link .blueRoundButton a, .all-foas--landing .view-more-link .blueRoundButton a, .all-foas--landing .pager .redRoundButton a, .all-foas--landing .standard-more-link .redRoundButton a, .all-foas--landing .news-and-events--landing .more-link .redRoundButton a, .news-and-events--landing .all-foas--landing .more-link .redRoundButton a, .all-foas--landing .view-more-link .redRoundButton a, .all-foas--landing .pager .standard-more-link a, .all-foas--landing .standard-more-link .standard-more-link a, .all-foas--landing .news-and-events--landing .more-link .standard-more-link a, .news-and-events--landing .all-foas--landing .more-link .standard-more-link a, .all-foas--landing .view-more-link .standard-more-link a, .all-foas--landing .pager .news-and-events--landing .more-link a, .news-and-events--landing .all-foas--landing .pager .more-link a, .all-foas--landing .standard-more-link .news-and-events--landing .more-link a, .news-and-events--landing .all-foas--landing .standard-more-link .more-link a, .all-foas--landing .news-and-events--landing .more-link .more-link a, .news-and-events--landing .all-foas--landing .more-link .more-link a, .all-foas--landing .view-more-link .news-and-events--landing .more-link a, .news-and-events--landing .all-foas--landing .view-more-link .more-link a, .all-foas--landing .pager .view-more-link a, .all-foas--landing .standard-more-link .view-more-link a, .all-foas--landing .news-and-events--landing .more-link .view-more-link a, .news-and-events--landing .all-foas--landing .more-link .view-more-link a, .all-foas--landing .view-more-link .view-more-link a {
    padding: 0.6em 0.5em;
  }
}
/* line 217, ../sass/_mixins.scss */
.all-foas--landing .pager__items .pager__item a:focus, .all-foas--landing .pager__items .blueRoundButton a:focus, .all-foas--landing .pager__items .redRoundButton a:focus, .all-foas--landing .pager__items .standard-more-link a:focus, .all-foas--landing .pager__items .news-and-events--landing .more-link a:focus, .news-and-events--landing .all-foas--landing .pager__items .more-link a:focus, .all-foas--landing .pager__items .view-more-link a:focus, .all-foas--landing .pager__items .pager__item a:active, .all-foas--landing .pager__items .blueRoundButton a:active, .all-foas--landing .pager__items .redRoundButton a:active, .all-foas--landing .pager__items .standard-more-link a:active, .all-foas--landing .pager__items .news-and-events--landing .more-link a:active, .news-and-events--landing .all-foas--landing .pager__items .more-link a:active, .all-foas--landing .pager__items .view-more-link a:active, .all-foas--landing .pager .pager__item a:focus, .all-foas--landing .standard-more-link .pager__item a:focus, .all-foas--landing .news-and-events--landing .more-link .pager__item a:focus, .news-and-events--landing .all-foas--landing .more-link .pager__item a:focus, .all-foas--landing .view-more-link .pager__item a:focus, .all-foas--landing .pager .blueRoundButton a:focus, .all-foas--landing .standard-more-link .blueRoundButton a:focus, .all-foas--landing .news-and-events--landing .more-link .blueRoundButton a:focus, .news-and-events--landing .all-foas--landing .more-link .blueRoundButton a:focus, .all-foas--landing .view-more-link .blueRoundButton a:focus, .all-foas--landing .pager .redRoundButton a:focus, .all-foas--landing .standard-more-link .redRoundButton a:focus, .all-foas--landing .news-and-events--landing .more-link .redRoundButton a:focus, .news-and-events--landing .all-foas--landing .more-link .redRoundButton a:focus, .all-foas--landing .view-more-link .redRoundButton a:focus, .all-foas--landing .pager .standard-more-link a:focus, .all-foas--landing .standard-more-link .standard-more-link a:focus, .all-foas--landing .news-and-events--landing .more-link .standard-more-link a:focus, .news-and-events--landing .all-foas--landing .more-link .standard-more-link a:focus, .all-foas--landing .view-more-link .standard-more-link a:focus, .all-foas--landing .pager .news-and-events--landing .more-link a:focus, .news-and-events--landing .all-foas--landing .pager .more-link a:focus, .all-foas--landing .standard-more-link .news-and-events--landing .more-link a:focus, .news-and-events--landing .all-foas--landing .standard-more-link .more-link a:focus, .all-foas--landing .news-and-events--landing .more-link .more-link a:focus, .news-and-events--landing .all-foas--landing .more-link .more-link a:focus, .all-foas--landing .view-more-link .news-and-events--landing .more-link a:focus, .news-and-events--landing .all-foas--landing .view-more-link .more-link a:focus, .all-foas--landing .pager .view-more-link a:focus, .all-foas--landing .standard-more-link .view-more-link a:focus, .all-foas--landing .news-and-events--landing .more-link .view-more-link a:focus, .news-and-events--landing .all-foas--landing .more-link .view-more-link a:focus, .all-foas--landing .view-more-link .view-more-link a:focus, .all-foas--landing .pager .pager__item a:active, .all-foas--landing .standard-more-link .pager__item a:active, .all-foas--landing .news-and-events--landing .more-link .pager__item a:active, .news-and-events--landing .all-foas--landing .more-link .pager__item a:active, .all-foas--landing .view-more-link .pager__item a:active, .all-foas--landing .pager .blueRoundButton a:active, .all-foas--landing .standard-more-link .blueRoundButton a:active, .all-foas--landing .news-and-events--landing .more-link .blueRoundButton a:active, .news-and-events--landing .all-foas--landing .more-link .blueRoundButton a:active, .all-foas--landing .view-more-link .blueRoundButton a:active, .all-foas--landing .pager .redRoundButton a:active, .all-foas--landing .standard-more-link .redRoundButton a:active, .all-foas--landing .news-and-events--landing .more-link .redRoundButton a:active, .news-and-events--landing .all-foas--landing .more-link .redRoundButton a:active, .all-foas--landing .view-more-link .redRoundButton a:active, .all-foas--landing .pager .standard-more-link a:active, .all-foas--landing .standard-more-link .standard-more-link a:active, .all-foas--landing .news-and-events--landing .more-link .standard-more-link a:active, .news-and-events--landing .all-foas--landing .more-link .standard-more-link a:active, .all-foas--landing .view-more-link .standard-more-link a:active, .all-foas--landing .pager .news-and-events--landing .more-link a:active, .news-and-events--landing .all-foas--landing .pager .more-link a:active, .all-foas--landing .standard-more-link .news-and-events--landing .more-link a:active, .news-and-events--landing .all-foas--landing .standard-more-link .more-link a:active, .all-foas--landing .news-and-events--landing .more-link .more-link a:active, .news-and-events--landing .all-foas--landing .more-link .more-link a:active, .all-foas--landing .view-more-link .news-and-events--landing .more-link a:active, .news-and-events--landing .all-foas--landing .view-more-link .more-link a:active, .all-foas--landing .pager .view-more-link a:active, .all-foas--landing .standard-more-link .view-more-link a:active, .all-foas--landing .news-and-events--landing .more-link .view-more-link a:active, .news-and-events--landing .all-foas--landing .more-link .view-more-link a:active, .all-foas--landing .view-more-link .view-more-link a:active {
  position: relative;
  z-index: 1;
}
/* line 222, ../sass/_mixins.scss */
.all-foas--landing .pager__items .pager__item--first, .all-foas--landing .pager__items .pager__item--previous, .all-foas--landing .pager__items .pager__item--next, .all-foas--landing .pager__items .pager__item--last, .all-foas--landing .pager .pager__item--first, .all-foas--landing .standard-more-link .pager__item--first, .all-foas--landing .news-and-events--landing .more-link .pager__item--first, .news-and-events--landing .all-foas--landing .more-link .pager__item--first, .all-foas--landing .view-more-link .pager__item--first, .all-foas--landing .pager .pager__item--previous, .all-foas--landing .standard-more-link .pager__item--previous, .all-foas--landing .news-and-events--landing .more-link .pager__item--previous, .news-and-events--landing .all-foas--landing .more-link .pager__item--previous, .all-foas--landing .view-more-link .pager__item--previous, .all-foas--landing .pager .pager__item--next, .all-foas--landing .standard-more-link .pager__item--next, .all-foas--landing .news-and-events--landing .more-link .pager__item--next, .news-and-events--landing .all-foas--landing .more-link .pager__item--next, .all-foas--landing .view-more-link .pager__item--next, .all-foas--landing .pager .pager__item--last, .all-foas--landing .standard-more-link .pager__item--last, .all-foas--landing .news-and-events--landing .more-link .pager__item--last, .news-and-events--landing .all-foas--landing .more-link .pager__item--last, .all-foas--landing .view-more-link .pager__item--last {
  border: 1px solid #d7d7d7;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 222, ../sass/_mixins.scss */
  .all-foas--landing .pager__items .pager__item--first, .all-foas--landing .pager__items .pager__item--previous, .all-foas--landing .pager__items .pager__item--next, .all-foas--landing .pager__items .pager__item--last, .all-foas--landing .pager .pager__item--first, .all-foas--landing .standard-more-link .pager__item--first, .all-foas--landing .news-and-events--landing .more-link .pager__item--first, .news-and-events--landing .all-foas--landing .more-link .pager__item--first, .all-foas--landing .view-more-link .pager__item--first, .all-foas--landing .pager .pager__item--previous, .all-foas--landing .standard-more-link .pager__item--previous, .all-foas--landing .news-and-events--landing .more-link .pager__item--previous, .news-and-events--landing .all-foas--landing .more-link .pager__item--previous, .all-foas--landing .view-more-link .pager__item--previous, .all-foas--landing .pager .pager__item--next, .all-foas--landing .standard-more-link .pager__item--next, .all-foas--landing .news-and-events--landing .more-link .pager__item--next, .news-and-events--landing .all-foas--landing .more-link .pager__item--next, .all-foas--landing .view-more-link .pager__item--next, .all-foas--landing .pager .pager__item--last, .all-foas--landing .standard-more-link .pager__item--last, .all-foas--landing .news-and-events--landing .more-link .pager__item--last, .news-and-events--landing .all-foas--landing .more-link .pager__item--last, .all-foas--landing .view-more-link .pager__item--last {
    display: inline-block;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 222, ../sass/_mixins.scss */
  .all-foas--landing .pager__items .pager__item--first, .all-foas--landing .pager__items .pager__item--previous, .all-foas--landing .pager__items .pager__item--next, .all-foas--landing .pager__items .pager__item--last, .all-foas--landing .pager .pager__item--first, .all-foas--landing .standard-more-link .pager__item--first, .all-foas--landing .news-and-events--landing .more-link .pager__item--first, .news-and-events--landing .all-foas--landing .more-link .pager__item--first, .all-foas--landing .view-more-link .pager__item--first, .all-foas--landing .pager .pager__item--previous, .all-foas--landing .standard-more-link .pager__item--previous, .all-foas--landing .news-and-events--landing .more-link .pager__item--previous, .news-and-events--landing .all-foas--landing .more-link .pager__item--previous, .all-foas--landing .view-more-link .pager__item--previous, .all-foas--landing .pager .pager__item--next, .all-foas--landing .standard-more-link .pager__item--next, .all-foas--landing .news-and-events--landing .more-link .pager__item--next, .news-and-events--landing .all-foas--landing .more-link .pager__item--next, .all-foas--landing .view-more-link .pager__item--next, .all-foas--landing .pager .pager__item--last, .all-foas--landing .standard-more-link .pager__item--last, .all-foas--landing .news-and-events--landing .more-link .pager__item--last, .news-and-events--landing .all-foas--landing .more-link .pager__item--last, .all-foas--landing .view-more-link .pager__item--last {
    display: inline-block;
  }
}
/* line 231, ../sass/_mixins.scss */
.all-foas--landing .pager__items .pager__item--first, .all-foas--landing .pager__items .pager__item--last, .all-foas--landing .pager .pager__item--first, .all-foas--landing .standard-more-link .pager__item--first, .all-foas--landing .news-and-events--landing .more-link .pager__item--first, .news-and-events--landing .all-foas--landing .more-link .pager__item--first, .all-foas--landing .view-more-link .pager__item--first, .all-foas--landing .pager .pager__item--last, .all-foas--landing .standard-more-link .pager__item--last, .all-foas--landing .news-and-events--landing .more-link .pager__item--last, .news-and-events--landing .all-foas--landing .more-link .pager__item--last, .all-foas--landing .view-more-link .pager__item--last {
  margin: 0 -.14em;
}
/* line 234, ../sass/_mixins.scss */
.all-foas--landing .pager__items .pager__item--ellipsis, .all-foas--landing .pager .pager__item--ellipsis, .all-foas--landing .standard-more-link .pager__item--ellipsis, .all-foas--landing .news-and-events--landing .more-link .pager__item--ellipsis, .news-and-events--landing .all-foas--landing .more-link .pager__item--ellipsis, .all-foas--landing .view-more-link .pager__item--ellipsis {
  display: none;
}
/* line 239, ../sass/_mixins.scss */
.all-foas--landing .pager__items .pager__item:hover, .all-foas--landing .pager__items .blueRoundButton:hover, .all-foas--landing .pager__items .redRoundButton:hover, .all-foas--landing .pager__items .standard-more-link:hover, .all-foas--landing .pager__items .news-and-events--landing .more-link:hover, .news-and-events--landing .all-foas--landing .pager__items .more-link:hover, .all-foas--landing .pager__items .view-more-link:hover, .all-foas--landing .pager .pager__item:hover, .all-foas--landing .standard-more-link .pager__item:hover, .all-foas--landing .news-and-events--landing .more-link .pager__item:hover, .news-and-events--landing .all-foas--landing .more-link .pager__item:hover, .all-foas--landing .view-more-link .pager__item:hover, .all-foas--landing .pager .blueRoundButton:hover, .all-foas--landing .standard-more-link .blueRoundButton:hover, .all-foas--landing .news-and-events--landing .more-link .blueRoundButton:hover, .news-and-events--landing .all-foas--landing .more-link .blueRoundButton:hover, .all-foas--landing .view-more-link .blueRoundButton:hover, .all-foas--landing .pager .redRoundButton:hover, .all-foas--landing .standard-more-link .redRoundButton:hover, .all-foas--landing .news-and-events--landing .more-link .redRoundButton:hover, .news-and-events--landing .all-foas--landing .more-link .redRoundButton:hover, .all-foas--landing .view-more-link .redRoundButton:hover, .all-foas--landing .pager .standard-more-link:hover, .all-foas--landing .standard-more-link .standard-more-link:hover, .all-foas--landing .news-and-events--landing .more-link .standard-more-link:hover, .news-and-events--landing .all-foas--landing .more-link .standard-more-link:hover, .all-foas--landing .view-more-link .standard-more-link:hover, .all-foas--landing .pager .news-and-events--landing .more-link:hover, .news-and-events--landing .all-foas--landing .pager .more-link:hover, .all-foas--landing .standard-more-link .news-and-events--landing .more-link:hover, .news-and-events--landing .all-foas--landing .standard-more-link .more-link:hover, .all-foas--landing .news-and-events--landing .more-link .more-link:hover, .news-and-events--landing .all-foas--landing .more-link .more-link:hover, .all-foas--landing .view-more-link .news-and-events--landing .more-link:hover, .news-and-events--landing .all-foas--landing .view-more-link .more-link:hover, .all-foas--landing .pager .view-more-link:hover, .all-foas--landing .standard-more-link .view-more-link:hover, .all-foas--landing .news-and-events--landing .more-link .view-more-link:hover, .news-and-events--landing .all-foas--landing .more-link .view-more-link:hover, .all-foas--landing .view-more-link .view-more-link:hover {
  background-color: #1a568c;
  color: #fff;
}
/* line 242, ../sass/_mixins.scss */
.all-foas--landing .pager__items .pager__item:hover a, .all-foas--landing .pager__items .blueRoundButton:hover a, .all-foas--landing .pager__items .redRoundButton:hover a, .all-foas--landing .pager__items .standard-more-link:hover a, .all-foas--landing .pager__items .news-and-events--landing .more-link:hover a, .news-and-events--landing .all-foas--landing .pager__items .more-link:hover a, .all-foas--landing .pager__items .view-more-link:hover a, .all-foas--landing .pager .pager__item:hover a, .all-foas--landing .standard-more-link .pager__item:hover a, .all-foas--landing .news-and-events--landing .more-link .pager__item:hover a, .news-and-events--landing .all-foas--landing .more-link .pager__item:hover a, .all-foas--landing .view-more-link .pager__item:hover a, .all-foas--landing .pager .blueRoundButton:hover a, .all-foas--landing .standard-more-link .blueRoundButton:hover a, .all-foas--landing .news-and-events--landing .more-link .blueRoundButton:hover a, .news-and-events--landing .all-foas--landing .more-link .blueRoundButton:hover a, .all-foas--landing .view-more-link .blueRoundButton:hover a, .all-foas--landing .pager .redRoundButton:hover a, .all-foas--landing .standard-more-link .redRoundButton:hover a, .all-foas--landing .news-and-events--landing .more-link .redRoundButton:hover a, .news-and-events--landing .all-foas--landing .more-link .redRoundButton:hover a, .all-foas--landing .view-more-link .redRoundButton:hover a, .all-foas--landing .pager .standard-more-link:hover a, .all-foas--landing .standard-more-link .standard-more-link:hover a, .all-foas--landing .news-and-events--landing .more-link .standard-more-link:hover a, .news-and-events--landing .all-foas--landing .more-link .standard-more-link:hover a, .all-foas--landing .view-more-link .standard-more-link:hover a, .all-foas--landing .pager .news-and-events--landing .more-link:hover a, .news-and-events--landing .all-foas--landing .pager .more-link:hover a, .all-foas--landing .standard-more-link .news-and-events--landing .more-link:hover a, .news-and-events--landing .all-foas--landing .standard-more-link .more-link:hover a, .all-foas--landing .news-and-events--landing .more-link .more-link:hover a, .news-and-events--landing .all-foas--landing .more-link .more-link:hover a, .all-foas--landing .view-more-link .news-and-events--landing .more-link:hover a, .news-and-events--landing .all-foas--landing .view-more-link .more-link:hover a, .all-foas--landing .pager .view-more-link:hover a, .all-foas--landing .standard-more-link .view-more-link:hover a, .all-foas--landing .news-and-events--landing .more-link .view-more-link:hover a, .news-and-events--landing .all-foas--landing .more-link .view-more-link:hover a, .all-foas--landing .view-more-link .view-more-link:hover a {
  color: #fff;
}
/* line 246, ../sass/_mixins.scss */
.all-foas--landing .pager__items .pager__item.is-active, .all-foas--landing .pager__items .is-active.blueRoundButton, .all-foas--landing .pager__items .is-active.redRoundButton, .all-foas--landing .pager__items .is-active.standard-more-link, .all-foas--landing .pager__items .news-and-events--landing .is-active.more-link, .news-and-events--landing .all-foas--landing .pager__items .is-active.more-link, .all-foas--landing .pager__items .is-active.view-more-link, .all-foas--landing .pager .pager__item.is-active, .all-foas--landing .standard-more-link .pager__item.is-active, .all-foas--landing .news-and-events--landing .more-link .pager__item.is-active, .news-and-events--landing .all-foas--landing .more-link .pager__item.is-active, .all-foas--landing .view-more-link .pager__item.is-active, .all-foas--landing .pager .is-active.blueRoundButton, .all-foas--landing .standard-more-link .is-active.blueRoundButton, .all-foas--landing .news-and-events--landing .more-link .is-active.blueRoundButton, .news-and-events--landing .all-foas--landing .more-link .is-active.blueRoundButton, .all-foas--landing .view-more-link .is-active.blueRoundButton, .all-foas--landing .pager .is-active.redRoundButton, .all-foas--landing .standard-more-link .is-active.redRoundButton, .all-foas--landing .news-and-events--landing .more-link .is-active.redRoundButton, .news-and-events--landing .all-foas--landing .more-link .is-active.redRoundButton, .all-foas--landing .view-more-link .is-active.redRoundButton, .all-foas--landing .pager .is-active.standard-more-link, .all-foas--landing .standard-more-link .is-active.standard-more-link, .all-foas--landing .news-and-events--landing .more-link .is-active.standard-more-link, .news-and-events--landing .all-foas--landing .more-link .is-active.standard-more-link, .all-foas--landing .view-more-link .is-active.standard-more-link, .all-foas--landing .pager .news-and-events--landing .is-active.more-link, .news-and-events--landing .all-foas--landing .pager .is-active.more-link, .all-foas--landing .standard-more-link .news-and-events--landing .is-active.more-link, .news-and-events--landing .all-foas--landing .standard-more-link .is-active.more-link, .all-foas--landing .news-and-events--landing .more-link .is-active.more-link, .news-and-events--landing .all-foas--landing .more-link .is-active.more-link, .all-foas--landing .view-more-link .news-and-events--landing .is-active.more-link, .news-and-events--landing .all-foas--landing .view-more-link .is-active.more-link, .all-foas--landing .pager .is-active.view-more-link, .all-foas--landing .standard-more-link .is-active.view-more-link, .all-foas--landing .news-and-events--landing .more-link .is-active.view-more-link, .news-and-events--landing .all-foas--landing .more-link .is-active.view-more-link, .all-foas--landing .view-more-link .is-active.view-more-link {
  background-color: #1a568c;
}
/* line 248, ../sass/_mixins.scss */
.all-foas--landing .pager__items .pager__item.is-active a, .all-foas--landing .pager__items .is-active.blueRoundButton a, .all-foas--landing .pager__items .is-active.redRoundButton a, .all-foas--landing .pager__items .is-active.standard-more-link a, .all-foas--landing .pager__items .news-and-events--landing .is-active.more-link a, .news-and-events--landing .all-foas--landing .pager__items .is-active.more-link a, .all-foas--landing .pager__items .is-active.view-more-link a, .all-foas--landing .pager .pager__item.is-active a, .all-foas--landing .standard-more-link .pager__item.is-active a, .all-foas--landing .news-and-events--landing .more-link .pager__item.is-active a, .news-and-events--landing .all-foas--landing .more-link .pager__item.is-active a, .all-foas--landing .view-more-link .pager__item.is-active a, .all-foas--landing .pager .is-active.blueRoundButton a, .all-foas--landing .standard-more-link .is-active.blueRoundButton a, .all-foas--landing .news-and-events--landing .more-link .is-active.blueRoundButton a, .news-and-events--landing .all-foas--landing .more-link .is-active.blueRoundButton a, .all-foas--landing .view-more-link .is-active.blueRoundButton a, .all-foas--landing .pager .is-active.redRoundButton a, .all-foas--landing .standard-more-link .is-active.redRoundButton a, .all-foas--landing .news-and-events--landing .more-link .is-active.redRoundButton a, .news-and-events--landing .all-foas--landing .more-link .is-active.redRoundButton a, .all-foas--landing .view-more-link .is-active.redRoundButton a, .all-foas--landing .pager .is-active.standard-more-link a, .all-foas--landing .standard-more-link .is-active.standard-more-link a, .all-foas--landing .news-and-events--landing .more-link .is-active.standard-more-link a, .news-and-events--landing .all-foas--landing .more-link .is-active.standard-more-link a, .all-foas--landing .view-more-link .is-active.standard-more-link a, .all-foas--landing .pager .news-and-events--landing .is-active.more-link a, .news-and-events--landing .all-foas--landing .pager .is-active.more-link a, .all-foas--landing .standard-more-link .news-and-events--landing .is-active.more-link a, .news-and-events--landing .all-foas--landing .standard-more-link .is-active.more-link a, .all-foas--landing .news-and-events--landing .more-link .is-active.more-link a, .news-and-events--landing .all-foas--landing .more-link .is-active.more-link a, .all-foas--landing .view-more-link .news-and-events--landing .is-active.more-link a, .news-and-events--landing .all-foas--landing .view-more-link .is-active.more-link a, .all-foas--landing .pager .is-active.view-more-link a, .all-foas--landing .standard-more-link .is-active.view-more-link a, .all-foas--landing .news-and-events--landing .more-link .is-active.view-more-link a, .news-and-events--landing .all-foas--landing .more-link .is-active.view-more-link a, .all-foas--landing .view-more-link .is-active.view-more-link a {
  color: #fff;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 246, ../sass/_mixins.scss */
  .all-foas--landing .pager__items .pager__item.is-active, .all-foas--landing .pager__items .is-active.blueRoundButton, .all-foas--landing .pager__items .is-active.redRoundButton, .all-foas--landing .pager__items .is-active.standard-more-link, .all-foas--landing .pager__items .news-and-events--landing .is-active.more-link, .news-and-events--landing .all-foas--landing .pager__items .is-active.more-link, .all-foas--landing .pager__items .is-active.view-more-link, .all-foas--landing .pager .pager__item.is-active, .all-foas--landing .standard-more-link .pager__item.is-active, .all-foas--landing .news-and-events--landing .more-link .pager__item.is-active, .news-and-events--landing .all-foas--landing .more-link .pager__item.is-active, .all-foas--landing .view-more-link .pager__item.is-active, .all-foas--landing .pager .is-active.blueRoundButton, .all-foas--landing .standard-more-link .is-active.blueRoundButton, .all-foas--landing .news-and-events--landing .more-link .is-active.blueRoundButton, .news-and-events--landing .all-foas--landing .more-link .is-active.blueRoundButton, .all-foas--landing .view-more-link .is-active.blueRoundButton, .all-foas--landing .pager .is-active.redRoundButton, .all-foas--landing .standard-more-link .is-active.redRoundButton, .all-foas--landing .news-and-events--landing .more-link .is-active.redRoundButton, .news-and-events--landing .all-foas--landing .more-link .is-active.redRoundButton, .all-foas--landing .view-more-link .is-active.redRoundButton, .all-foas--landing .pager .is-active.standard-more-link, .all-foas--landing .standard-more-link .is-active.standard-more-link, .all-foas--landing .news-and-events--landing .more-link .is-active.standard-more-link, .news-and-events--landing .all-foas--landing .more-link .is-active.standard-more-link, .all-foas--landing .view-more-link .is-active.standard-more-link, .all-foas--landing .pager .news-and-events--landing .is-active.more-link, .news-and-events--landing .all-foas--landing .pager .is-active.more-link, .all-foas--landing .standard-more-link .news-and-events--landing .is-active.more-link, .news-and-events--landing .all-foas--landing .standard-more-link .is-active.more-link, .all-foas--landing .news-and-events--landing .more-link .is-active.more-link, .news-and-events--landing .all-foas--landing .more-link .is-active.more-link, .all-foas--landing .view-more-link .news-and-events--landing .is-active.more-link, .news-and-events--landing .all-foas--landing .view-more-link .is-active.more-link, .all-foas--landing .pager .is-active.view-more-link, .all-foas--landing .standard-more-link .is-active.view-more-link, .all-foas--landing .news-and-events--landing .more-link .is-active.view-more-link, .news-and-events--landing .all-foas--landing .more-link .is-active.view-more-link, .all-foas--landing .view-more-link .is-active.view-more-link {
    display: inline-block;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 246, ../sass/_mixins.scss */
  .all-foas--landing .pager__items .pager__item.is-active, .all-foas--landing .pager__items .is-active.blueRoundButton, .all-foas--landing .pager__items .is-active.redRoundButton, .all-foas--landing .pager__items .is-active.standard-more-link, .all-foas--landing .pager__items .news-and-events--landing .is-active.more-link, .news-and-events--landing .all-foas--landing .pager__items .is-active.more-link, .all-foas--landing .pager__items .is-active.view-more-link, .all-foas--landing .pager .pager__item.is-active, .all-foas--landing .standard-more-link .pager__item.is-active, .all-foas--landing .news-and-events--landing .more-link .pager__item.is-active, .news-and-events--landing .all-foas--landing .more-link .pager__item.is-active, .all-foas--landing .view-more-link .pager__item.is-active, .all-foas--landing .pager .is-active.blueRoundButton, .all-foas--landing .standard-more-link .is-active.blueRoundButton, .all-foas--landing .news-and-events--landing .more-link .is-active.blueRoundButton, .news-and-events--landing .all-foas--landing .more-link .is-active.blueRoundButton, .all-foas--landing .view-more-link .is-active.blueRoundButton, .all-foas--landing .pager .is-active.redRoundButton, .all-foas--landing .standard-more-link .is-active.redRoundButton, .all-foas--landing .news-and-events--landing .more-link .is-active.redRoundButton, .news-and-events--landing .all-foas--landing .more-link .is-active.redRoundButton, .all-foas--landing .view-more-link .is-active.redRoundButton, .all-foas--landing .pager .is-active.standard-more-link, .all-foas--landing .standard-more-link .is-active.standard-more-link, .all-foas--landing .news-and-events--landing .more-link .is-active.standard-more-link, .news-and-events--landing .all-foas--landing .more-link .is-active.standard-more-link, .all-foas--landing .view-more-link .is-active.standard-more-link, .all-foas--landing .pager .news-and-events--landing .is-active.more-link, .news-and-events--landing .all-foas--landing .pager .is-active.more-link, .all-foas--landing .standard-more-link .news-and-events--landing .is-active.more-link, .news-and-events--landing .all-foas--landing .standard-more-link .is-active.more-link, .all-foas--landing .news-and-events--landing .more-link .is-active.more-link, .news-and-events--landing .all-foas--landing .more-link .is-active.more-link, .all-foas--landing .view-more-link .news-and-events--landing .is-active.more-link, .news-and-events--landing .all-foas--landing .view-more-link .is-active.more-link, .all-foas--landing .pager .is-active.view-more-link, .all-foas--landing .standard-more-link .is-active.view-more-link, .all-foas--landing .news-and-events--landing .more-link .is-active.view-more-link, .news-and-events--landing .all-foas--landing .more-link .is-active.view-more-link, .all-foas--landing .view-more-link .is-active.view-more-link {
    display: inline-block;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 258, ../sass/_mixins.scss */
  .all-foas--landing .pager__items .pager__item.is-active + .pager__item, .all-foas--landing .pager__items .is-active.blueRoundButton + .pager__item, .all-foas--landing .pager__items .is-active.redRoundButton + .pager__item, .all-foas--landing .pager__items .is-active.standard-more-link + .pager__item, .all-foas--landing .pager__items .news-and-events--landing .is-active.more-link + .pager__item, .news-and-events--landing .all-foas--landing .pager__items .is-active.more-link + .pager__item, .all-foas--landing .pager__items .is-active.view-more-link + .pager__item, .all-foas--landing .pager__items .pager__item.is-active + .blueRoundButton, .all-foas--landing .pager__items .is-active.blueRoundButton + .blueRoundButton, .all-foas--landing .pager__items .is-active.redRoundButton + .blueRoundButton, .all-foas--landing .pager__items .is-active.standard-more-link + .blueRoundButton, .all-foas--landing .pager__items .news-and-events--landing .is-active.more-link + .blueRoundButton, .news-and-events--landing .all-foas--landing .pager__items .is-active.more-link + .blueRoundButton, .all-foas--landing .pager__items .is-active.view-more-link + .blueRoundButton, .all-foas--landing .pager__items .pager__item.is-active + .redRoundButton, .all-foas--landing .pager__items .is-active.blueRoundButton + .redRoundButton, .all-foas--landing .pager__items .is-active.redRoundButton + .redRoundButton, .all-foas--landing .pager__items .is-active.standard-more-link + .redRoundButton, .all-foas--landing .pager__items .news-and-events--landing .is-active.more-link + .redRoundButton, .news-and-events--landing .all-foas--landing .pager__items .is-active.more-link + .redRoundButton, .all-foas--landing .pager__items .is-active.view-more-link + .redRoundButton, .all-foas--landing .pager__items .pager__item.is-active + .standard-more-link, .all-foas--landing .pager__items .is-active.blueRoundButton + .standard-more-link, .all-foas--landing .pager__items .is-active.redRoundButton + .standard-more-link, .all-foas--landing .pager__items .is-active.standard-more-link + .standard-more-link, .all-foas--landing .pager__items .news-and-events--landing .is-active.more-link + .standard-more-link, .news-and-events--landing .all-foas--landing .pager__items .is-active.more-link + .standard-more-link, .all-foas--landing .pager__items .is-active.view-more-link + .standard-more-link, .all-foas--landing .pager__items .news-and-events--landing .pager__item.is-active + .more-link, .news-and-events--landing .all-foas--landing .pager__items .pager__item.is-active + .more-link, .all-foas--landing .pager__items .news-and-events--landing .is-active.blueRoundButton + .more-link, .news-and-events--landing .all-foas--landing .pager__items .is-active.blueRoundButton + .more-link, .all-foas--landing .pager__items .news-and-events--landing .is-active.redRoundButton + .more-link, .news-and-events--landing .all-foas--landing .pager__items .is-active.redRoundButton + .more-link, .all-foas--landing .pager__items .news-and-events--landing .is-active.standard-more-link + .more-link, .news-and-events--landing .all-foas--landing .pager__items .is-active.standard-more-link + .more-link, .all-foas--landing .pager__items .news-and-events--landing .is-active.more-link + .more-link, .news-and-events--landing .all-foas--landing .pager__items .is-active.more-link + .more-link, .all-foas--landing .pager__items .news-and-events--landing .is-active.view-more-link + .more-link, .news-and-events--landing .all-foas--landing .pager__items .is-active.view-more-link + .more-link, .all-foas--landing .pager__items .pager__item.is-active + .view-more-link, .all-foas--landing .pager__items .is-active.blueRoundButton + .view-more-link, .all-foas--landing .pager__items .is-active.redRoundButton + .view-more-link, .all-foas--landing .pager__items .is-active.standard-more-link + .view-more-link, .all-foas--landing .pager__items .news-and-events--landing .is-active.more-link + .view-more-link, .news-and-events--landing .all-foas--landing .pager__items .is-active.more-link + .view-more-link, .all-foas--landing .pager__items .is-active.view-more-link + .view-more-link, .all-foas--landing .pager .pager__item.is-active + .pager__item, .all-foas--landing .standard-more-link .pager__item.is-active + .pager__item, .all-foas--landing .news-and-events--landing .more-link .pager__item.is-active + .pager__item, .news-and-events--landing .all-foas--landing .more-link .pager__item.is-active + .pager__item, .all-foas--landing .view-more-link .pager__item.is-active + .pager__item, .all-foas--landing .pager .is-active.blueRoundButton + .pager__item, .all-foas--landing .standard-more-link .is-active.blueRoundButton + .pager__item, .all-foas--landing .news-and-events--landing .more-link .is-active.blueRoundButton + .pager__item, .news-and-events--landing .all-foas--landing .more-link .is-active.blueRoundButton + .pager__item, .all-foas--landing .view-more-link .is-active.blueRoundButton + .pager__item, .all-foas--landing .pager .is-active.redRoundButton + .pager__item, .all-foas--landing .standard-more-link .is-active.redRoundButton + .pager__item, .all-foas--landing .news-and-events--landing .more-link .is-active.redRoundButton + .pager__item, .news-and-events--landing .all-foas--landing .more-link .is-active.redRoundButton + .pager__item, .all-foas--landing .view-more-link .is-active.redRoundButton + .pager__item, .all-foas--landing .pager .is-active.standard-more-link + .pager__item, .all-foas--landing .standard-more-link .is-active.standard-more-link + .pager__item, .all-foas--landing .news-and-events--landing .more-link .is-active.standard-more-link + .pager__item, .news-and-events--landing .all-foas--landing .more-link .is-active.standard-more-link + .pager__item, .all-foas--landing .view-more-link .is-active.standard-more-link + .pager__item, .all-foas--landing .pager .news-and-events--landing .is-active.more-link + .pager__item, .news-and-events--landing .all-foas--landing .pager .is-active.more-link + .pager__item, .all-foas--landing .standard-more-link .news-and-events--landing .is-active.more-link + .pager__item, .news-and-events--landing .all-foas--landing .standard-more-link .is-active.more-link + .pager__item, .all-foas--landing .news-and-events--landing .more-link .is-active.more-link + .pager__item, .news-and-events--landing .all-foas--landing .more-link .is-active.more-link + .pager__item, .all-foas--landing .view-more-link .news-and-events--landing .is-active.more-link + .pager__item, .news-and-events--landing .all-foas--landing .view-more-link .is-active.more-link + .pager__item, .all-foas--landing .pager .is-active.view-more-link + .pager__item, .all-foas--landing .standard-more-link .is-active.view-more-link + .pager__item, .all-foas--landing .news-and-events--landing .more-link .is-active.view-more-link + .pager__item, .news-and-events--landing .all-foas--landing .more-link .is-active.view-more-link + .pager__item, .all-foas--landing .view-more-link .is-active.view-more-link + .pager__item, .all-foas--landing .pager .pager__item.is-active + .blueRoundButton, .all-foas--landing .standard-more-link .pager__item.is-active + .blueRoundButton, .all-foas--landing .news-and-events--landing .more-link .pager__item.is-active + .blueRoundButton, .news-and-events--landing .all-foas--landing .more-link .pager__item.is-active + .blueRoundButton, .all-foas--landing .view-more-link .pager__item.is-active + .blueRoundButton, .all-foas--landing .pager .is-active.blueRoundButton + .blueRoundButton, .all-foas--landing .standard-more-link .is-active.blueRoundButton + .blueRoundButton, .all-foas--landing .news-and-events--landing .more-link .is-active.blueRoundButton + .blueRoundButton, .news-and-events--landing .all-foas--landing .more-link .is-active.blueRoundButton + .blueRoundButton, .all-foas--landing .view-more-link .is-active.blueRoundButton + .blueRoundButton, .all-foas--landing .pager .is-active.redRoundButton + .blueRoundButton, .all-foas--landing .standard-more-link .is-active.redRoundButton + .blueRoundButton, .all-foas--landing .news-and-events--landing .more-link .is-active.redRoundButton + .blueRoundButton, .news-and-events--landing .all-foas--landing .more-link .is-active.redRoundButton + .blueRoundButton, .all-foas--landing .view-more-link .is-active.redRoundButton + .blueRoundButton, .all-foas--landing .pager .is-active.standard-more-link + .blueRoundButton, .all-foas--landing .standard-more-link .is-active.standard-more-link + .blueRoundButton, .all-foas--landing .news-and-events--landing .more-link .is-active.standard-more-link + .blueRoundButton, .news-and-events--landing .all-foas--landing .more-link .is-active.standard-more-link + .blueRoundButton, .all-foas--landing .view-more-link .is-active.standard-more-link + .blueRoundButton, .all-foas--landing .pager .news-and-events--landing .is-active.more-link + .blueRoundButton, .news-and-events--landing .all-foas--landing .pager .is-active.more-link + .blueRoundButton, .all-foas--landing .standard-more-link .news-and-events--landing .is-active.more-link + .blueRoundButton, .news-and-events--landing .all-foas--landing .standard-more-link .is-active.more-link + .blueRoundButton, .all-foas--landing .news-and-events--landing .more-link .is-active.more-link + .blueRoundButton, .news-and-events--landing .all-foas--landing .more-link .is-active.more-link + .blueRoundButton, .all-foas--landing .view-more-link .news-and-events--landing .is-active.more-link + .blueRoundButton, .news-and-events--landing .all-foas--landing .view-more-link .is-active.more-link + .blueRoundButton, .all-foas--landing .pager .is-active.view-more-link + .blueRoundButton, .all-foas--landing .standard-more-link .is-active.view-more-link + .blueRoundButton, .all-foas--landing .news-and-events--landing .more-link .is-active.view-more-link + .blueRoundButton, .news-and-events--landing .all-foas--landing .more-link .is-active.view-more-link + .blueRoundButton, .all-foas--landing .view-more-link .is-active.view-more-link + .blueRoundButton, .all-foas--landing .pager .pager__item.is-active + .redRoundButton, .all-foas--landing .standard-more-link .pager__item.is-active + .redRoundButton, .all-foas--landing .news-and-events--landing .more-link .pager__item.is-active + .redRoundButton, .news-and-events--landing .all-foas--landing .more-link .pager__item.is-active + .redRoundButton, .all-foas--landing .view-more-link .pager__item.is-active + .redRoundButton, .all-foas--landing .pager .is-active.blueRoundButton + .redRoundButton, .all-foas--landing .standard-more-link .is-active.blueRoundButton + .redRoundButton, .all-foas--landing .news-and-events--landing .more-link .is-active.blueRoundButton + .redRoundButton, .news-and-events--landing .all-foas--landing .more-link .is-active.blueRoundButton + .redRoundButton, .all-foas--landing .view-more-link .is-active.blueRoundButton + .redRoundButton, .all-foas--landing .pager .is-active.redRoundButton + .redRoundButton, .all-foas--landing .standard-more-link .is-active.redRoundButton + .redRoundButton, .all-foas--landing .news-and-events--landing .more-link .is-active.redRoundButton + .redRoundButton, .news-and-events--landing .all-foas--landing .more-link .is-active.redRoundButton + .redRoundButton, .all-foas--landing .view-more-link .is-active.redRoundButton + .redRoundButton, .all-foas--landing .pager .is-active.standard-more-link + .redRoundButton, .all-foas--landing .standard-more-link .is-active.standard-more-link + .redRoundButton, .all-foas--landing .news-and-events--landing .more-link .is-active.standard-more-link + .redRoundButton, .news-and-events--landing .all-foas--landing .more-link .is-active.standard-more-link + .redRoundButton, .all-foas--landing .view-more-link .is-active.standard-more-link + .redRoundButton, .all-foas--landing .pager .news-and-events--landing .is-active.more-link + .redRoundButton, .news-and-events--landing .all-foas--landing .pager .is-active.more-link + .redRoundButton, .all-foas--landing .standard-more-link .news-and-events--landing .is-active.more-link + .redRoundButton, .news-and-events--landing .all-foas--landing .standard-more-link .is-active.more-link + .redRoundButton, .all-foas--landing .news-and-events--landing .more-link .is-active.more-link + .redRoundButton, .news-and-events--landing .all-foas--landing .more-link .is-active.more-link + .redRoundButton, .all-foas--landing .view-more-link .news-and-events--landing .is-active.more-link + .redRoundButton, .news-and-events--landing .all-foas--landing .view-more-link .is-active.more-link + .redRoundButton, .all-foas--landing .pager .is-active.view-more-link + .redRoundButton, .all-foas--landing .standard-more-link .is-active.view-more-link + .redRoundButton, .all-foas--landing .news-and-events--landing .more-link .is-active.view-more-link + .redRoundButton, .news-and-events--landing .all-foas--landing .more-link .is-active.view-more-link + .redRoundButton, .all-foas--landing .view-more-link .is-active.view-more-link + .redRoundButton, .all-foas--landing .pager .pager__item.is-active + .standard-more-link, .all-foas--landing .standard-more-link .pager__item.is-active + .standard-more-link, .all-foas--landing .news-and-events--landing .more-link .pager__item.is-active + .standard-more-link, .news-and-events--landing .all-foas--landing .more-link .pager__item.is-active + .standard-more-link, .all-foas--landing .view-more-link .pager__item.is-active + .standard-more-link, .all-foas--landing .pager .is-active.blueRoundButton + .standard-more-link, .all-foas--landing .standard-more-link .is-active.blueRoundButton + .standard-more-link, .all-foas--landing .news-and-events--landing .more-link .is-active.blueRoundButton + .standard-more-link, .news-and-events--landing .all-foas--landing .more-link .is-active.blueRoundButton + .standard-more-link, .all-foas--landing .view-more-link .is-active.blueRoundButton + .standard-more-link, .all-foas--landing .pager .is-active.redRoundButton + .standard-more-link, .all-foas--landing .standard-more-link .is-active.redRoundButton + .standard-more-link, .all-foas--landing .news-and-events--landing .more-link .is-active.redRoundButton + .standard-more-link, .news-and-events--landing .all-foas--landing .more-link .is-active.redRoundButton + .standard-more-link, .all-foas--landing .view-more-link .is-active.redRoundButton + .standard-more-link, .all-foas--landing .pager .is-active.standard-more-link + .standard-more-link, .all-foas--landing .standard-more-link .is-active.standard-more-link + .standard-more-link, .all-foas--landing .news-and-events--landing .more-link .is-active.standard-more-link + .standard-more-link, .news-and-events--landing .all-foas--landing .more-link .is-active.standard-more-link + .standard-more-link, .all-foas--landing .view-more-link .is-active.standard-more-link + .standard-more-link, .all-foas--landing .pager .news-and-events--landing .is-active.more-link + .standard-more-link, .news-and-events--landing .all-foas--landing .pager .is-active.more-link + .standard-more-link, .all-foas--landing .standard-more-link .news-and-events--landing .is-active.more-link + .standard-more-link, .news-and-events--landing .all-foas--landing .standard-more-link .is-active.more-link + .standard-more-link, .all-foas--landing .news-and-events--landing .more-link .is-active.more-link + .standard-more-link, .news-and-events--landing .all-foas--landing .more-link .is-active.more-link + .standard-more-link, .all-foas--landing .view-more-link .news-and-events--landing .is-active.more-link + .standard-more-link, .news-and-events--landing .all-foas--landing .view-more-link .is-active.more-link + .standard-more-link, .all-foas--landing .pager .is-active.view-more-link + .standard-more-link, .all-foas--landing .standard-more-link .is-active.view-more-link + .standard-more-link, .all-foas--landing .news-and-events--landing .more-link .is-active.view-more-link + .standard-more-link, .news-and-events--landing .all-foas--landing .more-link .is-active.view-more-link + .standard-more-link, .all-foas--landing .view-more-link .is-active.view-more-link + .standard-more-link, .all-foas--landing .pager .news-and-events--landing .pager__item.is-active + .more-link, .news-and-events--landing .all-foas--landing .pager .pager__item.is-active + .more-link, .all-foas--landing .standard-more-link .news-and-events--landing .pager__item.is-active + .more-link, .news-and-events--landing .all-foas--landing .standard-more-link .pager__item.is-active + .more-link, .all-foas--landing .news-and-events--landing .more-link .pager__item.is-active + .more-link, .news-and-events--landing .all-foas--landing .more-link .pager__item.is-active + .more-link, .all-foas--landing .view-more-link .news-and-events--landing .pager__item.is-active + .more-link, .news-and-events--landing .all-foas--landing .view-more-link .pager__item.is-active + .more-link, .all-foas--landing .pager .news-and-events--landing .is-active.blueRoundButton + .more-link, .news-and-events--landing .all-foas--landing .pager .is-active.blueRoundButton + .more-link, .all-foas--landing .standard-more-link .news-and-events--landing .is-active.blueRoundButton + .more-link, .news-and-events--landing .all-foas--landing .standard-more-link .is-active.blueRoundButton + .more-link, .all-foas--landing .news-and-events--landing .more-link .is-active.blueRoundButton + .more-link, .news-and-events--landing .all-foas--landing .more-link .is-active.blueRoundButton + .more-link, .all-foas--landing .view-more-link .news-and-events--landing .is-active.blueRoundButton + .more-link, .news-and-events--landing .all-foas--landing .view-more-link .is-active.blueRoundButton + .more-link, .all-foas--landing .pager .news-and-events--landing .is-active.redRoundButton + .more-link, .news-and-events--landing .all-foas--landing .pager .is-active.redRoundButton + .more-link, .all-foas--landing .standard-more-link .news-and-events--landing .is-active.redRoundButton + .more-link, .news-and-events--landing .all-foas--landing .standard-more-link .is-active.redRoundButton + .more-link, .all-foas--landing .news-and-events--landing .more-link .is-active.redRoundButton + .more-link, .news-and-events--landing .all-foas--landing .more-link .is-active.redRoundButton + .more-link, .all-foas--landing .view-more-link .news-and-events--landing .is-active.redRoundButton + .more-link, .news-and-events--landing .all-foas--landing .view-more-link .is-active.redRoundButton + .more-link, .all-foas--landing .pager .news-and-events--landing .is-active.standard-more-link + .more-link, .news-and-events--landing .all-foas--landing .pager .is-active.standard-more-link + .more-link, .all-foas--landing .standard-more-link .news-and-events--landing .is-active.standard-more-link + .more-link, .news-and-events--landing .all-foas--landing .standard-more-link .is-active.standard-more-link + .more-link, .all-foas--landing .news-and-events--landing .more-link .is-active.standard-more-link + .more-link, .news-and-events--landing .all-foas--landing .more-link .is-active.standard-more-link + .more-link, .all-foas--landing .view-more-link .news-and-events--landing .is-active.standard-more-link + .more-link, .news-and-events--landing .all-foas--landing .view-more-link .is-active.standard-more-link + .more-link, .all-foas--landing .pager .news-and-events--landing .is-active.more-link + .more-link, .news-and-events--landing .all-foas--landing .pager .is-active.more-link + .more-link, .all-foas--landing .standard-more-link .news-and-events--landing .is-active.more-link + .more-link, .news-and-events--landing .all-foas--landing .standard-more-link .is-active.more-link + .more-link, .all-foas--landing .news-and-events--landing .more-link .is-active.more-link + .more-link, .news-and-events--landing .all-foas--landing .more-link .is-active.more-link + .more-link, .all-foas--landing .view-more-link .news-and-events--landing .is-active.more-link + .more-link, .news-and-events--landing .all-foas--landing .view-more-link .is-active.more-link + .more-link, .all-foas--landing .pager .news-and-events--landing .is-active.view-more-link + .more-link, .news-and-events--landing .all-foas--landing .pager .is-active.view-more-link + .more-link, .all-foas--landing .standard-more-link .news-and-events--landing .is-active.view-more-link + .more-link, .news-and-events--landing .all-foas--landing .standard-more-link .is-active.view-more-link + .more-link, .all-foas--landing .news-and-events--landing .more-link .is-active.view-more-link + .more-link, .news-and-events--landing .all-foas--landing .more-link .is-active.view-more-link + .more-link, .all-foas--landing .view-more-link .news-and-events--landing .is-active.view-more-link + .more-link, .news-and-events--landing .all-foas--landing .view-more-link .is-active.view-more-link + .more-link, .all-foas--landing .pager .pager__item.is-active + .view-more-link, .all-foas--landing .standard-more-link .pager__item.is-active + .view-more-link, .all-foas--landing .news-and-events--landing .more-link .pager__item.is-active + .view-more-link, .news-and-events--landing .all-foas--landing .more-link .pager__item.is-active + .view-more-link, .all-foas--landing .view-more-link .pager__item.is-active + .view-more-link, .all-foas--landing .pager .is-active.blueRoundButton + .view-more-link, .all-foas--landing .standard-more-link .is-active.blueRoundButton + .view-more-link, .all-foas--landing .news-and-events--landing .more-link .is-active.blueRoundButton + .view-more-link, .news-and-events--landing .all-foas--landing .more-link .is-active.blueRoundButton + .view-more-link, .all-foas--landing .view-more-link .is-active.blueRoundButton + .view-more-link, .all-foas--landing .pager .is-active.redRoundButton + .view-more-link, .all-foas--landing .standard-more-link .is-active.redRoundButton + .view-more-link, .all-foas--landing .news-and-events--landing .more-link .is-active.redRoundButton + .view-more-link, .news-and-events--landing .all-foas--landing .more-link .is-active.redRoundButton + .view-more-link, .all-foas--landing .view-more-link .is-active.redRoundButton + .view-more-link, .all-foas--landing .pager .is-active.standard-more-link + .view-more-link, .all-foas--landing .standard-more-link .is-active.standard-more-link + .view-more-link, .all-foas--landing .news-and-events--landing .more-link .is-active.standard-more-link + .view-more-link, .news-and-events--landing .all-foas--landing .more-link .is-active.standard-more-link + .view-more-link, .all-foas--landing .view-more-link .is-active.standard-more-link + .view-more-link, .all-foas--landing .pager .news-and-events--landing .is-active.more-link + .view-more-link, .news-and-events--landing .all-foas--landing .pager .is-active.more-link + .view-more-link, .all-foas--landing .standard-more-link .news-and-events--landing .is-active.more-link + .view-more-link, .news-and-events--landing .all-foas--landing .standard-more-link .is-active.more-link + .view-more-link, .all-foas--landing .news-and-events--landing .more-link .is-active.more-link + .view-more-link, .news-and-events--landing .all-foas--landing .more-link .is-active.more-link + .view-more-link, .all-foas--landing .view-more-link .news-and-events--landing .is-active.more-link + .view-more-link, .news-and-events--landing .all-foas--landing .view-more-link .is-active.more-link + .view-more-link, .all-foas--landing .pager .is-active.view-more-link + .view-more-link, .all-foas--landing .standard-more-link .is-active.view-more-link + .view-more-link, .all-foas--landing .news-and-events--landing .more-link .is-active.view-more-link + .view-more-link, .news-and-events--landing .all-foas--landing .more-link .is-active.view-more-link + .view-more-link, .all-foas--landing .view-more-link .is-active.view-more-link + .view-more-link {
    display: inline-block;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 258, ../sass/_mixins.scss */
  .all-foas--landing .pager__items .pager__item.is-active + .pager__item, .all-foas--landing .pager__items .is-active.blueRoundButton + .pager__item, .all-foas--landing .pager__items .is-active.redRoundButton + .pager__item, .all-foas--landing .pager__items .is-active.standard-more-link + .pager__item, .all-foas--landing .pager__items .news-and-events--landing .is-active.more-link + .pager__item, .news-and-events--landing .all-foas--landing .pager__items .is-active.more-link + .pager__item, .all-foas--landing .pager__items .is-active.view-more-link + .pager__item, .all-foas--landing .pager__items .pager__item.is-active + .blueRoundButton, .all-foas--landing .pager__items .is-active.blueRoundButton + .blueRoundButton, .all-foas--landing .pager__items .is-active.redRoundButton + .blueRoundButton, .all-foas--landing .pager__items .is-active.standard-more-link + .blueRoundButton, .all-foas--landing .pager__items .news-and-events--landing .is-active.more-link + .blueRoundButton, .news-and-events--landing .all-foas--landing .pager__items .is-active.more-link + .blueRoundButton, .all-foas--landing .pager__items .is-active.view-more-link + .blueRoundButton, .all-foas--landing .pager__items .pager__item.is-active + .redRoundButton, .all-foas--landing .pager__items .is-active.blueRoundButton + .redRoundButton, .all-foas--landing .pager__items .is-active.redRoundButton + .redRoundButton, .all-foas--landing .pager__items .is-active.standard-more-link + .redRoundButton, .all-foas--landing .pager__items .news-and-events--landing .is-active.more-link + .redRoundButton, .news-and-events--landing .all-foas--landing .pager__items .is-active.more-link + .redRoundButton, .all-foas--landing .pager__items .is-active.view-more-link + .redRoundButton, .all-foas--landing .pager__items .pager__item.is-active + .standard-more-link, .all-foas--landing .pager__items .is-active.blueRoundButton + .standard-more-link, .all-foas--landing .pager__items .is-active.redRoundButton + .standard-more-link, .all-foas--landing .pager__items .is-active.standard-more-link + .standard-more-link, .all-foas--landing .pager__items .news-and-events--landing .is-active.more-link + .standard-more-link, .news-and-events--landing .all-foas--landing .pager__items .is-active.more-link + .standard-more-link, .all-foas--landing .pager__items .is-active.view-more-link + .standard-more-link, .all-foas--landing .pager__items .news-and-events--landing .pager__item.is-active + .more-link, .news-and-events--landing .all-foas--landing .pager__items .pager__item.is-active + .more-link, .all-foas--landing .pager__items .news-and-events--landing .is-active.blueRoundButton + .more-link, .news-and-events--landing .all-foas--landing .pager__items .is-active.blueRoundButton + .more-link, .all-foas--landing .pager__items .news-and-events--landing .is-active.redRoundButton + .more-link, .news-and-events--landing .all-foas--landing .pager__items .is-active.redRoundButton + .more-link, .all-foas--landing .pager__items .news-and-events--landing .is-active.standard-more-link + .more-link, .news-and-events--landing .all-foas--landing .pager__items .is-active.standard-more-link + .more-link, .all-foas--landing .pager__items .news-and-events--landing .is-active.more-link + .more-link, .news-and-events--landing .all-foas--landing .pager__items .is-active.more-link + .more-link, .all-foas--landing .pager__items .news-and-events--landing .is-active.view-more-link + .more-link, .news-and-events--landing .all-foas--landing .pager__items .is-active.view-more-link + .more-link, .all-foas--landing .pager__items .pager__item.is-active + .view-more-link, .all-foas--landing .pager__items .is-active.blueRoundButton + .view-more-link, .all-foas--landing .pager__items .is-active.redRoundButton + .view-more-link, .all-foas--landing .pager__items .is-active.standard-more-link + .view-more-link, .all-foas--landing .pager__items .news-and-events--landing .is-active.more-link + .view-more-link, .news-and-events--landing .all-foas--landing .pager__items .is-active.more-link + .view-more-link, .all-foas--landing .pager__items .is-active.view-more-link + .view-more-link, .all-foas--landing .pager .pager__item.is-active + .pager__item, .all-foas--landing .standard-more-link .pager__item.is-active + .pager__item, .all-foas--landing .news-and-events--landing .more-link .pager__item.is-active + .pager__item, .news-and-events--landing .all-foas--landing .more-link .pager__item.is-active + .pager__item, .all-foas--landing .view-more-link .pager__item.is-active + .pager__item, .all-foas--landing .pager .is-active.blueRoundButton + .pager__item, .all-foas--landing .standard-more-link .is-active.blueRoundButton + .pager__item, .all-foas--landing .news-and-events--landing .more-link .is-active.blueRoundButton + .pager__item, .news-and-events--landing .all-foas--landing .more-link .is-active.blueRoundButton + .pager__item, .all-foas--landing .view-more-link .is-active.blueRoundButton + .pager__item, .all-foas--landing .pager .is-active.redRoundButton + .pager__item, .all-foas--landing .standard-more-link .is-active.redRoundButton + .pager__item, .all-foas--landing .news-and-events--landing .more-link .is-active.redRoundButton + .pager__item, .news-and-events--landing .all-foas--landing .more-link .is-active.redRoundButton + .pager__item, .all-foas--landing .view-more-link .is-active.redRoundButton + .pager__item, .all-foas--landing .pager .is-active.standard-more-link + .pager__item, .all-foas--landing .standard-more-link .is-active.standard-more-link + .pager__item, .all-foas--landing .news-and-events--landing .more-link .is-active.standard-more-link + .pager__item, .news-and-events--landing .all-foas--landing .more-link .is-active.standard-more-link + .pager__item, .all-foas--landing .view-more-link .is-active.standard-more-link + .pager__item, .all-foas--landing .pager .news-and-events--landing .is-active.more-link + .pager__item, .news-and-events--landing .all-foas--landing .pager .is-active.more-link + .pager__item, .all-foas--landing .standard-more-link .news-and-events--landing .is-active.more-link + .pager__item, .news-and-events--landing .all-foas--landing .standard-more-link .is-active.more-link + .pager__item, .all-foas--landing .news-and-events--landing .more-link .is-active.more-link + .pager__item, .news-and-events--landing .all-foas--landing .more-link .is-active.more-link + .pager__item, .all-foas--landing .view-more-link .news-and-events--landing .is-active.more-link + .pager__item, .news-and-events--landing .all-foas--landing .view-more-link .is-active.more-link + .pager__item, .all-foas--landing .pager .is-active.view-more-link + .pager__item, .all-foas--landing .standard-more-link .is-active.view-more-link + .pager__item, .all-foas--landing .news-and-events--landing .more-link .is-active.view-more-link + .pager__item, .news-and-events--landing .all-foas--landing .more-link .is-active.view-more-link + .pager__item, .all-foas--landing .view-more-link .is-active.view-more-link + .pager__item, .all-foas--landing .pager .pager__item.is-active + .blueRoundButton, .all-foas--landing .standard-more-link .pager__item.is-active + .blueRoundButton, .all-foas--landing .news-and-events--landing .more-link .pager__item.is-active + .blueRoundButton, .news-and-events--landing .all-foas--landing .more-link .pager__item.is-active + .blueRoundButton, .all-foas--landing .view-more-link .pager__item.is-active + .blueRoundButton, .all-foas--landing .pager .is-active.blueRoundButton + .blueRoundButton, .all-foas--landing .standard-more-link .is-active.blueRoundButton + .blueRoundButton, .all-foas--landing .news-and-events--landing .more-link .is-active.blueRoundButton + .blueRoundButton, .news-and-events--landing .all-foas--landing .more-link .is-active.blueRoundButton + .blueRoundButton, .all-foas--landing .view-more-link .is-active.blueRoundButton + .blueRoundButton, .all-foas--landing .pager .is-active.redRoundButton + .blueRoundButton, .all-foas--landing .standard-more-link .is-active.redRoundButton + .blueRoundButton, .all-foas--landing .news-and-events--landing .more-link .is-active.redRoundButton + .blueRoundButton, .news-and-events--landing .all-foas--landing .more-link .is-active.redRoundButton + .blueRoundButton, .all-foas--landing .view-more-link .is-active.redRoundButton + .blueRoundButton, .all-foas--landing .pager .is-active.standard-more-link + .blueRoundButton, .all-foas--landing .standard-more-link .is-active.standard-more-link + .blueRoundButton, .all-foas--landing .news-and-events--landing .more-link .is-active.standard-more-link + .blueRoundButton, .news-and-events--landing .all-foas--landing .more-link .is-active.standard-more-link + .blueRoundButton, .all-foas--landing .view-more-link .is-active.standard-more-link + .blueRoundButton, .all-foas--landing .pager .news-and-events--landing .is-active.more-link + .blueRoundButton, .news-and-events--landing .all-foas--landing .pager .is-active.more-link + .blueRoundButton, .all-foas--landing .standard-more-link .news-and-events--landing .is-active.more-link + .blueRoundButton, .news-and-events--landing .all-foas--landing .standard-more-link .is-active.more-link + .blueRoundButton, .all-foas--landing .news-and-events--landing .more-link .is-active.more-link + .blueRoundButton, .news-and-events--landing .all-foas--landing .more-link .is-active.more-link + .blueRoundButton, .all-foas--landing .view-more-link .news-and-events--landing .is-active.more-link + .blueRoundButton, .news-and-events--landing .all-foas--landing .view-more-link .is-active.more-link + .blueRoundButton, .all-foas--landing .pager .is-active.view-more-link + .blueRoundButton, .all-foas--landing .standard-more-link .is-active.view-more-link + .blueRoundButton, .all-foas--landing .news-and-events--landing .more-link .is-active.view-more-link + .blueRoundButton, .news-and-events--landing .all-foas--landing .more-link .is-active.view-more-link + .blueRoundButton, .all-foas--landing .view-more-link .is-active.view-more-link + .blueRoundButton, .all-foas--landing .pager .pager__item.is-active + .redRoundButton, .all-foas--landing .standard-more-link .pager__item.is-active + .redRoundButton, .all-foas--landing .news-and-events--landing .more-link .pager__item.is-active + .redRoundButton, .news-and-events--landing .all-foas--landing .more-link .pager__item.is-active + .redRoundButton, .all-foas--landing .view-more-link .pager__item.is-active + .redRoundButton, .all-foas--landing .pager .is-active.blueRoundButton + .redRoundButton, .all-foas--landing .standard-more-link .is-active.blueRoundButton + .redRoundButton, .all-foas--landing .news-and-events--landing .more-link .is-active.blueRoundButton + .redRoundButton, .news-and-events--landing .all-foas--landing .more-link .is-active.blueRoundButton + .redRoundButton, .all-foas--landing .view-more-link .is-active.blueRoundButton + .redRoundButton, .all-foas--landing .pager .is-active.redRoundButton + .redRoundButton, .all-foas--landing .standard-more-link .is-active.redRoundButton + .redRoundButton, .all-foas--landing .news-and-events--landing .more-link .is-active.redRoundButton + .redRoundButton, .news-and-events--landing .all-foas--landing .more-link .is-active.redRoundButton + .redRoundButton, .all-foas--landing .view-more-link .is-active.redRoundButton + .redRoundButton, .all-foas--landing .pager .is-active.standard-more-link + .redRoundButton, .all-foas--landing .standard-more-link .is-active.standard-more-link + .redRoundButton, .all-foas--landing .news-and-events--landing .more-link .is-active.standard-more-link + .redRoundButton, .news-and-events--landing .all-foas--landing .more-link .is-active.standard-more-link + .redRoundButton, .all-foas--landing .view-more-link .is-active.standard-more-link + .redRoundButton, .all-foas--landing .pager .news-and-events--landing .is-active.more-link + .redRoundButton, .news-and-events--landing .all-foas--landing .pager .is-active.more-link + .redRoundButton, .all-foas--landing .standard-more-link .news-and-events--landing .is-active.more-link + .redRoundButton, .news-and-events--landing .all-foas--landing .standard-more-link .is-active.more-link + .redRoundButton, .all-foas--landing .news-and-events--landing .more-link .is-active.more-link + .redRoundButton, .news-and-events--landing .all-foas--landing .more-link .is-active.more-link + .redRoundButton, .all-foas--landing .view-more-link .news-and-events--landing .is-active.more-link + .redRoundButton, .news-and-events--landing .all-foas--landing .view-more-link .is-active.more-link + .redRoundButton, .all-foas--landing .pager .is-active.view-more-link + .redRoundButton, .all-foas--landing .standard-more-link .is-active.view-more-link + .redRoundButton, .all-foas--landing .news-and-events--landing .more-link .is-active.view-more-link + .redRoundButton, .news-and-events--landing .all-foas--landing .more-link .is-active.view-more-link + .redRoundButton, .all-foas--landing .view-more-link .is-active.view-more-link + .redRoundButton, .all-foas--landing .pager .pager__item.is-active + .standard-more-link, .all-foas--landing .standard-more-link .pager__item.is-active + .standard-more-link, .all-foas--landing .news-and-events--landing .more-link .pager__item.is-active + .standard-more-link, .news-and-events--landing .all-foas--landing .more-link .pager__item.is-active + .standard-more-link, .all-foas--landing .view-more-link .pager__item.is-active + .standard-more-link, .all-foas--landing .pager .is-active.blueRoundButton + .standard-more-link, .all-foas--landing .standard-more-link .is-active.blueRoundButton + .standard-more-link, .all-foas--landing .news-and-events--landing .more-link .is-active.blueRoundButton + .standard-more-link, .news-and-events--landing .all-foas--landing .more-link .is-active.blueRoundButton + .standard-more-link, .all-foas--landing .view-more-link .is-active.blueRoundButton + .standard-more-link, .all-foas--landing .pager .is-active.redRoundButton + .standard-more-link, .all-foas--landing .standard-more-link .is-active.redRoundButton + .standard-more-link, .all-foas--landing .news-and-events--landing .more-link .is-active.redRoundButton + .standard-more-link, .news-and-events--landing .all-foas--landing .more-link .is-active.redRoundButton + .standard-more-link, .all-foas--landing .view-more-link .is-active.redRoundButton + .standard-more-link, .all-foas--landing .pager .is-active.standard-more-link + .standard-more-link, .all-foas--landing .standard-more-link .is-active.standard-more-link + .standard-more-link, .all-foas--landing .news-and-events--landing .more-link .is-active.standard-more-link + .standard-more-link, .news-and-events--landing .all-foas--landing .more-link .is-active.standard-more-link + .standard-more-link, .all-foas--landing .view-more-link .is-active.standard-more-link + .standard-more-link, .all-foas--landing .pager .news-and-events--landing .is-active.more-link + .standard-more-link, .news-and-events--landing .all-foas--landing .pager .is-active.more-link + .standard-more-link, .all-foas--landing .standard-more-link .news-and-events--landing .is-active.more-link + .standard-more-link, .news-and-events--landing .all-foas--landing .standard-more-link .is-active.more-link + .standard-more-link, .all-foas--landing .news-and-events--landing .more-link .is-active.more-link + .standard-more-link, .news-and-events--landing .all-foas--landing .more-link .is-active.more-link + .standard-more-link, .all-foas--landing .view-more-link .news-and-events--landing .is-active.more-link + .standard-more-link, .news-and-events--landing .all-foas--landing .view-more-link .is-active.more-link + .standard-more-link, .all-foas--landing .pager .is-active.view-more-link + .standard-more-link, .all-foas--landing .standard-more-link .is-active.view-more-link + .standard-more-link, .all-foas--landing .news-and-events--landing .more-link .is-active.view-more-link + .standard-more-link, .news-and-events--landing .all-foas--landing .more-link .is-active.view-more-link + .standard-more-link, .all-foas--landing .view-more-link .is-active.view-more-link + .standard-more-link, .all-foas--landing .pager .news-and-events--landing .pager__item.is-active + .more-link, .news-and-events--landing .all-foas--landing .pager .pager__item.is-active + .more-link, .all-foas--landing .standard-more-link .news-and-events--landing .pager__item.is-active + .more-link, .news-and-events--landing .all-foas--landing .standard-more-link .pager__item.is-active + .more-link, .all-foas--landing .news-and-events--landing .more-link .pager__item.is-active + .more-link, .news-and-events--landing .all-foas--landing .more-link .pager__item.is-active + .more-link, .all-foas--landing .view-more-link .news-and-events--landing .pager__item.is-active + .more-link, .news-and-events--landing .all-foas--landing .view-more-link .pager__item.is-active + .more-link, .all-foas--landing .pager .news-and-events--landing .is-active.blueRoundButton + .more-link, .news-and-events--landing .all-foas--landing .pager .is-active.blueRoundButton + .more-link, .all-foas--landing .standard-more-link .news-and-events--landing .is-active.blueRoundButton + .more-link, .news-and-events--landing .all-foas--landing .standard-more-link .is-active.blueRoundButton + .more-link, .all-foas--landing .news-and-events--landing .more-link .is-active.blueRoundButton + .more-link, .news-and-events--landing .all-foas--landing .more-link .is-active.blueRoundButton + .more-link, .all-foas--landing .view-more-link .news-and-events--landing .is-active.blueRoundButton + .more-link, .news-and-events--landing .all-foas--landing .view-more-link .is-active.blueRoundButton + .more-link, .all-foas--landing .pager .news-and-events--landing .is-active.redRoundButton + .more-link, .news-and-events--landing .all-foas--landing .pager .is-active.redRoundButton + .more-link, .all-foas--landing .standard-more-link .news-and-events--landing .is-active.redRoundButton + .more-link, .news-and-events--landing .all-foas--landing .standard-more-link .is-active.redRoundButton + .more-link, .all-foas--landing .news-and-events--landing .more-link .is-active.redRoundButton + .more-link, .news-and-events--landing .all-foas--landing .more-link .is-active.redRoundButton + .more-link, .all-foas--landing .view-more-link .news-and-events--landing .is-active.redRoundButton + .more-link, .news-and-events--landing .all-foas--landing .view-more-link .is-active.redRoundButton + .more-link, .all-foas--landing .pager .news-and-events--landing .is-active.standard-more-link + .more-link, .news-and-events--landing .all-foas--landing .pager .is-active.standard-more-link + .more-link, .all-foas--landing .standard-more-link .news-and-events--landing .is-active.standard-more-link + .more-link, .news-and-events--landing .all-foas--landing .standard-more-link .is-active.standard-more-link + .more-link, .all-foas--landing .news-and-events--landing .more-link .is-active.standard-more-link + .more-link, .news-and-events--landing .all-foas--landing .more-link .is-active.standard-more-link + .more-link, .all-foas--landing .view-more-link .news-and-events--landing .is-active.standard-more-link + .more-link, .news-and-events--landing .all-foas--landing .view-more-link .is-active.standard-more-link + .more-link, .all-foas--landing .pager .news-and-events--landing .is-active.more-link + .more-link, .news-and-events--landing .all-foas--landing .pager .is-active.more-link + .more-link, .all-foas--landing .standard-more-link .news-and-events--landing .is-active.more-link + .more-link, .news-and-events--landing .all-foas--landing .standard-more-link .is-active.more-link + .more-link, .all-foas--landing .news-and-events--landing .more-link .is-active.more-link + .more-link, .news-and-events--landing .all-foas--landing .more-link .is-active.more-link + .more-link, .all-foas--landing .view-more-link .news-and-events--landing .is-active.more-link + .more-link, .news-and-events--landing .all-foas--landing .view-more-link .is-active.more-link + .more-link, .all-foas--landing .pager .news-and-events--landing .is-active.view-more-link + .more-link, .news-and-events--landing .all-foas--landing .pager .is-active.view-more-link + .more-link, .all-foas--landing .standard-more-link .news-and-events--landing .is-active.view-more-link + .more-link, .news-and-events--landing .all-foas--landing .standard-more-link .is-active.view-more-link + .more-link, .all-foas--landing .news-and-events--landing .more-link .is-active.view-more-link + .more-link, .news-and-events--landing .all-foas--landing .more-link .is-active.view-more-link + .more-link, .all-foas--landing .view-more-link .news-and-events--landing .is-active.view-more-link + .more-link, .news-and-events--landing .all-foas--landing .view-more-link .is-active.view-more-link + .more-link, .all-foas--landing .pager .pager__item.is-active + .view-more-link, .all-foas--landing .standard-more-link .pager__item.is-active + .view-more-link, .all-foas--landing .news-and-events--landing .more-link .pager__item.is-active + .view-more-link, .news-and-events--landing .all-foas--landing .more-link .pager__item.is-active + .view-more-link, .all-foas--landing .view-more-link .pager__item.is-active + .view-more-link, .all-foas--landing .pager .is-active.blueRoundButton + .view-more-link, .all-foas--landing .standard-more-link .is-active.blueRoundButton + .view-more-link, .all-foas--landing .news-and-events--landing .more-link .is-active.blueRoundButton + .view-more-link, .news-and-events--landing .all-foas--landing .more-link .is-active.blueRoundButton + .view-more-link, .all-foas--landing .view-more-link .is-active.blueRoundButton + .view-more-link, .all-foas--landing .pager .is-active.redRoundButton + .view-more-link, .all-foas--landing .standard-more-link .is-active.redRoundButton + .view-more-link, .all-foas--landing .news-and-events--landing .more-link .is-active.redRoundButton + .view-more-link, .news-and-events--landing .all-foas--landing .more-link .is-active.redRoundButton + .view-more-link, .all-foas--landing .view-more-link .is-active.redRoundButton + .view-more-link, .all-foas--landing .pager .is-active.standard-more-link + .view-more-link, .all-foas--landing .standard-more-link .is-active.standard-more-link + .view-more-link, .all-foas--landing .news-and-events--landing .more-link .is-active.standard-more-link + .view-more-link, .news-and-events--landing .all-foas--landing .more-link .is-active.standard-more-link + .view-more-link, .all-foas--landing .view-more-link .is-active.standard-more-link + .view-more-link, .all-foas--landing .pager .news-and-events--landing .is-active.more-link + .view-more-link, .news-and-events--landing .all-foas--landing .pager .is-active.more-link + .view-more-link, .all-foas--landing .standard-more-link .news-and-events--landing .is-active.more-link + .view-more-link, .news-and-events--landing .all-foas--landing .standard-more-link .is-active.more-link + .view-more-link, .all-foas--landing .news-and-events--landing .more-link .is-active.more-link + .view-more-link, .news-and-events--landing .all-foas--landing .more-link .is-active.more-link + .view-more-link, .all-foas--landing .view-more-link .news-and-events--landing .is-active.more-link + .view-more-link, .news-and-events--landing .all-foas--landing .view-more-link .is-active.more-link + .view-more-link, .all-foas--landing .pager .is-active.view-more-link + .view-more-link, .all-foas--landing .standard-more-link .is-active.view-more-link + .view-more-link, .all-foas--landing .news-and-events--landing .more-link .is-active.view-more-link + .view-more-link, .news-and-events--landing .all-foas--landing .more-link .is-active.view-more-link + .view-more-link, .all-foas--landing .view-more-link .is-active.view-more-link + .view-more-link {
    display: inline-block;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 266, ../sass/_mixins.scss */
  .all-foas--landing .pager__items .pager__item.pager-is-visible, .all-foas--landing .pager__items .pager-is-visible.blueRoundButton, .all-foas--landing .pager__items .pager-is-visible.redRoundButton, .all-foas--landing .pager__items .pager-is-visible.standard-more-link, .all-foas--landing .pager__items .news-and-events--landing .pager-is-visible.more-link, .news-and-events--landing .all-foas--landing .pager__items .pager-is-visible.more-link, .all-foas--landing .pager__items .pager-is-visible.view-more-link, .all-foas--landing .pager .pager__item.pager-is-visible, .all-foas--landing .standard-more-link .pager__item.pager-is-visible, .all-foas--landing .news-and-events--landing .more-link .pager__item.pager-is-visible, .news-and-events--landing .all-foas--landing .more-link .pager__item.pager-is-visible, .all-foas--landing .view-more-link .pager__item.pager-is-visible, .all-foas--landing .pager .pager-is-visible.blueRoundButton, .all-foas--landing .standard-more-link .pager-is-visible.blueRoundButton, .all-foas--landing .news-and-events--landing .more-link .pager-is-visible.blueRoundButton, .news-and-events--landing .all-foas--landing .more-link .pager-is-visible.blueRoundButton, .all-foas--landing .view-more-link .pager-is-visible.blueRoundButton, .all-foas--landing .pager .pager-is-visible.redRoundButton, .all-foas--landing .standard-more-link .pager-is-visible.redRoundButton, .all-foas--landing .news-and-events--landing .more-link .pager-is-visible.redRoundButton, .news-and-events--landing .all-foas--landing .more-link .pager-is-visible.redRoundButton, .all-foas--landing .view-more-link .pager-is-visible.redRoundButton, .all-foas--landing .pager .pager-is-visible.standard-more-link, .all-foas--landing .standard-more-link .pager-is-visible.standard-more-link, .all-foas--landing .news-and-events--landing .more-link .pager-is-visible.standard-more-link, .news-and-events--landing .all-foas--landing .more-link .pager-is-visible.standard-more-link, .all-foas--landing .view-more-link .pager-is-visible.standard-more-link, .all-foas--landing .pager .news-and-events--landing .pager-is-visible.more-link, .news-and-events--landing .all-foas--landing .pager .pager-is-visible.more-link, .all-foas--landing .standard-more-link .news-and-events--landing .pager-is-visible.more-link, .news-and-events--landing .all-foas--landing .standard-more-link .pager-is-visible.more-link, .all-foas--landing .news-and-events--landing .more-link .pager-is-visible.more-link, .news-and-events--landing .all-foas--landing .more-link .pager-is-visible.more-link, .all-foas--landing .view-more-link .news-and-events--landing .pager-is-visible.more-link, .news-and-events--landing .all-foas--landing .view-more-link .pager-is-visible.more-link, .all-foas--landing .pager .pager-is-visible.view-more-link, .all-foas--landing .standard-more-link .pager-is-visible.view-more-link, .all-foas--landing .news-and-events--landing .more-link .pager-is-visible.view-more-link, .news-and-events--landing .all-foas--landing .more-link .pager-is-visible.view-more-link, .all-foas--landing .view-more-link .pager-is-visible.view-more-link {
    display: inline-block;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 271, ../sass/_mixins.scss */
  .all-foas--landing .pager__items .pager__item.before-is-active, .all-foas--landing .pager__items .before-is-active.blueRoundButton, .all-foas--landing .pager__items .before-is-active.redRoundButton, .all-foas--landing .pager__items .before-is-active.standard-more-link, .all-foas--landing .pager__items .news-and-events--landing .before-is-active.more-link, .news-and-events--landing .all-foas--landing .pager__items .before-is-active.more-link, .all-foas--landing .pager__items .before-is-active.view-more-link, .all-foas--landing .pager .pager__item.before-is-active, .all-foas--landing .standard-more-link .pager__item.before-is-active, .all-foas--landing .news-and-events--landing .more-link .pager__item.before-is-active, .news-and-events--landing .all-foas--landing .more-link .pager__item.before-is-active, .all-foas--landing .view-more-link .pager__item.before-is-active, .all-foas--landing .pager .before-is-active.blueRoundButton, .all-foas--landing .standard-more-link .before-is-active.blueRoundButton, .all-foas--landing .news-and-events--landing .more-link .before-is-active.blueRoundButton, .news-and-events--landing .all-foas--landing .more-link .before-is-active.blueRoundButton, .all-foas--landing .view-more-link .before-is-active.blueRoundButton, .all-foas--landing .pager .before-is-active.redRoundButton, .all-foas--landing .standard-more-link .before-is-active.redRoundButton, .all-foas--landing .news-and-events--landing .more-link .before-is-active.redRoundButton, .news-and-events--landing .all-foas--landing .more-link .before-is-active.redRoundButton, .all-foas--landing .view-more-link .before-is-active.redRoundButton, .all-foas--landing .pager .before-is-active.standard-more-link, .all-foas--landing .standard-more-link .before-is-active.standard-more-link, .all-foas--landing .news-and-events--landing .more-link .before-is-active.standard-more-link, .news-and-events--landing .all-foas--landing .more-link .before-is-active.standard-more-link, .all-foas--landing .view-more-link .before-is-active.standard-more-link, .all-foas--landing .pager .news-and-events--landing .before-is-active.more-link, .news-and-events--landing .all-foas--landing .pager .before-is-active.more-link, .all-foas--landing .standard-more-link .news-and-events--landing .before-is-active.more-link, .news-and-events--landing .all-foas--landing .standard-more-link .before-is-active.more-link, .all-foas--landing .news-and-events--landing .more-link .before-is-active.more-link, .news-and-events--landing .all-foas--landing .more-link .before-is-active.more-link, .all-foas--landing .view-more-link .news-and-events--landing .before-is-active.more-link, .news-and-events--landing .all-foas--landing .view-more-link .before-is-active.more-link, .all-foas--landing .pager .before-is-active.view-more-link, .all-foas--landing .standard-more-link .before-is-active.view-more-link, .all-foas--landing .news-and-events--landing .more-link .before-is-active.view-more-link, .news-and-events--landing .all-foas--landing .more-link .before-is-active.view-more-link, .all-foas--landing .view-more-link .before-is-active.view-more-link {
    display: inline-block;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 276, ../sass/_mixins.scss */
  .all-foas--landing .pager__items .pager__item.before-is-active-last, .all-foas--landing .pager__items .before-is-active-last.blueRoundButton, .all-foas--landing .pager__items .before-is-active-last.redRoundButton, .all-foas--landing .pager__items .before-is-active-last.standard-more-link, .all-foas--landing .pager__items .news-and-events--landing .before-is-active-last.more-link, .news-and-events--landing .all-foas--landing .pager__items .before-is-active-last.more-link, .all-foas--landing .pager__items .before-is-active-last.view-more-link, .all-foas--landing .pager .pager__item.before-is-active-last, .all-foas--landing .standard-more-link .pager__item.before-is-active-last, .all-foas--landing .news-and-events--landing .more-link .pager__item.before-is-active-last, .news-and-events--landing .all-foas--landing .more-link .pager__item.before-is-active-last, .all-foas--landing .view-more-link .pager__item.before-is-active-last, .all-foas--landing .pager .before-is-active-last.blueRoundButton, .all-foas--landing .standard-more-link .before-is-active-last.blueRoundButton, .all-foas--landing .news-and-events--landing .more-link .before-is-active-last.blueRoundButton, .news-and-events--landing .all-foas--landing .more-link .before-is-active-last.blueRoundButton, .all-foas--landing .view-more-link .before-is-active-last.blueRoundButton, .all-foas--landing .pager .before-is-active-last.redRoundButton, .all-foas--landing .standard-more-link .before-is-active-last.redRoundButton, .all-foas--landing .news-and-events--landing .more-link .before-is-active-last.redRoundButton, .news-and-events--landing .all-foas--landing .more-link .before-is-active-last.redRoundButton, .all-foas--landing .view-more-link .before-is-active-last.redRoundButton, .all-foas--landing .pager .before-is-active-last.standard-more-link, .all-foas--landing .standard-more-link .before-is-active-last.standard-more-link, .all-foas--landing .news-and-events--landing .more-link .before-is-active-last.standard-more-link, .news-and-events--landing .all-foas--landing .more-link .before-is-active-last.standard-more-link, .all-foas--landing .view-more-link .before-is-active-last.standard-more-link, .all-foas--landing .pager .news-and-events--landing .before-is-active-last.more-link, .news-and-events--landing .all-foas--landing .pager .before-is-active-last.more-link, .all-foas--landing .standard-more-link .news-and-events--landing .before-is-active-last.more-link, .news-and-events--landing .all-foas--landing .standard-more-link .before-is-active-last.more-link, .all-foas--landing .news-and-events--landing .more-link .before-is-active-last.more-link, .news-and-events--landing .all-foas--landing .more-link .before-is-active-last.more-link, .all-foas--landing .view-more-link .news-and-events--landing .before-is-active-last.more-link, .news-and-events--landing .all-foas--landing .view-more-link .before-is-active-last.more-link, .all-foas--landing .pager .before-is-active-last.view-more-link, .all-foas--landing .standard-more-link .before-is-active-last.view-more-link, .all-foas--landing .news-and-events--landing .more-link .before-is-active-last.view-more-link, .news-and-events--landing .all-foas--landing .more-link .before-is-active-last.view-more-link, .all-foas--landing .view-more-link .before-is-active-last.view-more-link {
    display: inline-block;
  }
}
/* line 281, ../sass/_mixins.scss */
.all-foas--landing .pager__items .pager__item a:focus, .all-foas--landing .pager__items .blueRoundButton a:focus, .all-foas--landing .pager__items .redRoundButton a:focus, .all-foas--landing .pager__items .standard-more-link a:focus, .all-foas--landing .pager__items .news-and-events--landing .more-link a:focus, .news-and-events--landing .all-foas--landing .pager__items .more-link a:focus, .all-foas--landing .pager__items .view-more-link a:focus, .all-foas--landing .pager__items .pager_item a:active, .all-foas--landing .pager .pager__item a:focus, .all-foas--landing .standard-more-link .pager__item a:focus, .all-foas--landing .news-and-events--landing .more-link .pager__item a:focus, .news-and-events--landing .all-foas--landing .more-link .pager__item a:focus, .all-foas--landing .view-more-link .pager__item a:focus, .all-foas--landing .pager .blueRoundButton a:focus, .all-foas--landing .standard-more-link .blueRoundButton a:focus, .all-foas--landing .news-and-events--landing .more-link .blueRoundButton a:focus, .news-and-events--landing .all-foas--landing .more-link .blueRoundButton a:focus, .all-foas--landing .view-more-link .blueRoundButton a:focus, .all-foas--landing .pager .redRoundButton a:focus, .all-foas--landing .standard-more-link .redRoundButton a:focus, .all-foas--landing .news-and-events--landing .more-link .redRoundButton a:focus, .news-and-events--landing .all-foas--landing .more-link .redRoundButton a:focus, .all-foas--landing .view-more-link .redRoundButton a:focus, .all-foas--landing .pager .standard-more-link a:focus, .all-foas--landing .standard-more-link .standard-more-link a:focus, .all-foas--landing .news-and-events--landing .more-link .standard-more-link a:focus, .news-and-events--landing .all-foas--landing .more-link .standard-more-link a:focus, .all-foas--landing .view-more-link .standard-more-link a:focus, .all-foas--landing .pager .news-and-events--landing .more-link a:focus, .news-and-events--landing .all-foas--landing .pager .more-link a:focus, .all-foas--landing .standard-more-link .news-and-events--landing .more-link a:focus, .news-and-events--landing .all-foas--landing .standard-more-link .more-link a:focus, .all-foas--landing .news-and-events--landing .more-link .more-link a:focus, .news-and-events--landing .all-foas--landing .more-link .more-link a:focus, .all-foas--landing .view-more-link .news-and-events--landing .more-link a:focus, .news-and-events--landing .all-foas--landing .view-more-link .more-link a:focus, .all-foas--landing .pager .view-more-link a:focus, .all-foas--landing .standard-more-link .view-more-link a:focus, .all-foas--landing .news-and-events--landing .more-link .view-more-link a:focus, .news-and-events--landing .all-foas--landing .more-link .view-more-link a:focus, .all-foas--landing .view-more-link .view-more-link a:focus, .all-foas--landing .pager .pager_item a:active, .all-foas--landing .standard-more-link .pager_item a:active, .all-foas--landing .news-and-events--landing .more-link .pager_item a:active, .news-and-events--landing .all-foas--landing .more-link .pager_item a:active, .all-foas--landing .view-more-link .pager_item a:active {
  outline: #bf0d2e dotted 3px !important;
}
/* line 285, ../sass/_mixins.scss */
.all-foas--landing .pager__items .pager-first, .all-foas--landing .pager .pager-first, .all-foas--landing .standard-more-link .pager-first, .all-foas--landing .news-and-events--landing .more-link .pager-first, .news-and-events--landing .all-foas--landing .more-link .pager-first, .all-foas--landing .view-more-link .pager-first {
  background-image: url("../images/Pagination Icons/png/dark-grey/angle-left-first solid.png");
  background-repeat: no-repeat;
  background-position: initial;
  background-position-x: center;
  background-position-y: center;
  background-size: contain;
  display: inline-block;
  width: 1em;
  height: 1em;
}
/* line 297, ../sass/_mixins.scss */
.all-foas--landing .pager__items .pager__item--first:hover .pager-first, .all-foas--landing .pager .pager__item--first:hover .pager-first, .all-foas--landing .standard-more-link .pager__item--first:hover .pager-first, .all-foas--landing .news-and-events--landing .more-link .pager__item--first:hover .pager-first, .news-and-events--landing .all-foas--landing .more-link .pager__item--first:hover .pager-first, .all-foas--landing .view-more-link .pager__item--first:hover .pager-first {
  background-image: url("../images/Pagination Icons/png/white/angle-left-first solid.png");
}
/* line 301, ../sass/_mixins.scss */
.all-foas--landing .pager__items .pager-previous, .all-foas--landing .pager .pager-previous, .all-foas--landing .standard-more-link .pager-previous, .all-foas--landing .news-and-events--landing .more-link .pager-previous, .news-and-events--landing .all-foas--landing .more-link .pager-previous, .all-foas--landing .view-more-link .pager-previous {
  background-image: url("../images/Pagination Icons/png/dark-grey/angle-left-prev solid.png");
  background-repeat: no-repeat;
  background-position: initial;
  background-position-x: center;
  background-position-y: center;
  background-size: contain;
  display: inline-block;
  width: 1em;
  height: 1em;
}
/* line 313, ../sass/_mixins.scss */
.all-foas--landing .pager__items .pager__item--previous:hover .pager-previous, .all-foas--landing .pager .pager__item--previous:hover .pager-previous, .all-foas--landing .standard-more-link .pager__item--previous:hover .pager-previous, .all-foas--landing .news-and-events--landing .more-link .pager__item--previous:hover .pager-previous, .news-and-events--landing .all-foas--landing .more-link .pager__item--previous:hover .pager-previous, .all-foas--landing .view-more-link .pager__item--previous:hover .pager-previous {
  background-image: url("../images/Pagination Icons/png/white/angle-left-prev solid.png");
}
/* line 318, ../sass/_mixins.scss */
.all-foas--landing .pager__items .pager-next, .all-foas--landing .pager .pager-next, .all-foas--landing .standard-more-link .pager-next, .all-foas--landing .news-and-events--landing .more-link .pager-next, .news-and-events--landing .all-foas--landing .more-link .pager-next, .all-foas--landing .view-more-link .pager-next {
  background-image: url("../images/Pagination Icons/png/dark-grey/angle-right-next solid.png");
  background-repeat: no-repeat;
  background-position: initial;
  background-position-x: center;
  background-position-y: center;
  background-size: contain;
  display: inline-block;
  width: 1em;
  height: 1em;
}
/* line 330, ../sass/_mixins.scss */
.all-foas--landing .pager__items .pager__item--next:hover .pager-next, .all-foas--landing .pager .pager__item--next:hover .pager-next, .all-foas--landing .standard-more-link .pager__item--next:hover .pager-next, .all-foas--landing .news-and-events--landing .more-link .pager__item--next:hover .pager-next, .news-and-events--landing .all-foas--landing .more-link .pager__item--next:hover .pager-next, .all-foas--landing .view-more-link .pager__item--next:hover .pager-next {
  background-image: url("../images/Pagination Icons/png/white/angle-right-next solid.png");
}
/* line 335, ../sass/_mixins.scss */
.all-foas--landing .pager__items .pager-last, .all-foas--landing .pager .pager-last, .all-foas--landing .standard-more-link .pager-last, .all-foas--landing .news-and-events--landing .more-link .pager-last, .news-and-events--landing .all-foas--landing .more-link .pager-last, .all-foas--landing .view-more-link .pager-last {
  background-image: url("../images/Pagination Icons/png/dark-grey/angle-right-last solid.png");
  background-repeat: no-repeat;
  background-position: initial;
  background-position-x: center;
  background-position-y: center;
  background-size: contain;
  display: inline-block;
  width: 1em;
  height: 1em;
}
/* line 347, ../sass/_mixins.scss */
.all-foas--landing .pager__items .pager__item--last:hover .pager-last, .all-foas--landing .pager .pager__item--last:hover .pager-last, .all-foas--landing .standard-more-link .pager__item--last:hover .pager-last, .all-foas--landing .news-and-events--landing .more-link .pager__item--last:hover .pager-last, .news-and-events--landing .all-foas--landing .more-link .pager__item--last:hover .pager-last, .all-foas--landing .view-more-link .pager__item--last:hover .pager-last {
  background-image: url("../images/Pagination Icons/png/white/angle-right-last solid.png");
}
/* line 1713, ../sass/components/_landing_pages.scss */
.all-foas--landing .result-summary {
  display: block;
  margin: 1.5em 0 2em 0;
}
/* line 1717, ../sass/components/_landing_pages.scss */
.all-foas--landing .form-item-items-per-page {
  display: block;
  float: right;
}
/* line 1720, ../sass/components/_landing_pages.scss */
.all-foas--landing .form-item-items-per-page label {
  display: inline-block;
}

/* line 1725, ../sass/components/_landing_pages.scss */
.funding-area--landing h1 {
  margin-top: 0;
}

/* line 1729, ../sass/components/_landing_pages.scss */
article.node .funding-area--landing.general-accordion.ui-accordion {
  padding-bottom: 0;
}

/* line 1734, ../sass/components/_landing_pages.scss */
.foa-dates-container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
}

/* line 1742, ../sass/components/_landing_pages.scss */
.last-updated-date-container {
  margin-top: 0.6em;
}

/* line 1754, ../sass/components/_landing_pages.scss */
.field--name-field-program-officers {
  overflow: visible;
}
/* line 1756, ../sass/components/_landing_pages.scss */
.field--name-field-program-officers .node--type-person {
  overflow: visible;
}

/* line 1761, ../sass/components/_landing_pages.scss */
.funding-area-funding-opportunities-container {
  padding-top: 1em;
}

/* line 1764, ../sass/components/_landing_pages.scss */
.funding-area-program-officer-wrapper {
  border: #d7e7f4 3px solid;
  padding: 1em 2em;
}
/* line 1767, ../sass/components/_landing_pages.scss */
.funding-area-program-officer-wrapper h2.blue-hr, .funding-area-program-officer-wrapper .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.blue-hr, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .funding-area-program-officer-wrapper h1.blue-hr, .funding-area-program-officer-wrapper .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.contact-method-label, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .funding-area-program-officer-wrapper h1.contact-method-label, .funding-area-program-officer-wrapper .contact-method-label, .funding-area-program-officer-wrapper .contacts-container h2, .contacts-container .funding-area-program-officer-wrapper h2, .funding-area-program-officer-wrapper .contacts-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .contacts-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .funding-area-program-officer-wrapper h1, .funding-area-program-officer-wrapper .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .contacts-container h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .contacts-container .funding-area-program-officer-wrapper h1, .funding-area-program-officer-wrapper .contacts-container .contact-method-label, .contacts-container .funding-area-program-officer-wrapper .contact-method-label {
  padding-bottom: 0.5em;
  margin: 0.5em 0;
}

/* line 1772, ../sass/components/_landing_pages.scss */
.field--name-field-program-officers > .field__item {
  background: #fff;
  padding: 0;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1772, ../sass/components/_landing_pages.scss */
  .field--name-field-program-officers > .field__item {
    width: 28%;
  }
}
/* line 1779, ../sass/components/_landing_pages.scss */
.field--name-field-program-officers > .field__item .flexItemText {
  padding: 0;
}
/* line 1781, ../sass/components/_landing_pages.scss */
.field--name-field-program-officers > .field__item .flexItemText .field--name-field-email {
  word-break: break-word;
}
/* line 1785, ../sass/components/_landing_pages.scss */
.field--name-field-program-officers > .field__item .herobannertitle-grey {
  text-align: center;
}

/* line 1790, ../sass/components/_landing_pages.scss */
.person-card .field--name-field-name,
.person-card .field--name-field-degrees {
  display: inline;
}

/* line 1796, ../sass/components/_landing_pages.scss */
.view-nhlbi-grants-foa.view-display-id-block_1 .views-row {
  margin-bottom: 1em;
  width: 100%;
}

/* line 1801, ../sass/components/_landing_pages.scss */
.field--name-field-related-funding-opportunit > .field__item {
  margin-bottom: 1em;
}

/* line 1805, ../sass/components/_landing_pages.scss */
.grants-foa-card {
  margin-bottom: 0;
  padding: 0 2em;
  width: 94%;
  width: -webkit-fill-available;
  width: -moz-fill-available;
  width: -ms-fill-available;
  width: -o-fill-available;
  width: fill-available;
  width: -moz-available;
  width: available;
  background: #fff;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1805, ../sass/components/_landing_pages.scss */
  .grants-foa-card {
    width: 85%;
    width: -webkit-fill-available;
    width: -moz-fill-available;
    width: -ms-fill-available;
    width: -o-fill-available;
    width: fill-available;
    width: -moz-available;
    width: available;
  }
}
/* line 1818, ../sass/components/_landing_pages.scss */
.grants-foa-card .graydetail {
  padding-bottom: 1em;
}
/* line 1821, ../sass/components/_landing_pages.scss */
.grants-foa-card .field--name-field-notice-number,
.grants-foa-card .field--name-field-release-date,
.grants-foa-card .field--name-field-expiration-date {
  display: inline;
}

/* line 1827, ../sass/components/_landing_pages.scss */
.funding-area-related-resources-container {
  padding-top: 1em;
}
/* line 1830, ../sass/components/_landing_pages.scss */
.funding-area-related-resources-container .funding-area-resources-wrapper {
  padding-left: 0;
}
/* line 1833, ../sass/components/_landing_pages.scss */
.funding-area-related-resources-container ul {
  padding-left: 0;
}

/* line 1844, ../sass/components/_landing_pages.scss */
.foas-and-contacts--landing .view-id-nhlbi_grants_foa.view-display-id-block_3 {
  margin-bottom: 0.5em;
  margin-top: 0.5em;
}
/* line 1848, ../sass/components/_landing_pages.scss */
.foas-and-contacts--landing .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content > .views-row {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  -o-align-items: stretch;
  align-items: stretch;
  margin-bottom: 0.5em;
  margin-top: 0.5em;
}
@media all and (min-width: 1100px) {
  /* line 1848, ../sass/components/_landing_pages.scss */
  .foas-and-contacts--landing .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content > .views-row {
    width: 33%;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 1848, ../sass/components/_landing_pages.scss */
  .foas-and-contacts--landing .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content > .views-row {
    width: -webkit-fill-available;
    width: -moz-fill-available;
    width: -ms-fill-available;
    width: -o-fill-available;
    width: fill-available;
    width: -moz-available;
    width: available;
    margin-right: 0;
  }
}
/* line 1866, ../sass/components/_landing_pages.scss */
.foas-and-contacts--landing ul.list-style-type-none {
  padding-left: 0;
}

/* line 1873, ../sass/components/_landing_pages.scss */
ul.double-spaced-list li {
  margin-bottom: 0.5em;
}
/* line 1876, ../sass/components/_landing_pages.scss */
ul.double-spaced-list li:last-child {
  margin-bottom: 0;
}

/* line 1880, ../sass/components/_landing_pages.scss */
.field--name-field-funding-area-category {
  padding-top: 1em;
}

@media all and (min-width: 1100px) {
  /* line 1885, ../sass/components/_landing_pages.scss */
  .news-events-news-mentions-container .topicFeatured > .view-content {
    width: auto;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1885, ../sass/components/_landing_pages.scss */
  .news-events-news-mentions-container .topicFeatured > .view-content {
    width: auto;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1885, ../sass/components/_landing_pages.scss */
  .news-events-news-mentions-container .topicFeatured > .view-content {
    width: auto;
  }
}
/* line 1896, ../sass/components/_landing_pages.scss */
.news-events-news-mentions-container .blackstandardsubhead {
  padding-bottom: 1em;
}
/* line 1905, ../sass/components/_landing_pages.scss */
.news-events-news-mentions-container .node--view-mode-short-teaser .flexItemText,
.news-events-news-mentions-container .flexItemText {
  padding: 1em 0;
}

/* line 1914, ../sass/components/_landing_pages.scss */
.divisions-offices-and-centers-index--landing h1 {
  margin-top: 0;
}

/* line 1918, ../sass/components/_landing_pages.scss */
.node--type-division.node--view-mode-teaser {
  background-color: #f4f4f4;
  margin-bottom: 1em;
}
/* line 1921, ../sass/components/_landing_pages.scss */
.node--type-division.node--view-mode-teaser h3.primary-blue-publication-title, .node--type-division.node--view-mode-teaser .primary-blue-publication-title.field--name-field-social-phrase-group-title, .node--type-division.node--view-mode-teaser .primary-blue-publication-title.field--name-field-image-gallery-title {
  background-color: #f4f4f4;
}
/* line 1924, ../sass/components/_landing_pages.scss */
.node--type-division.node--view-mode-teaser .flexItemText {
  padding: 1.5em 2em;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 1924, ../sass/components/_landing_pages.scss */
  .node--type-division.node--view-mode-teaser .flexItemText {
    padding: 1em 1.5em;
  }
}

/* line 1932, ../sass/components/_landing_pages.scss */
.research-priorities--landing .pager__item a.button, .research-priorities--landing .blueRoundButton a.button, .research-priorities--landing .redRoundButton a.button, .research-priorities--landing .standard-more-link a.button, .research-priorities--landing .news-and-events--landing .more-link a.button, .news-and-events--landing .research-priorities--landing .more-link a.button, .research-priorities--landing .view-more-link a.button {
  background-color: #850920;
  border: 1px solid #fff;
}
/* line 1937, ../sass/components/_landing_pages.scss */
.research-priorities--landing .pager__item a.button:hover, .research-priorities--landing .blueRoundButton a.button:hover, .research-priorities--landing .redRoundButton a.button:hover, .research-priorities--landing .standard-more-link a.button:hover, .research-priorities--landing .news-and-events--landing .more-link a.button:hover, .news-and-events--landing .research-priorities--landing .more-link a.button:hover, .research-priorities--landing .view-more-link a.button:hover {
  background-color: #bf0d2e;
  border-color: #bf0d2e;
}

/* line 1944, ../sass/components/_landing_pages.scss */
.grants-and-training-card-wrapper, .about-nhlbi-division-card-wrapper, .hei-tools-icon-card-wrapper {
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
}

/* line 1950, ../sass/components/_landing_pages.scss */
.field--name-field-grants-and-training-card, .field--name-field-division-card, .field--name-field-tool-icon-card {
  -webkit-justify-content: left;
  -moz-justify-content: left;
  -ms-justify-content: left;
  -o-justify-content: left;
  justify-content: left;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1950, ../sass/components/_landing_pages.scss */
  .field--name-field-grants-and-training-card, .field--name-field-division-card, .field--name-field-tool-icon-card {
    -webkit-justify-content: left;
    -moz-justify-content: left;
    -ms-justify-content: left;
    -o-justify-content: left;
    justify-content: left;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1950, ../sass/components/_landing_pages.scss */
  .field--name-field-grants-and-training-card, .field--name-field-division-card, .field--name-field-tool-icon-card {
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
    width: 100%;
  }
}
/* line 1965, ../sass/components/_landing_pages.scss */
.field--name-field-grants-and-training-card h3 > a, .field--name-field-division-card h3 > a, .field--name-field-tool-icon-card h3 > a, .field--name-field-grants-and-training-card .smaller-titled-cards .field--name-field-social-phrase-group-title > a, .field--name-field-division-card .smaller-titled-cards .field--name-field-social-phrase-group-title > a, .field--name-field-tool-icon-card .smaller-titled-cards .field--name-field-social-phrase-group-title > a, .field--name-field-grants-and-training-card .smaller-titled-cards .field--name-field-image-gallery-title > a, .field--name-field-division-card .smaller-titled-cards .field--name-field-image-gallery-title > a, .field--name-field-tool-icon-card .smaller-titled-cards .field--name-field-image-gallery-title > a, .field--name-field-grants-and-training-card .field--name-field-social-phrase-group-title > a, .field--name-field-division-card .field--name-field-social-phrase-group-title > a, .field--name-field-tool-icon-card .field--name-field-social-phrase-group-title > a, .field--name-field-grants-and-training-card .field--name-field-image-gallery-title > a, .field--name-field-division-card .field--name-field-image-gallery-title > a, .field--name-field-tool-icon-card .field--name-field-image-gallery-title > a,
.field--name-field-grants-and-training-card h3 > a:visited,
.field--name-field-division-card h3 > a:visited,
.field--name-field-tool-icon-card h3 > a:visited,
.field--name-field-grants-and-training-card .smaller-titled-cards .field--name-field-social-phrase-group-title > a:visited,
.field--name-field-division-card .smaller-titled-cards .field--name-field-social-phrase-group-title > a:visited,
.field--name-field-tool-icon-card .smaller-titled-cards .field--name-field-social-phrase-group-title > a:visited,
.field--name-field-grants-and-training-card .smaller-titled-cards .field--name-field-image-gallery-title > a:visited,
.field--name-field-division-card .smaller-titled-cards .field--name-field-image-gallery-title > a:visited,
.field--name-field-tool-icon-card .smaller-titled-cards .field--name-field-image-gallery-title > a:visited,
.field--name-field-grants-and-training-card .field--name-field-social-phrase-group-title > a:visited,
.field--name-field-division-card .field--name-field-social-phrase-group-title > a:visited,
.field--name-field-tool-icon-card .field--name-field-social-phrase-group-title > a:visited,
.field--name-field-grants-and-training-card .field--name-field-image-gallery-title > a:visited,
.field--name-field-division-card .field--name-field-image-gallery-title > a:visited,
.field--name-field-tool-icon-card .field--name-field-image-gallery-title > a:visited,
.field--name-field-grants-and-training-card h3 > a:link,
.field--name-field-division-card h3 > a:link,
.field--name-field-tool-icon-card h3 > a:link,
.field--name-field-grants-and-training-card .smaller-titled-cards .field--name-field-social-phrase-group-title > a:link,
.field--name-field-division-card .smaller-titled-cards .field--name-field-social-phrase-group-title > a:link,
.field--name-field-tool-icon-card .smaller-titled-cards .field--name-field-social-phrase-group-title > a:link,
.field--name-field-grants-and-training-card .smaller-titled-cards .field--name-field-image-gallery-title > a:link,
.field--name-field-division-card .smaller-titled-cards .field--name-field-image-gallery-title > a:link,
.field--name-field-tool-icon-card .smaller-titled-cards .field--name-field-image-gallery-title > a:link,
.field--name-field-grants-and-training-card .field--name-field-social-phrase-group-title > a:link,
.field--name-field-division-card .field--name-field-social-phrase-group-title > a:link,
.field--name-field-tool-icon-card .field--name-field-social-phrase-group-title > a:link,
.field--name-field-grants-and-training-card .field--name-field-image-gallery-title > a:link,
.field--name-field-division-card .field--name-field-image-gallery-title > a:link,
.field--name-field-tool-icon-card .field--name-field-image-gallery-title > a:link {
  color: #222;
}
/* line 1971, ../sass/components/_landing_pages.scss */
.field--name-field-grants-and-training-card h3 > a:hover, .field--name-field-division-card h3 > a:hover, .field--name-field-tool-icon-card h3 > a:hover, .field--name-field-grants-and-training-card .smaller-titled-cards .field--name-field-social-phrase-group-title > a:hover, .field--name-field-division-card .smaller-titled-cards .field--name-field-social-phrase-group-title > a:hover, .field--name-field-tool-icon-card .smaller-titled-cards .field--name-field-social-phrase-group-title > a:hover, .field--name-field-grants-and-training-card .smaller-titled-cards .field--name-field-image-gallery-title > a:hover, .field--name-field-division-card .smaller-titled-cards .field--name-field-image-gallery-title > a:hover, .field--name-field-tool-icon-card .smaller-titled-cards .field--name-field-image-gallery-title > a:hover, .field--name-field-grants-and-training-card .field--name-field-social-phrase-group-title > a:hover, .field--name-field-division-card .field--name-field-social-phrase-group-title > a:hover, .field--name-field-tool-icon-card .field--name-field-social-phrase-group-title > a:hover, .field--name-field-grants-and-training-card .field--name-field-image-gallery-title > a:hover, .field--name-field-division-card .field--name-field-image-gallery-title > a:hover, .field--name-field-tool-icon-card .field--name-field-image-gallery-title > a:hover {
  font-weight: bold;
}

@media all and (min-width: 1100px) {
  /* line 1975, ../sass/components/_landing_pages.scss */
  .field--name-field-grants-and-training-card > .field__item:last-child, .field--name-field-division-card > .field__item:last-child, .field--name-field-tool-icon-card > .field__item:last-child {
    margin-right: 0;
  }
}

@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1980, ../sass/components/_landing_pages.scss */
  .field--name-field-grants-and-training-card > .field__item:nth-child(3), .field--name-field-division-card > .field__item:nth-child(3), .field--name-field-tool-icon-card > .field__item:nth-child(3) {
    margin-right: 0;
  }
}

/* line 1986, ../sass/components/_landing_pages.scss */
.field--name-field-grants-and-training-card > .field__item, .field--name-field-division-card > .field__item, .field--name-field-tool-icon-card > .field__item {
  margin-right: 1em;
  background-color: #fff;
}
@media all and (min-width: 1100px) {
  /* line 1986, ../sass/components/_landing_pages.scss */
  .field--name-field-grants-and-training-card > .field__item, .field--name-field-division-card > .field__item, .field--name-field-tool-icon-card > .field__item {
    max-width: 32%;
    min-width: 32%;
    flex-basis: 32%;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 1986, ../sass/components/_landing_pages.scss */
  .field--name-field-grants-and-training-card > .field__item, .field--name-field-division-card > .field__item, .field--name-field-tool-icon-card > .field__item {
    margin-bottom: 1em;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1986, ../sass/components/_landing_pages.scss */
  .field--name-field-grants-and-training-card > .field__item, .field--name-field-division-card > .field__item, .field--name-field-tool-icon-card > .field__item {
    max-width: 45%;
    min-width: 45%;
    flex-basis: 45%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1986, ../sass/components/_landing_pages.scss */
  .field--name-field-grants-and-training-card > .field__item, .field--name-field-division-card > .field__item, .field--name-field-tool-icon-card > .field__item {
    max-width: auto;
    width: auto;
    margin-right: 0;
  }
}

@media all and (min-width: 1100px) {
  /* line 2011, ../sass/components/_landing_pages.scss */
  .field--name-field-grants-and-training-card > .field__item:nth-child(4n), .field--name-field-division-card > .field__item:nth-child(4n), .field--name-field-tool-icon-card > .field__item:nth-child(4n) {
    padding-right: 0;
  }
}

@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 2016, ../sass/components/_landing_pages.scss */
  .field--name-field-grants-and-training-card > .field__item:last-child, .field--name-field-division-card > .field__item:last-child, .field--name-field-tool-icon-card > .field__item:last-child {
    padding-bottom: 0;
  }
}

/* line 2022, ../sass/components/_landing_pages.scss */
.grants-and-training-icon-card {
  height: 100%;
  background-color: #fff;
}
/* line 2025, ../sass/components/_landing_pages.scss */
.grants-and-training-icon-card .flexItemText {
  padding: 1.5em;
}
/* line 2029, ../sass/components/_landing_pages.scss */
.grants-and-training-icon-card h3, .grants-and-training-icon-card .field--name-field-social-phrase-group-title, .grants-and-training-icon-card .field--name-field-image-gallery-title {
  text-align: center;
}

/* line 2033, ../sass/components/_landing_pages.scss */
.field--name-field-promotional-card {
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  color: #fff;
  background-color: transparent;
}
/* line 126, ../sass/_mixins.scss */
.field--name-field-promotional-card a, .field--name-field-promotional-card a:link {
  color: #fff;
  text-decoration: underline;
}
/* line 132, ../sass/_mixins.scss */
.field--name-field-promotional-card a:visited {
  color: #D7E7F4;
}
/* line 145, ../sass/_mixins.scss */
.field--name-field-promotional-card a:hover {
  font-weight: bold;
}
/* line 154, ../sass/_mixins.scss */
.field--name-field-promotional-card h1, .field--name-field-promotional-card .photocredit {
  color: #fff;
}

/* line 2039, ../sass/components/_landing_pages.scss */
.field--name-field-promotional-card > .field__item {
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-grow: 0;
  -o-flex-grow: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-shrink: 0;
  -o-flex-shrink: 0;
  flex-shrink: 0;
  max-width: 100%;
}
/* line 2044, ../sass/components/_landing_pages.scss */
.field--name-field-promotional-card > .field__item .flexItemImageHalf {
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-grow: 1;
  -o-flex-grow: 1;
  flex-grow: 1;
}
/* line 2050, ../sass/components/_landing_pages.scss */
.field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf {
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-grow: 1;
  -o-flex-grow: 1;
  flex-grow: 1;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2055, ../sass/components/_landing_pages.scss */
  .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a {
    display: table-cell;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2055, ../sass/components/_landing_pages.scss */
  .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a {
    display: table-cell;
  }
}

/* line 2066, ../sass/components/_landing_pages.scss */
.field--name-field-promotional-card > .field__item:nth-child(odd) {
  background-color: #1a568c;
}
/* line 2068, ../sass/components/_landing_pages.scss */
.field--name-field-promotional-card > .field__item:nth-child(odd) .flexItemImage, .field--name-field-promotional-card > .field__item:nth-child(odd) .flexItemImageHalf, .field--name-field-promotional-card > .field__item:nth-child(odd) .flexItemImageTenth, .field--name-field-promotional-card > .field__item:nth-child(odd) .flexItemImageFourth, .field--name-field-promotional-card > .field__item:nth-child(odd) .flexItemImageThird, .field--name-field-promotional-card > .field__item:nth-child(odd) .flexItemImageThirdHalf, .field--name-field-promotional-card > .field__item:nth-child(odd) .hero-image {
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
}
/* line 2071, ../sass/components/_landing_pages.scss */
.field--name-field-promotional-card > .field__item:nth-child(odd) .flexItemText {
  -webkit-box-ordinal-group: 2;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
}
/* line 2076, ../sass/components/_landing_pages.scss */
.field--name-field-promotional-card > .field__item:nth-child(odd) .field--name-field-promotional-link > a {
  background-image: none !important;
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #1a568c;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #fff;
  padding: 0.8em 3em;
  display: table !important;
  background-image: none;
  color: #1a568c !important;
}
@media all and (min-width: 1440px) {
  /* line 2076, ../sass/components/_landing_pages.scss */
  .field--name-field-promotional-card > .field__item:nth-child(odd) .field--name-field-promotional-link > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2076, ../sass/components/_landing_pages.scss */
  .field--name-field-promotional-card > .field__item:nth-child(odd) .field--name-field-promotional-link > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2076, ../sass/components/_landing_pages.scss */
  .field--name-field-promotional-card > .field__item:nth-child(odd) .field--name-field-promotional-link > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2076, ../sass/components/_landing_pages.scss */
  .field--name-field-promotional-card > .field__item:nth-child(odd) .field--name-field-promotional-link > a {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.field--name-field-promotional-card > .field__item:nth-child(odd) .field--name-field-promotional-link > a :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 2076, ../sass/components/_landing_pages.scss */
  .field--name-field-promotional-card > .field__item:nth-child(odd) .field--name-field-promotional-link > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2076, ../sass/components/_landing_pages.scss */
  .field--name-field-promotional-card > .field__item:nth-child(odd) .field--name-field-promotional-link > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2076, ../sass/components/_landing_pages.scss */
  .field--name-field-promotional-card > .field__item:nth-child(odd) .field--name-field-promotional-link > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2076, ../sass/components/_landing_pages.scss */
  .field--name-field-promotional-card > .field__item:nth-child(odd) .field--name-field-promotional-link > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2076, ../sass/components/_landing_pages.scss */
  .field--name-field-promotional-card > .field__item:nth-child(odd) .field--name-field-promotional-link > a {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.field--name-field-promotional-card > .field__item:nth-child(odd) .field--name-field-promotional-link > a:hover {
  background-color: #d7e7f4;
  border-color: #d7e7f4;
  color: #222;
  text-decoration: none;
}
/* line 2379, ../sass/_mixins.scss */
.field--name-field-promotional-card > .field__item:nth-child(odd) .field--name-field-promotional-link > a:focus, .field--name-field-promotional-card > .field__item:nth-child(odd) .field--name-field-promotional-link > a:active {
  outline: #fff dotted 3px !important;
}
/* line 2080, ../sass/components/_landing_pages.scss */
.field--name-field-promotional-card > .field__item:nth-child(odd) .field--name-field-promotional-link > a:hover {
  font-weight: normal !important;
  color: #222 !important;
}

/* line 2087, ../sass/components/_landing_pages.scss */
.field--name-field-promotional-card > .field__item:nth-child(even) {
  background-color: #102d66;
}
/* line 2089, ../sass/components/_landing_pages.scss */
.field--name-field-promotional-card > .field__item:nth-child(even) .flexItemImage, .field--name-field-promotional-card > .field__item:nth-child(even) .flexItemImageHalf, .field--name-field-promotional-card > .field__item:nth-child(even) .flexItemImageTenth, .field--name-field-promotional-card > .field__item:nth-child(even) .flexItemImageFourth, .field--name-field-promotional-card > .field__item:nth-child(even) .flexItemImageThird, .field--name-field-promotional-card > .field__item:nth-child(even) .flexItemImageThirdHalf, .field--name-field-promotional-card > .field__item:nth-child(even) .hero-image {
  -webkit-box-ordinal-group: 2;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2089, ../sass/components/_landing_pages.scss */
  .field--name-field-promotional-card > .field__item:nth-child(even) .flexItemImage, .field--name-field-promotional-card > .field__item:nth-child(even) .flexItemImageHalf, .field--name-field-promotional-card > .field__item:nth-child(even) .flexItemImageTenth, .field--name-field-promotional-card > .field__item:nth-child(even) .flexItemImageFourth, .field--name-field-promotional-card > .field__item:nth-child(even) .flexItemImageThird, .field--name-field-promotional-card > .field__item:nth-child(even) .flexItemImageThirdHalf, .field--name-field-promotional-card > .field__item:nth-child(even) .hero-image {
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
}
/* line 2095, ../sass/components/_landing_pages.scss */
.field--name-field-promotional-card > .field__item:nth-child(even) .flexItemText {
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2095, ../sass/components/_landing_pages.scss */
  .field--name-field-promotional-card > .field__item:nth-child(even) .flexItemText {
    -webkit-box-ordinal-group: 2;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
}
/* line 2102, ../sass/components/_landing_pages.scss */
.field--name-field-promotional-card > .field__item:nth-child(even) .field--name-field-promotional-link > a {
  background-image: none !important;
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #1a568c;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #fff;
  padding: 0.8em 3em;
  display: table !important;
  background-image: none;
  color: #1a568c !important;
}
@media all and (min-width: 1440px) {
  /* line 2102, ../sass/components/_landing_pages.scss */
  .field--name-field-promotional-card > .field__item:nth-child(even) .field--name-field-promotional-link > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2102, ../sass/components/_landing_pages.scss */
  .field--name-field-promotional-card > .field__item:nth-child(even) .field--name-field-promotional-link > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2102, ../sass/components/_landing_pages.scss */
  .field--name-field-promotional-card > .field__item:nth-child(even) .field--name-field-promotional-link > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2102, ../sass/components/_landing_pages.scss */
  .field--name-field-promotional-card > .field__item:nth-child(even) .field--name-field-promotional-link > a {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.field--name-field-promotional-card > .field__item:nth-child(even) .field--name-field-promotional-link > a :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 2102, ../sass/components/_landing_pages.scss */
  .field--name-field-promotional-card > .field__item:nth-child(even) .field--name-field-promotional-link > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2102, ../sass/components/_landing_pages.scss */
  .field--name-field-promotional-card > .field__item:nth-child(even) .field--name-field-promotional-link > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2102, ../sass/components/_landing_pages.scss */
  .field--name-field-promotional-card > .field__item:nth-child(even) .field--name-field-promotional-link > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2102, ../sass/components/_landing_pages.scss */
  .field--name-field-promotional-card > .field__item:nth-child(even) .field--name-field-promotional-link > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2102, ../sass/components/_landing_pages.scss */
  .field--name-field-promotional-card > .field__item:nth-child(even) .field--name-field-promotional-link > a {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.field--name-field-promotional-card > .field__item:nth-child(even) .field--name-field-promotional-link > a:hover {
  background-color: #d7e7f4;
  border-color: #d7e7f4;
  color: #222;
  text-decoration: none;
}
/* line 2379, ../sass/_mixins.scss */
.field--name-field-promotional-card > .field__item:nth-child(even) .field--name-field-promotional-link > a:focus, .field--name-field-promotional-card > .field__item:nth-child(even) .field--name-field-promotional-link > a:active {
  outline: #fff dotted 3px !important;
}
/* line 2106, ../sass/components/_landing_pages.scss */
.field--name-field-promotional-card > .field__item:nth-child(even) .field--name-field-promotional-link > a:hover {
  font-weight: normal !important;
  color: #222 !important;
}

/* line 2116, ../sass/components/_landing_pages.scss */
.field--name-field-sv-promotional-cards, .field--name-field-about-nhlbi-promotional-ca {
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  color: #fff;
  background-color: transparent;
}
/* line 126, ../sass/_mixins.scss */
.field--name-field-sv-promotional-cards a, .field--name-field-about-nhlbi-promotional-ca a, .field--name-field-sv-promotional-cards a:link, .field--name-field-about-nhlbi-promotional-ca a:link {
  color: #fff;
  text-decoration: underline;
}
/* line 132, ../sass/_mixins.scss */
.field--name-field-sv-promotional-cards a:visited, .field--name-field-about-nhlbi-promotional-ca a:visited {
  color: #D7E7F4;
}
/* line 145, ../sass/_mixins.scss */
.field--name-field-sv-promotional-cards a:hover, .field--name-field-about-nhlbi-promotional-ca a:hover {
  font-weight: bold;
}
/* line 154, ../sass/_mixins.scss */
.field--name-field-sv-promotional-cards h1, .field--name-field-about-nhlbi-promotional-ca h1, .field--name-field-sv-promotional-cards .photocredit, .field--name-field-about-nhlbi-promotional-ca .photocredit {
  color: #fff;
}

/* line 2122, ../sass/components/_landing_pages.scss */
.flexbox-container-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-grow: 1;
  -o-flex-grow: 1;
  flex-grow: 1;
  height: 100%;
}

/* line 2127, ../sass/components/_landing_pages.scss */
.flexbox-container-wrapper > div {
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-grow: 1;
  -o-flex-grow: 1;
  flex-grow: 1;
}

/* line 2132, ../sass/components/_landing_pages.scss */
.field--name-field-sv-promotional-cards > .field__item, .field--name-field-about-nhlbi-promotional-ca > .field__item,
.field--name-field-about-nhlbi-promotional-ca > .field__item {
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-grow: 1;
  -o-flex-grow: 1;
  flex-grow: 1;
  height: 100%;
  max-width: 100%;
}
/* line 2137, ../sass/components/_landing_pages.scss */
.field--name-field-sv-promotional-cards > .field__item .flexItemImageHalf, .field--name-field-about-nhlbi-promotional-ca > .field__item .flexItemImageHalf,
.field--name-field-about-nhlbi-promotional-ca > .field__item .flexItemImageHalf {
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-grow: 1;
  -o-flex-grow: 1;
  flex-grow: 1;
}
/* line 2143, ../sass/components/_landing_pages.scss */
.field--name-field-sv-promotional-cards > .field__item .flexItemText.flexItemTextHalf, .field--name-field-about-nhlbi-promotional-ca > .field__item .flexItemText.flexItemTextHalf,
.field--name-field-about-nhlbi-promotional-ca > .field__item .flexItemText.flexItemTextHalf {
    /*

    padding: 3.5rem 1.5rem .5rem 10rem;
    @include bp-desktop-constrained {
      padding: 3.5rem 1.5rem .5rem 2rem;
    }
    @include bp-tablet {
      padding: 3.5rem 1.5rem .5rem 2rem;
    }
    @include bp-phone {
      padding: 0.875rem 1.5rem .5rem 1.5em;
    }
    */
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-grow: 1;
  -o-flex-grow: 1;
  flex-grow: 1;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2162, ../sass/components/_landing_pages.scss */
  .field--name-field-sv-promotional-cards > .field__item .flexItemText.flexItemTextHalf a.viewalllink, .field--name-field-about-nhlbi-promotional-ca > .field__item .flexItemText.flexItemTextHalf a.viewalllink, .field--name-field-sv-promotional-cards > .field__item .promoted-content-container .flexItemText.flexItemTextHalf .field--name-field-url > a, .promoted-content-container .field--name-field-sv-promotional-cards > .field__item .flexItemText.flexItemTextHalf .field--name-field-url > a, .field--name-field-about-nhlbi-promotional-ca > .field__item .promoted-content-container .flexItemText.flexItemTextHalf .field--name-field-url > a, .promoted-content-container .field--name-field-about-nhlbi-promotional-ca > .field__item .flexItemText.flexItemTextHalf .field--name-field-url > a, .field--name-field-sv-promotional-cards > .field__item .flexItemText.flexItemTextHalf .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-sv-promotional-cards > .field__item .flexItemText.flexItemTextHalf a, .field--name-field-about-nhlbi-promotional-ca > .field__item .flexItemText.flexItemTextHalf .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-about-nhlbi-promotional-ca > .field__item .flexItemText.flexItemTextHalf a, .field--name-field-sv-promotional-cards > .field__item .flexItemText.flexItemTextHalf .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-sv-promotional-cards > .field__item .flexItemText.flexItemTextHalf a, .field--name-field-about-nhlbi-promotional-ca > .field__item .flexItemText.flexItemTextHalf .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-about-nhlbi-promotional-ca > .field__item .flexItemText.flexItemTextHalf a, .field--name-field-sv-promotional-cards > .field__item .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .field--name-field-sv-promotional-cards > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-about-nhlbi-promotional-ca > .field__item .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .field--name-field-about-nhlbi-promotional-ca > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-sv-promotional-cards > .field__item .flexItemText.flexItemTextHalf .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-sv-promotional-cards > .field__item .flexItemText.flexItemTextHalf a, .field--name-field-about-nhlbi-promotional-ca > .field__item .flexItemText.flexItemTextHalf .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-about-nhlbi-promotional-ca > .field__item .flexItemText.flexItemTextHalf a, .field--name-field-sv-promotional-cards > .field__item .flexItemText.flexItemTextHalf .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .field--name-field-sv-promotional-cards > .field__item .flexItemText.flexItemTextHalf .field--name-field-url > a, .field--name-field-about-nhlbi-promotional-ca > .field__item .flexItemText.flexItemTextHalf .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .field--name-field-about-nhlbi-promotional-ca > .field__item .flexItemText.flexItemTextHalf .field--name-field-url > a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item .flexItemText.flexItemTextHalf a.viewalllink,
  .field--name-field-about-nhlbi-promotional-ca > .field__item .promoted-content-container .flexItemText.flexItemTextHalf .field--name-field-url > a,
  .promoted-content-container .field--name-field-about-nhlbi-promotional-ca > .field__item .flexItemText.flexItemTextHalf .field--name-field-url > a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item .flexItemText.flexItemTextHalf .contact-nhlbi--landing .field--name-field-directions-link a,
  .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-about-nhlbi-promotional-ca > .field__item .flexItemText.flexItemTextHalf a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item .flexItemText.flexItemTextHalf .isi-job-opportunities--landing .field--name-field-vacancies-link a,
  .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-about-nhlbi-promotional-ca > .field__item .flexItemText.flexItemTextHalf a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a,
  .field--name-field-promotional-card > .field__item .field--name-field-about-nhlbi-promotional-ca > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item .flexItemText.flexItemTextHalf .fixedDarkBluePane .field--name-field-traveling-and-security a,
  .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-about-nhlbi-promotional-ca > .field__item .flexItemText.flexItemTextHalf a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item .flexItemText.flexItemTextHalf .field--name-field-community-card .field--name-field-url > a,
  .field--name-field-community-card .field--name-field-about-nhlbi-promotional-ca > .field__item .flexItemText.flexItemTextHalf .field--name-field-url > a {
    display: table-cell;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2162, ../sass/components/_landing_pages.scss */
  .field--name-field-sv-promotional-cards > .field__item .flexItemText.flexItemTextHalf a.viewalllink, .field--name-field-about-nhlbi-promotional-ca > .field__item .flexItemText.flexItemTextHalf a.viewalllink, .field--name-field-sv-promotional-cards > .field__item .promoted-content-container .flexItemText.flexItemTextHalf .field--name-field-url > a, .promoted-content-container .field--name-field-sv-promotional-cards > .field__item .flexItemText.flexItemTextHalf .field--name-field-url > a, .field--name-field-about-nhlbi-promotional-ca > .field__item .promoted-content-container .flexItemText.flexItemTextHalf .field--name-field-url > a, .promoted-content-container .field--name-field-about-nhlbi-promotional-ca > .field__item .flexItemText.flexItemTextHalf .field--name-field-url > a, .field--name-field-sv-promotional-cards > .field__item .flexItemText.flexItemTextHalf .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-sv-promotional-cards > .field__item .flexItemText.flexItemTextHalf a, .field--name-field-about-nhlbi-promotional-ca > .field__item .flexItemText.flexItemTextHalf .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-about-nhlbi-promotional-ca > .field__item .flexItemText.flexItemTextHalf a, .field--name-field-sv-promotional-cards > .field__item .flexItemText.flexItemTextHalf .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-sv-promotional-cards > .field__item .flexItemText.flexItemTextHalf a, .field--name-field-about-nhlbi-promotional-ca > .field__item .flexItemText.flexItemTextHalf .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-about-nhlbi-promotional-ca > .field__item .flexItemText.flexItemTextHalf a, .field--name-field-sv-promotional-cards > .field__item .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .field--name-field-sv-promotional-cards > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-about-nhlbi-promotional-ca > .field__item .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .field--name-field-about-nhlbi-promotional-ca > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-sv-promotional-cards > .field__item .flexItemText.flexItemTextHalf .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-sv-promotional-cards > .field__item .flexItemText.flexItemTextHalf a, .field--name-field-about-nhlbi-promotional-ca > .field__item .flexItemText.flexItemTextHalf .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-about-nhlbi-promotional-ca > .field__item .flexItemText.flexItemTextHalf a, .field--name-field-sv-promotional-cards > .field__item .flexItemText.flexItemTextHalf .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .field--name-field-sv-promotional-cards > .field__item .flexItemText.flexItemTextHalf .field--name-field-url > a, .field--name-field-about-nhlbi-promotional-ca > .field__item .flexItemText.flexItemTextHalf .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .field--name-field-about-nhlbi-promotional-ca > .field__item .flexItemText.flexItemTextHalf .field--name-field-url > a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item .flexItemText.flexItemTextHalf a.viewalllink,
  .field--name-field-about-nhlbi-promotional-ca > .field__item .promoted-content-container .flexItemText.flexItemTextHalf .field--name-field-url > a,
  .promoted-content-container .field--name-field-about-nhlbi-promotional-ca > .field__item .flexItemText.flexItemTextHalf .field--name-field-url > a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item .flexItemText.flexItemTextHalf .contact-nhlbi--landing .field--name-field-directions-link a,
  .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-about-nhlbi-promotional-ca > .field__item .flexItemText.flexItemTextHalf a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item .flexItemText.flexItemTextHalf .isi-job-opportunities--landing .field--name-field-vacancies-link a,
  .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-about-nhlbi-promotional-ca > .field__item .flexItemText.flexItemTextHalf a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a,
  .field--name-field-promotional-card > .field__item .field--name-field-about-nhlbi-promotional-ca > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item .flexItemText.flexItemTextHalf .fixedDarkBluePane .field--name-field-traveling-and-security a,
  .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-about-nhlbi-promotional-ca > .field__item .flexItemText.flexItemTextHalf a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item .flexItemText.flexItemTextHalf .field--name-field-community-card .field--name-field-url > a,
  .field--name-field-community-card .field--name-field-about-nhlbi-promotional-ca > .field__item .flexItemText.flexItemTextHalf .field--name-field-url > a {
    display: table-cell;
  }
}

/* line 2172, ../sass/components/_landing_pages.scss */
.field--name-field-sv-promotional-cards > .field__item:nth-child(odd), .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd),
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) {
  background-color: #850920;
}
/* line 2175, ../sass/components/_landing_pages.scss */
.field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemImage, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemImage, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemImageHalf, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemImageHalf, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemImageTenth, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemImageTenth, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemImageFourth, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemImageFourth, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemImageThird, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemImageThird, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemImageThirdHalf, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemImageThirdHalf, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .hero-image, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .hero-image,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemImage,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemImageHalf,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemImageTenth,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemImageFourth,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemImageThird,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemImageThirdHalf,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .hero-image {
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
}
/* line 2178, ../sass/components/_landing_pages.scss */
.field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText {
  -webkit-box-ordinal-group: 2;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
}
/* line 2180, ../sass/components/_landing_pages.scss */
.field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText a.viewalllink, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a.viewalllink, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a.viewalllink,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .promoted-content-container .flexItemText .field--name-field-url > a,
.promoted-content-container .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .contact-nhlbi--landing .field--name-field-directions-link a,
.contact-nhlbi--landing .field--name-field-directions-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .isi-job-opportunities--landing .field--name-field-vacancies-link a,
.isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a,
.field--name-field-promotional-card > .field__item .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .fixedDarkBluePane .field--name-field-traveling-and-security a,
.fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-community-card .field--name-field-url > a,
.field--name-field-community-card .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #850920;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #fff;
  padding: 0.8em 3em;
  display: table !important;
  background-image: none;
}
@media all and (min-width: 1440px) {
  /* line 2180, ../sass/components/_landing_pages.scss */
  .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText a.viewalllink, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a.viewalllink, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a.viewalllink,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .promoted-content-container .flexItemText .field--name-field-url > a,
  .promoted-content-container .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .contact-nhlbi--landing .field--name-field-directions-link a,
  .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .isi-job-opportunities--landing .field--name-field-vacancies-link a,
  .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a,
  .field--name-field-promotional-card > .field__item .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .fixedDarkBluePane .field--name-field-traveling-and-security a,
  .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-community-card .field--name-field-url > a,
  .field--name-field-community-card .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2180, ../sass/components/_landing_pages.scss */
  .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText a.viewalllink, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a.viewalllink, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a.viewalllink,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .promoted-content-container .flexItemText .field--name-field-url > a,
  .promoted-content-container .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .contact-nhlbi--landing .field--name-field-directions-link a,
  .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .isi-job-opportunities--landing .field--name-field-vacancies-link a,
  .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a,
  .field--name-field-promotional-card > .field__item .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .fixedDarkBluePane .field--name-field-traveling-and-security a,
  .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-community-card .field--name-field-url > a,
  .field--name-field-community-card .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2180, ../sass/components/_landing_pages.scss */
  .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText a.viewalllink, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a.viewalllink, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a.viewalllink,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .promoted-content-container .flexItemText .field--name-field-url > a,
  .promoted-content-container .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .contact-nhlbi--landing .field--name-field-directions-link a,
  .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .isi-job-opportunities--landing .field--name-field-vacancies-link a,
  .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a,
  .field--name-field-promotional-card > .field__item .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .fixedDarkBluePane .field--name-field-traveling-and-security a,
  .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-community-card .field--name-field-url > a,
  .field--name-field-community-card .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2180, ../sass/components/_landing_pages.scss */
  .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText a.viewalllink, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a.viewalllink, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a.viewalllink,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .promoted-content-container .flexItemText .field--name-field-url > a,
  .promoted-content-container .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .contact-nhlbi--landing .field--name-field-directions-link a,
  .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .isi-job-opportunities--landing .field--name-field-vacancies-link a,
  .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a,
  .field--name-field-promotional-card > .field__item .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .fixedDarkBluePane .field--name-field-traveling-and-security a,
  .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-community-card .field--name-field-url > a,
  .field--name-field-community-card .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText a.viewalllink :hover, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a.viewalllink :hover, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .promoted-content-container .flexItemText .field--name-field-url > a :hover, .promoted-content-container .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a :hover, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .promoted-content-container .flexItemText .field--name-field-url > a :hover, .promoted-content-container .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a :hover, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .contact-nhlbi--landing .field--name-field-directions-link a :hover, .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText a :hover, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .contact-nhlbi--landing .field--name-field-directions-link a :hover, .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a :hover, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .isi-job-opportunities--landing .field--name-field-vacancies-link a :hover, .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText a :hover, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .isi-job-opportunities--landing .field--name-field-vacancies-link a :hover, .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a :hover, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a :hover, .field--name-field-promotional-card > .field__item .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a :hover, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a :hover, .field--name-field-promotional-card > .field__item .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a :hover, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .fixedDarkBluePane .field--name-field-traveling-and-security a :hover, .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText a :hover, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .fixedDarkBluePane .field--name-field-traveling-and-security a :hover, .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a :hover, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .field--name-field-community-card .field--name-field-url > a :hover, .field--name-field-community-card .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a :hover, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-community-card .field--name-field-url > a :hover, .field--name-field-community-card .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a :hover,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a.viewalllink :hover,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .promoted-content-container .flexItemText .field--name-field-url > a :hover,
.promoted-content-container .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a :hover,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .contact-nhlbi--landing .field--name-field-directions-link a :hover,
.contact-nhlbi--landing .field--name-field-directions-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a :hover,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .isi-job-opportunities--landing .field--name-field-vacancies-link a :hover,
.isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a :hover,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a :hover,
.field--name-field-promotional-card > .field__item .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a :hover,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .fixedDarkBluePane .field--name-field-traveling-and-security a :hover,
.fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a :hover,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-community-card .field--name-field-url > a :hover,
.field--name-field-community-card .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 2180, ../sass/components/_landing_pages.scss */
  .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText a.viewalllink, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a.viewalllink, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a.viewalllink,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .promoted-content-container .flexItemText .field--name-field-url > a,
  .promoted-content-container .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .contact-nhlbi--landing .field--name-field-directions-link a,
  .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .isi-job-opportunities--landing .field--name-field-vacancies-link a,
  .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a,
  .field--name-field-promotional-card > .field__item .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .fixedDarkBluePane .field--name-field-traveling-and-security a,
  .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-community-card .field--name-field-url > a,
  .field--name-field-community-card .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2180, ../sass/components/_landing_pages.scss */
  .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText a.viewalllink, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a.viewalllink, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a.viewalllink,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .promoted-content-container .flexItemText .field--name-field-url > a,
  .promoted-content-container .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .contact-nhlbi--landing .field--name-field-directions-link a,
  .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .isi-job-opportunities--landing .field--name-field-vacancies-link a,
  .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a,
  .field--name-field-promotional-card > .field__item .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .fixedDarkBluePane .field--name-field-traveling-and-security a,
  .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-community-card .field--name-field-url > a,
  .field--name-field-community-card .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2180, ../sass/components/_landing_pages.scss */
  .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText a.viewalllink, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a.viewalllink, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a.viewalllink,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .promoted-content-container .flexItemText .field--name-field-url > a,
  .promoted-content-container .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .contact-nhlbi--landing .field--name-field-directions-link a,
  .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .isi-job-opportunities--landing .field--name-field-vacancies-link a,
  .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a,
  .field--name-field-promotional-card > .field__item .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .fixedDarkBluePane .field--name-field-traveling-and-security a,
  .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-community-card .field--name-field-url > a,
  .field--name-field-community-card .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2180, ../sass/components/_landing_pages.scss */
  .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText a.viewalllink, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a.viewalllink, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a.viewalllink,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .promoted-content-container .flexItemText .field--name-field-url > a,
  .promoted-content-container .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .contact-nhlbi--landing .field--name-field-directions-link a,
  .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .isi-job-opportunities--landing .field--name-field-vacancies-link a,
  .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a,
  .field--name-field-promotional-card > .field__item .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .fixedDarkBluePane .field--name-field-traveling-and-security a,
  .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-community-card .field--name-field-url > a,
  .field--name-field-community-card .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2180, ../sass/components/_landing_pages.scss */
  .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText a.viewalllink, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a.viewalllink, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a.viewalllink,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .promoted-content-container .flexItemText .field--name-field-url > a,
  .promoted-content-container .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .contact-nhlbi--landing .field--name-field-directions-link a,
  .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .isi-job-opportunities--landing .field--name-field-vacancies-link a,
  .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a,
  .field--name-field-promotional-card > .field__item .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .fixedDarkBluePane .field--name-field-traveling-and-security a,
  .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-community-card .field--name-field-url > a,
  .field--name-field-community-card .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText a.viewalllink:hover, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a.viewalllink:hover, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .promoted-content-container .flexItemText .field--name-field-url > a:hover, .promoted-content-container .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a:hover, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .promoted-content-container .flexItemText .field--name-field-url > a:hover, .promoted-content-container .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a:hover, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .contact-nhlbi--landing .field--name-field-directions-link a:hover, .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText a:hover, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .contact-nhlbi--landing .field--name-field-directions-link a:hover, .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a:hover, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .isi-job-opportunities--landing .field--name-field-vacancies-link a:hover, .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText a:hover, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .isi-job-opportunities--landing .field--name-field-vacancies-link a:hover, .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a:hover, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:hover, .field--name-field-promotional-card > .field__item .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:hover, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:hover, .field--name-field-promotional-card > .field__item .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:hover, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .fixedDarkBluePane .field--name-field-traveling-and-security a:hover, .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText a:hover, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .fixedDarkBluePane .field--name-field-traveling-and-security a:hover, .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a:hover, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .field--name-field-community-card .field--name-field-url > a:hover, .field--name-field-community-card .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a:hover, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-community-card .field--name-field-url > a:hover, .field--name-field-community-card .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a:hover,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a.viewalllink:hover,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .promoted-content-container .flexItemText .field--name-field-url > a:hover,
.promoted-content-container .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a:hover,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .contact-nhlbi--landing .field--name-field-directions-link a:hover,
.contact-nhlbi--landing .field--name-field-directions-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a:hover,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .isi-job-opportunities--landing .field--name-field-vacancies-link a:hover,
.isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a:hover,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:hover,
.field--name-field-promotional-card > .field__item .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:hover,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .fixedDarkBluePane .field--name-field-traveling-and-security a:hover,
.fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a:hover,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-community-card .field--name-field-url > a:hover,
.field--name-field-community-card .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a:hover {
  background-color: #f6c163;
  border-color: #f6c163;
  color: #222;
  text-decoration: none;
}
/* line 2379, ../sass/_mixins.scss */
.field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText a.viewalllink:focus, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a.viewalllink:focus, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .promoted-content-container .flexItemText .field--name-field-url > a:focus, .promoted-content-container .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a:focus, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .promoted-content-container .flexItemText .field--name-field-url > a:focus, .promoted-content-container .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a:focus, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .contact-nhlbi--landing .field--name-field-directions-link a:focus, .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText a:focus, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .contact-nhlbi--landing .field--name-field-directions-link a:focus, .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a:focus, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .isi-job-opportunities--landing .field--name-field-vacancies-link a:focus, .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText a:focus, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .isi-job-opportunities--landing .field--name-field-vacancies-link a:focus, .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a:focus, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:focus, .field--name-field-promotional-card > .field__item .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:focus, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:focus, .field--name-field-promotional-card > .field__item .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:focus, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .fixedDarkBluePane .field--name-field-traveling-and-security a:focus, .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText a:focus, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .fixedDarkBluePane .field--name-field-traveling-and-security a:focus, .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a:focus, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .field--name-field-community-card .field--name-field-url > a:focus, .field--name-field-community-card .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a:focus, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-community-card .field--name-field-url > a:focus, .field--name-field-community-card .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a:focus, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText a.viewalllink:active, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a.viewalllink:active, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .promoted-content-container .flexItemText .field--name-field-url > a:active, .promoted-content-container .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a:active, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .promoted-content-container .flexItemText .field--name-field-url > a:active, .promoted-content-container .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a:active, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .contact-nhlbi--landing .field--name-field-directions-link a:active, .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText a:active, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .contact-nhlbi--landing .field--name-field-directions-link a:active, .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a:active, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .isi-job-opportunities--landing .field--name-field-vacancies-link a:active, .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText a:active, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .isi-job-opportunities--landing .field--name-field-vacancies-link a:active, .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a:active, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:active, .field--name-field-promotional-card > .field__item .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:active, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:active, .field--name-field-promotional-card > .field__item .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:active, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .fixedDarkBluePane .field--name-field-traveling-and-security a:active, .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText a:active, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .fixedDarkBluePane .field--name-field-traveling-and-security a:active, .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a:active, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .field--name-field-community-card .field--name-field-url > a:active, .field--name-field-community-card .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a:active, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-community-card .field--name-field-url > a:active, .field--name-field-community-card .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a:active,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a.viewalllink:focus,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .promoted-content-container .flexItemText .field--name-field-url > a:focus,
.promoted-content-container .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a:focus,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .contact-nhlbi--landing .field--name-field-directions-link a:focus,
.contact-nhlbi--landing .field--name-field-directions-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a:focus,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .isi-job-opportunities--landing .field--name-field-vacancies-link a:focus,
.isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a:focus,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:focus,
.field--name-field-promotional-card > .field__item .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:focus,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .fixedDarkBluePane .field--name-field-traveling-and-security a:focus,
.fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a:focus,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-community-card .field--name-field-url > a:focus,
.field--name-field-community-card .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a:focus,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a.viewalllink:active,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .promoted-content-container .flexItemText .field--name-field-url > a:active,
.promoted-content-container .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a:active,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .contact-nhlbi--landing .field--name-field-directions-link a:active,
.contact-nhlbi--landing .field--name-field-directions-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a:active,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .isi-job-opportunities--landing .field--name-field-vacancies-link a:active,
.isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a:active,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:active,
.field--name-field-promotional-card > .field__item .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:active,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .fixedDarkBluePane .field--name-field-traveling-and-security a:active,
.fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText a:active,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-community-card .field--name-field-url > a:active,
.field--name-field-community-card .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .field--name-field-url > a:active {
  outline: #fff dotted 3px !important;
}
/* line 2184, ../sass/components/_landing_pages.scss */
.field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .herobannertitle a:focus, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .herobannertitle a:focus, .field--name-field-sv-promotional-cards > .field__item:nth-child(odd) .flexItemText .herobannertitle-grey a:focus, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .herobannertitle-grey a:focus,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .herobannertitle a:focus,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(odd) .flexItemText .herobannertitle-grey a:focus {
  outline: none !important;
}

/* line 2190, ../sass/components/_landing_pages.scss */
.field--name-field-sv-promotional-cards > .field__item:nth-child(even), .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even),
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) {
  background-color: #bf0d2e;
}
/* line 2193, ../sass/components/_landing_pages.scss */
.field--name-field-sv-promotional-cards > .field__item:nth-child(even) .flexItemImage, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .flexItemImage, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .flexItemImageHalf, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .flexItemImageHalf, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .flexItemImageTenth, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .flexItemImageTenth, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .flexItemImageFourth, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .flexItemImageFourth, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .flexItemImageThird, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .flexItemImageThird, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .flexItemImageThirdHalf, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .flexItemImageThirdHalf, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .hero-image, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .hero-image,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .flexItemImage,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .flexItemImageHalf,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .flexItemImageTenth,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .flexItemImageFourth,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .flexItemImageThird,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .flexItemImageThirdHalf,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .hero-image {
  -webkit-box-ordinal-group: 2;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2193, ../sass/components/_landing_pages.scss */
  .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .flexItemImage, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .flexItemImage, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .flexItemImageHalf, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .flexItemImageHalf, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .flexItemImageTenth, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .flexItemImageTenth, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .flexItemImageFourth, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .flexItemImageFourth, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .flexItemImageThird, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .flexItemImageThird, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .flexItemImageThirdHalf, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .flexItemImageThirdHalf, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .hero-image, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .hero-image,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .flexItemImage,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .flexItemImageHalf,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .flexItemImageTenth,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .flexItemImageFourth,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .flexItemImageThird,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .flexItemImageThirdHalf,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .hero-image {
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
}
/* line 2199, ../sass/components/_landing_pages.scss */
.field--name-field-sv-promotional-cards > .field__item:nth-child(even) .flexItemText, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .flexItemText,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .flexItemText {
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2199, ../sass/components/_landing_pages.scss */
  .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .flexItemText, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .flexItemText,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .flexItemText {
    -webkit-box-ordinal-group: 2;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
}
/* line 2205, ../sass/components/_landing_pages.scss */
.field--name-field-sv-promotional-cards > .field__item:nth-child(even) .flexItemText .herobannertitle a:focus, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .flexItemText .herobannertitle a:focus, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .flexItemText .herobannertitle-grey a:focus, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .flexItemText .herobannertitle-grey a:focus,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .flexItemText .herobannertitle a:focus,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .flexItemText .herobannertitle-grey a:focus {
  outline: none !important;
}
/* line 2210, ../sass/components/_landing_pages.scss */
.field--name-field-sv-promotional-cards > .field__item:nth-child(even) a.viewalllink, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a.viewalllink, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-url > a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-url > a, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-sv-promotional-cards > .field__item:nth-child(even) a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-sv-promotional-cards > .field__item:nth-child(even) a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-promotional-link > a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-promotional-link > a, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-sv-promotional-cards > .field__item:nth-child(even) a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-url > a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-url > a,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a.viewalllink,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .promoted-content-container .flexItemText .field--name-field-url > a,
.promoted-content-container .flexItemText .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-url > a,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .contact-nhlbi--landing .field--name-field-directions-link a,
.contact-nhlbi--landing .field--name-field-directions-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .isi-job-opportunities--landing .field--name-field-vacancies-link a,
.isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a,
.field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-promotional-link > a,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .fixedDarkBluePane .field--name-field-traveling-and-security a,
.fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-community-card .field--name-field-url > a,
.field--name-field-community-card .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-url > a {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #850920;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #fff;
  padding: 0.8em 3em;
  display: table !important;
  background-image: none;
}
@media all and (min-width: 1440px) {
  /* line 2210, ../sass/components/_landing_pages.scss */
  .field--name-field-sv-promotional-cards > .field__item:nth-child(even) a.viewalllink, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a.viewalllink, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-url > a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-url > a, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-sv-promotional-cards > .field__item:nth-child(even) a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-sv-promotional-cards > .field__item:nth-child(even) a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-promotional-link > a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-promotional-link > a, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-sv-promotional-cards > .field__item:nth-child(even) a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-url > a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-url > a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a.viewalllink,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .promoted-content-container .flexItemText .field--name-field-url > a,
  .promoted-content-container .flexItemText .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-url > a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .contact-nhlbi--landing .field--name-field-directions-link a,
  .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .isi-job-opportunities--landing .field--name-field-vacancies-link a,
  .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a,
  .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-promotional-link > a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .fixedDarkBluePane .field--name-field-traveling-and-security a,
  .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-community-card .field--name-field-url > a,
  .field--name-field-community-card .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2210, ../sass/components/_landing_pages.scss */
  .field--name-field-sv-promotional-cards > .field__item:nth-child(even) a.viewalllink, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a.viewalllink, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-url > a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-url > a, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-sv-promotional-cards > .field__item:nth-child(even) a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-sv-promotional-cards > .field__item:nth-child(even) a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-promotional-link > a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-promotional-link > a, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-sv-promotional-cards > .field__item:nth-child(even) a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-url > a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-url > a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a.viewalllink,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .promoted-content-container .flexItemText .field--name-field-url > a,
  .promoted-content-container .flexItemText .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-url > a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .contact-nhlbi--landing .field--name-field-directions-link a,
  .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .isi-job-opportunities--landing .field--name-field-vacancies-link a,
  .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a,
  .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-promotional-link > a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .fixedDarkBluePane .field--name-field-traveling-and-security a,
  .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-community-card .field--name-field-url > a,
  .field--name-field-community-card .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2210, ../sass/components/_landing_pages.scss */
  .field--name-field-sv-promotional-cards > .field__item:nth-child(even) a.viewalllink, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a.viewalllink, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-url > a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-url > a, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-sv-promotional-cards > .field__item:nth-child(even) a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-sv-promotional-cards > .field__item:nth-child(even) a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-promotional-link > a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-promotional-link > a, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-sv-promotional-cards > .field__item:nth-child(even) a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-url > a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-url > a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a.viewalllink,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .promoted-content-container .flexItemText .field--name-field-url > a,
  .promoted-content-container .flexItemText .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-url > a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .contact-nhlbi--landing .field--name-field-directions-link a,
  .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .isi-job-opportunities--landing .field--name-field-vacancies-link a,
  .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a,
  .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-promotional-link > a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .fixedDarkBluePane .field--name-field-traveling-and-security a,
  .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-community-card .field--name-field-url > a,
  .field--name-field-community-card .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2210, ../sass/components/_landing_pages.scss */
  .field--name-field-sv-promotional-cards > .field__item:nth-child(even) a.viewalllink, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a.viewalllink, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-url > a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-url > a, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-sv-promotional-cards > .field__item:nth-child(even) a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-sv-promotional-cards > .field__item:nth-child(even) a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-promotional-link > a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-promotional-link > a, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-sv-promotional-cards > .field__item:nth-child(even) a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-url > a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-url > a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a.viewalllink,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .promoted-content-container .flexItemText .field--name-field-url > a,
  .promoted-content-container .flexItemText .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-url > a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .contact-nhlbi--landing .field--name-field-directions-link a,
  .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .isi-job-opportunities--landing .field--name-field-vacancies-link a,
  .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a,
  .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-promotional-link > a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .fixedDarkBluePane .field--name-field-traveling-and-security a,
  .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-community-card .field--name-field-url > a,
  .field--name-field-community-card .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.field--name-field-sv-promotional-cards > .field__item:nth-child(even) a.viewalllink :hover, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a.viewalllink :hover, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .promoted-content-container .flexItemText .field--name-field-url > a :hover, .promoted-content-container .flexItemText .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-url > a :hover, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .promoted-content-container .flexItemText .field--name-field-url > a :hover, .promoted-content-container .flexItemText .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-url > a :hover, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .contact-nhlbi--landing .field--name-field-directions-link a :hover, .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-sv-promotional-cards > .field__item:nth-child(even) a :hover, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .contact-nhlbi--landing .field--name-field-directions-link a :hover, .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a :hover, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .isi-job-opportunities--landing .field--name-field-vacancies-link a :hover, .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-sv-promotional-cards > .field__item:nth-child(even) a :hover, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .isi-job-opportunities--landing .field--name-field-vacancies-link a :hover, .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a :hover, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a :hover, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-promotional-link > a :hover, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a :hover, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-promotional-link > a :hover, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .fixedDarkBluePane .field--name-field-traveling-and-security a :hover, .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-sv-promotional-cards > .field__item:nth-child(even) a :hover, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .fixedDarkBluePane .field--name-field-traveling-and-security a :hover, .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a :hover, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-community-card .field--name-field-url > a :hover, .field--name-field-community-card .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-url > a :hover, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-community-card .field--name-field-url > a :hover, .field--name-field-community-card .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-url > a :hover,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a.viewalllink :hover,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .promoted-content-container .flexItemText .field--name-field-url > a :hover,
.promoted-content-container .flexItemText .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-url > a :hover,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .contact-nhlbi--landing .field--name-field-directions-link a :hover,
.contact-nhlbi--landing .field--name-field-directions-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a :hover,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .isi-job-opportunities--landing .field--name-field-vacancies-link a :hover,
.isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a :hover,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a :hover,
.field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-promotional-link > a :hover,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .fixedDarkBluePane .field--name-field-traveling-and-security a :hover,
.fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a :hover,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-community-card .field--name-field-url > a :hover,
.field--name-field-community-card .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-url > a :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 2210, ../sass/components/_landing_pages.scss */
  .field--name-field-sv-promotional-cards > .field__item:nth-child(even) a.viewalllink, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a.viewalllink, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-url > a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-url > a, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-sv-promotional-cards > .field__item:nth-child(even) a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-sv-promotional-cards > .field__item:nth-child(even) a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-promotional-link > a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-promotional-link > a, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-sv-promotional-cards > .field__item:nth-child(even) a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-url > a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-url > a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a.viewalllink,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .promoted-content-container .flexItemText .field--name-field-url > a,
  .promoted-content-container .flexItemText .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-url > a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .contact-nhlbi--landing .field--name-field-directions-link a,
  .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .isi-job-opportunities--landing .field--name-field-vacancies-link a,
  .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a,
  .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-promotional-link > a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .fixedDarkBluePane .field--name-field-traveling-and-security a,
  .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-community-card .field--name-field-url > a,
  .field--name-field-community-card .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2210, ../sass/components/_landing_pages.scss */
  .field--name-field-sv-promotional-cards > .field__item:nth-child(even) a.viewalllink, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a.viewalllink, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-url > a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-url > a, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-sv-promotional-cards > .field__item:nth-child(even) a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-sv-promotional-cards > .field__item:nth-child(even) a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-promotional-link > a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-promotional-link > a, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-sv-promotional-cards > .field__item:nth-child(even) a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-url > a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-url > a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a.viewalllink,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .promoted-content-container .flexItemText .field--name-field-url > a,
  .promoted-content-container .flexItemText .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-url > a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .contact-nhlbi--landing .field--name-field-directions-link a,
  .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .isi-job-opportunities--landing .field--name-field-vacancies-link a,
  .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a,
  .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-promotional-link > a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .fixedDarkBluePane .field--name-field-traveling-and-security a,
  .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-community-card .field--name-field-url > a,
  .field--name-field-community-card .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2210, ../sass/components/_landing_pages.scss */
  .field--name-field-sv-promotional-cards > .field__item:nth-child(even) a.viewalllink, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a.viewalllink, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-url > a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-url > a, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-sv-promotional-cards > .field__item:nth-child(even) a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-sv-promotional-cards > .field__item:nth-child(even) a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-promotional-link > a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-promotional-link > a, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-sv-promotional-cards > .field__item:nth-child(even) a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-url > a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-url > a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a.viewalllink,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .promoted-content-container .flexItemText .field--name-field-url > a,
  .promoted-content-container .flexItemText .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-url > a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .contact-nhlbi--landing .field--name-field-directions-link a,
  .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .isi-job-opportunities--landing .field--name-field-vacancies-link a,
  .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a,
  .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-promotional-link > a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .fixedDarkBluePane .field--name-field-traveling-and-security a,
  .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-community-card .field--name-field-url > a,
  .field--name-field-community-card .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2210, ../sass/components/_landing_pages.scss */
  .field--name-field-sv-promotional-cards > .field__item:nth-child(even) a.viewalllink, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a.viewalllink, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-url > a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-url > a, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-sv-promotional-cards > .field__item:nth-child(even) a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-sv-promotional-cards > .field__item:nth-child(even) a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-promotional-link > a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-promotional-link > a, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-sv-promotional-cards > .field__item:nth-child(even) a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-url > a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-url > a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a.viewalllink,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .promoted-content-container .flexItemText .field--name-field-url > a,
  .promoted-content-container .flexItemText .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-url > a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .contact-nhlbi--landing .field--name-field-directions-link a,
  .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .isi-job-opportunities--landing .field--name-field-vacancies-link a,
  .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a,
  .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-promotional-link > a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .fixedDarkBluePane .field--name-field-traveling-and-security a,
  .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-community-card .field--name-field-url > a,
  .field--name-field-community-card .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2210, ../sass/components/_landing_pages.scss */
  .field--name-field-sv-promotional-cards > .field__item:nth-child(even) a.viewalllink, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a.viewalllink, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-url > a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-url > a, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-sv-promotional-cards > .field__item:nth-child(even) a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-sv-promotional-cards > .field__item:nth-child(even) a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-promotional-link > a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-promotional-link > a, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-sv-promotional-cards > .field__item:nth-child(even) a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-url > a, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-url > a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a.viewalllink,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .promoted-content-container .flexItemText .field--name-field-url > a,
  .promoted-content-container .flexItemText .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-url > a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .contact-nhlbi--landing .field--name-field-directions-link a,
  .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .isi-job-opportunities--landing .field--name-field-vacancies-link a,
  .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a,
  .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-promotional-link > a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .fixedDarkBluePane .field--name-field-traveling-and-security a,
  .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a,
  .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-community-card .field--name-field-url > a,
  .field--name-field-community-card .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-url > a {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.field--name-field-sv-promotional-cards > .field__item:nth-child(even) a.viewalllink:hover, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a.viewalllink:hover, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .promoted-content-container .flexItemText .field--name-field-url > a:hover, .promoted-content-container .flexItemText .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-url > a:hover, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .promoted-content-container .flexItemText .field--name-field-url > a:hover, .promoted-content-container .flexItemText .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-url > a:hover, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .contact-nhlbi--landing .field--name-field-directions-link a:hover, .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-sv-promotional-cards > .field__item:nth-child(even) a:hover, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .contact-nhlbi--landing .field--name-field-directions-link a:hover, .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a:hover, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .isi-job-opportunities--landing .field--name-field-vacancies-link a:hover, .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-sv-promotional-cards > .field__item:nth-child(even) a:hover, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .isi-job-opportunities--landing .field--name-field-vacancies-link a:hover, .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a:hover, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:hover, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-promotional-link > a:hover, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:hover, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-promotional-link > a:hover, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .fixedDarkBluePane .field--name-field-traveling-and-security a:hover, .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-sv-promotional-cards > .field__item:nth-child(even) a:hover, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .fixedDarkBluePane .field--name-field-traveling-and-security a:hover, .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a:hover, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-community-card .field--name-field-url > a:hover, .field--name-field-community-card .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-url > a:hover, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-community-card .field--name-field-url > a:hover, .field--name-field-community-card .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-url > a:hover,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a.viewalllink:hover,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .promoted-content-container .flexItemText .field--name-field-url > a:hover,
.promoted-content-container .flexItemText .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-url > a:hover,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .contact-nhlbi--landing .field--name-field-directions-link a:hover,
.contact-nhlbi--landing .field--name-field-directions-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a:hover,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .isi-job-opportunities--landing .field--name-field-vacancies-link a:hover,
.isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a:hover,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:hover,
.field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-promotional-link > a:hover,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .fixedDarkBluePane .field--name-field-traveling-and-security a:hover,
.fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a:hover,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-community-card .field--name-field-url > a:hover,
.field--name-field-community-card .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-url > a:hover {
  background-color: #f6c163;
  border-color: #f6c163;
  color: #222;
  text-decoration: none;
}
/* line 2379, ../sass/_mixins.scss */
.field--name-field-sv-promotional-cards > .field__item:nth-child(even) a.viewalllink:focus, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a.viewalllink:focus, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .promoted-content-container .flexItemText .field--name-field-url > a:focus, .promoted-content-container .flexItemText .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-url > a:focus, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .promoted-content-container .flexItemText .field--name-field-url > a:focus, .promoted-content-container .flexItemText .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-url > a:focus, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .contact-nhlbi--landing .field--name-field-directions-link a:focus, .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-sv-promotional-cards > .field__item:nth-child(even) a:focus, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .contact-nhlbi--landing .field--name-field-directions-link a:focus, .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a:focus, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .isi-job-opportunities--landing .field--name-field-vacancies-link a:focus, .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-sv-promotional-cards > .field__item:nth-child(even) a:focus, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .isi-job-opportunities--landing .field--name-field-vacancies-link a:focus, .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a:focus, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:focus, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-promotional-link > a:focus, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:focus, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-promotional-link > a:focus, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .fixedDarkBluePane .field--name-field-traveling-and-security a:focus, .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-sv-promotional-cards > .field__item:nth-child(even) a:focus, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .fixedDarkBluePane .field--name-field-traveling-and-security a:focus, .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a:focus, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-community-card .field--name-field-url > a:focus, .field--name-field-community-card .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-url > a:focus, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-community-card .field--name-field-url > a:focus, .field--name-field-community-card .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-url > a:focus, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) a.viewalllink:active, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a.viewalllink:active, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .promoted-content-container .flexItemText .field--name-field-url > a:active, .promoted-content-container .flexItemText .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-url > a:active, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .promoted-content-container .flexItemText .field--name-field-url > a:active, .promoted-content-container .flexItemText .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-url > a:active, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .contact-nhlbi--landing .field--name-field-directions-link a:active, .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-sv-promotional-cards > .field__item:nth-child(even) a:active, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .contact-nhlbi--landing .field--name-field-directions-link a:active, .contact-nhlbi--landing .field--name-field-directions-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a:active, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .isi-job-opportunities--landing .field--name-field-vacancies-link a:active, .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-sv-promotional-cards > .field__item:nth-child(even) a:active, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .isi-job-opportunities--landing .field--name-field-vacancies-link a:active, .isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a:active, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:active, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-promotional-link > a:active, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:active, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-promotional-link > a:active, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .fixedDarkBluePane .field--name-field-traveling-and-security a:active, .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-sv-promotional-cards > .field__item:nth-child(even) a:active, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .fixedDarkBluePane .field--name-field-traveling-and-security a:active, .fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a:active, .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-community-card .field--name-field-url > a:active, .field--name-field-community-card .field--name-field-sv-promotional-cards > .field__item:nth-child(even) .field--name-field-url > a:active, .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-community-card .field--name-field-url > a:active, .field--name-field-community-card .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-url > a:active,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a.viewalllink:focus,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .promoted-content-container .flexItemText .field--name-field-url > a:focus,
.promoted-content-container .flexItemText .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-url > a:focus,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .contact-nhlbi--landing .field--name-field-directions-link a:focus,
.contact-nhlbi--landing .field--name-field-directions-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a:focus,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .isi-job-opportunities--landing .field--name-field-vacancies-link a:focus,
.isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a:focus,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:focus,
.field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-promotional-link > a:focus,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .fixedDarkBluePane .field--name-field-traveling-and-security a:focus,
.fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a:focus,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-community-card .field--name-field-url > a:focus,
.field--name-field-community-card .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-url > a:focus,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a.viewalllink:active,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .promoted-content-container .flexItemText .field--name-field-url > a:active,
.promoted-content-container .flexItemText .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-url > a:active,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .contact-nhlbi--landing .field--name-field-directions-link a:active,
.contact-nhlbi--landing .field--name-field-directions-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a:active,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .isi-job-opportunities--landing .field--name-field-vacancies-link a:active,
.isi-job-opportunities--landing .field--name-field-vacancies-link .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a:active,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:active,
.field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-promotional-link > a:active,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .fixedDarkBluePane .field--name-field-traveling-and-security a:active,
.fixedDarkBluePane .field--name-field-traveling-and-security .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) a:active,
.field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-community-card .field--name-field-url > a:active,
.field--name-field-community-card .field--name-field-about-nhlbi-promotional-ca > .field__item:nth-child(even) .field--name-field-url > a:active {
  outline: #fff dotted 3px !important;
}

/* line 2214, ../sass/components/_landing_pages.scss */
.strategic-vision-titleblock {
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
}
/* line 2217, ../sass/components/_landing_pages.scss */
.strategic-vision-titleblock .calloutdescription, .strategic-vision-titleblock .calloutdescriptionwhite, .strategic-vision-titleblock .calloutflattextwhite, .strategic-vision-titleblock .calloutflattext, .strategic-vision-titleblock .node--type-webform .field--name-field-status-message, .node--type-webform .strategic-vision-titleblock .field--name-field-status-message, .strategic-vision-titleblock .webform-submission-form .field--name-field-status-message, .webform-submission-form .strategic-vision-titleblock .field--name-field-status-message, .strategic-vision-titleblock .node--type-research-topic .rtDescription .readMoreContainer > .field--name-field-standard-description, .node--type-research-topic .rtDescription .strategic-vision-titleblock .readMoreContainer > .field--name-field-standard-description,
.strategic-vision-titleblock .node--type-research-topic .rtDescription .field--name-field-additional-text p,
.node--type-research-topic .rtDescription .field--name-field-additional-text .strategic-vision-titleblock p {
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-grow: 1;
  -o-flex-grow: 1;
  flex-grow: 1;
}
@media all and (min-width: 768px) {
  /* line 2217, ../sass/components/_landing_pages.scss */
  .strategic-vision-titleblock .calloutdescription, .strategic-vision-titleblock .calloutdescriptionwhite, .strategic-vision-titleblock .calloutflattextwhite, .strategic-vision-titleblock .calloutflattext, .strategic-vision-titleblock .node--type-webform .field--name-field-status-message, .node--type-webform .strategic-vision-titleblock .field--name-field-status-message, .strategic-vision-titleblock .webform-submission-form .field--name-field-status-message, .webform-submission-form .strategic-vision-titleblock .field--name-field-status-message, .strategic-vision-titleblock .node--type-research-topic .rtDescription .readMoreContainer > .field--name-field-standard-description, .node--type-research-topic .rtDescription .strategic-vision-titleblock .readMoreContainer > .field--name-field-standard-description,
  .strategic-vision-titleblock .node--type-research-topic .rtDescription .field--name-field-additional-text p,
  .node--type-research-topic .rtDescription .field--name-field-additional-text .strategic-vision-titleblock p {
    -webkit-flex-basis: 0%;
    -moz-flex-basis: 0%;
    -ms-flex-basis: 0%;
    -o-flex-basis: 0%;
    flex-basis: 0%;
  }
}
/* line 2227, ../sass/components/_landing_pages.scss */
.strategic-vision-titleblock .strategic-vision-title-links {
  text-align: center;
}
@media all and (min-width: 768px) {
  /* line 2227, ../sass/components/_landing_pages.scss */
  .strategic-vision-titleblock .strategic-vision-title-links {
    margin-left: 1.5em;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2227, ../sass/components/_landing_pages.scss */
  .strategic-vision-titleblock .strategic-vision-title-links {
    margin-top: 1.5em;
  }
}

/* line 2237, ../sass/components/_landing_pages.scss */
.ppg-titleblock-wrapper {
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
}
/* line 2240, ../sass/components/_landing_pages.scss */
.ppg-titleblock-wrapper .ppg-titleblock {
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
}
@media all and (min-width: 768px) {
  /* line 2240, ../sass/components/_landing_pages.scss */
  .ppg-titleblock-wrapper .ppg-titleblock {
    width: 50%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2240, ../sass/components/_landing_pages.scss */
  .ppg-titleblock-wrapper .ppg-titleblock {
    width: auto;
  }
}
/* line 2249, ../sass/components/_landing_pages.scss */
.ppg-titleblock-wrapper .ppg-email-alerts {
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
}
@media all and (min-width: 768px) {
  /* line 2249, ../sass/components/_landing_pages.scss */
  .ppg-titleblock-wrapper .ppg-email-alerts {
    width: 45%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2249, ../sass/components/_landing_pages.scss */
  .ppg-titleblock-wrapper .ppg-email-alerts {
    width: auto;
    margin-top: 20px;
  }
}

/* line 2260, ../sass/components/_landing_pages.scss */
.ppg-funding-process-link {
  padding: 1em 4em;
  background-color: #f1f7fb;
}
@media all and (min-width: 1100px) {
  /* line 2260, ../sass/components/_landing_pages.scss */
  .ppg-funding-process-link {
    line-height: 28.5px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2260, ../sass/components/_landing_pages.scss */
  .ppg-funding-process-link {
    line-height: 23.5px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2260, ../sass/components/_landing_pages.scss */
  .ppg-funding-process-link {
    line-height: 19.5px;
  }
}

/* line 2279, ../sass/components/_landing_pages.scss */
.ppg-guidelines-card-wrapper .ppg-guidelines-card {
  background-color: #fff;
  padding: 1em 2em;
  height: 100%;
}
/* line 2284, ../sass/components/_landing_pages.scss */
.ppg-guidelines-card-wrapper .ppg-guidelines-card h3, .ppg-guidelines-card-wrapper .ppg-guidelines-card .field--name-field-social-phrase-group-title, .ppg-guidelines-card-wrapper .ppg-guidelines-card .field--name-field-image-gallery-title {
  margin: 0;
  margin-top: 0.8em;
}
/* line 2290, ../sass/components/_landing_pages.scss */
.ppg-guidelines-card-wrapper .ppg-guidelines-card a:focus, .ppg-guidelines-card-wrapper .ppg-guidelines-card a:active {
  outline: #bf0d2e 3px dotted;
}
@media all and (min-width: 768px) {
  /* line 2295, ../sass/components/_landing_pages.scss */
  .ppg-guidelines-card-wrapper .ppg-guideline-left, .ppg-guidelines-card-wrapper .ppg-guideline-right {
    max-width: 49%;
    min-width: 49%;
    flex-basis: 49%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2295, ../sass/components/_landing_pages.scss */
  .ppg-guidelines-card-wrapper .ppg-guideline-left, .ppg-guidelines-card-wrapper .ppg-guideline-right {
    width: auto;
  }
}
/* line 2305, ../sass/components/_landing_pages.scss */
.ppg-guidelines-card-wrapper .ppg-guideline-left {
  margin-right: 1em;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2305, ../sass/components/_landing_pages.scss */
  .ppg-guidelines-card-wrapper .ppg-guideline-left {
    margin-right: 0;
    margin-bottom: 1em;
  }
}

/* line 2316, ../sass/components/_landing_pages.scss */
.field--name-field-funding-guidelines-links > .field__item,
.field--name-field-research-funding-links > .field__item {
  margin-bottom: 1em;
}

/* line 2320, ../sass/components/_landing_pages.scss */
.field--name-field-human-subject-cards {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}

/* line 2324, ../sass/components/_landing_pages.scss */
.field--name-field-human-subject-cards > .field__item {
  margin-right: 1em;
  margin-bottom: 1em;
}
@media all and (min-width: 768px) {
  /* line 2324, ../sass/components/_landing_pages.scss */
  .field--name-field-human-subject-cards > .field__item {
    max-width: 48%;
    min-width: 48%;
    flex-basis: 48%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2324, ../sass/components/_landing_pages.scss */
  .field--name-field-human-subject-cards > .field__item {
    width: auto;
    margin-right: 0;
  }
}

@media all and (min-width: 768px) {
  /* line 2337, ../sass/components/_landing_pages.scss */
  .field--name-field-human-subject-cards > .field__item:nth-child(2n) {
    margin-right: 0;
  }
}

/* line 2342, ../sass/components/_landing_pages.scss */
.human-subject-card {
  background-color: #fff;
  height: 100%;
}

/* line 2347, ../sass/components/_landing_pages.scss */
.human-subject-contents {
  padding: 1em 2em;
  font-size: 1.25rem;
}
@media all and (min-width: 1440px) {
  /* line 2347, ../sass/components/_landing_pages.scss */
  .human-subject-contents {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2347, ../sass/components/_landing_pages.scss */
  .human-subject-contents {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2347, ../sass/components/_landing_pages.scss */
  .human-subject-contents {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2347, ../sass/components/_landing_pages.scss */
  .human-subject-contents {
    font-size: 1rem;
  }
}

/* line 2353, ../sass/components/_landing_pages.scss */
ul.human-subject-card-list {
  list-style: none;
  padding: 0;
}
/* line 2356, ../sass/components/_landing_pages.scss */
ul.human-subject-card-list li {
  margin-bottom: 1em;
}
/* line 2360, ../sass/components/_landing_pages.scss */
ul.human-subject-card-list li a:focus, ul.human-subject-card-list li a:active {
  outline: #bf0d2e 3px dotted;
}

/* line 2367, ../sass/components/_landing_pages.scss */
.all-health-topics--landing .blueRoundButton, .all-health-topics--landing .redRoundButton, .all-health-topics--landing .standard-more-link, .all-health-topics--landing .news-and-events--landing .more-link, .news-and-events--landing .all-health-topics--landing .more-link, .all-health-topics--landing .view-more-link {
  clear: both;
  margin: 1em auto;
  display: table;
  margin-top: 1.5em;
  margin-bottom: 1em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: -ms-fit-content;
  width: -o-fit-content;
  width: fit-content;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 2367, ../sass/components/_landing_pages.scss */
  .all-health-topics--landing .blueRoundButton, .all-health-topics--landing .redRoundButton, .all-health-topics--landing .standard-more-link, .all-health-topics--landing .news-and-events--landing .more-link, .news-and-events--landing .all-health-topics--landing .more-link, .all-health-topics--landing .view-more-link {
    margin-top: 1em;
  }
}

/* line 2378, ../sass/components/_landing_pages.scss */
.field--name-field-featured-health-topics {
  text-align: center;
}
/* line 2380, ../sass/components/_landing_pages.scss */
.field--name-field-featured-health-topics .field__item {
  display: inline-block;
  margin: 0.5em 0.3em;
  padding: 0;
  margin: 0;
  background-color: transparent;
}
/* line 2387, ../sass/components/_landing_pages.scss */
.field--name-field-featured-health-topics .field__item a {
  color: #fff;
  background-color: #575b5e;
  padding: 0.8em 3em;
  border-radius: 8px;
  margin: 0.5em 0.3em;
  display: inline-block;
}
/* line 2396, ../sass/components/_landing_pages.scss */
.field--name-field-featured-health-topics .field__item:hover {
  background-color: transparent;
}
/* line 2398, ../sass/components/_landing_pages.scss */
.field--name-field-featured-health-topics .field__item:hover a {
  background-color: #232526;
}
/* line 2402, ../sass/components/_landing_pages.scss */
.field--name-field-featured-health-topics .view-content {
  text-align: center;
  margin: 1em;
}
/* line 2405, ../sass/components/_landing_pages.scss */
.field--name-field-featured-health-topics .view-content .views-row {
  margin-right: 0.5em;
  margin-bottom: 0;
}
/* line 2409, ../sass/components/_landing_pages.scss */
.field--name-field-featured-health-topics .view-content .views-row .views-field-title {
  margin: 0.5em auto;
}

/* line 2416, ../sass/components/_landing_pages.scss */
.about-nhlbi-featured-item-card-featured-wrapper {
  width: 100%;
  background-color: #fff;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  -o-flex: 1;
  flex: 1;
}
/* line 2422, ../sass/components/_landing_pages.scss */
.about-nhlbi-featured-item-card-featured-wrapper .flexbox-container-wrapper {
  height: auto;
}

/* line 2426, ../sass/components/_landing_pages.scss */
.about-nhlbi-featured-item-card-featured-wrapper > a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  -o-flex: 1;
  flex: 1;
}
/* line 2430, ../sass/components/_landing_pages.scss */
.about-nhlbi-featured-item-card-featured-wrapper > a:active, .about-nhlbi-featured-item-card-featured-wrapper > a:focus {
  outline: none;
}

/* line 2434, ../sass/components/_landing_pages.scss */
.field--name-field-section-card, .field--name-field-highlight-card {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}

/* line 2438, ../sass/components/_landing_pages.scss */
.field--name-field-section-card > .field__item, .field--name-field-highlight-card > .field__item {
  margin-right: 1em;
  margin-bottom: 1em;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  -o-flex: 1;
  flex: 1;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  -o-align-items: stretch;
  align-items: stretch;
}
@media all and (min-width: 1100px) {
  /* line 2438, ../sass/components/_landing_pages.scss */
  .field--name-field-section-card > .field__item, .field--name-field-highlight-card > .field__item {
    max-width: 32.25%;
    min-width: 32.25%;
    flex-basis: 32.25%;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2438, ../sass/components/_landing_pages.scss */
  .field--name-field-section-card > .field__item, .field--name-field-highlight-card > .field__item {
    max-width: 48%;
    min-width: 48%;
    flex-basis: 48%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2438, ../sass/components/_landing_pages.scss */
  .field--name-field-section-card > .field__item, .field--name-field-highlight-card > .field__item {
    max-width: none;
    min-width: auto;
    flex-basis: auto;
    width: auto;
    margin-right: 0;
  }
}

/* line 2465, ../sass/components/_landing_pages.scss */
.field--name-field-section-card > .field__item > a, .field--name-field-highlight-card > .field__item > a {
  background-color: #fff;
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  -o-flex: 1;
  flex: 1;
}
/* line 2471, ../sass/components/_landing_pages.scss */
.field--name-field-section-card a:active h3, .field--name-field-highlight-card a:active h3, .field--name-field-section-card a:active .field--name-field-social-phrase-group-title, .field--name-field-highlight-card a:active .field--name-field-social-phrase-group-title, .field--name-field-section-card a:active .field--name-field-image-gallery-title, .field--name-field-highlight-card a:active .field--name-field-image-gallery-title, .field--name-field-section-card a:focus h3, .field--name-field-highlight-card a:focus h3, .field--name-field-section-card a:focus .field--name-field-social-phrase-group-title, .field--name-field-highlight-card a:focus .field--name-field-social-phrase-group-title, .field--name-field-section-card a:focus .field--name-field-image-gallery-title, .field--name-field-highlight-card a:focus .field--name-field-image-gallery-title {
  outline: #bf0d2e 3px dotted;
}

@media all and (min-width: 1100px) {
  /* line 2477, ../sass/components/_landing_pages.scss */
  .field--name-field-section-card > .field__item:nth-child(3n), .field--name-field-highlight-card > .field__item:nth-child(3n) {
    margin-right: 0;
  }
}

@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2482, ../sass/components/_landing_pages.scss */
  .field--name-field-section-card > .field__item:nth-child(2n), .field--name-field-highlight-card > .field__item:nth-child(2n) {
    margin-right: 0;
  }
}

/* line 2487, ../sass/components/_landing_pages.scss */
.flexbox-container-wrapper > .section-card-container, .flexbox-container-wrapper > .home-page-promoted-card {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  background-color: #fff;
}
@media all and (min-width: 768px) {
  /* line 2487, ../sass/components/_landing_pages.scss */
  .flexbox-container-wrapper > .section-card-container, .flexbox-container-wrapper > .home-page-promoted-card {
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    -o-flex: 1;
    flex: 1;
  }
}
/* line 2496, ../sass/components/_landing_pages.scss */
.flexbox-container-wrapper > .section-card-container .flexItemText, .flexbox-container-wrapper > .home-page-promoted-card .flexItemText {
  padding: 1.5em;
}

/* line 2502, ../sass/components/_landing_pages.scss */
.health-topic-teaser-container .flexItemTextHalf {
  padding: 1.5em 2em;
}
/* line 2503, ../sass/components/_landing_pages.scss */
.health-topic-teaser-container .flexItemTextHalf .field--name-field-related-health-topics > .field__item {
  display: inline-block;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2509, ../sass/components/_landing_pages.scss */
  .health-topic-teaser-container .flexItemTextHalf .bodytext, .health-topic-teaser-container .flexItemTextHalf .darkGrayBodyText, .health-topic-teaser-container .flexItemTextHalf .foa-expiration-date {
    display: none;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2502, ../sass/components/_landing_pages.scss */
  .health-topic-teaser-container .flexItemTextHalf {
    margin-bottom: 0;
  }
}

/* line 2518, ../sass/components/_landing_pages.scss */
.about-nhlbi-our-mission-wrapper {
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2521, ../sass/components/_landing_pages.scss */
  .about-nhlbi-our-mission-wrapper .about-nhlbi-our-mission-left,
  .about-nhlbi-our-mission-wrapper .about-nhlbi-our-mission-right {
    width: auto;
    max-width: auto;
  }
}
@media all and (min-width: 1100px) {
  /* line 2529, ../sass/components/_landing_pages.scss */
  .about-nhlbi-our-mission-wrapper .about-nhlbi-our-mission-left {
    width: 60%;
    max-width: 60%;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2529, ../sass/components/_landing_pages.scss */
  .about-nhlbi-our-mission-wrapper .about-nhlbi-our-mission-left {
    width: 50%;
    max-width: 50%;
  }
}
/* line 2539, ../sass/components/_landing_pages.scss */
.about-nhlbi-our-mission-wrapper .about-nhlbi-our-mission-right {
  margin-left: 1em;
}
@media all and (min-width: 1100px) {
  /* line 2539, ../sass/components/_landing_pages.scss */
  .about-nhlbi-our-mission-wrapper .about-nhlbi-our-mission-right {
    width: 40%;
    max-width: 40%;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2539, ../sass/components/_landing_pages.scss */
  .about-nhlbi-our-mission-wrapper .about-nhlbi-our-mission-right {
    width: 50%;
    max-width: 50%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2539, ../sass/components/_landing_pages.scss */
  .about-nhlbi-our-mission-wrapper .about-nhlbi-our-mission-right {
    margin-left: 0;
  }
}
/* line 2553, ../sass/components/_landing_pages.scss */
.about-nhlbi-our-mission-wrapper .about.node--type-landing-page h1,
.about-nhlbi-our-mission-wrapper .about-strategic-vision.node--type-landing-page--landing h1 {
  margin-top: 0;
}
/* line 2558, ../sass/components/_landing_pages.scss */
.about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard {
  background-color: #f4f4f4;
  padding: 2em;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2558, ../sass/components/_landing_pages.scss */
  .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard {
    padding: 1.5em;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2558, ../sass/components/_landing_pages.scss */
  .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard {
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
    padding: 1.5em;
    margin-top: 1em;
  }
}
/* line 2570, ../sass/components/_landing_pages.scss */
.about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText {
  text-align: left;
}
/* line 2572, ../sass/components/_landing_pages.scss */
.about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText .membername {
  padding-bottom: 0;
}
/* line 2575, ../sass/components/_landing_pages.scss */
.about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText h3, .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText .field--name-field-social-phrase-group-title, .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText .field--name-field-image-gallery-title, .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText h4 {
  margin: 0;
}
/* line 2578, ../sass/components/_landing_pages.scss */
.about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText .directordate {
  margin-bottom: 1em;
}

/* line 2587, ../sass/components/_landing_pages.scss */
.field--name-field-division-card, .field--name-field-tool-icon-card {
  width: 100%;
}
@media all and (min-width: 768px) {
  /* line 2587, ../sass/components/_landing_pages.scss */
  .field--name-field-division-card, .field--name-field-tool-icon-card {
    -webkit-align-items: baseline;
    -moz-align-items: baseline;
    -ms-align-items: baseline;
    -o-align-items: baseline;
    align-items: baseline;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2587, ../sass/components/_landing_pages.scss */
  .field--name-field-division-card, .field--name-field-tool-icon-card {
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
  }
}
/* line 2596, ../sass/components/_landing_pages.scss */
.field--name-field-division-card h3, .field--name-field-tool-icon-card h3, .field--name-field-division-card .field--name-field-social-phrase-group-title, .field--name-field-tool-icon-card .field--name-field-social-phrase-group-title, .field--name-field-division-card .field--name-field-image-gallery-title, .field--name-field-tool-icon-card .field--name-field-image-gallery-title {
  margin-top: 1em;
  text-align: center;
}
/* line 2599, ../sass/components/_landing_pages.scss */
.field--name-field-division-card h3 a, .field--name-field-tool-icon-card h3 a, .field--name-field-division-card .field--name-field-social-phrase-group-title a, .field--name-field-tool-icon-card .field--name-field-social-phrase-group-title a, .field--name-field-division-card .field--name-field-image-gallery-title a, .field--name-field-tool-icon-card .field--name-field-image-gallery-title a, .field--name-field-division-card h3 a:link, .field--name-field-tool-icon-card h3 a:link, .field--name-field-division-card .field--name-field-social-phrase-group-title a:link, .field--name-field-tool-icon-card .field--name-field-social-phrase-group-title a:link, .field--name-field-division-card .field--name-field-image-gallery-title a:link, .field--name-field-tool-icon-card .field--name-field-image-gallery-title a:link {
  color: #222;
}
/* line 2602, ../sass/components/_landing_pages.scss */
.field--name-field-division-card h3 a:visited, .field--name-field-tool-icon-card h3 a:visited, .field--name-field-division-card .field--name-field-social-phrase-group-title a:visited, .field--name-field-tool-icon-card .field--name-field-social-phrase-group-title a:visited, .field--name-field-division-card .field--name-field-image-gallery-title a:visited, .field--name-field-tool-icon-card .field--name-field-image-gallery-title a:visited {
  color: #6f57B5;
}

/* line 2607, ../sass/components/_landing_pages.scss */
.field--name-field-division-card > .field__item, .field--name-field-tool-icon-card > .field__item {
  padding-right: 1em;
  padding-left: 1em;
}
@media all and (min-width: 1100px) {
  /* line 2607, ../sass/components/_landing_pages.scss */
  .field--name-field-division-card > .field__item, .field--name-field-tool-icon-card > .field__item {
    max-width: 28%;
    min-width: 28%;
    flex-basis: 28%;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 2607, ../sass/components/_landing_pages.scss */
  .field--name-field-division-card > .field__item, .field--name-field-tool-icon-card > .field__item {
    padding-bottom: 1em;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2607, ../sass/components/_landing_pages.scss */
  .field--name-field-division-card > .field__item, .field--name-field-tool-icon-card > .field__item {
    max-width: 27%;
    min-width: 27%;
    flex-basis: 27%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2607, ../sass/components/_landing_pages.scss */
  .field--name-field-division-card > .field__item, .field--name-field-tool-icon-card > .field__item {
    max-width: auto;
    width: auto;
  }
}
/* line 2632, ../sass/components/_landing_pages.scss */
.field--name-field-division-card > .field__item .division-icon-card a:focus h3, .field--name-field-tool-icon-card > .field__item .division-icon-card a:focus h3, .field--name-field-division-card > .field__item .division-icon-card a:focus .field--name-field-social-phrase-group-title, .field--name-field-tool-icon-card > .field__item .division-icon-card a:focus .field--name-field-social-phrase-group-title, .field--name-field-division-card > .field__item .division-icon-card a:focus .field--name-field-image-gallery-title, .field--name-field-tool-icon-card > .field__item .division-icon-card a:focus .field--name-field-image-gallery-title, .field--name-field-division-card > .field__item .division-icon-card a:active h3, .field--name-field-tool-icon-card > .field__item .division-icon-card a:active h3, .field--name-field-division-card > .field__item .division-icon-card a:active .field--name-field-social-phrase-group-title, .field--name-field-tool-icon-card > .field__item .division-icon-card a:active .field--name-field-social-phrase-group-title, .field--name-field-division-card > .field__item .division-icon-card a:active .field--name-field-image-gallery-title, .field--name-field-tool-icon-card > .field__item .division-icon-card a:active .field--name-field-image-gallery-title {
  outline: #bf0d2e 3px dotted;
}

/* line 2639, ../sass/components/_landing_pages.scss */
.field--name-field-division-card > .field__item:nth-child(4n), .field--name-field-tool-icon-card > .field__item:nth-child(4n) {
  padding-right: 0;
}

/* line 2647, ../sass/components/_landing_pages.scss */
.about-nhlbi-how-to-reach-us-wrapper .mapLocation h3, .about-nhlbi-how-to-reach-us-wrapper .mapLocation .field--name-field-social-phrase-group-title, .about-nhlbi-how-to-reach-us-wrapper .mapLocation .field--name-field-image-gallery-title {
  color: #222;
}
/* line 2653, ../sass/components/_landing_pages.scss */
.about-nhlbi-how-to-reach-us-wrapper .locationMap.contact-location-map-container .mapLocation {
  height: auto;
}
/* line 2660, ../sass/components/_landing_pages.scss */
.about-nhlbi-how-to-reach-us-wrapper .field--name-field-directions-link a {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  background-color: #1a568c;
  border: 1px solid #1a568c;
  clear: both;
  margin: 1em auto;
  padding: 0.8em 3em;
  font-size: 1rem;
  margin: 1em 0;
}
@media all and (min-width: 1440px) {
  /* line 2660, ../sass/components/_landing_pages.scss */
  .about-nhlbi-how-to-reach-us-wrapper .field--name-field-directions-link a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2660, ../sass/components/_landing_pages.scss */
  .about-nhlbi-how-to-reach-us-wrapper .field--name-field-directions-link a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2660, ../sass/components/_landing_pages.scss */
  .about-nhlbi-how-to-reach-us-wrapper .field--name-field-directions-link a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2660, ../sass/components/_landing_pages.scss */
  .about-nhlbi-how-to-reach-us-wrapper .field--name-field-directions-link a {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.about-nhlbi-how-to-reach-us-wrapper .field--name-field-directions-link a :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 2660, ../sass/components/_landing_pages.scss */
  .about-nhlbi-how-to-reach-us-wrapper .field--name-field-directions-link a {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2660, ../sass/components/_landing_pages.scss */
  .about-nhlbi-how-to-reach-us-wrapper .field--name-field-directions-link a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2660, ../sass/components/_landing_pages.scss */
  .about-nhlbi-how-to-reach-us-wrapper .field--name-field-directions-link a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2660, ../sass/components/_landing_pages.scss */
  .about-nhlbi-how-to-reach-us-wrapper .field--name-field-directions-link a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2660, ../sass/components/_landing_pages.scss */
  .about-nhlbi-how-to-reach-us-wrapper .field--name-field-directions-link a {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.about-nhlbi-how-to-reach-us-wrapper .field--name-field-directions-link a:hover {
  background-color: #102d66;
  border-color: #102d66;
  color: #fff;
  text-decoration: none;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2660, ../sass/components/_landing_pages.scss */
  .about-nhlbi-how-to-reach-us-wrapper .field--name-field-directions-link a {
    margin: 1em auto;
  }
}

/* line 2670, ../sass/components/_landing_pages.scss */
.contact-get-directions-button {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 2670, ../sass/components/_landing_pages.scss */
  .contact-get-directions-button {
    margin-top: 0.75em;
    margin-bottom: 0.75em;
  }
}
/* line 1535, ../sass/_mixins.scss */
.contact-get-directions-button a {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #850920;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #fff;
  padding: 0.8em 3em;
}
@media all and (min-width: 1440px) {
  /* line 1535, ../sass/_mixins.scss */
  .contact-get-directions-button a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1535, ../sass/_mixins.scss */
  .contact-get-directions-button a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .contact-get-directions-button a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1535, ../sass/_mixins.scss */
  .contact-get-directions-button a {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.contact-get-directions-button a :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 1535, ../sass/_mixins.scss */
  .contact-get-directions-button a {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1535, ../sass/_mixins.scss */
  .contact-get-directions-button a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .contact-get-directions-button a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1535, ../sass/_mixins.scss */
  .contact-get-directions-button a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .contact-get-directions-button a {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.contact-get-directions-button a:hover {
  background-color: #f6c163;
  border-color: #f6c163;
  color: #222;
  text-decoration: none;
}
/* line 1539, ../sass/_mixins.scss */
.contact-get-directions-button a:focus {
  outline: #fff dotted 3px !important;
}

@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 2676, ../sass/components/_landing_pages.scss */
  .paragraph--type--promoted-content .flexItemText.flexItemTextHalf a.viewalllink, .paragraph--type--promoted-content .promoted-content-container .flexItemText.flexItemTextHalf .field--name-field-url > a, .promoted-content-container .paragraph--type--promoted-content .flexItemText.flexItemTextHalf .field--name-field-url > a, .paragraph--type--promoted-content .flexItemText.flexItemTextHalf .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .paragraph--type--promoted-content .flexItemText.flexItemTextHalf a, .paragraph--type--promoted-content .flexItemText.flexItemTextHalf .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .paragraph--type--promoted-content .flexItemText.flexItemTextHalf a, .paragraph--type--promoted-content .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .paragraph--type--promoted-content .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .paragraph--type--promoted-content .flexItemText.flexItemTextHalf .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .paragraph--type--promoted-content .flexItemText.flexItemTextHalf a, .paragraph--type--promoted-content .flexItemText.flexItemTextHalf .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .paragraph--type--promoted-content .flexItemText.flexItemTextHalf .field--name-field-url > a {
    display: block;
  }
}

@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 2685, ../sass/components/_landing_pages.scss */
  .node--type-landing-page.node--view-mode-short-teaser .flexItemText.flexItemTextHalf a.viewalllink, .node--type-landing-page.node--view-mode-short-teaser .promoted-content-container .flexItemText.flexItemTextHalf .field--name-field-url > a, .promoted-content-container .node--type-landing-page.node--view-mode-short-teaser .flexItemText.flexItemTextHalf .field--name-field-url > a, .node--type-landing-page.node--view-mode-short-teaser .flexItemText.flexItemTextHalf .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .node--type-landing-page.node--view-mode-short-teaser .flexItemText.flexItemTextHalf a, .node--type-landing-page.node--view-mode-short-teaser .flexItemText.flexItemTextHalf .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .node--type-landing-page.node--view-mode-short-teaser .flexItemText.flexItemTextHalf a, .node--type-landing-page.node--view-mode-short-teaser .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .node--type-landing-page.node--view-mode-short-teaser .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .node--type-landing-page.node--view-mode-short-teaser .flexItemText.flexItemTextHalf .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .node--type-landing-page.node--view-mode-short-teaser .flexItemText.flexItemTextHalf a, .node--type-landing-page.node--view-mode-short-teaser .flexItemText.flexItemTextHalf .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .node--type-landing-page.node--view-mode-short-teaser .flexItemText.flexItemTextHalf .field--name-field-url > a {
    display: block;
  }
}

/* line 2694, ../sass/components/_landing_pages.scss */
.all-nhlbi-publications--landing h1 {
  margin-top: 0;
}
/* line 2698, ../sass/components/_landing_pages.scss */
.all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row {
  padding: 0.875rem 1.5rem 1.5rem 1.5rem;
}
/* line 2701, ../sass/components/_landing_pages.scss */
.all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .flexcontainer, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .related-ht-ser-container, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-sfa-card, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-speaker,
.all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-executives, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .standard-card-field, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-advisory-committees, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .contact-nhlbi-titleblock, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-contact-cards, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-employment-opportunity-car, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .all-grants-foa-container,
.all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-program-officers,
.all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content,
.all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-individual-contact .field--name-field-contact-methods, .node--type-individual-contact .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-contact-methods,
.all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-division.node--view-mode-full .field--name-field-contact-methods,
.node--type-division.node--view-mode-full .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-contact-methods,
.all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods,
.node--type-division.node--view-mode-subscribe .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-contact-methods,
.all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-branch.node--view-mode-full .field--name-field-contact-methods,
.node--type-branch.node--view-mode-full .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-contact-methods,
.all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods,
.node--type-branch.node--view-mode-subscribe .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-contact-methods,
.all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-general.node--view-mode-full .field--name-field-contact-methods,
.node--type-general.node--view-mode-full .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-contact-methods,
.all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods,
.node--type-general.node--view-mode-subscribe .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-contact-methods,
.all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods,
.node--type-health-education-initiative.node--view-mode-full .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-contact-methods,
.all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods,
.node--type-health-education-initiative.node--view-mode-subscribe .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-contact-methods, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-committee .field--name-field-card-text, .node--type-committee .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-card-text, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .news-and-events--landing .landing-social, .news-and-events--landing .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .landing-social, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-sfa-cards, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .locationMap.contact-location-map-container, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .locationMap, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .grants-and-training-card-wrapper, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .about-nhlbi-division-card-wrapper, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .hei-tools-icon-card-wrapper, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-grants-and-training-card, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-division-card, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-tool-icon-card, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-promotional-card, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-sv-promotional-cards, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-about-nhlbi-promotional-ca, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .strategic-vision-titleblock, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .ppg-titleblock-wrapper, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .ppg-guidelines-card-wrapper, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-human-subject-cards, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-section-card, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-highlight-card, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .health-topic-teaser-container, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .about-nhlbi-our-mission-wrapper, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard, .about-nhlbi-our-mission-wrapper .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-leadership > .director-bioCard, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ, .nhlbi-publications-and-resources--landing .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-health-consumer-nhlbi-publ,
.all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi,
.nhlbi-publications-and-resources--landing .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-health-professionals-nhlbi, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .standard-teaser,
.all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .standard-teaser, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .publicationsBlock.view-nhlbi-publications > .view-content,
.all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-related-publications, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .healthEducationBlock .standard-teaser, .healthEducationBlock .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .standard-teaser, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .systematicEvidenceReviewsBlock .view-content, .systematicEvidenceReviewsBlock .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .view-content,
.all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .clinicalPracticeGuidelinesBlock .view-content,
.clinicalPracticeGuidelinesBlock .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .view-content,
.all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .publicationsAndFactSheetsBlock .view-content,
.publicationsAndFactSheetsBlock .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .view-content, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .rtFlexContainer, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-research-topic .field--name-field-science-supplemental-page, .node--type-research-topic .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-science-supplemental-page, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-research-topic .researchTopicPublications, .node--type-research-topic .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .researchTopicPublications, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard, .node--type-research-topic .field--name-field-content > .field__item .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row article.listTeaserCard, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser, .node--type-research-topic .field--name-field-content > .field__item .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row article.standard-teaser,
.all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard,
.node--type-research-topic .field--name-field-content > .field__item .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row article.newsEventsCard, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .esi-feature-card, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .featured-science-instance-teaser-container, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .sfa-teaser-container, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .training-opportunity-card .field--name-field-associated-people, .training-opportunity-card .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-associated-people, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-featured-training-opportun, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-career-stages, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-workforce-development-card, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-update.node--view-mode-executive-teaser, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .news-and-events-titleblock, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .contact-box > .field--name-field-contact-methods, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .leadership-container, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership, .leadership-container .leadership-deputy-director-container .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-additional-leadership, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .branch-leadership-container, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership, .branch-leadership-container .leadership-deputy-director-container .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-additional-leadership, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-general .field--name-field-related-publications, .node--type-general .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-related-publications, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-general .field--name-field-general-publications-rlt, .node--type-general .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-general-publications-rlt, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser, .node--type-general .field--name-field-general-publications-rlt > .field__item .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .standard-teaser, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-general .field--name-field-related-publications > .field__item .standard-teaser, .node--type-general .field--name-field-related-publications > .field__item .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .standard-teaser, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .objective-text-container, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .objective-list-container, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-goal-card, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .strategic-vision-landing-goals-wrapper, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-principal-investigator .striped-container-wrapper, .node--type-principal-investigator .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .striped-container-wrapper, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-principal-investigator .striped-container, .node--type-principal-investigator .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .striped-container, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row article,
.all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row article, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .standard-teaser.node--view-mode-short-teaser, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-awards, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .registerSocialContainer, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .eventdatesLocationType, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .news-article-container, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-feature-article.node--view-mode-press-release-teaser,
.all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-press-release.node--view-mode-press-release-teaser,
.all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-events.node--view-mode-press-release-teaser,
.all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-feature-article.node--view-mode-hp-press-release-teaser,
.all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-press-release.node--view-mode-hp-press-release-teaser,
.all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-events.node--view-mode-hp-press-release-teaser,
.all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-news-mention.node--view-mode-hp-press-release-teaser, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .news-header-container, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .contacts-container .field--name-field-contacts, .contacts-container .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-contacts, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .publicationsBox .field--name-field-related-publications, .publicationsBox .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-related-publications, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-primary-featured-item, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-additional-featured-items, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .homepage-health-topics-container, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .homepage-mission-areas-container, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .homepage-location-container, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-alumni, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container, .node--type-nhlbi-publication.node--view-mode-full .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .nhlbi-publication-details-container,
.all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container,
.node--type-nhlbi-publication.node--view-mode-subscribe .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .nhlbi-publication-details-container, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications, .node--type-nhlbi-publication.node--view-mode-full .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-related-nhlbi-publications,
.all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications,
.node--type-nhlbi-publication.node--view-mode-subscribe .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-related-nhlbi-publications, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .standard-teaser,
.all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .standard-teaser {
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-shrink: 0;
  -o-flex-shrink: 0;
  flex-shrink: 0;
  overflow: visible;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2701, ../sass/components/_landing_pages.scss */
  .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .flexcontainer, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .related-ht-ser-container, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-sfa-card, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-speaker,
  .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-executives, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .standard-card-field, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-advisory-committees, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .contact-nhlbi-titleblock, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-contact-cards, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-employment-opportunity-car, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .all-grants-foa-container,
  .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-program-officers,
  .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content,
  .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-individual-contact .field--name-field-contact-methods, .node--type-individual-contact .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-contact-methods,
  .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-division.node--view-mode-full .field--name-field-contact-methods,
  .node--type-division.node--view-mode-full .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-contact-methods,
  .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods,
  .node--type-division.node--view-mode-subscribe .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-contact-methods,
  .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-branch.node--view-mode-full .field--name-field-contact-methods,
  .node--type-branch.node--view-mode-full .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-contact-methods,
  .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods,
  .node--type-branch.node--view-mode-subscribe .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-contact-methods,
  .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-general.node--view-mode-full .field--name-field-contact-methods,
  .node--type-general.node--view-mode-full .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-contact-methods,
  .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods,
  .node--type-general.node--view-mode-subscribe .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-contact-methods,
  .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods,
  .node--type-health-education-initiative.node--view-mode-full .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-contact-methods,
  .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods,
  .node--type-health-education-initiative.node--view-mode-subscribe .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-contact-methods, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-committee .field--name-field-card-text, .node--type-committee .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-card-text, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .news-and-events--landing .landing-social, .news-and-events--landing .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .landing-social, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-sfa-cards, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .locationMap.contact-location-map-container, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .locationMap, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .grants-and-training-card-wrapper, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .about-nhlbi-division-card-wrapper, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .hei-tools-icon-card-wrapper, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-grants-and-training-card, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-division-card, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-tool-icon-card, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-promotional-card, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-sv-promotional-cards, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-about-nhlbi-promotional-ca, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .strategic-vision-titleblock, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .ppg-titleblock-wrapper, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .ppg-guidelines-card-wrapper, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-human-subject-cards, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-section-card, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-highlight-card, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .health-topic-teaser-container, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .about-nhlbi-our-mission-wrapper, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard, .about-nhlbi-our-mission-wrapper .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-leadership > .director-bioCard, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ, .nhlbi-publications-and-resources--landing .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-health-consumer-nhlbi-publ,
  .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi,
  .nhlbi-publications-and-resources--landing .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-health-professionals-nhlbi, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .standard-teaser,
  .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .standard-teaser, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .publicationsBlock.view-nhlbi-publications > .view-content,
  .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-related-publications, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .healthEducationBlock .standard-teaser, .healthEducationBlock .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .standard-teaser, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .systematicEvidenceReviewsBlock .view-content, .systematicEvidenceReviewsBlock .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .view-content,
  .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .clinicalPracticeGuidelinesBlock .view-content,
  .clinicalPracticeGuidelinesBlock .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .view-content,
  .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .publicationsAndFactSheetsBlock .view-content,
  .publicationsAndFactSheetsBlock .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .view-content, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .rtFlexContainer, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-research-topic .field--name-field-science-supplemental-page, .node--type-research-topic .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-science-supplemental-page, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-research-topic .researchTopicPublications, .node--type-research-topic .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .researchTopicPublications, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard, .node--type-research-topic .field--name-field-content > .field__item .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row article.listTeaserCard, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser, .node--type-research-topic .field--name-field-content > .field__item .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row article.standard-teaser,
  .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard,
  .node--type-research-topic .field--name-field-content > .field__item .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row article.newsEventsCard, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .esi-feature-card, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .featured-science-instance-teaser-container, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .sfa-teaser-container, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .training-opportunity-card .field--name-field-associated-people, .training-opportunity-card .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-associated-people, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-featured-training-opportun, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-career-stages, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-workforce-development-card, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-update.node--view-mode-executive-teaser, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .news-and-events-titleblock, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .contact-box > .field--name-field-contact-methods, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .leadership-container, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership, .leadership-container .leadership-deputy-director-container .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-additional-leadership, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .branch-leadership-container, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership, .branch-leadership-container .leadership-deputy-director-container .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-additional-leadership, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-general .field--name-field-related-publications, .node--type-general .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-related-publications, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-general .field--name-field-general-publications-rlt, .node--type-general .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-general-publications-rlt, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser, .node--type-general .field--name-field-general-publications-rlt > .field__item .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .standard-teaser, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-general .field--name-field-related-publications > .field__item .standard-teaser, .node--type-general .field--name-field-related-publications > .field__item .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .standard-teaser, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .objective-text-container, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .objective-list-container, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-goal-card, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .strategic-vision-landing-goals-wrapper, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-principal-investigator .striped-container-wrapper, .node--type-principal-investigator .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .striped-container-wrapper, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-principal-investigator .striped-container, .node--type-principal-investigator .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .striped-container, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row article,
  .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row article, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .standard-teaser.node--view-mode-short-teaser, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-awards, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .registerSocialContainer, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .eventdatesLocationType, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .news-article-container, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-feature-article.node--view-mode-press-release-teaser,
  .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-press-release.node--view-mode-press-release-teaser,
  .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-events.node--view-mode-press-release-teaser,
  .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-feature-article.node--view-mode-hp-press-release-teaser,
  .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-press-release.node--view-mode-hp-press-release-teaser,
  .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-events.node--view-mode-hp-press-release-teaser,
  .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-news-mention.node--view-mode-hp-press-release-teaser, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .news-header-container, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .contacts-container .field--name-field-contacts, .contacts-container .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-contacts, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .publicationsBox .field--name-field-related-publications, .publicationsBox .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-related-publications, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-primary-featured-item, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-additional-featured-items, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .homepage-health-topics-container, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .homepage-mission-areas-container, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .homepage-location-container, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-alumni, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container, .node--type-nhlbi-publication.node--view-mode-full .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .nhlbi-publication-details-container,
  .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container,
  .node--type-nhlbi-publication.node--view-mode-subscribe .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .nhlbi-publication-details-container, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications, .node--type-nhlbi-publication.node--view-mode-full .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-related-nhlbi-publications,
  .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications,
  .node--type-nhlbi-publication.node--view-mode-subscribe .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-related-nhlbi-publications, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .standard-teaser,
  .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .standard-teaser {
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
  }
}
/* line 2708, ../sass/components/_landing_pages.scss */
.all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .flexItemImageTenth {
  overflow: visible;
}
/* line 2711, ../sass/components/_landing_pages.scss */
.all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row h3.publicationTitle, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row h3.primary-blue-publication-title, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .primary-blue-publication-title.field--name-field-social-phrase-group-title, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .primary-blue-publication-title.field--name-field-image-gallery-title, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .publicationTitle.field--name-field-social-phrase-group-title, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .publicationTitle.field--name-field-image-gallery-title, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row h3.publicationTitle > a, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row h3.primary-blue-publication-title > a, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .primary-blue-publication-title.field--name-field-social-phrase-group-title > a, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .primary-blue-publication-title.field--name-field-image-gallery-title > a, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .smaller-titled-cards .publicationTitle.field--name-field-social-phrase-group-title > a, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .smaller-titled-cards h3.field--name-field-social-phrase-group-title.primary-blue-publication-title > a, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .smaller-titled-cards .publicationTitle.field--name-field-image-gallery-title > a, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .smaller-titled-cards h3.field--name-field-image-gallery-title.primary-blue-publication-title > a, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .publicationTitle.field--name-field-social-phrase-group-title > a, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .publicationTitle.field--name-field-image-gallery-title > a, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row h3.publicationTitle > a:link, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row h3.primary-blue-publication-title > a:link, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .primary-blue-publication-title.field--name-field-social-phrase-group-title > a:link, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .primary-blue-publication-title.field--name-field-image-gallery-title > a:link, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .smaller-titled-cards .publicationTitle.field--name-field-social-phrase-group-title > a:link, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .smaller-titled-cards h3.field--name-field-social-phrase-group-title.primary-blue-publication-title > a:link, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .smaller-titled-cards .publicationTitle.field--name-field-image-gallery-title > a:link, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .smaller-titled-cards h3.field--name-field-image-gallery-title.primary-blue-publication-title > a:link, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .publicationTitle.field--name-field-social-phrase-group-title > a:link, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .publicationTitle.field--name-field-image-gallery-title > a:link {
  color: #0051a8;
}
/* line 2714, ../sass/components/_landing_pages.scss */
.all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row h3.publicationTitle > a:visited, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row h3.primary-blue-publication-title > a:visited, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .primary-blue-publication-title.field--name-field-social-phrase-group-title > a:visited, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .primary-blue-publication-title.field--name-field-image-gallery-title > a:visited, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .smaller-titled-cards .publicationTitle.field--name-field-social-phrase-group-title > a:visited, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .smaller-titled-cards h3.field--name-field-social-phrase-group-title.primary-blue-publication-title > a:visited, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .smaller-titled-cards .publicationTitle.field--name-field-image-gallery-title > a:visited, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .smaller-titled-cards h3.field--name-field-image-gallery-title.primary-blue-publication-title > a:visited, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .publicationTitle.field--name-field-social-phrase-group-title > a:visited, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .publicationTitle.field--name-field-image-gallery-title > a:visited {
  color: #6f57B5;
}
/* line 2717, ../sass/components/_landing_pages.scss */
.all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .flexItemText {
  padding-top: 0;
}
/* line 2722, ../sass/components/_landing_pages.scss */
.all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-hero-image a:focus img, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .field--name-field-hero-image a:active img {
  outline: #bf0d2e dotted 3px;
}

/* line 2734, ../sass/components/_landing_pages.scss */
.nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImage img, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageHalf img, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageTenth img, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageFourth img, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThird img, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThirdHalf img, .nhlbi-publications-and-resources--landing .publications-and-resources-header .hero-image img {
  max-width: 90%;
  width: 90%;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2734, ../sass/components/_landing_pages.scss */
  .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImage img, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageHalf img, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageTenth img, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageFourth img, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThird img, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThirdHalf img, .nhlbi-publications-and-resources--landing .publications-and-resources-header .hero-image img {
    width: 90%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2733, ../sass/components/_landing_pages.scss */
  .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImage, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageHalf, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageTenth, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageFourth, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThird, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThirdHalf, .nhlbi-publications-and-resources--landing .publications-and-resources-header .hero-image {
    margin-bottom: 1em;
  }
}
/* line 2747, ../sass/components/_landing_pages.scss */
.nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemText {
  padding-top: 0;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2747, ../sass/components/_landing_pages.scss */
  .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemText {
    padding-left: 0;
  }
}
/* line 2754, ../sass/components/_landing_pages.scss */
.nhlbi-publications-and-resources--landing h3.publicationTitle, .nhlbi-publications-and-resources--landing h3.primary-blue-publication-title, .nhlbi-publications-and-resources--landing .primary-blue-publication-title.field--name-field-social-phrase-group-title, .nhlbi-publications-and-resources--landing .primary-blue-publication-title.field--name-field-image-gallery-title, .nhlbi-publications-and-resources--landing .publicationTitle.field--name-field-social-phrase-group-title, .nhlbi-publications-and-resources--landing .publicationTitle.field--name-field-image-gallery-title, .nhlbi-publications-and-resources--landing h3.publicationTitle > a, .nhlbi-publications-and-resources--landing h3.primary-blue-publication-title > a, .nhlbi-publications-and-resources--landing .primary-blue-publication-title.field--name-field-social-phrase-group-title > a, .nhlbi-publications-and-resources--landing .primary-blue-publication-title.field--name-field-image-gallery-title > a, .nhlbi-publications-and-resources--landing .smaller-titled-cards .publicationTitle.field--name-field-social-phrase-group-title > a, .nhlbi-publications-and-resources--landing .smaller-titled-cards h3.field--name-field-social-phrase-group-title.primary-blue-publication-title > a, .nhlbi-publications-and-resources--landing .smaller-titled-cards .publicationTitle.field--name-field-image-gallery-title > a, .nhlbi-publications-and-resources--landing .smaller-titled-cards h3.field--name-field-image-gallery-title.primary-blue-publication-title > a, .nhlbi-publications-and-resources--landing .publicationTitle.field--name-field-social-phrase-group-title > a, .nhlbi-publications-and-resources--landing .publicationTitle.field--name-field-image-gallery-title > a, .nhlbi-publications-and-resources--landing h3.publicationTitle > a:link, .nhlbi-publications-and-resources--landing h3.primary-blue-publication-title > a:link, .nhlbi-publications-and-resources--landing .primary-blue-publication-title.field--name-field-social-phrase-group-title > a:link, .nhlbi-publications-and-resources--landing .primary-blue-publication-title.field--name-field-image-gallery-title > a:link, .nhlbi-publications-and-resources--landing .smaller-titled-cards .publicationTitle.field--name-field-social-phrase-group-title > a:link, .nhlbi-publications-and-resources--landing .smaller-titled-cards h3.field--name-field-social-phrase-group-title.primary-blue-publication-title > a:link, .nhlbi-publications-and-resources--landing .smaller-titled-cards .publicationTitle.field--name-field-image-gallery-title > a:link, .nhlbi-publications-and-resources--landing .smaller-titled-cards h3.field--name-field-image-gallery-title.primary-blue-publication-title > a:link, .nhlbi-publications-and-resources--landing .publicationTitle.field--name-field-social-phrase-group-title > a:link, .nhlbi-publications-and-resources--landing .publicationTitle.field--name-field-image-gallery-title > a:link {
  color: #0051a8;
}
/* line 2758, ../sass/components/_landing_pages.scss */
.nhlbi-publications-and-resources--landing a.no-hover-color:visited h3.publicationTitle, .nhlbi-publications-and-resources--landing a.no-hover-color:visited h3.primary-blue-publication-title, .nhlbi-publications-and-resources--landing a.no-hover-color:visited .primary-blue-publication-title.field--name-field-social-phrase-group-title, .nhlbi-publications-and-resources--landing a.no-hover-color:visited .primary-blue-publication-title.field--name-field-image-gallery-title, .nhlbi-publications-and-resources--landing a.no-hover-color:visited .publicationTitle.field--name-field-social-phrase-group-title, .nhlbi-publications-and-resources--landing a.no-hover-color:visited .publicationTitle.field--name-field-image-gallery-title {
  color: #6f57B5;
}
/* line 2768, ../sass/components/_landing_pages.scss */
.nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 1em;
  margin-top: 1em;
}
/* line 2776, ../sass/components/_landing_pages.scss */
.nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ a:focus h3, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ a:focus .field--name-field-social-phrase-group-title, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ a:focus .field--name-field-image-gallery-title, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ a:active h3, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ a:active .field--name-field-social-phrase-group-title, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ a:active .field--name-field-image-gallery-title,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi a:focus h3,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi a:focus .field--name-field-social-phrase-group-title,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi a:focus .field--name-field-image-gallery-title,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi a:active h3,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi a:active .field--name-field-social-phrase-group-title,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi a:active .field--name-field-image-gallery-title {
  outline: #bf0d2e dotted 3px !important;
}
/* line 2781, ../sass/components/_landing_pages.scss */
.nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item {
  background-color: #fff;
}
/* line 2784, ../sass/components/_landing_pages.scss */
.nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item {
  margin-right: 1em;
  margin-bottom: 1em;
  padding: 1.5em;
  border: 1px #d7d7d7 solid;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-shrink: 0;
  -o-flex-shrink: 0;
  flex-shrink: 0;
}
@media all and (min-width: 1100px) {
  /* line 2784, ../sass/components/_landing_pages.scss */
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item {
    max-width: 18.5%;
    flex-basis: 18.5%;
    min-width: 18.5%;
    width: 18.5%;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2784, ../sass/components/_landing_pages.scss */
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item {
    max-width: 40%;
    flex-basis: 40%;
    min-width: 40%;
    width: 40%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2784, ../sass/components/_landing_pages.scss */
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item {
    max-width: none;
    flex-basis: auto;
  }
}
/* line 2809, ../sass/components/_landing_pages.scss */
.nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .nhlbi-publication-short-teaser-wrapper > a,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .nhlbi-publication-short-teaser-wrapper > a {
  display: inline-flex;
}
/* line 2811, ../sass/components/_landing_pages.scss */
.nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .nhlbi-publication-short-teaser-wrapper > a:focus, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .nhlbi-publication-short-teaser-wrapper > aactive,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .nhlbi-publication-short-teaser-wrapper > a:focus,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .nhlbi-publication-short-teaser-wrapper > aactive {
  outline: none;
}
/* line 2814, ../sass/components/_landing_pages.scss */
.nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .nhlbi-publication-short-teaser-wrapper > a article,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .nhlbi-publication-short-teaser-wrapper > a article {
  overflow: visible !important;
}
@media all and (min-width: 1100px) {
  /* line 2819, ../sass/components/_landing_pages.scss */
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 2819, ../sass/components/_landing_pages.scss */
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser {
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
  }
}
/* line 2827, ../sass/components/_landing_pages.scss */
.nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImage, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageHalf, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageTenth, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageFourth, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageThird, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageThirdHalf, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .hero-image,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImage,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageHalf,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageTenth,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageFourth,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageThird,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageThirdHalf,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .hero-image {
  min-width: auto;
}
@media all and (min-width: 1100px) {
  /* line 2827, ../sass/components/_landing_pages.scss */
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImage, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageHalf, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageTenth, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageFourth, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageThird, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageThirdHalf, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .hero-image,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImage,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageHalf,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageTenth,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageFourth,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageThird,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageThirdHalf,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .hero-image {
    max-width: 66%;
    min-width: 66%;
    width: 66%;
    margin-right: auto;
    margin-left: auto;
    flex-grow: 0;
    flex-shrink: 0;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2827, ../sass/components/_landing_pages.scss */
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImage, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageHalf, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageTenth, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageFourth, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageThird, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageThirdHalf, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .hero-image,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImage,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageHalf,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageTenth,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageFourth,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageThird,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageThirdHalf,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .hero-image {
    max-width: 33%;
    min-width: 33%;
    width: 33%;
    flex-grow: 0;
    flex-shrink: 0;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2827, ../sass/components/_landing_pages.scss */
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImage, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageHalf, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageTenth, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageFourth, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageThird, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageThirdHalf, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .hero-image,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImage,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageHalf,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageTenth,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageFourth,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageThird,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageThirdHalf,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .hero-image {
    max-width: 20%;
    min-width: 20%;
    width: 20%;
    flex-grow: 0;
    flex-shrink: 0;
  }
}
@media all and (min-width: 1100px) {
  /* line 2856, ../sass/components/_landing_pages.scss */
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemText,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemText {
    padding: 1em 0;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 2856, ../sass/components/_landing_pages.scss */
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemText,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemText {
    padding: 0 0 0 1em;
  }
}
@media all and (min-width: 1100px) {
  /* line 2866, ../sass/components/_landing_pages.scss */
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item:nth-child(4),
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item:nth-child(4) {
    margin-right: 0;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2872, ../sass/components/_landing_pages.scss */
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item:nth-child(2),
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item:nth-child(2) {
    margin-right: 0;
  }
}

/* line 2881, ../sass/components/_landing_pages.scss */
.centered-button a {
  margin-left: auto;
  margin-right: auto;
}

/* line 2887, ../sass/components/_landing_pages.scss */
.button-no-margin {
  margin-top: 0;
  margin-bottom: 0;
}

/* line 2892, ../sass/components/_landing_pages.scss */
article.paragraph--type--contact-card {
  overflow: visible;
}

/* line 2896, ../sass/components/_landing_pages.scss */
.node--type-nhlbi-publication.node--view-mode-short-teaser {
  overflow: visible;
}

/* line 2900, ../sass/components/_landing_pages.scss */
article.tool-icon-title-link-card {
  overflow: visible;
}

/* line 2904, ../sass/components/_landing_pages.scss */
article.node--view-mode-featured-teaser {
  overflow: visible;
}
/* line 2906, ../sass/components/_landing_pages.scss */
article.node--view-mode-featured-teaser .transparentBackground {
  overflow: visible;
}
/* line 2908, ../sass/components/_landing_pages.scss */
article.node--view-mode-featured-teaser .transparentBackground .flexcontainer, article.node--view-mode-featured-teaser .transparentBackground .related-ht-ser-container, article.node--view-mode-featured-teaser .transparentBackground .field--name-field-sfa-card, article.node--view-mode-featured-teaser .transparentBackground .field--name-field-speaker,
article.node--view-mode-featured-teaser .transparentBackground .field--name-field-executives, article.node--view-mode-featured-teaser .transparentBackground .standard-card-field, article.node--view-mode-featured-teaser .transparentBackground .field--name-field-advisory-committees, article.node--view-mode-featured-teaser .transparentBackground .contact-nhlbi-titleblock, article.node--view-mode-featured-teaser .transparentBackground .field--name-field-contact-cards, article.node--view-mode-featured-teaser .transparentBackground .field--name-field-employment-opportunity-car, article.node--view-mode-featured-teaser .transparentBackground .all-grants-foa-container,
article.node--view-mode-featured-teaser .transparentBackground .field--name-field-program-officers,
article.node--view-mode-featured-teaser .transparentBackground .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content,
article.node--view-mode-featured-teaser .transparentBackground .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content, article.node--view-mode-featured-teaser .transparentBackground .node--type-individual-contact .field--name-field-contact-methods, .node--type-individual-contact article.node--view-mode-featured-teaser .transparentBackground .field--name-field-contact-methods,
article.node--view-mode-featured-teaser .transparentBackground .node--type-division.node--view-mode-full .field--name-field-contact-methods,
.node--type-division.node--view-mode-full article.node--view-mode-featured-teaser .transparentBackground .field--name-field-contact-methods,
article.node--view-mode-featured-teaser .transparentBackground .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods,
.node--type-division.node--view-mode-subscribe article.node--view-mode-featured-teaser .transparentBackground .field--name-field-contact-methods,
article.node--view-mode-featured-teaser .transparentBackground .node--type-branch.node--view-mode-full .field--name-field-contact-methods,
.node--type-branch.node--view-mode-full article.node--view-mode-featured-teaser .transparentBackground .field--name-field-contact-methods,
article.node--view-mode-featured-teaser .transparentBackground .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods,
.node--type-branch.node--view-mode-subscribe article.node--view-mode-featured-teaser .transparentBackground .field--name-field-contact-methods,
article.node--view-mode-featured-teaser .transparentBackground .node--type-general.node--view-mode-full .field--name-field-contact-methods,
.node--type-general.node--view-mode-full article.node--view-mode-featured-teaser .transparentBackground .field--name-field-contact-methods,
article.node--view-mode-featured-teaser .transparentBackground .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods,
.node--type-general.node--view-mode-subscribe article.node--view-mode-featured-teaser .transparentBackground .field--name-field-contact-methods,
article.node--view-mode-featured-teaser .transparentBackground .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods,
.node--type-health-education-initiative.node--view-mode-full article.node--view-mode-featured-teaser .transparentBackground .field--name-field-contact-methods,
article.node--view-mode-featured-teaser .transparentBackground .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods,
.node--type-health-education-initiative.node--view-mode-subscribe article.node--view-mode-featured-teaser .transparentBackground .field--name-field-contact-methods, article.node--view-mode-featured-teaser .transparentBackground .node--type-committee .field--name-field-card-text, .node--type-committee article.node--view-mode-featured-teaser .transparentBackground .field--name-field-card-text, article.node--view-mode-featured-teaser .transparentBackground .news-and-events--landing .landing-social, .news-and-events--landing article.node--view-mode-featured-teaser .transparentBackground .landing-social, article.node--view-mode-featured-teaser .transparentBackground .field--name-field-sfa-cards, article.node--view-mode-featured-teaser .transparentBackground .locationMap.contact-location-map-container, article.node--view-mode-featured-teaser .transparentBackground .locationMap, article.node--view-mode-featured-teaser .transparentBackground .grants-and-training-card-wrapper, article.node--view-mode-featured-teaser .transparentBackground .about-nhlbi-division-card-wrapper, article.node--view-mode-featured-teaser .transparentBackground .hei-tools-icon-card-wrapper, article.node--view-mode-featured-teaser .transparentBackground .field--name-field-grants-and-training-card, article.node--view-mode-featured-teaser .transparentBackground .field--name-field-division-card, article.node--view-mode-featured-teaser .transparentBackground .field--name-field-tool-icon-card, article.node--view-mode-featured-teaser .transparentBackground .field--name-field-promotional-card, article.node--view-mode-featured-teaser .transparentBackground .field--name-field-sv-promotional-cards, article.node--view-mode-featured-teaser .transparentBackground .field--name-field-about-nhlbi-promotional-ca, article.node--view-mode-featured-teaser .transparentBackground .strategic-vision-titleblock, article.node--view-mode-featured-teaser .transparentBackground .ppg-titleblock-wrapper, article.node--view-mode-featured-teaser .transparentBackground .ppg-guidelines-card-wrapper, article.node--view-mode-featured-teaser .transparentBackground .field--name-field-human-subject-cards, article.node--view-mode-featured-teaser .transparentBackground .field--name-field-section-card, article.node--view-mode-featured-teaser .transparentBackground .field--name-field-highlight-card, article.node--view-mode-featured-teaser .transparentBackground .health-topic-teaser-container, article.node--view-mode-featured-teaser .transparentBackground .about-nhlbi-our-mission-wrapper, article.node--view-mode-featured-teaser .transparentBackground .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard, .about-nhlbi-our-mission-wrapper article.node--view-mode-featured-teaser .transparentBackground .field--name-field-leadership > .director-bioCard, article.node--view-mode-featured-teaser .transparentBackground .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ, .nhlbi-publications-and-resources--landing article.node--view-mode-featured-teaser .transparentBackground .field--name-field-health-consumer-nhlbi-publ,
article.node--view-mode-featured-teaser .transparentBackground .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi,
.nhlbi-publications-and-resources--landing article.node--view-mode-featured-teaser .transparentBackground .field--name-field-health-professionals-nhlbi, article.node--view-mode-featured-teaser .transparentBackground .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article.node--view-mode-featured-teaser .transparentBackground .standard-teaser,
article.node--view-mode-featured-teaser .transparentBackground .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article.node--view-mode-featured-teaser .transparentBackground .standard-teaser, article.node--view-mode-featured-teaser .transparentBackground .publicationsBlock.view-nhlbi-publications > .view-content,
article.node--view-mode-featured-teaser .transparentBackground .field--name-field-related-publications, article.node--view-mode-featured-teaser .transparentBackground .healthEducationBlock .standard-teaser, .healthEducationBlock article.node--view-mode-featured-teaser .transparentBackground .standard-teaser, article.node--view-mode-featured-teaser .transparentBackground .systematicEvidenceReviewsBlock .view-content, .systematicEvidenceReviewsBlock article.node--view-mode-featured-teaser .transparentBackground .view-content,
article.node--view-mode-featured-teaser .transparentBackground .clinicalPracticeGuidelinesBlock .view-content,
.clinicalPracticeGuidelinesBlock article.node--view-mode-featured-teaser .transparentBackground .view-content,
article.node--view-mode-featured-teaser .transparentBackground .publicationsAndFactSheetsBlock .view-content,
.publicationsAndFactSheetsBlock article.node--view-mode-featured-teaser .transparentBackground .view-content, article.node--view-mode-featured-teaser .transparentBackground .rtFlexContainer, article.node--view-mode-featured-teaser .transparentBackground .node--type-research-topic .field--name-field-science-supplemental-page, .node--type-research-topic article.node--view-mode-featured-teaser .transparentBackground .field--name-field-science-supplemental-page, article.node--view-mode-featured-teaser .transparentBackground .node--type-research-topic .researchTopicPublications, .node--type-research-topic article.node--view-mode-featured-teaser .transparentBackground .researchTopicPublications, article.node--view-mode-featured-teaser .transparentBackground .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard, .node--type-research-topic .field--name-field-content > .field__item article.node--view-mode-featured-teaser .transparentBackground article.listTeaserCard, article.node--view-mode-featured-teaser .transparentBackground .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser, .node--type-research-topic .field--name-field-content > .field__item article.node--view-mode-featured-teaser .transparentBackground article.standard-teaser,
article.node--view-mode-featured-teaser .transparentBackground .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard,
.node--type-research-topic .field--name-field-content > .field__item article.node--view-mode-featured-teaser .transparentBackground article.newsEventsCard, article.node--view-mode-featured-teaser .transparentBackground .esi-feature-card, article.node--view-mode-featured-teaser .transparentBackground .featured-science-instance-teaser-container, article.node--view-mode-featured-teaser .transparentBackground .sfa-teaser-container, article.node--view-mode-featured-teaser .transparentBackground .training-opportunity-card .field--name-field-associated-people, .training-opportunity-card article.node--view-mode-featured-teaser .transparentBackground .field--name-field-associated-people, article.node--view-mode-featured-teaser .transparentBackground .field--name-field-featured-training-opportun, article.node--view-mode-featured-teaser .transparentBackground .field--name-field-career-stages, article.node--view-mode-featured-teaser .transparentBackground .field--name-field-workforce-development-card, article.node--view-mode-featured-teaser .transparentBackground .node--type-update.node--view-mode-executive-teaser, article.node--view-mode-featured-teaser .transparentBackground .news-and-events-titleblock, article.node--view-mode-featured-teaser .transparentBackground .contact-box > .field--name-field-contact-methods, article.node--view-mode-featured-teaser .transparentBackground .leadership-container, article.node--view-mode-featured-teaser .transparentBackground .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership, .leadership-container .leadership-deputy-director-container article.node--view-mode-featured-teaser .transparentBackground .field--name-field-additional-leadership, article.node--view-mode-featured-teaser .transparentBackground .branch-leadership-container, article.node--view-mode-featured-teaser .transparentBackground .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership, .branch-leadership-container .leadership-deputy-director-container article.node--view-mode-featured-teaser .transparentBackground .field--name-field-additional-leadership, article.node--view-mode-featured-teaser .transparentBackground .node--type-general .field--name-field-related-publications, .node--type-general article.node--view-mode-featured-teaser .transparentBackground .field--name-field-related-publications, article.node--view-mode-featured-teaser .transparentBackground .node--type-general .field--name-field-general-publications-rlt, .node--type-general article.node--view-mode-featured-teaser .transparentBackground .field--name-field-general-publications-rlt, article.node--view-mode-featured-teaser .transparentBackground .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser, .node--type-general .field--name-field-general-publications-rlt > .field__item article.node--view-mode-featured-teaser .transparentBackground .standard-teaser, article.node--view-mode-featured-teaser .transparentBackground .node--type-general .field--name-field-related-publications > .field__item .standard-teaser, .node--type-general .field--name-field-related-publications > .field__item article.node--view-mode-featured-teaser .transparentBackground .standard-teaser, article.node--view-mode-featured-teaser .transparentBackground .objective-text-container, article.node--view-mode-featured-teaser .transparentBackground .objective-list-container, article.node--view-mode-featured-teaser .transparentBackground .field--name-field-goal-card, article.node--view-mode-featured-teaser .transparentBackground .strategic-vision-landing-goals-wrapper, article.node--view-mode-featured-teaser .transparentBackground .node--type-principal-investigator .striped-container-wrapper, .node--type-principal-investigator article.node--view-mode-featured-teaser .transparentBackground .striped-container-wrapper, article.node--view-mode-featured-teaser .transparentBackground .node--type-principal-investigator .striped-container, .node--type-principal-investigator article.node--view-mode-featured-teaser .transparentBackground .striped-container, article.node--view-mode-featured-teaser .transparentBackground .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article.node--view-mode-featured-teaser .transparentBackground article,
article.node--view-mode-featured-teaser .transparentBackground .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article.node--view-mode-featured-teaser .transparentBackground article, article.node--view-mode-featured-teaser .transparentBackground .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content article.node--view-mode-featured-teaser .transparentBackground .standard-teaser.node--view-mode-short-teaser, article.node--view-mode-featured-teaser .transparentBackground .field--name-field-awards, article.node--view-mode-featured-teaser .transparentBackground .registerSocialContainer, article.node--view-mode-featured-teaser .transparentBackground .eventdatesLocationType, article.node--view-mode-featured-teaser .transparentBackground .news-article-container, article.node--view-mode-featured-teaser .transparentBackground .node--type-feature-article.node--view-mode-press-release-teaser,
article.node--view-mode-featured-teaser .transparentBackground .node--type-press-release.node--view-mode-press-release-teaser,
article.node--view-mode-featured-teaser .transparentBackground .node--type-events.node--view-mode-press-release-teaser,
article.node--view-mode-featured-teaser .transparentBackground .node--type-feature-article.node--view-mode-hp-press-release-teaser,
article.node--view-mode-featured-teaser .transparentBackground .node--type-press-release.node--view-mode-hp-press-release-teaser,
article.node--view-mode-featured-teaser .transparentBackground .node--type-events.node--view-mode-hp-press-release-teaser,
article.node--view-mode-featured-teaser .transparentBackground .node--type-news-mention.node--view-mode-hp-press-release-teaser, article.node--view-mode-featured-teaser .transparentBackground .news-header-container, article.node--view-mode-featured-teaser .transparentBackground .contacts-container .field--name-field-contacts, .contacts-container article.node--view-mode-featured-teaser .transparentBackground .field--name-field-contacts, article.node--view-mode-featured-teaser .transparentBackground .publicationsBox .field--name-field-related-publications, .publicationsBox article.node--view-mode-featured-teaser .transparentBackground .field--name-field-related-publications, article.node--view-mode-featured-teaser .transparentBackground .field--name-field-primary-featured-item, article.node--view-mode-featured-teaser .transparentBackground .field--name-field-additional-featured-items, article.node--view-mode-featured-teaser .transparentBackground .homepage-health-topics-container, article.node--view-mode-featured-teaser .transparentBackground .homepage-mission-areas-container, article.node--view-mode-featured-teaser .transparentBackground .homepage-location-container, article.node--view-mode-featured-teaser .transparentBackground .field--name-field-alumni, article.node--view-mode-featured-teaser .transparentBackground .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container, .node--type-nhlbi-publication.node--view-mode-full article.node--view-mode-featured-teaser .transparentBackground .nhlbi-publication-details-container,
article.node--view-mode-featured-teaser .transparentBackground .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container,
.node--type-nhlbi-publication.node--view-mode-subscribe article.node--view-mode-featured-teaser .transparentBackground .nhlbi-publication-details-container, article.node--view-mode-featured-teaser .transparentBackground .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications, .node--type-nhlbi-publication.node--view-mode-full article.node--view-mode-featured-teaser .transparentBackground .field--name-field-related-nhlbi-publications,
article.node--view-mode-featured-teaser .transparentBackground .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications,
.node--type-nhlbi-publication.node--view-mode-subscribe article.node--view-mode-featured-teaser .transparentBackground .field--name-field-related-nhlbi-publications, article.node--view-mode-featured-teaser .transparentBackground .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article.node--view-mode-featured-teaser .transparentBackground .standard-teaser,
article.node--view-mode-featured-teaser .transparentBackground .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article.node--view-mode-featured-teaser .transparentBackground .standard-teaser {
  overflow: visible;
}

/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/*
    Created on : Nov 12, 2015, 1:15:11 PM
    Author     : emeyer
*/
/* line 13, ../sass/components/_healthtopics.scss */
.node--type-health-topic h1, .node--type-health-professional-health-topic h1 {
  margin-bottom: 0.2em;
}

/* line 19, ../sass/components/_healthtopics.scss */
.largeDescription {
  margin-top: .625em;
  margin-bottom: .625em;
}

/* line 25, ../sass/components/_healthtopics.scss */
.publicationsBlock.view-nhlbi-publications > .view-content,
.field--name-field-related-publications {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: left;
  -moz-justify-content: left;
  -ms-justify-content: left;
  -o-justify-content: left;
  justify-content: left;
  padding: 1em 0 0 0;
}

/* line 36, ../sass/components/_healthtopics.scss */
.publicationsBlock.view-nhlbi-publications > .view-content > .views-row,
.publicationsBlock.view-nhlbi-publications > .view-content > .views-row:hover,
.publicationsBlock.view-nhlbi-publications > .view-content > .views-row:last-child {
  background-color: #fff;
  border: 2px solid #d7d7d7;
}

/* line 44, ../sass/components/_healthtopics.scss */
.publicationsBlock.view-nhlbi-publications > .view-content > .views-row > .publicationFlexCard {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  padding: 1em;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 44, ../sass/components/_healthtopics.scss */
  .publicationsBlock.view-nhlbi-publications > .view-content > .views-row > .publicationFlexCard {
    flex-direction: row;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 44, ../sass/components/_healthtopics.scss */
  .publicationsBlock.view-nhlbi-publications > .view-content > .views-row > .publicationFlexCard {
    width: auto;
    flex-direction: row;
  }
}
/* line 55, ../sass/components/_healthtopics.scss */
.publicationsBlock.view-nhlbi-publications > .view-content > .views-row > .publicationFlexCard .flexItemText {
  -webkit-box-ordinal-group: 2;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
  padding: 1em 0 0 0;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 55, ../sass/components/_healthtopics.scss */
  .publicationsBlock.view-nhlbi-publications > .view-content > .views-row > .publicationFlexCard .flexItemText {
    padding: 0 0 0 1em;
    width: 50%;
    max-width: 50%;
    min-width: 50%;
  }
}
/* line 68, ../sass/components/_healthtopics.scss */
.publicationsBlock.view-nhlbi-publications > .view-content > .views-row > .publicationFlexCard .flexItemImageHalf {
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
  -webkit-align-self: center;
  -moz-align-self: center;
  -ms-align-self: center;
  -o-align-self: center;
  align-self: center;
  padding: 0;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 68, ../sass/components/_healthtopics.scss */
  .publicationsBlock.view-nhlbi-publications > .view-content > .views-row > .publicationFlexCard .flexItemImageHalf {
    -webkit-align-self: start;
    -moz-align-self: start;
    -ms-align-self: start;
    -o-align-self: start;
    align-self: start;
    padding: 0;
    width: 50%;
    max-width: 50%;
    min-width: 50%;
  }
}

/* line 84, ../sass/components/_healthtopics.scss */
.node--type-health-professional-health-topic .publicationsAndFactSheetsBlock > .view-content > .views-row {
  margin: 0 1em 1em 0;
  width: 30%;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  /* line 84, ../sass/components/_healthtopics.scss */
  .node--type-health-professional-health-topic .publicationsAndFactSheetsBlock > .view-content > .views-row {
    display: -ms-flexbox;
  }
}
/* line 90, ../sass/components/_healthtopics.scss */
.node--type-health-professional-health-topic .publicationsAndFactSheetsBlock > .view-content > .views-row article {
  height: 100%;
  display: inline-flex;
  overflow: visible;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  /* line 90, ../sass/components/_healthtopics.scss */
  .node--type-health-professional-health-topic .publicationsAndFactSheetsBlock > .view-content > .views-row article {
    width: 100%;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 84, ../sass/components/_healthtopics.scss */
  .node--type-health-professional-health-topic .publicationsAndFactSheetsBlock > .view-content > .views-row {
    width: 45%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 84, ../sass/components/_healthtopics.scss */
  .node--type-health-professional-health-topic .publicationsAndFactSheetsBlock > .view-content > .views-row {
    width: auto;
    margin-right: 0;
  }
}
/* line 105, ../sass/components/_healthtopics.scss */
.node--type-health-professional-health-topic .publicationsAndFactSheetsBlock > .view-content > .views-row .flexItemImageHalf {
  padding: 1em 0 0 1em;
  overflow: visible;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  /* line 109, ../sass/components/_healthtopics.scss */
  .node--type-health-professional-health-topic .publicationsAndFactSheetsBlock > .view-content > .views-row .flexItemImageHalf img {
    width: inherit;
    min-height: 1px;
  }
}
/* line 115, ../sass/components/_healthtopics.scss */
.node--type-health-professional-health-topic .publicationsAndFactSheetsBlock > .view-content > .views-row .flexItemText {
  padding: 1em 0.5em 0 1em;
}

/* line 123, ../sass/components/_healthtopics.scss */
.node--type-health-topic .publicationsBox .publicationsBlock > .view-content > .views-row {
  margin: 0 1em 1em 0;
  width: 29%;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  /* line 123, ../sass/components/_healthtopics.scss */
  .node--type-health-topic .publicationsBox .publicationsBlock > .view-content > .views-row {
    display: -ms-flexbox;
  }
}
/* line 129, ../sass/components/_healthtopics.scss */
.node--type-health-topic .publicationsBox .publicationsBlock > .view-content > .views-row article {
  height: 100%;
  display: inline-flex;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  /* line 129, ../sass/components/_healthtopics.scss */
  .node--type-health-topic .publicationsBox .publicationsBlock > .view-content > .views-row article {
    width: 100%;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 123, ../sass/components/_healthtopics.scss */
  .node--type-health-topic .publicationsBox .publicationsBlock > .view-content > .views-row {
    width: 44%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 123, ../sass/components/_healthtopics.scss */
  .node--type-health-topic .publicationsBox .publicationsBlock > .view-content > .views-row {
    width: auto;
    margin-right: 0;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  /* line 144, ../sass/components/_healthtopics.scss */
  .node--type-health-topic .publicationsBox .publicationsBlock > .view-content > .views-row img {
    width: inherit;
    min-height: 1px;
    margin-bottom: 2px;
  }
}
/* line 153, ../sass/components/_healthtopics.scss */
.node--type-health-topic .accordion-header-secondary h2, .node--type-health-topic .accordion-header-secondary .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-health-topic .accordion-header-secondary h1, .node--type-health-topic .accordion-header-secondary .contact-method-label {
  display: inline;
}
/* line 157, ../sass/components/_healthtopics.scss */
.node--type-health-topic .paragraph--type--intro-text {
  margin: 0;
}

/* line 162, ../sass/components/_healthtopics.scss */
.healthEducationBlock {
  overflow: hidden;
}
/* line 164, ../sass/components/_healthtopics.scss */
.healthEducationBlock .standard-teaser {
  color: #fff;
  padding: 0;
  margin: 2em 0;
  background-color: #8caac4;
}
/* line 168, ../sass/components/_healthtopics.scss */
.healthEducationBlock .standard-teaser .flexItemText {
  padding: 2.6em;
  float: left;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 168, ../sass/components/_healthtopics.scss */
  .healthEducationBlock .standard-teaser .flexItemText {
    padding: 1.6em 1.6em .3em 1.6em;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 168, ../sass/components/_healthtopics.scss */
  .healthEducationBlock .standard-teaser .flexItemText {
    padding: 0.8em 1.6em 0 1.6em;
  }
}
/* line 174, ../sass/components/_healthtopics.scss */
.healthEducationBlock .standard-teaser .flexItemText .whiteBottom {
  font-size: 1.125rem;
  border-bottom: #fff 4px solid;
  padding-bottom: 0.5em;
  margin-bottom: .8em;
  font-weight: bold;
  width: 11em;
}
@media all and (min-width: 1440px) {
  /* line 174, ../sass/components/_healthtopics.scss */
  .healthEducationBlock .standard-teaser .flexItemText .whiteBottom {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 174, ../sass/components/_healthtopics.scss */
  .healthEducationBlock .standard-teaser .flexItemText .whiteBottom {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 174, ../sass/components/_healthtopics.scss */
  .healthEducationBlock .standard-teaser .flexItemText .whiteBottom {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 174, ../sass/components/_healthtopics.scss */
  .healthEducationBlock .standard-teaser .flexItemText .whiteBottom {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) {
  /* line 174, ../sass/components/_healthtopics.scss */
  .healthEducationBlock .standard-teaser .flexItemText .whiteBottom {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 174, ../sass/components/_healthtopics.scss */
  .healthEducationBlock .standard-teaser .flexItemText .whiteBottom {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 174, ../sass/components/_healthtopics.scss */
  .healthEducationBlock .standard-teaser .flexItemText .whiteBottom {
    font-size: 1rem;
  }
}

/* line 190, ../sass/components/_healthtopics.scss */
.field--name-field-patient-health-topic {
  margin-bottom: 1em;
}

/* line 194, ../sass/components/_healthtopics.scss */
.node--type-clinical-practice-guideline h1 {
  margin-top: 0;
}

/* line 202, ../sass/components/_healthtopics.scss */
.node--type-clinical-practice-guideline .field--name-field-hero-image img,
.node--type-systematic-evidence-review .field--name-field-hero-image img,
.node--type-health-professional-health-topic .field--name-field-hero-image img {
  border: 1px solid #a5a5a5;
}
/* line 207, ../sass/components/_healthtopics.scss */
.node--type-clinical-practice-guideline .field--name-field-hero-image a:focus img, .node--type-clinical-practice-guideline .field--name-field-hero-image a:active img,
.node--type-systematic-evidence-review .field--name-field-hero-image a:focus img,
.node--type-systematic-evidence-review .field--name-field-hero-image a:active img,
.node--type-health-professional-health-topic .field--name-field-hero-image a:focus img,
.node--type-health-professional-health-topic .field--name-field-hero-image a:active img {
  outline: #bf0d2e dotted 3px;
}

/* line 216, ../sass/components/_healthtopics.scss */
.node--type-clinical-practice-guideline .field--name-field-healthpro-related-news,
.node--type-systematic-evidence-review .field--name-field-healthpro-related-news,
.node--type-health-professional-health-topic .field--name-field-healthpro-related-news {
  margin-bottom: 1.5em;
}
/* line 218, ../sass/components/_healthtopics.scss */
.node--type-clinical-practice-guideline .field--name-field-healthpro-related-news article,
.node--type-systematic-evidence-review .field--name-field-healthpro-related-news article,
.node--type-health-professional-health-topic .field--name-field-healthpro-related-news article {
  background-color: #fff;
}

/* line 226, ../sass/components/_healthtopics.scss */
.readMore {
  margin-top: -1em;
}

/* line 233, ../sass/components/_healthtopics.scss */
.node--type-clinical-trial.node--view-mode-teaser {
  background-color: #fff;
  padding: .6em;
}
/* line 234, ../sass/components/_healthtopics.scss */
.node--type-clinical-trial.node--view-mode-teaser .field--name-field-clinical-trial-link {
  display: inline;
}
@media all and (min-width: 1100px) {
  /* line 233, ../sass/components/_healthtopics.scss */
  .node--type-clinical-trial.node--view-mode-teaser {
    padding: 1em;
  }
}
/* line 242, ../sass/components/_healthtopics.scss */
.node--type-clinical-trial.node--view-mode-teaser .field--name-field-ct-summary {
  padding-bottom: 1em;
}

/* line 247, ../sass/components/_healthtopics.scss */
.field--name-field-goal {
  margin-top: 1em;
}

/* line 257, ../sass/components/_healthtopics.scss */
.field--name-field-tools, .field--name-field-support-partners {
  padding: 0;
  background-color: #fff;
}
/* line 260, ../sass/components/_healthtopics.scss */
.field--name-field-tools .field__item, .field--name-field-support-partners .field__item {
  display: block;
  overflow: hidden;
}
/* line 263, ../sass/components/_healthtopics.scss */
.field--name-field-tools .field__item .thumbnailTile, .field--name-field-support-partners .field__item .thumbnailTile {
  margin: 0 0 0.625em 0;
  display: block;
  clear: both;
  width: -webkit-available;
  width: -moz-available;
  width: -ms-available;
  width: -o-available;
  width: available;
  width: -webkit-fill-available;
  width: -moz-fill-available;
  width: -ms-fill-available;
  width: -o-fill-available;
  width: fill-available;
  background-color: #fff;
  border-top: 3px solid #d7e7f4;
  padding-top: 1em;
  padding-left: 0;
}
/* line 267, ../sass/components/_healthtopics.scss */
.field--name-field-tools .field__item .thumbnailTileText, .field--name-field-support-partners .field__item .thumbnailTileText {
  word-wrap: break-word;
  display: table-cell;
  vertical-align: middle;
  height: 50px;
  margin-bottom: 0.5em;
}
/* line 269, ../sass/components/_healthtopics.scss */
.field--name-field-tools .field__item .thumbnailTileText .field--name-field-url, .field--name-field-support-partners .field__item .thumbnailTileText .field--name-field-url {
  word-wrap: break-word;
}
/* line 273, ../sass/components/_healthtopics.scss */
.field--name-field-tools .field__item .field--name-field-thumbnail, .field--name-field-support-partners .field__item .field--name-field-thumbnail {
  float: left;
  margin-bottom: 0.5em;
  margin-right: 0.625em;
  width: 50px;
}
/* line 278, ../sass/components/_healthtopics.scss */
.field--name-field-tools .field__item:first-child .thumbnailTile, .field--name-field-support-partners .field__item:first-child .thumbnailTile {
  border: none;
}

/* line 284, ../sass/components/_healthtopics.scss */
.healthEducationBox {
  padding: 0;
}
/* line 287, ../sass/components/_healthtopics.scss */
.healthEducationBox .view-content > .views-row:last-child hr.gray-hr, .healthEducationBox .view-content > .views-row:last-child hr.bannerdate-dark-gray, .healthEducationBox .view-content > .views-row:last-child hr.contact-box, .healthEducationBox .view-content > .views-row:last-child .news-header-container hr.blacksubhead-normal, .news-header-container .healthEducationBox .view-content > .views-row:last-child hr.blacksubhead-normal {
  display: none;
}

/* line 294, ../sass/components/_healthtopics.scss */
.field--name-field-related-health-education > .field__item:last-child hr.gray-hr, .field--name-field-related-health-education > .field__item:last-child hr.bannerdate-dark-gray, .field--name-field-related-health-education > .field__item:last-child hr.contact-box, .field--name-field-related-health-education > .field__item:last-child .news-header-container hr.blacksubhead-normal, .news-header-container .field--name-field-related-health-education > .field__item:last-child hr.blacksubhead-normal {
  display: none;
}

/* line 299, ../sass/components/_healthtopics.scss */
.node--type-health-topic .healthEducationCard, .node--type-press-release .healthEducationCard {
  display: block;
  overflow: hidden;
  background-color: #fff;
}
/* line 303, ../sass/components/_healthtopics.scss */
.node--type-health-topic .healthEducationCard:hover, .node--type-press-release .healthEducationCard:hover {
  background-color: #fff;
}
/* line 306, ../sass/components/_healthtopics.scss */
.node--type-health-topic .healthEducationCard hr, .node--type-press-release .healthEducationCard hr {
  clear: both;
  margin-bottom: 0;
}
/* line 310, ../sass/components/_healthtopics.scss */
.node--type-health-topic .healthEducationCard .healthEductionContainer, .node--type-press-release .healthEducationCard .healthEductionContainer {
  margin: 0;
  display: block;
  clear: both;
  width: -webkit-available;
  width: -moz-available;
  width: -ms-available;
  width: -o-available;
  width: available;
  width: -webkit-fill-available;
  width: -moz-fill-available;
  width: -ms-fill-available;
  width: -o-fill-available;
  width: fill-available;
  background-color: #fff;
  padding: 1em;
}
/* line 1093, ../sass/_mixins.scss */
.node--type-health-topic .healthEducationCard .healthEductionContainer:hover, .node--type-press-release .healthEducationCard .healthEductionContainer:hover {
  background-color: #fff;
}
@media all and (min-width: 1100px) {
  /* line 310, ../sass/components/_healthtopics.scss */
  .node--type-health-topic .healthEducationCard .healthEductionContainer, .node--type-press-release .healthEducationCard .healthEductionContainer {
    padding-left: 2.4em;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 310, ../sass/components/_healthtopics.scss */
  .node--type-health-topic .healthEducationCard .healthEductionContainer, .node--type-press-release .healthEducationCard .healthEductionContainer {
    padding-left: 1.3em;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 310, ../sass/components/_healthtopics.scss */
  .node--type-health-topic .healthEducationCard .healthEductionContainer, .node--type-press-release .healthEducationCard .healthEductionContainer {
    padding-left: 1.3em;
  }
}
/* line 313, ../sass/components/_healthtopics.scss */
.node--type-health-topic .healthEducationCard .healthEductionText, .node--type-press-release .healthEducationCard .healthEductionText {
  word-wrap: break-word;
  display: table-cell;
  vertical-align: top;
}
/* line 315, ../sass/components/_healthtopics.scss */
.node--type-health-topic .healthEducationCard .healthEductionText .field--name-field-url, .node--type-press-release .healthEducationCard .healthEductionText .field--name-field-url {
  word-wrap: break-word;
}
/* line 319, ../sass/components/_healthtopics.scss */
.node--type-health-topic .healthEducationCard .healthEductionImage, .node--type-press-release .healthEducationCard .healthEductionImage {
  float: left;
  margin-bottom: 0.5em;
  margin-right: 0.625em;
  max-width: 247px;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 319, ../sass/components/_healthtopics.scss */
  .node--type-health-topic .healthEducationCard .healthEductionImage, .node--type-press-release .healthEducationCard .healthEductionImage {
    max-width: 50%;
  }
}
/* line 322, ../sass/components/_healthtopics.scss */
.node--type-health-topic .healthEducationCard .photocredit, .node--type-press-release .healthEducationCard .photocredit {
  margin-right: 0.875rem;
}

/* line 333, ../sass/components/_healthtopics.scss */
.field--name-field-related-health-topics > .field__item,
.field--name-field-related-sfas > .field__item,
.additional-support > .field__item {
  margin-bottom: .625em;
}

/* line 339, ../sass/components/_healthtopics.scss */
.field--name-field-last-updated-date-wrapper {
  display: block;
  position: relative;
  text-align: center;
  clear: both;
  width: 100%;
  font-style: italic;
  margin-top: 0.625em;
  margin-bottom: 1em;
}

/* line 345, ../sass/components/_healthtopics.scss */
.field--name-field-last-updated-date {
  display: inline;
}

/* line 351, ../sass/components/_healthtopics.scss */
.newsEventsSection {
  width: -webkit-available;
  width: -moz-available;
  width: -ms-available;
  width: -o-available;
  width: available;
  width: -webkit-fill-available;
  width: -moz-fill-available;
  width: -ms-fill-available;
  width: -o-fill-available;
  width: fill-available;
  color: #fff;
  background-color: transparent;
  margin-top: 1em;
  padding-top: 1.5em;
}
/* line 126, ../sass/_mixins.scss */
.newsEventsSection a, .newsEventsSection a:link {
  color: #fff;
  text-decoration: underline;
}
/* line 132, ../sass/_mixins.scss */
.newsEventsSection a:visited {
  color: #D7E7F4;
}
/* line 145, ../sass/_mixins.scss */
.newsEventsSection a:hover {
  font-weight: bold;
}
/* line 154, ../sass/_mixins.scss */
.newsEventsSection h1, .newsEventsSection .photocredit {
  color: #fff;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 351, ../sass/components/_healthtopics.scss */
  .newsEventsSection {
    padding-left: 1.4em;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 351, ../sass/components/_healthtopics.scss */
  .newsEventsSection {
    padding-left: 0.4em;
    padding-top: 1em;
  }
}
/* line 354, ../sass/components/_healthtopics.scss */
.newsEventsSection .content-container.flexcontainer, .newsEventsSection .content-container.related-ht-ser-container, .newsEventsSection .content-container.field--name-field-sfa-card, .newsEventsSection .content-container.field--name-field-speaker,
.newsEventsSection .content-container.field--name-field-executives, .newsEventsSection .content-container.standard-card-field, .newsEventsSection .content-container.field--name-field-advisory-committees, .newsEventsSection .content-container.contact-nhlbi-titleblock, .newsEventsSection .content-container.field--name-field-contact-cards, .newsEventsSection .content-container.field--name-field-employment-opportunity-car, .newsEventsSection .content-container.all-grants-foa-container,
.newsEventsSection .content-container.field--name-field-program-officers,
.newsEventsSection .view-id-nhlbi_grants_foa.view-display-id-block_2 > .content-container.view-content,
.newsEventsSection .view-id-nhlbi_grants_foa.view-display-id-block_3 > .content-container.view-content, .newsEventsSection .node--type-individual-contact .content-container.field--name-field-contact-methods, .node--type-individual-contact .newsEventsSection .content-container.field--name-field-contact-methods,
.newsEventsSection .node--type-division.node--view-mode-full .content-container.field--name-field-contact-methods,
.node--type-division.node--view-mode-full .newsEventsSection .content-container.field--name-field-contact-methods,
.newsEventsSection .node--type-division.node--view-mode-subscribe .content-container.field--name-field-contact-methods,
.node--type-division.node--view-mode-subscribe .newsEventsSection .content-container.field--name-field-contact-methods,
.newsEventsSection .node--type-branch.node--view-mode-full .content-container.field--name-field-contact-methods,
.node--type-branch.node--view-mode-full .newsEventsSection .content-container.field--name-field-contact-methods,
.newsEventsSection .node--type-branch.node--view-mode-subscribe .content-container.field--name-field-contact-methods,
.node--type-branch.node--view-mode-subscribe .newsEventsSection .content-container.field--name-field-contact-methods,
.newsEventsSection .node--type-general.node--view-mode-full .content-container.field--name-field-contact-methods,
.node--type-general.node--view-mode-full .newsEventsSection .content-container.field--name-field-contact-methods,
.newsEventsSection .node--type-general.node--view-mode-subscribe .content-container.field--name-field-contact-methods,
.node--type-general.node--view-mode-subscribe .newsEventsSection .content-container.field--name-field-contact-methods,
.newsEventsSection .node--type-health-education-initiative.node--view-mode-full .content-container.field--name-field-contact-methods,
.node--type-health-education-initiative.node--view-mode-full .newsEventsSection .content-container.field--name-field-contact-methods,
.newsEventsSection .node--type-health-education-initiative.node--view-mode-subscribe .content-container.field--name-field-contact-methods,
.node--type-health-education-initiative.node--view-mode-subscribe .newsEventsSection .content-container.field--name-field-contact-methods, .newsEventsSection .node--type-committee .content-container.field--name-field-card-text, .node--type-committee .newsEventsSection .content-container.field--name-field-card-text, .newsEventsSection .news-and-events--landing .content-container.landing-social, .news-and-events--landing .newsEventsSection .content-container.landing-social, .newsEventsSection .content-container.field--name-field-sfa-cards, .newsEventsSection .content-container.locationMap.contact-location-map-container, .newsEventsSection .content-container.locationMap, .newsEventsSection .content-container.grants-and-training-card-wrapper, .newsEventsSection .content-container.about-nhlbi-division-card-wrapper, .newsEventsSection .content-container.hei-tools-icon-card-wrapper, .newsEventsSection .content-container.field--name-field-grants-and-training-card, .newsEventsSection .content-container.field--name-field-division-card, .newsEventsSection .content-container.field--name-field-tool-icon-card, .newsEventsSection .content-container.field--name-field-promotional-card, .newsEventsSection .content-container.field--name-field-sv-promotional-cards, .newsEventsSection .content-container.field--name-field-about-nhlbi-promotional-ca, .newsEventsSection .content-container.strategic-vision-titleblock, .newsEventsSection .content-container.ppg-titleblock-wrapper, .newsEventsSection .content-container.ppg-guidelines-card-wrapper, .newsEventsSection .content-container.field--name-field-human-subject-cards, .newsEventsSection .content-container.field--name-field-section-card, .newsEventsSection .content-container.field--name-field-highlight-card, .newsEventsSection .content-container.health-topic-teaser-container, .newsEventsSection .content-container.about-nhlbi-our-mission-wrapper, .newsEventsSection .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .content-container.director-bioCard, .about-nhlbi-our-mission-wrapper .newsEventsSection .field--name-field-leadership > .content-container.director-bioCard, .newsEventsSection .nhlbi-publications-and-resources--landing .content-container.field--name-field-health-consumer-nhlbi-publ, .nhlbi-publications-and-resources--landing .newsEventsSection .content-container.field--name-field-health-consumer-nhlbi-publ,
.newsEventsSection .nhlbi-publications-and-resources--landing .content-container.field--name-field-health-professionals-nhlbi,
.nhlbi-publications-and-resources--landing .newsEventsSection .content-container.field--name-field-health-professionals-nhlbi, .newsEventsSection .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .content-container.standard-teaser, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .newsEventsSection .content-container.standard-teaser,
.newsEventsSection .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .content-container.standard-teaser,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .newsEventsSection .content-container.standard-teaser, .newsEventsSection .publicationsBlock.view-nhlbi-publications > .content-container.view-content,
.newsEventsSection .content-container.field--name-field-related-publications, .newsEventsSection .healthEducationBlock .content-container.standard-teaser, .healthEducationBlock .newsEventsSection .content-container.standard-teaser, .newsEventsSection .systematicEvidenceReviewsBlock .content-container.view-content, .systematicEvidenceReviewsBlock .newsEventsSection .content-container.view-content,
.newsEventsSection .clinicalPracticeGuidelinesBlock .content-container.view-content,
.clinicalPracticeGuidelinesBlock .newsEventsSection .content-container.view-content,
.newsEventsSection .publicationsAndFactSheetsBlock .content-container.view-content,
.publicationsAndFactSheetsBlock .newsEventsSection .content-container.view-content, .newsEventsSection .content-container.rtFlexContainer, .newsEventsSection .node--type-research-topic .content-container.field--name-field-science-supplemental-page, .node--type-research-topic .newsEventsSection .content-container.field--name-field-science-supplemental-page, .newsEventsSection .node--type-research-topic .content-container.researchTopicPublications, .node--type-research-topic .newsEventsSection .content-container.researchTopicPublications, .newsEventsSection .node--type-research-topic .field--name-field-content > .field__item article.content-container.listTeaserCard, .node--type-research-topic .field--name-field-content > .field__item .newsEventsSection article.content-container.listTeaserCard, .newsEventsSection .node--type-research-topic .field--name-field-content > .field__item article.content-container.standard-teaser, .node--type-research-topic .field--name-field-content > .field__item .newsEventsSection article.content-container.standard-teaser,
.newsEventsSection .node--type-research-topic .field--name-field-content > .field__item article.content-container.newsEventsCard,
.node--type-research-topic .field--name-field-content > .field__item .newsEventsSection article.content-container.newsEventsCard, .newsEventsSection .content-container.esi-feature-card, .newsEventsSection .content-container.featured-science-instance-teaser-container, .newsEventsSection .content-container.sfa-teaser-container, .newsEventsSection .training-opportunity-card .content-container.field--name-field-associated-people, .training-opportunity-card .newsEventsSection .content-container.field--name-field-associated-people, .newsEventsSection .content-container.field--name-field-featured-training-opportun, .newsEventsSection .content-container.field--name-field-career-stages, .newsEventsSection .content-container.field--name-field-workforce-development-card, .newsEventsSection .content-container.node--type-update.node--view-mode-executive-teaser, .newsEventsSection .content-container.news-and-events-titleblock, .newsEventsSection .contact-box > .content-container.field--name-field-contact-methods, .newsEventsSection .content-container.leadership-container, .newsEventsSection .leadership-container .leadership-deputy-director-container .content-container.field--name-field-additional-leadership, .leadership-container .leadership-deputy-director-container .newsEventsSection .content-container.field--name-field-additional-leadership, .newsEventsSection .content-container.branch-leadership-container, .newsEventsSection .branch-leadership-container .leadership-deputy-director-container .content-container.field--name-field-additional-leadership, .branch-leadership-container .leadership-deputy-director-container .newsEventsSection .content-container.field--name-field-additional-leadership, .newsEventsSection .node--type-general .content-container.field--name-field-related-publications, .node--type-general .newsEventsSection .content-container.field--name-field-related-publications, .newsEventsSection .node--type-general .content-container.field--name-field-general-publications-rlt, .node--type-general .newsEventsSection .content-container.field--name-field-general-publications-rlt, .newsEventsSection .node--type-general .field--name-field-general-publications-rlt > .field__item .content-container.standard-teaser, .node--type-general .field--name-field-general-publications-rlt > .field__item .newsEventsSection .content-container.standard-teaser, .newsEventsSection .node--type-general .field--name-field-related-publications > .field__item .content-container.standard-teaser, .node--type-general .field--name-field-related-publications > .field__item .newsEventsSection .content-container.standard-teaser, .newsEventsSection .content-container.objective-text-container, .newsEventsSection .content-container.objective-list-container, .newsEventsSection .content-container.field--name-field-goal-card, .newsEventsSection .content-container.strategic-vision-landing-goals-wrapper, .newsEventsSection .node--type-principal-investigator .content-container.striped-container-wrapper, .node--type-principal-investigator .newsEventsSection .content-container.striped-container-wrapper, .newsEventsSection .node--type-principal-investigator .content-container.striped-container, .node--type-principal-investigator .newsEventsSection .content-container.striped-container, .newsEventsSection .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article.content-container, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .newsEventsSection article.content-container,
.newsEventsSection .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article.content-container,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .newsEventsSection article.content-container, .newsEventsSection .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .content-container.standard-teaser.node--view-mode-short-teaser, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .newsEventsSection .content-container.standard-teaser.node--view-mode-short-teaser, .newsEventsSection .content-container.field--name-field-awards, .newsEventsSection .content-container.registerSocialContainer, .newsEventsSection .content-container.eventdatesLocationType, .newsEventsSection .content-container.news-article-container, .newsEventsSection .content-container.node--type-feature-article.node--view-mode-press-release-teaser,
.newsEventsSection .content-container.node--type-press-release.node--view-mode-press-release-teaser,
.newsEventsSection .content-container.node--type-events.node--view-mode-press-release-teaser,
.newsEventsSection .content-container.node--type-feature-article.node--view-mode-hp-press-release-teaser,
.newsEventsSection .content-container.node--type-press-release.node--view-mode-hp-press-release-teaser,
.newsEventsSection .content-container.node--type-events.node--view-mode-hp-press-release-teaser,
.newsEventsSection .content-container.node--type-news-mention.node--view-mode-hp-press-release-teaser, .newsEventsSection .content-container.news-header-container, .newsEventsSection .contacts-container .content-container.field--name-field-contacts, .contacts-container .newsEventsSection .content-container.field--name-field-contacts, .newsEventsSection .publicationsBox .content-container.field--name-field-related-publications, .publicationsBox .newsEventsSection .content-container.field--name-field-related-publications, .newsEventsSection .content-container.field--name-field-primary-featured-item, .newsEventsSection .content-container.field--name-field-additional-featured-items, .newsEventsSection .content-container.homepage-health-topics-container, .newsEventsSection .content-container.homepage-mission-areas-container, .newsEventsSection .content-container.homepage-location-container, .newsEventsSection .content-container.field--name-field-alumni, .newsEventsSection .node--type-nhlbi-publication.node--view-mode-full .content-container.nhlbi-publication-details-container, .node--type-nhlbi-publication.node--view-mode-full .newsEventsSection .content-container.nhlbi-publication-details-container,
.newsEventsSection .node--type-nhlbi-publication.node--view-mode-subscribe .content-container.nhlbi-publication-details-container,
.node--type-nhlbi-publication.node--view-mode-subscribe .newsEventsSection .content-container.nhlbi-publication-details-container, .newsEventsSection .node--type-nhlbi-publication.node--view-mode-full .content-container.field--name-field-related-nhlbi-publications, .node--type-nhlbi-publication.node--view-mode-full .newsEventsSection .content-container.field--name-field-related-nhlbi-publications,
.newsEventsSection .node--type-nhlbi-publication.node--view-mode-subscribe .content-container.field--name-field-related-nhlbi-publications,
.node--type-nhlbi-publication.node--view-mode-subscribe .newsEventsSection .content-container.field--name-field-related-nhlbi-publications, .newsEventsSection .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .content-container.standard-teaser, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .newsEventsSection .content-container.standard-teaser,
.newsEventsSection .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .content-container.standard-teaser,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .newsEventsSection .content-container.standard-teaser {
  flex-direction: row;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 354, ../sass/components/_healthtopics.scss */
  .newsEventsSection .content-container.flexcontainer, .newsEventsSection .content-container.related-ht-ser-container, .newsEventsSection .content-container.field--name-field-sfa-card, .newsEventsSection .content-container.field--name-field-speaker,
  .newsEventsSection .content-container.field--name-field-executives, .newsEventsSection .content-container.standard-card-field, .newsEventsSection .content-container.field--name-field-advisory-committees, .newsEventsSection .content-container.contact-nhlbi-titleblock, .newsEventsSection .content-container.field--name-field-contact-cards, .newsEventsSection .content-container.field--name-field-employment-opportunity-car, .newsEventsSection .content-container.all-grants-foa-container,
  .newsEventsSection .content-container.field--name-field-program-officers,
  .newsEventsSection .view-id-nhlbi_grants_foa.view-display-id-block_2 > .content-container.view-content,
  .newsEventsSection .view-id-nhlbi_grants_foa.view-display-id-block_3 > .content-container.view-content, .newsEventsSection .node--type-individual-contact .content-container.field--name-field-contact-methods, .node--type-individual-contact .newsEventsSection .content-container.field--name-field-contact-methods,
  .newsEventsSection .node--type-division.node--view-mode-full .content-container.field--name-field-contact-methods,
  .node--type-division.node--view-mode-full .newsEventsSection .content-container.field--name-field-contact-methods,
  .newsEventsSection .node--type-division.node--view-mode-subscribe .content-container.field--name-field-contact-methods,
  .node--type-division.node--view-mode-subscribe .newsEventsSection .content-container.field--name-field-contact-methods,
  .newsEventsSection .node--type-branch.node--view-mode-full .content-container.field--name-field-contact-methods,
  .node--type-branch.node--view-mode-full .newsEventsSection .content-container.field--name-field-contact-methods,
  .newsEventsSection .node--type-branch.node--view-mode-subscribe .content-container.field--name-field-contact-methods,
  .node--type-branch.node--view-mode-subscribe .newsEventsSection .content-container.field--name-field-contact-methods,
  .newsEventsSection .node--type-general.node--view-mode-full .content-container.field--name-field-contact-methods,
  .node--type-general.node--view-mode-full .newsEventsSection .content-container.field--name-field-contact-methods,
  .newsEventsSection .node--type-general.node--view-mode-subscribe .content-container.field--name-field-contact-methods,
  .node--type-general.node--view-mode-subscribe .newsEventsSection .content-container.field--name-field-contact-methods,
  .newsEventsSection .node--type-health-education-initiative.node--view-mode-full .content-container.field--name-field-contact-methods,
  .node--type-health-education-initiative.node--view-mode-full .newsEventsSection .content-container.field--name-field-contact-methods,
  .newsEventsSection .node--type-health-education-initiative.node--view-mode-subscribe .content-container.field--name-field-contact-methods,
  .node--type-health-education-initiative.node--view-mode-subscribe .newsEventsSection .content-container.field--name-field-contact-methods, .newsEventsSection .node--type-committee .content-container.field--name-field-card-text, .node--type-committee .newsEventsSection .content-container.field--name-field-card-text, .newsEventsSection .news-and-events--landing .content-container.landing-social, .news-and-events--landing .newsEventsSection .content-container.landing-social, .newsEventsSection .content-container.field--name-field-sfa-cards, .newsEventsSection .content-container.locationMap.contact-location-map-container, .newsEventsSection .content-container.locationMap, .newsEventsSection .content-container.grants-and-training-card-wrapper, .newsEventsSection .content-container.about-nhlbi-division-card-wrapper, .newsEventsSection .content-container.hei-tools-icon-card-wrapper, .newsEventsSection .content-container.field--name-field-grants-and-training-card, .newsEventsSection .content-container.field--name-field-division-card, .newsEventsSection .content-container.field--name-field-tool-icon-card, .newsEventsSection .content-container.field--name-field-promotional-card, .newsEventsSection .content-container.field--name-field-sv-promotional-cards, .newsEventsSection .content-container.field--name-field-about-nhlbi-promotional-ca, .newsEventsSection .content-container.strategic-vision-titleblock, .newsEventsSection .content-container.ppg-titleblock-wrapper, .newsEventsSection .content-container.ppg-guidelines-card-wrapper, .newsEventsSection .content-container.field--name-field-human-subject-cards, .newsEventsSection .content-container.field--name-field-section-card, .newsEventsSection .content-container.field--name-field-highlight-card, .newsEventsSection .content-container.health-topic-teaser-container, .newsEventsSection .content-container.about-nhlbi-our-mission-wrapper, .newsEventsSection .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .content-container.director-bioCard, .about-nhlbi-our-mission-wrapper .newsEventsSection .field--name-field-leadership > .content-container.director-bioCard, .newsEventsSection .nhlbi-publications-and-resources--landing .content-container.field--name-field-health-consumer-nhlbi-publ, .nhlbi-publications-and-resources--landing .newsEventsSection .content-container.field--name-field-health-consumer-nhlbi-publ,
  .newsEventsSection .nhlbi-publications-and-resources--landing .content-container.field--name-field-health-professionals-nhlbi,
  .nhlbi-publications-and-resources--landing .newsEventsSection .content-container.field--name-field-health-professionals-nhlbi, .newsEventsSection .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .content-container.standard-teaser, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .newsEventsSection .content-container.standard-teaser,
  .newsEventsSection .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .content-container.standard-teaser,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .newsEventsSection .content-container.standard-teaser, .newsEventsSection .publicationsBlock.view-nhlbi-publications > .content-container.view-content,
  .newsEventsSection .content-container.field--name-field-related-publications, .newsEventsSection .healthEducationBlock .content-container.standard-teaser, .healthEducationBlock .newsEventsSection .content-container.standard-teaser, .newsEventsSection .systematicEvidenceReviewsBlock .content-container.view-content, .systematicEvidenceReviewsBlock .newsEventsSection .content-container.view-content,
  .newsEventsSection .clinicalPracticeGuidelinesBlock .content-container.view-content,
  .clinicalPracticeGuidelinesBlock .newsEventsSection .content-container.view-content,
  .newsEventsSection .publicationsAndFactSheetsBlock .content-container.view-content,
  .publicationsAndFactSheetsBlock .newsEventsSection .content-container.view-content, .newsEventsSection .content-container.rtFlexContainer, .newsEventsSection .node--type-research-topic .content-container.field--name-field-science-supplemental-page, .node--type-research-topic .newsEventsSection .content-container.field--name-field-science-supplemental-page, .newsEventsSection .node--type-research-topic .content-container.researchTopicPublications, .node--type-research-topic .newsEventsSection .content-container.researchTopicPublications, .newsEventsSection .node--type-research-topic .field--name-field-content > .field__item article.content-container.listTeaserCard, .node--type-research-topic .field--name-field-content > .field__item .newsEventsSection article.content-container.listTeaserCard, .newsEventsSection .node--type-research-topic .field--name-field-content > .field__item article.content-container.standard-teaser, .node--type-research-topic .field--name-field-content > .field__item .newsEventsSection article.content-container.standard-teaser,
  .newsEventsSection .node--type-research-topic .field--name-field-content > .field__item article.content-container.newsEventsCard,
  .node--type-research-topic .field--name-field-content > .field__item .newsEventsSection article.content-container.newsEventsCard, .newsEventsSection .content-container.esi-feature-card, .newsEventsSection .content-container.featured-science-instance-teaser-container, .newsEventsSection .content-container.sfa-teaser-container, .newsEventsSection .training-opportunity-card .content-container.field--name-field-associated-people, .training-opportunity-card .newsEventsSection .content-container.field--name-field-associated-people, .newsEventsSection .content-container.field--name-field-featured-training-opportun, .newsEventsSection .content-container.field--name-field-career-stages, .newsEventsSection .content-container.field--name-field-workforce-development-card, .newsEventsSection .content-container.node--type-update.node--view-mode-executive-teaser, .newsEventsSection .content-container.news-and-events-titleblock, .newsEventsSection .contact-box > .content-container.field--name-field-contact-methods, .newsEventsSection .content-container.leadership-container, .newsEventsSection .leadership-container .leadership-deputy-director-container .content-container.field--name-field-additional-leadership, .leadership-container .leadership-deputy-director-container .newsEventsSection .content-container.field--name-field-additional-leadership, .newsEventsSection .content-container.branch-leadership-container, .newsEventsSection .branch-leadership-container .leadership-deputy-director-container .content-container.field--name-field-additional-leadership, .branch-leadership-container .leadership-deputy-director-container .newsEventsSection .content-container.field--name-field-additional-leadership, .newsEventsSection .node--type-general .content-container.field--name-field-related-publications, .node--type-general .newsEventsSection .content-container.field--name-field-related-publications, .newsEventsSection .node--type-general .content-container.field--name-field-general-publications-rlt, .node--type-general .newsEventsSection .content-container.field--name-field-general-publications-rlt, .newsEventsSection .node--type-general .field--name-field-general-publications-rlt > .field__item .content-container.standard-teaser, .node--type-general .field--name-field-general-publications-rlt > .field__item .newsEventsSection .content-container.standard-teaser, .newsEventsSection .node--type-general .field--name-field-related-publications > .field__item .content-container.standard-teaser, .node--type-general .field--name-field-related-publications > .field__item .newsEventsSection .content-container.standard-teaser, .newsEventsSection .content-container.objective-text-container, .newsEventsSection .content-container.objective-list-container, .newsEventsSection .content-container.field--name-field-goal-card, .newsEventsSection .content-container.strategic-vision-landing-goals-wrapper, .newsEventsSection .node--type-principal-investigator .content-container.striped-container-wrapper, .node--type-principal-investigator .newsEventsSection .content-container.striped-container-wrapper, .newsEventsSection .node--type-principal-investigator .content-container.striped-container, .node--type-principal-investigator .newsEventsSection .content-container.striped-container, .newsEventsSection .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article.content-container, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .newsEventsSection article.content-container,
  .newsEventsSection .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article.content-container,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .newsEventsSection article.content-container, .newsEventsSection .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .content-container.standard-teaser.node--view-mode-short-teaser, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .newsEventsSection .content-container.standard-teaser.node--view-mode-short-teaser, .newsEventsSection .content-container.field--name-field-awards, .newsEventsSection .content-container.registerSocialContainer, .newsEventsSection .content-container.eventdatesLocationType, .newsEventsSection .content-container.news-article-container, .newsEventsSection .content-container.node--type-feature-article.node--view-mode-press-release-teaser,
  .newsEventsSection .content-container.node--type-press-release.node--view-mode-press-release-teaser,
  .newsEventsSection .content-container.node--type-events.node--view-mode-press-release-teaser,
  .newsEventsSection .content-container.node--type-feature-article.node--view-mode-hp-press-release-teaser,
  .newsEventsSection .content-container.node--type-press-release.node--view-mode-hp-press-release-teaser,
  .newsEventsSection .content-container.node--type-events.node--view-mode-hp-press-release-teaser,
  .newsEventsSection .content-container.node--type-news-mention.node--view-mode-hp-press-release-teaser, .newsEventsSection .content-container.news-header-container, .newsEventsSection .contacts-container .content-container.field--name-field-contacts, .contacts-container .newsEventsSection .content-container.field--name-field-contacts, .newsEventsSection .publicationsBox .content-container.field--name-field-related-publications, .publicationsBox .newsEventsSection .content-container.field--name-field-related-publications, .newsEventsSection .content-container.field--name-field-primary-featured-item, .newsEventsSection .content-container.field--name-field-additional-featured-items, .newsEventsSection .content-container.homepage-health-topics-container, .newsEventsSection .content-container.homepage-mission-areas-container, .newsEventsSection .content-container.homepage-location-container, .newsEventsSection .content-container.field--name-field-alumni, .newsEventsSection .node--type-nhlbi-publication.node--view-mode-full .content-container.nhlbi-publication-details-container, .node--type-nhlbi-publication.node--view-mode-full .newsEventsSection .content-container.nhlbi-publication-details-container,
  .newsEventsSection .node--type-nhlbi-publication.node--view-mode-subscribe .content-container.nhlbi-publication-details-container,
  .node--type-nhlbi-publication.node--view-mode-subscribe .newsEventsSection .content-container.nhlbi-publication-details-container, .newsEventsSection .node--type-nhlbi-publication.node--view-mode-full .content-container.field--name-field-related-nhlbi-publications, .node--type-nhlbi-publication.node--view-mode-full .newsEventsSection .content-container.field--name-field-related-nhlbi-publications,
  .newsEventsSection .node--type-nhlbi-publication.node--view-mode-subscribe .content-container.field--name-field-related-nhlbi-publications,
  .node--type-nhlbi-publication.node--view-mode-subscribe .newsEventsSection .content-container.field--name-field-related-nhlbi-publications, .newsEventsSection .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .content-container.standard-teaser, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .newsEventsSection .content-container.standard-teaser,
  .newsEventsSection .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .content-container.standard-teaser,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .newsEventsSection .content-container.standard-teaser {
    flex-direction: column;
  }
}
/* line 361, ../sass/components/_healthtopics.scss */
.newsEventsSection .views-element-container {
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-grow: 1;
  -o-flex-grow: 1;
  flex-grow: 1;
  margin-bottom: 1.5em;
  margin-right: 2.2em;
  width: 50%;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 361, ../sass/components/_healthtopics.scss */
  .newsEventsSection .views-element-container {
    margin-right: 0;
    width: auto;
  }
}
/* line 372, ../sass/components/_healthtopics.scss */
.newsEventsSection .flexcontainer, .newsEventsSection .related-ht-ser-container, .newsEventsSection .field--name-field-sfa-card, .newsEventsSection .field--name-field-speaker,
.newsEventsSection .field--name-field-executives, .newsEventsSection .standard-card-field, .newsEventsSection .field--name-field-advisory-committees, .newsEventsSection .contact-nhlbi-titleblock, .newsEventsSection .field--name-field-contact-cards, .newsEventsSection .field--name-field-employment-opportunity-car, .newsEventsSection .all-grants-foa-container,
.newsEventsSection .field--name-field-program-officers,
.newsEventsSection .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content,
.newsEventsSection .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content, .newsEventsSection .node--type-individual-contact .field--name-field-contact-methods, .node--type-individual-contact .newsEventsSection .field--name-field-contact-methods,
.newsEventsSection .node--type-division.node--view-mode-full .field--name-field-contact-methods,
.node--type-division.node--view-mode-full .newsEventsSection .field--name-field-contact-methods,
.newsEventsSection .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods,
.node--type-division.node--view-mode-subscribe .newsEventsSection .field--name-field-contact-methods,
.newsEventsSection .node--type-branch.node--view-mode-full .field--name-field-contact-methods,
.node--type-branch.node--view-mode-full .newsEventsSection .field--name-field-contact-methods,
.newsEventsSection .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods,
.node--type-branch.node--view-mode-subscribe .newsEventsSection .field--name-field-contact-methods,
.newsEventsSection .node--type-general.node--view-mode-full .field--name-field-contact-methods,
.node--type-general.node--view-mode-full .newsEventsSection .field--name-field-contact-methods,
.newsEventsSection .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods,
.node--type-general.node--view-mode-subscribe .newsEventsSection .field--name-field-contact-methods,
.newsEventsSection .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods,
.node--type-health-education-initiative.node--view-mode-full .newsEventsSection .field--name-field-contact-methods,
.newsEventsSection .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods,
.node--type-health-education-initiative.node--view-mode-subscribe .newsEventsSection .field--name-field-contact-methods, .newsEventsSection .node--type-committee .field--name-field-card-text, .node--type-committee .newsEventsSection .field--name-field-card-text, .newsEventsSection .news-and-events--landing .landing-social, .news-and-events--landing .newsEventsSection .landing-social, .newsEventsSection .field--name-field-sfa-cards, .newsEventsSection .locationMap.contact-location-map-container, .newsEventsSection .locationMap, .newsEventsSection .grants-and-training-card-wrapper, .newsEventsSection .about-nhlbi-division-card-wrapper, .newsEventsSection .hei-tools-icon-card-wrapper, .newsEventsSection .field--name-field-grants-and-training-card, .newsEventsSection .field--name-field-division-card, .newsEventsSection .field--name-field-tool-icon-card, .newsEventsSection .field--name-field-promotional-card, .newsEventsSection .field--name-field-sv-promotional-cards, .newsEventsSection .field--name-field-about-nhlbi-promotional-ca, .newsEventsSection .strategic-vision-titleblock, .newsEventsSection .ppg-titleblock-wrapper, .newsEventsSection .ppg-guidelines-card-wrapper, .newsEventsSection .field--name-field-human-subject-cards, .newsEventsSection .field--name-field-section-card, .newsEventsSection .field--name-field-highlight-card, .newsEventsSection .health-topic-teaser-container, .newsEventsSection .about-nhlbi-our-mission-wrapper, .newsEventsSection .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard, .about-nhlbi-our-mission-wrapper .newsEventsSection .field--name-field-leadership > .director-bioCard, .newsEventsSection .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ, .nhlbi-publications-and-resources--landing .newsEventsSection .field--name-field-health-consumer-nhlbi-publ,
.newsEventsSection .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi,
.nhlbi-publications-and-resources--landing .newsEventsSection .field--name-field-health-professionals-nhlbi, .newsEventsSection .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .newsEventsSection .standard-teaser,
.newsEventsSection .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .newsEventsSection .standard-teaser, .newsEventsSection .publicationsBlock.view-nhlbi-publications > .view-content,
.newsEventsSection .field--name-field-related-publications, .newsEventsSection .healthEducationBlock .standard-teaser, .healthEducationBlock .newsEventsSection .standard-teaser, .newsEventsSection .systematicEvidenceReviewsBlock .view-content, .systematicEvidenceReviewsBlock .newsEventsSection .view-content,
.newsEventsSection .clinicalPracticeGuidelinesBlock .view-content,
.clinicalPracticeGuidelinesBlock .newsEventsSection .view-content,
.newsEventsSection .publicationsAndFactSheetsBlock .view-content,
.publicationsAndFactSheetsBlock .newsEventsSection .view-content, .newsEventsSection .rtFlexContainer, .newsEventsSection .node--type-research-topic .field--name-field-science-supplemental-page, .node--type-research-topic .newsEventsSection .field--name-field-science-supplemental-page, .newsEventsSection .node--type-research-topic .researchTopicPublications, .node--type-research-topic .newsEventsSection .researchTopicPublications, .newsEventsSection .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard, .node--type-research-topic .field--name-field-content > .field__item .newsEventsSection article.listTeaserCard, .newsEventsSection .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser, .node--type-research-topic .field--name-field-content > .field__item .newsEventsSection article.standard-teaser,
.newsEventsSection .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard,
.node--type-research-topic .field--name-field-content > .field__item .newsEventsSection article.newsEventsCard, .newsEventsSection .esi-feature-card, .newsEventsSection .featured-science-instance-teaser-container, .newsEventsSection .sfa-teaser-container, .newsEventsSection .training-opportunity-card .field--name-field-associated-people, .training-opportunity-card .newsEventsSection .field--name-field-associated-people, .newsEventsSection .field--name-field-featured-training-opportun, .newsEventsSection .field--name-field-career-stages, .newsEventsSection .field--name-field-workforce-development-card, .newsEventsSection .node--type-update.node--view-mode-executive-teaser, .newsEventsSection .news-and-events-titleblock, .newsEventsSection .contact-box > .field--name-field-contact-methods, .newsEventsSection .leadership-container, .newsEventsSection .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership, .leadership-container .leadership-deputy-director-container .newsEventsSection .field--name-field-additional-leadership, .newsEventsSection .branch-leadership-container, .newsEventsSection .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership, .branch-leadership-container .leadership-deputy-director-container .newsEventsSection .field--name-field-additional-leadership, .newsEventsSection .node--type-general .field--name-field-related-publications, .node--type-general .newsEventsSection .field--name-field-related-publications, .newsEventsSection .node--type-general .field--name-field-general-publications-rlt, .node--type-general .newsEventsSection .field--name-field-general-publications-rlt, .newsEventsSection .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser, .node--type-general .field--name-field-general-publications-rlt > .field__item .newsEventsSection .standard-teaser, .newsEventsSection .node--type-general .field--name-field-related-publications > .field__item .standard-teaser, .node--type-general .field--name-field-related-publications > .field__item .newsEventsSection .standard-teaser, .newsEventsSection .objective-text-container, .newsEventsSection .objective-list-container, .newsEventsSection .field--name-field-goal-card, .newsEventsSection .strategic-vision-landing-goals-wrapper, .newsEventsSection .node--type-principal-investigator .striped-container-wrapper, .node--type-principal-investigator .newsEventsSection .striped-container-wrapper, .newsEventsSection .node--type-principal-investigator .striped-container, .node--type-principal-investigator .newsEventsSection .striped-container, .newsEventsSection .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .newsEventsSection article,
.newsEventsSection .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .newsEventsSection article, .newsEventsSection .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .newsEventsSection .standard-teaser.node--view-mode-short-teaser, .newsEventsSection .field--name-field-awards, .newsEventsSection .registerSocialContainer, .newsEventsSection .eventdatesLocationType, .newsEventsSection .news-article-container, .newsEventsSection .node--type-feature-article.node--view-mode-press-release-teaser,
.newsEventsSection .node--type-press-release.node--view-mode-press-release-teaser,
.newsEventsSection .node--type-events.node--view-mode-press-release-teaser,
.newsEventsSection .node--type-feature-article.node--view-mode-hp-press-release-teaser,
.newsEventsSection .node--type-press-release.node--view-mode-hp-press-release-teaser,
.newsEventsSection .node--type-events.node--view-mode-hp-press-release-teaser,
.newsEventsSection .node--type-news-mention.node--view-mode-hp-press-release-teaser, .newsEventsSection .news-header-container, .newsEventsSection .contacts-container .field--name-field-contacts, .contacts-container .newsEventsSection .field--name-field-contacts, .newsEventsSection .publicationsBox .field--name-field-related-publications, .publicationsBox .newsEventsSection .field--name-field-related-publications, .newsEventsSection .field--name-field-primary-featured-item, .newsEventsSection .field--name-field-additional-featured-items, .newsEventsSection .homepage-health-topics-container, .newsEventsSection .homepage-mission-areas-container, .newsEventsSection .homepage-location-container, .newsEventsSection .field--name-field-alumni, .newsEventsSection .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container, .node--type-nhlbi-publication.node--view-mode-full .newsEventsSection .nhlbi-publication-details-container,
.newsEventsSection .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container,
.node--type-nhlbi-publication.node--view-mode-subscribe .newsEventsSection .nhlbi-publication-details-container, .newsEventsSection .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications, .node--type-nhlbi-publication.node--view-mode-full .newsEventsSection .field--name-field-related-nhlbi-publications,
.newsEventsSection .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications,
.node--type-nhlbi-publication.node--view-mode-subscribe .newsEventsSection .field--name-field-related-nhlbi-publications, .newsEventsSection .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .newsEventsSection .standard-teaser,
.newsEventsSection .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .newsEventsSection .standard-teaser {
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 372, ../sass/components/_healthtopics.scss */
  .newsEventsSection .flexcontainer, .newsEventsSection .related-ht-ser-container, .newsEventsSection .field--name-field-sfa-card, .newsEventsSection .field--name-field-speaker,
  .newsEventsSection .field--name-field-executives, .newsEventsSection .standard-card-field, .newsEventsSection .field--name-field-advisory-committees, .newsEventsSection .contact-nhlbi-titleblock, .newsEventsSection .field--name-field-contact-cards, .newsEventsSection .field--name-field-employment-opportunity-car, .newsEventsSection .all-grants-foa-container,
  .newsEventsSection .field--name-field-program-officers,
  .newsEventsSection .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content,
  .newsEventsSection .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content, .newsEventsSection .node--type-individual-contact .field--name-field-contact-methods, .node--type-individual-contact .newsEventsSection .field--name-field-contact-methods,
  .newsEventsSection .node--type-division.node--view-mode-full .field--name-field-contact-methods,
  .node--type-division.node--view-mode-full .newsEventsSection .field--name-field-contact-methods,
  .newsEventsSection .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods,
  .node--type-division.node--view-mode-subscribe .newsEventsSection .field--name-field-contact-methods,
  .newsEventsSection .node--type-branch.node--view-mode-full .field--name-field-contact-methods,
  .node--type-branch.node--view-mode-full .newsEventsSection .field--name-field-contact-methods,
  .newsEventsSection .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods,
  .node--type-branch.node--view-mode-subscribe .newsEventsSection .field--name-field-contact-methods,
  .newsEventsSection .node--type-general.node--view-mode-full .field--name-field-contact-methods,
  .node--type-general.node--view-mode-full .newsEventsSection .field--name-field-contact-methods,
  .newsEventsSection .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods,
  .node--type-general.node--view-mode-subscribe .newsEventsSection .field--name-field-contact-methods,
  .newsEventsSection .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods,
  .node--type-health-education-initiative.node--view-mode-full .newsEventsSection .field--name-field-contact-methods,
  .newsEventsSection .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods,
  .node--type-health-education-initiative.node--view-mode-subscribe .newsEventsSection .field--name-field-contact-methods, .newsEventsSection .node--type-committee .field--name-field-card-text, .node--type-committee .newsEventsSection .field--name-field-card-text, .newsEventsSection .news-and-events--landing .landing-social, .news-and-events--landing .newsEventsSection .landing-social, .newsEventsSection .field--name-field-sfa-cards, .newsEventsSection .locationMap.contact-location-map-container, .newsEventsSection .locationMap, .newsEventsSection .grants-and-training-card-wrapper, .newsEventsSection .about-nhlbi-division-card-wrapper, .newsEventsSection .hei-tools-icon-card-wrapper, .newsEventsSection .field--name-field-grants-and-training-card, .newsEventsSection .field--name-field-division-card, .newsEventsSection .field--name-field-tool-icon-card, .newsEventsSection .field--name-field-promotional-card, .newsEventsSection .field--name-field-sv-promotional-cards, .newsEventsSection .field--name-field-about-nhlbi-promotional-ca, .newsEventsSection .strategic-vision-titleblock, .newsEventsSection .ppg-titleblock-wrapper, .newsEventsSection .ppg-guidelines-card-wrapper, .newsEventsSection .field--name-field-human-subject-cards, .newsEventsSection .field--name-field-section-card, .newsEventsSection .field--name-field-highlight-card, .newsEventsSection .health-topic-teaser-container, .newsEventsSection .about-nhlbi-our-mission-wrapper, .newsEventsSection .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard, .about-nhlbi-our-mission-wrapper .newsEventsSection .field--name-field-leadership > .director-bioCard, .newsEventsSection .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ, .nhlbi-publications-and-resources--landing .newsEventsSection .field--name-field-health-consumer-nhlbi-publ,
  .newsEventsSection .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi,
  .nhlbi-publications-and-resources--landing .newsEventsSection .field--name-field-health-professionals-nhlbi, .newsEventsSection .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .newsEventsSection .standard-teaser,
  .newsEventsSection .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .newsEventsSection .standard-teaser, .newsEventsSection .publicationsBlock.view-nhlbi-publications > .view-content,
  .newsEventsSection .field--name-field-related-publications, .newsEventsSection .healthEducationBlock .standard-teaser, .healthEducationBlock .newsEventsSection .standard-teaser, .newsEventsSection .systematicEvidenceReviewsBlock .view-content, .systematicEvidenceReviewsBlock .newsEventsSection .view-content,
  .newsEventsSection .clinicalPracticeGuidelinesBlock .view-content,
  .clinicalPracticeGuidelinesBlock .newsEventsSection .view-content,
  .newsEventsSection .publicationsAndFactSheetsBlock .view-content,
  .publicationsAndFactSheetsBlock .newsEventsSection .view-content, .newsEventsSection .rtFlexContainer, .newsEventsSection .node--type-research-topic .field--name-field-science-supplemental-page, .node--type-research-topic .newsEventsSection .field--name-field-science-supplemental-page, .newsEventsSection .node--type-research-topic .researchTopicPublications, .node--type-research-topic .newsEventsSection .researchTopicPublications, .newsEventsSection .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard, .node--type-research-topic .field--name-field-content > .field__item .newsEventsSection article.listTeaserCard, .newsEventsSection .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser, .node--type-research-topic .field--name-field-content > .field__item .newsEventsSection article.standard-teaser,
  .newsEventsSection .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard,
  .node--type-research-topic .field--name-field-content > .field__item .newsEventsSection article.newsEventsCard, .newsEventsSection .esi-feature-card, .newsEventsSection .featured-science-instance-teaser-container, .newsEventsSection .sfa-teaser-container, .newsEventsSection .training-opportunity-card .field--name-field-associated-people, .training-opportunity-card .newsEventsSection .field--name-field-associated-people, .newsEventsSection .field--name-field-featured-training-opportun, .newsEventsSection .field--name-field-career-stages, .newsEventsSection .field--name-field-workforce-development-card, .newsEventsSection .node--type-update.node--view-mode-executive-teaser, .newsEventsSection .news-and-events-titleblock, .newsEventsSection .contact-box > .field--name-field-contact-methods, .newsEventsSection .leadership-container, .newsEventsSection .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership, .leadership-container .leadership-deputy-director-container .newsEventsSection .field--name-field-additional-leadership, .newsEventsSection .branch-leadership-container, .newsEventsSection .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership, .branch-leadership-container .leadership-deputy-director-container .newsEventsSection .field--name-field-additional-leadership, .newsEventsSection .node--type-general .field--name-field-related-publications, .node--type-general .newsEventsSection .field--name-field-related-publications, .newsEventsSection .node--type-general .field--name-field-general-publications-rlt, .node--type-general .newsEventsSection .field--name-field-general-publications-rlt, .newsEventsSection .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser, .node--type-general .field--name-field-general-publications-rlt > .field__item .newsEventsSection .standard-teaser, .newsEventsSection .node--type-general .field--name-field-related-publications > .field__item .standard-teaser, .node--type-general .field--name-field-related-publications > .field__item .newsEventsSection .standard-teaser, .newsEventsSection .objective-text-container, .newsEventsSection .objective-list-container, .newsEventsSection .field--name-field-goal-card, .newsEventsSection .strategic-vision-landing-goals-wrapper, .newsEventsSection .node--type-principal-investigator .striped-container-wrapper, .node--type-principal-investigator .newsEventsSection .striped-container-wrapper, .newsEventsSection .node--type-principal-investigator .striped-container, .node--type-principal-investigator .newsEventsSection .striped-container, .newsEventsSection .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .newsEventsSection article,
  .newsEventsSection .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .newsEventsSection article, .newsEventsSection .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .newsEventsSection .standard-teaser.node--view-mode-short-teaser, .newsEventsSection .field--name-field-awards, .newsEventsSection .registerSocialContainer, .newsEventsSection .eventdatesLocationType, .newsEventsSection .news-article-container, .newsEventsSection .node--type-feature-article.node--view-mode-press-release-teaser,
  .newsEventsSection .node--type-press-release.node--view-mode-press-release-teaser,
  .newsEventsSection .node--type-events.node--view-mode-press-release-teaser,
  .newsEventsSection .node--type-feature-article.node--view-mode-hp-press-release-teaser,
  .newsEventsSection .node--type-press-release.node--view-mode-hp-press-release-teaser,
  .newsEventsSection .node--type-events.node--view-mode-hp-press-release-teaser,
  .newsEventsSection .node--type-news-mention.node--view-mode-hp-press-release-teaser, .newsEventsSection .news-header-container, .newsEventsSection .contacts-container .field--name-field-contacts, .contacts-container .newsEventsSection .field--name-field-contacts, .newsEventsSection .publicationsBox .field--name-field-related-publications, .publicationsBox .newsEventsSection .field--name-field-related-publications, .newsEventsSection .field--name-field-primary-featured-item, .newsEventsSection .field--name-field-additional-featured-items, .newsEventsSection .homepage-health-topics-container, .newsEventsSection .homepage-mission-areas-container, .newsEventsSection .homepage-location-container, .newsEventsSection .field--name-field-alumni, .newsEventsSection .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container, .node--type-nhlbi-publication.node--view-mode-full .newsEventsSection .nhlbi-publication-details-container,
  .newsEventsSection .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container,
  .node--type-nhlbi-publication.node--view-mode-subscribe .newsEventsSection .nhlbi-publication-details-container, .newsEventsSection .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications, .node--type-nhlbi-publication.node--view-mode-full .newsEventsSection .field--name-field-related-nhlbi-publications,
  .newsEventsSection .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications,
  .node--type-nhlbi-publication.node--view-mode-subscribe .newsEventsSection .field--name-field-related-nhlbi-publications, .newsEventsSection .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .newsEventsSection .standard-teaser,
  .newsEventsSection .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .newsEventsSection .standard-teaser {
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
  }
}
/* line 378, ../sass/components/_healthtopics.scss */
.newsEventsSection .flexItemImage, .newsEventsSection .flexItemImageHalf, .newsEventsSection .flexItemImageTenth, .newsEventsSection .flexItemImageFourth, .newsEventsSection .flexItemImageThird, .newsEventsSection .flexItemImageThirdHalf, .newsEventsSection .hero-image {
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 378, ../sass/components/_healthtopics.scss */
  .newsEventsSection .flexItemImage, .newsEventsSection .flexItemImageHalf, .newsEventsSection .flexItemImageTenth, .newsEventsSection .flexItemImageFourth, .newsEventsSection .flexItemImageThird, .newsEventsSection .flexItemImageThirdHalf, .newsEventsSection .hero-image {
    width: 45%;
    min-width: 45%;
  }
}
/* line 387, ../sass/components/_healthtopics.scss */
.newsEventsSection .flexItemText {
  -webkit-box-ordinal-group: 2;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
}
@media all and (min-width: 1100px) {
  /* line 387, ../sass/components/_healthtopics.scss */
  .newsEventsSection .flexItemText {
    padding: 2.2em 1em 1em 1em;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 387, ../sass/components/_healthtopics.scss */
  .newsEventsSection .flexItemText {
    padding: 0 0 1em 2em;
  }
}
@media all and (min-width: 1100px) {
  /* line 392, ../sass/components/_healthtopics.scss */
  .newsEventsSection .blueBottom.cardOuter {
    display: none;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 392, ../sass/components/_healthtopics.scss */
  .newsEventsSection .blueBottom.cardOuter {
    display: none;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 392, ../sass/components/_healthtopics.scss */
  .newsEventsSection .blueBottom.cardOuter {
    display: block;
    clear: both;
    margin-bottom: 1.4em;
  }
}
/* line 402, ../sass/components/_healthtopics.scss */
.newsEventsSection .blueBottom.cardInner {
  padding-left: 0;
  margin-left: 0;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 402, ../sass/components/_healthtopics.scss */
  .newsEventsSection .blueBottom.cardInner {
    display: none;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 408, ../sass/components/_healthtopics.scss */
  .newsEventsSection .field--name-field-description, .newsEventsSection .field--name-body {
    display: none;
  }
}
/* line 413, ../sass/components/_healthtopics.scss */
.newsEventsSection .field--name-field-description {
  margin-top: 1em;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 413, ../sass/components/_healthtopics.scss */
  .newsEventsSection .field--name-field-description {
    margin: 0;
  }
}
/* line 419, ../sass/components/_healthtopics.scss */
.newsEventsSection .field--name-field-start-date, .newsEventsSection .field--name-field-end-date {
  display: inline;
}

/* line 426, ../sass/components/_healthtopics.scss */
.node--type-health-professional-health-topic .views-element-container {
  clear: both;
}
/* line 429, ../sass/components/_healthtopics.scss */
.node--type-health-professional-health-topic h3, .node--type-health-professional-health-topic .field--name-field-social-phrase-group-title, .node--type-health-professional-health-topic .field--name-field-image-gallery-title {
  font-weight: normal;
}

/* line 442, ../sass/components/_healthtopics.scss */
.systematicEvidenceReviewsBlock .view-header,
.clinicalPracticeGuidelinesBlock .view-header,
.publicationsAndFactSheetsBlock .view-header {
  margin-left: 2.6em;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 442, ../sass/components/_healthtopics.scss */
  .systematicEvidenceReviewsBlock .view-header,
  .clinicalPracticeGuidelinesBlock .view-header,
  .publicationsAndFactSheetsBlock .view-header {
    width: 90%;
    margin-left: 0.5em;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 442, ../sass/components/_healthtopics.scss */
  .systematicEvidenceReviewsBlock .view-header,
  .clinicalPracticeGuidelinesBlock .view-header,
  .publicationsAndFactSheetsBlock .view-header {
    margin-left: 0;
  }
}
/* line 452, ../sass/components/_healthtopics.scss */
.systematicEvidenceReviewsBlock .view-content,
.clinicalPracticeGuidelinesBlock .view-content,
.publicationsAndFactSheetsBlock .view-content {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-bottom: 1em;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 452, ../sass/components/_healthtopics.scss */
  .systematicEvidenceReviewsBlock .view-content,
  .clinicalPracticeGuidelinesBlock .view-content,
  .publicationsAndFactSheetsBlock .view-content {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    -ms-column-count: 1;
    -o-column-count: 1;
    column-count: 1;
  }
}
/* line 460, ../sass/components/_healthtopics.scss */
.systematicEvidenceReviewsBlock .view-content .views-row,
.clinicalPracticeGuidelinesBlock .view-content .views-row,
.publicationsAndFactSheetsBlock .view-content .views-row {
  border: 2px solid #d7d7d7;
  -webkit-flex: 0 1 auto;
  -moz-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  -o-flex: 0 1 auto;
  flex: 0 1 auto;
  width: 30%;
  margin: 0 1em 1em 0;
}
/* line 465, ../sass/components/_healthtopics.scss */
.systematicEvidenceReviewsBlock .view-content .views-row article,
.clinicalPracticeGuidelinesBlock .view-content .views-row article,
.publicationsAndFactSheetsBlock .view-content .views-row article {
  overflow: visible;
  height: 100%;
  background-color: #fff;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 460, ../sass/components/_healthtopics.scss */
  .systematicEvidenceReviewsBlock .view-content .views-row,
  .clinicalPracticeGuidelinesBlock .view-content .views-row,
  .publicationsAndFactSheetsBlock .view-content .views-row {
    width: 45%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 460, ../sass/components/_healthtopics.scss */
  .systematicEvidenceReviewsBlock .view-content .views-row,
  .clinicalPracticeGuidelinesBlock .view-content .views-row,
  .publicationsAndFactSheetsBlock .view-content .views-row {
    -webkit-flex: 0 0 auto;
    -moz-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    -o-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    min-width: 0;
    margin-right: 0;
  }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  /* line 485, ../sass/components/_healthtopics.scss */
  .clinicalPracticeGuidelinesBlock .views-row article.node--type-general-secondary-page,
  .clinicalPracticeGuidelinesBlock .views-row article.node--type-general-hub-page {
    display: block;
  }
}
/* line 492, ../sass/components/_healthtopics.scss */
.additionalSupportBlock {
  padding-left: 1.35em;
  padding: 1em;
  margin-bottom: 1em;
  clear: both;
  background-color: #eaf3fa;
}
@media all and (min-width: 1100px) {
  /* line 492, ../sass/components/_healthtopics.scss */
  .additionalSupportBlock {
    padding-left: 2.2em;
  }
}
@media all and (min-width: 1100px) {
  /* line 492, ../sass/components/_healthtopics.scss */
  .additionalSupportBlock {
    width: 33%;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 492, ../sass/components/_healthtopics.scss */
  .additionalSupportBlock {
    width: 50%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 492, ../sass/components/_healthtopics.scss */
  .additionalSupportBlock {
    width: 100%;
  }
}
/* line 507, ../sass/components/_healthtopics.scss */
.additionalSupportBlock .featuredUnderline {
  border-bottom: #d2d9e1 2px solid;
  width: 95%;
}
/* line 511, ../sass/components/_healthtopics.scss */
.additionalSupportBlock .field__item {
  margin-bottom: .8em;
}

/* line 519, ../sass/components/_healthtopics.scss */
.field--name-field-past-research .paragraph--type--date-image-title-text {
  display: table;
}
/* line 522, ../sass/components/_healthtopics.scss */
.field--name-field-past-research .field--name-field-date {
  background-image: url("/themes/custom/nhlbi/images/health-topic-past-research-bar.jpg");
  background-position: center center;
  background-repeat: repeat-y;
  display: table-cell;
  text-align: center;
  width: 30%;
}
/* line 530, ../sass/components/_healthtopics.scss */
.field--name-field-past-research time {
  background-image: url("/themes/custom/nhlbi/images/health-topic-research-desktop-circle.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  display: block;
  height: 90px;
}
/* line 536, ../sass/components/_healthtopics.scss */
.field--name-field-past-research time span {
  display: block;
  padding-top: 30px;
}

/* line 543, ../sass/components/_healthtopics.scss */
.catalogLink {
  border: 1px solid #999;
  display: block;
  cursor: pointer;
  position: relative;
  padding: .5em .5em .5em .5em;
  min-height: 0;
  font-size: 1rem;
  font-weight: normal;
  text-align: center;
  text-decoration: none;
}

/* line 549, ../sass/components/_healthtopics.scss */
.top-shadow-gradient {
  background-color: #ffffff;
  /* will be "on top", if browser supports it */
  background: transparent linear-gradient(#dddddd, #f1f1f1 2%, #f2f2f2, #ffffff) repeat scroll 0 0;
}

/* line 554, ../sass/components/_healthtopics.scss */
.related-hei {
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 1em;
}
@media all and (min-width: 1100px) {
  /* line 554, ../sass/components/_healthtopics.scss */
  .related-hei {
    width: 95%;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 554, ../sass/components/_healthtopics.scss */
  .related-hei {
    width: 95%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 554, ../sass/components/_healthtopics.scss */
  .related-hei {
    width: 100%;
  }
}
/* line 567, ../sass/components/_healthtopics.scss */
.related-hei h2, .related-hei .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .related-hei h1, .related-hei .contact-method-label {
  font-family: "Merriweather", serif;
  font-weight: bold;
}

@media all and (min-width: 1100px) {
  /* line 573, ../sass/components/_healthtopics.scss */
  .related-hei-title-text-link {
    width: 75%;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 573, ../sass/components/_healthtopics.scss */
  .related-hei-title-text-link {
    width: 90%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 573, ../sass/components/_healthtopics.scss */
  .related-hei-title-text-link {
    width: 100%;
  }
}

/* line 585, ../sass/components/_healthtopics.scss */
.related-hei-section-title {
  margin-bottom: 11px;
}
@media all and (min-width: 1100px) {
  /* line 585, ../sass/components/_healthtopics.scss */
  .related-hei-section-title {
    border-bottom: 0.1em solid;
    width: 30%;
  }
}
/* line 591, ../sass/components/_healthtopics.scss */
.related-hei-section-title p {
  margin-bottom: 0;
}

/* line 596, ../sass/components/_healthtopics.scss */
.related-hei-gray-background {
  color: #222;
  background-color: #E8E8E8;
  overflow: hidden;
  color: #222;
}
/* line 599, ../sass/components/_healthtopics.scss */
.related-hei-gray-background h2, .related-hei-gray-background .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .related-hei-gray-background h1, .related-hei-gray-background .contact-method-label {
  color: #222;
}
/* line 602, ../sass/components/_healthtopics.scss */
.related-hei-gray-background .related-hei-button {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 602, ../sass/components/_healthtopics.scss */
  .related-hei-gray-background .related-hei-button {
    margin-top: 0.75em;
    margin-bottom: 0.75em;
  }
}
/* line 1535, ../sass/_mixins.scss */
.related-hei-gray-background .related-hei-button a {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  background-color: #1e578a;
  border: 1px solid #1e578a;
  padding: 0.8em 3em;
}
@media all and (min-width: 1440px) {
  /* line 1535, ../sass/_mixins.scss */
  .related-hei-gray-background .related-hei-button a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1535, ../sass/_mixins.scss */
  .related-hei-gray-background .related-hei-button a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .related-hei-gray-background .related-hei-button a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1535, ../sass/_mixins.scss */
  .related-hei-gray-background .related-hei-button a {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.related-hei-gray-background .related-hei-button a :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 1535, ../sass/_mixins.scss */
  .related-hei-gray-background .related-hei-button a {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1535, ../sass/_mixins.scss */
  .related-hei-gray-background .related-hei-button a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .related-hei-gray-background .related-hei-button a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1535, ../sass/_mixins.scss */
  .related-hei-gray-background .related-hei-button a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .related-hei-gray-background .related-hei-button a {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.related-hei-gray-background .related-hei-button a:hover {
  background-color: #102d66;
  border-color: #102d66;
  color: #fff;
  text-decoration: none;
}
/* line 1539, ../sass/_mixins.scss */
.related-hei-gray-background .related-hei-button a:focus {
  outline: #fff dotted 3px !important;
}

/* line 607, ../sass/components/_healthtopics.scss */
.related-hei-red-background {
  color: #222;
  background-color: #850920;
  overflow: hidden;
  color: #fff;
}
/* line 610, ../sass/components/_healthtopics.scss */
.related-hei-red-background h2, .related-hei-red-background .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .related-hei-red-background h1, .related-hei-red-background .contact-method-label {
  color: #fff;
}
/* line 613, ../sass/components/_healthtopics.scss */
.related-hei-red-background .related-hei-button {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 613, ../sass/components/_healthtopics.scss */
  .related-hei-red-background .related-hei-button {
    margin-top: 0.75em;
    margin-bottom: 0.75em;
  }
}
/* line 1535, ../sass/_mixins.scss */
.related-hei-red-background .related-hei-button a {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  background-color: #850920;
  border: 1px solid #fff;
  padding: 0.8em 3em;
}
@media all and (min-width: 1440px) {
  /* line 1535, ../sass/_mixins.scss */
  .related-hei-red-background .related-hei-button a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1535, ../sass/_mixins.scss */
  .related-hei-red-background .related-hei-button a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .related-hei-red-background .related-hei-button a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1535, ../sass/_mixins.scss */
  .related-hei-red-background .related-hei-button a {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.related-hei-red-background .related-hei-button a :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 1535, ../sass/_mixins.scss */
  .related-hei-red-background .related-hei-button a {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1535, ../sass/_mixins.scss */
  .related-hei-red-background .related-hei-button a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .related-hei-red-background .related-hei-button a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1535, ../sass/_mixins.scss */
  .related-hei-red-background .related-hei-button a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .related-hei-red-background .related-hei-button a {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.related-hei-red-background .related-hei-button a:hover {
  background-color: #bf0d2e;
  border-color: #bf0d2e;
  color: #fff;
  text-decoration: none;
}
/* line 1539, ../sass/_mixins.scss */
.related-hei-red-background .related-hei-button a:focus {
  outline: #fff dotted 3px !important;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  /* line 621, ../sass/components/_healthtopics.scss */
  .node--type-health-topic .field--name-field-accordion-body .caption {
    display: block !important;
  }
  /* line 624, ../sass/components/_healthtopics.scss */
  .node--type-health-topic .field--name-field-accordion-body .caption figcaption {
    display: block !important;
  }
  /* line 630, ../sass/components/_healthtopics.scss */
  .node--type-health-topic .field--name-field-accordion-body .align-center img {
    margin-left: auto;
    Margin-right: auto;
  }
}
/* line 639, ../sass/components/_healthtopics.scss */
.more-info-publications .viewalllink, .more-info-publications .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .more-info-publications .field--name-field-url > a, .more-info-publications .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .more-info-publications a, .more-info-publications .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .more-info-publications a, .more-info-publications .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .more-info-publications .field--name-field-promotional-link > a, .more-info-publications .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .more-info-publications a, .more-info-publications .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .more-info-publications .field--name-field-url > a {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  background-color: #1a568c;
  border: 1px solid #1a568c;
  padding: 0.8em 3em;
  display: table !important;
  background-image: none;
  color: #fff !important;
}
@media all and (min-width: 1440px) {
  /* line 639, ../sass/components/_healthtopics.scss */
  .more-info-publications .viewalllink, .more-info-publications .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .more-info-publications .field--name-field-url > a, .more-info-publications .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .more-info-publications a, .more-info-publications .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .more-info-publications a, .more-info-publications .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .more-info-publications .field--name-field-promotional-link > a, .more-info-publications .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .more-info-publications a, .more-info-publications .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .more-info-publications .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 639, ../sass/components/_healthtopics.scss */
  .more-info-publications .viewalllink, .more-info-publications .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .more-info-publications .field--name-field-url > a, .more-info-publications .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .more-info-publications a, .more-info-publications .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .more-info-publications a, .more-info-publications .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .more-info-publications .field--name-field-promotional-link > a, .more-info-publications .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .more-info-publications a, .more-info-publications .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .more-info-publications .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 639, ../sass/components/_healthtopics.scss */
  .more-info-publications .viewalllink, .more-info-publications .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .more-info-publications .field--name-field-url > a, .more-info-publications .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .more-info-publications a, .more-info-publications .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .more-info-publications a, .more-info-publications .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .more-info-publications .field--name-field-promotional-link > a, .more-info-publications .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .more-info-publications a, .more-info-publications .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .more-info-publications .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 639, ../sass/components/_healthtopics.scss */
  .more-info-publications .viewalllink, .more-info-publications .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .more-info-publications .field--name-field-url > a, .more-info-publications .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .more-info-publications a, .more-info-publications .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .more-info-publications a, .more-info-publications .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .more-info-publications .field--name-field-promotional-link > a, .more-info-publications .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .more-info-publications a, .more-info-publications .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .more-info-publications .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.more-info-publications .viewalllink :hover, .more-info-publications .promoted-content-container .flexItemText .field--name-field-url > a :hover, .promoted-content-container .flexItemText .more-info-publications .field--name-field-url > a :hover, .more-info-publications .contact-nhlbi--landing .field--name-field-directions-link a :hover, .contact-nhlbi--landing .field--name-field-directions-link .more-info-publications a :hover, .more-info-publications .isi-job-opportunities--landing .field--name-field-vacancies-link a :hover, .isi-job-opportunities--landing .field--name-field-vacancies-link .more-info-publications a :hover, .more-info-publications .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a :hover, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .more-info-publications .field--name-field-promotional-link > a :hover, .more-info-publications .fixedDarkBluePane .field--name-field-traveling-and-security a :hover, .fixedDarkBluePane .field--name-field-traveling-and-security .more-info-publications a :hover, .more-info-publications .field--name-field-community-card .field--name-field-url > a :hover, .field--name-field-community-card .more-info-publications .field--name-field-url > a :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 639, ../sass/components/_healthtopics.scss */
  .more-info-publications .viewalllink, .more-info-publications .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .more-info-publications .field--name-field-url > a, .more-info-publications .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .more-info-publications a, .more-info-publications .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .more-info-publications a, .more-info-publications .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .more-info-publications .field--name-field-promotional-link > a, .more-info-publications .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .more-info-publications a, .more-info-publications .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .more-info-publications .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 639, ../sass/components/_healthtopics.scss */
  .more-info-publications .viewalllink, .more-info-publications .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .more-info-publications .field--name-field-url > a, .more-info-publications .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .more-info-publications a, .more-info-publications .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .more-info-publications a, .more-info-publications .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .more-info-publications .field--name-field-promotional-link > a, .more-info-publications .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .more-info-publications a, .more-info-publications .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .more-info-publications .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 639, ../sass/components/_healthtopics.scss */
  .more-info-publications .viewalllink, .more-info-publications .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .more-info-publications .field--name-field-url > a, .more-info-publications .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .more-info-publications a, .more-info-publications .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .more-info-publications a, .more-info-publications .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .more-info-publications .field--name-field-promotional-link > a, .more-info-publications .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .more-info-publications a, .more-info-publications .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .more-info-publications .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 639, ../sass/components/_healthtopics.scss */
  .more-info-publications .viewalllink, .more-info-publications .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .more-info-publications .field--name-field-url > a, .more-info-publications .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .more-info-publications a, .more-info-publications .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .more-info-publications a, .more-info-publications .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .more-info-publications .field--name-field-promotional-link > a, .more-info-publications .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .more-info-publications a, .more-info-publications .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .more-info-publications .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 639, ../sass/components/_healthtopics.scss */
  .more-info-publications .viewalllink, .more-info-publications .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .more-info-publications .field--name-field-url > a, .more-info-publications .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .more-info-publications a, .more-info-publications .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .more-info-publications a, .more-info-publications .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .more-info-publications .field--name-field-promotional-link > a, .more-info-publications .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .more-info-publications a, .more-info-publications .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .more-info-publications .field--name-field-url > a {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.more-info-publications .viewalllink:hover, .more-info-publications .promoted-content-container .flexItemText .field--name-field-url > a:hover, .promoted-content-container .flexItemText .more-info-publications .field--name-field-url > a:hover, .more-info-publications .contact-nhlbi--landing .field--name-field-directions-link a:hover, .contact-nhlbi--landing .field--name-field-directions-link .more-info-publications a:hover, .more-info-publications .isi-job-opportunities--landing .field--name-field-vacancies-link a:hover, .isi-job-opportunities--landing .field--name-field-vacancies-link .more-info-publications a:hover, .more-info-publications .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:hover, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .more-info-publications .field--name-field-promotional-link > a:hover, .more-info-publications .fixedDarkBluePane .field--name-field-traveling-and-security a:hover, .fixedDarkBluePane .field--name-field-traveling-and-security .more-info-publications a:hover, .more-info-publications .field--name-field-community-card .field--name-field-url > a:hover, .field--name-field-community-card .more-info-publications .field--name-field-url > a:hover {
  background-color: #102d66;
  border-color: #102d66;
  color: #fff;
  text-decoration: none;
}
/* line 2379, ../sass/_mixins.scss */
.more-info-publications .viewalllink:focus, .more-info-publications .promoted-content-container .flexItemText .field--name-field-url > a:focus, .promoted-content-container .flexItemText .more-info-publications .field--name-field-url > a:focus, .more-info-publications .contact-nhlbi--landing .field--name-field-directions-link a:focus, .contact-nhlbi--landing .field--name-field-directions-link .more-info-publications a:focus, .more-info-publications .isi-job-opportunities--landing .field--name-field-vacancies-link a:focus, .isi-job-opportunities--landing .field--name-field-vacancies-link .more-info-publications a:focus, .more-info-publications .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:focus, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .more-info-publications .field--name-field-promotional-link > a:focus, .more-info-publications .fixedDarkBluePane .field--name-field-traveling-and-security a:focus, .fixedDarkBluePane .field--name-field-traveling-and-security .more-info-publications a:focus, .more-info-publications .field--name-field-community-card .field--name-field-url > a:focus, .field--name-field-community-card .more-info-publications .field--name-field-url > a:focus, .more-info-publications .viewalllink:active, .more-info-publications .promoted-content-container .flexItemText .field--name-field-url > a:active, .promoted-content-container .flexItemText .more-info-publications .field--name-field-url > a:active, .more-info-publications .contact-nhlbi--landing .field--name-field-directions-link a:active, .contact-nhlbi--landing .field--name-field-directions-link .more-info-publications a:active, .more-info-publications .isi-job-opportunities--landing .field--name-field-vacancies-link a:active, .isi-job-opportunities--landing .field--name-field-vacancies-link .more-info-publications a:active, .more-info-publications .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:active, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .more-info-publications .field--name-field-promotional-link > a:active, .more-info-publications .fixedDarkBluePane .field--name-field-traveling-and-security a:active, .fixedDarkBluePane .field--name-field-traveling-and-security .more-info-publications a:active, .more-info-publications .field--name-field-community-card .field--name-field-url > a:active, .field--name-field-community-card .more-info-publications .field--name-field-url > a:active {
  outline: #bf0d2e dotted 3px !important;
}
/* line 642, ../sass/components/_healthtopics.scss */
.more-info-publications .viewalllink:visited, .more-info-publications .promoted-content-container .flexItemText .field--name-field-url > a:visited, .promoted-content-container .flexItemText .more-info-publications .field--name-field-url > a:visited, .more-info-publications .contact-nhlbi--landing .field--name-field-directions-link a:visited, .contact-nhlbi--landing .field--name-field-directions-link .more-info-publications a:visited, .more-info-publications .isi-job-opportunities--landing .field--name-field-vacancies-link a:visited, .isi-job-opportunities--landing .field--name-field-vacancies-link .more-info-publications a:visited, .more-info-publications .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:visited, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .more-info-publications .field--name-field-promotional-link > a:visited, .more-info-publications .fixedDarkBluePane .field--name-field-traveling-and-security a:visited, .fixedDarkBluePane .field--name-field-traveling-and-security .more-info-publications a:visited, .more-info-publications .field--name-field-community-card .field--name-field-url > a:visited, .field--name-field-community-card .more-info-publications .field--name-field-url > a:visited {
  color: #fff;
}
/* line 645, ../sass/components/_healthtopics.scss */
.more-info-publications .viewalllink:hover, .more-info-publications .promoted-content-container .flexItemText .field--name-field-url > a:hover, .promoted-content-container .flexItemText .more-info-publications .field--name-field-url > a:hover, .more-info-publications .contact-nhlbi--landing .field--name-field-directions-link a:hover, .contact-nhlbi--landing .field--name-field-directions-link .more-info-publications a:hover, .more-info-publications .isi-job-opportunities--landing .field--name-field-vacancies-link a:hover, .isi-job-opportunities--landing .field--name-field-vacancies-link .more-info-publications a:hover, .more-info-publications .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:hover, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .more-info-publications .field--name-field-promotional-link > a:hover, .more-info-publications .fixedDarkBluePane .field--name-field-traveling-and-security a:hover, .fixedDarkBluePane .field--name-field-traveling-and-security .more-info-publications a:hover, .more-info-publications .field--name-field-community-card .field--name-field-url > a:hover, .field--name-field-community-card .more-info-publications .field--name-field-url > a:hover {
  font-weight: normal;
}

/* line 654, ../sass/components/_healthtopics.scss */
.news-events-topical-section article .herobannertitle-grey > a:focus, .news-events-topical-section article .herobannertitle-grey > a:active {
  outline: #bf0d2e dotted 3px !important;
}
/* line 657, ../sass/components/_healthtopics.scss */
.news-events-topical-section article .herobannertitle-grey > a:focus span, .news-events-topical-section article .herobannertitle-grey > a:active span {
  outline: none !important;
}

/* line 667, ../sass/components/_healthtopics.scss */
.field--name-field-other-support .ui-accordion-header:focus > .field--name-field-panel-title {
  outline: none !important;
}

/* line 674, ../sass/components/_healthtopics.scss */
.node--type-health-topic.node--view-mode-full .bodytext, .node--type-health-topic.node--view-mode-full .darkGrayBodyText, .node--type-health-topic.node--view-mode-full .foa-expiration-date {
  overflow: visible;
}

/* line 681, ../sass/components/_healthtopics.scss */
.field--name-field-research-accordion h3:focus > .field--name-field-panel-title, .field--name-field-research-accordion .smaller-titled-cards .field--name-field-social-phrase-group-title:focus > .field--name-field-panel-title, .field--name-field-research-accordion .smaller-titled-cards .field--name-field-image-gallery-title:focus > .field--name-field-panel-title, .field--name-field-research-accordion .field--name-field-social-phrase-group-title:focus > .field--name-field-panel-title, .field--name-field-research-accordion .field--name-field-image-gallery-title:focus > .field--name-field-panel-title, .field--name-field-research-accordion h3:active > .field--name-field-panel-title, .field--name-field-research-accordion .smaller-titled-cards .field--name-field-social-phrase-group-title:active > .field--name-field-panel-title, .field--name-field-research-accordion .smaller-titled-cards .field--name-field-image-gallery-title:active > .field--name-field-panel-title, .field--name-field-research-accordion .field--name-field-social-phrase-group-title:active > .field--name-field-panel-title, .field--name-field-research-accordion .field--name-field-image-gallery-title:active > .field--name-field-panel-title {
  outline: none !important;
}

/* line 6, ../sass/components/_health_pro.scss */
.node--type-systematic-evidence-review.node--view-mode-full .supplemental-pages > h2, .node--type-systematic-evidence-review.node--view-mode-full .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .supplemental-pages > h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-systematic-evidence-review.node--view-mode-full .supplemental-pages > h1, .node--type-systematic-evidence-review.node--view-mode-full .supplemental-pages > .contact-method-label,
.node--type-systematic-evidence-review.node--view-mode-subscribe .supplemental-pages > h2,
.node--type-systematic-evidence-review.node--view-mode-subscribe .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .supplemental-pages > h1,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-systematic-evidence-review.node--view-mode-subscribe .supplemental-pages > h1,
.node--type-systematic-evidence-review.node--view-mode-subscribe .supplemental-pages > .contact-method-label,
.node--type-clinical-practice-guideline.node--view-mode-full .supplemental-pages > h2,
.node--type-clinical-practice-guideline.node--view-mode-full .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .supplemental-pages > h1,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-clinical-practice-guideline.node--view-mode-full .supplemental-pages > h1,
.node--type-clinical-practice-guideline.node--view-mode-full .supplemental-pages > .contact-method-label,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .supplemental-pages > h2,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .supplemental-pages > h1,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-clinical-practice-guideline.node--view-mode-subscribe .supplemental-pages > h1,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .supplemental-pages > .contact-method-label {
  margin-top: 2em;
}
/* line 10, ../sass/components/_health_pro.scss */
.node--type-systematic-evidence-review.node--view-mode-full .description h3, .node--type-systematic-evidence-review.node--view-mode-full .description .field--name-field-social-phrase-group-title, .node--type-systematic-evidence-review.node--view-mode-full .description .field--name-field-image-gallery-title,
.node--type-systematic-evidence-review.node--view-mode-subscribe .description h3,
.node--type-systematic-evidence-review.node--view-mode-subscribe .description .field--name-field-social-phrase-group-title,
.node--type-systematic-evidence-review.node--view-mode-subscribe .description .field--name-field-image-gallery-title,
.node--type-clinical-practice-guideline.node--view-mode-full .description h3,
.node--type-clinical-practice-guideline.node--view-mode-full .description .field--name-field-social-phrase-group-title,
.node--type-clinical-practice-guideline.node--view-mode-full .description .field--name-field-image-gallery-title,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .description h3,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .description .field--name-field-social-phrase-group-title,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .description .field--name-field-image-gallery-title {
  padding-left: 1.5em;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 15, ../sass/components/_health_pro.scss */
  .node--type-systematic-evidence-review.node--view-mode-full .phone-desktop-description,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .phone-desktop-description,
  .node--type-clinical-practice-guideline.node--view-mode-full .phone-desktop-description,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .phone-desktop-description {
    display: none;
  }
}
/* line 21, ../sass/components/_health_pro.scss */
.node--type-systematic-evidence-review.node--view-mode-full .tablet-description,
.node--type-systematic-evidence-review.node--view-mode-subscribe .tablet-description,
.node--type-clinical-practice-guideline.node--view-mode-full .tablet-description,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .tablet-description {
  display: none;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 21, ../sass/components/_health_pro.scss */
  .node--type-systematic-evidence-review.node--view-mode-full .tablet-description,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .tablet-description,
  .node--type-clinical-practice-guideline.node--view-mode-full .tablet-description,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .tablet-description {
    display: block;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 21, ../sass/components/_health_pro.scss */
  .node--type-systematic-evidence-review.node--view-mode-full .tablet-description,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .tablet-description,
  .node--type-clinical-practice-guideline.node--view-mode-full .tablet-description,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .tablet-description {
    margin: 1.5em 0;
  }
}
/* line 30, ../sass/components/_health_pro.scss */
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header {
  margin-bottom: 25px;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 32, ../sass/components/_health_pro.scss */
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .flexcontainer, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .related-ht-ser-container, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sfa-card, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-speaker,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-executives, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-card-field, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-advisory-committees, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contact-nhlbi-titleblock, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-cards, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-employment-opportunity-car, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .all-grants-foa-container,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-program-officers,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods, .node--type-individual-contact .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods,
  .node--type-division.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods,
  .node--type-division.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods,
  .node--type-branch.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods,
  .node--type-branch.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods,
  .node--type-general.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods,
  .node--type-general.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods,
  .node--type-health-education-initiative.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-committee .field--name-field-card-text, .node--type-committee .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-card-text, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-and-events--landing .landing-social, .news-and-events--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .landing-social, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sfa-cards, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .locationMap.contact-location-map-container, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .locationMap, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .grants-and-training-card-wrapper, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-division-card-wrapper, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .hei-tools-icon-card-wrapper, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-grants-and-training-card, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-division-card, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-tool-icon-card, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-promotional-card, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sv-promotional-cards, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .strategic-vision-titleblock, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .ppg-titleblock-wrapper, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .ppg-guidelines-card-wrapper, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-human-subject-cards, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-section-card, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-highlight-card, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .health-topic-teaser-container, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard, .about-nhlbi-our-mission-wrapper .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-leadership > .director-bioCard, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ, .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi,
  .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-health-professionals-nhlbi, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .healthEducationBlock .standard-teaser, .healthEducationBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .systematicEvidenceReviewsBlock .view-content, .systematicEvidenceReviewsBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content,
  .clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsAndFactSheetsBlock .view-content,
  .publicationsAndFactSheetsBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .rtFlexContainer, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page, .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-science-supplemental-page, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .researchTopicPublications, .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .researchTopicPublications, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard, .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.listTeaserCard, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser, .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.standard-teaser,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.newsEventsCard, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .esi-feature-card, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .featured-science-instance-teaser-container, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .sfa-teaser-container, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .training-opportunity-card .field--name-field-associated-people, .training-opportunity-card .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-associated-people, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-featured-training-opportun, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-career-stages, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-workforce-development-card, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-update.node--view-mode-executive-teaser, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-and-events-titleblock, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contact-box > .field--name-field-contact-methods, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .leadership-container, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership, .leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .branch-leadership-container, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership, .branch-leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications, .node--type-general .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt, .node--type-general .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-general-publications-rlt, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser, .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser, .node--type-general .field--name-field-related-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .objective-text-container, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .objective-list-container, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-goal-card, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .strategic-vision-landing-goals-wrapper, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper, .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .striped-container-wrapper, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container, .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .striped-container, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser.node--view-mode-short-teaser, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-awards, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .registerSocialContainer, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .eventdatesLocationType, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-article-container, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-header-container, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contacts-container .field--name-field-contacts, .contacts-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contacts, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsBox .field--name-field-related-publications, .publicationsBox .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-primary-featured-item, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-featured-items, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-health-topics-container, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-mission-areas-container, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-location-container, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-alumni, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container, .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications, .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .flexcontainer,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .related-ht-ser-container,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-card,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-speaker,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-executives,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-card-field,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-advisory-committees,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contact-nhlbi-titleblock,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-cards,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-employment-opportunity-car,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .all-grants-foa-container,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-program-officers,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods,
  .node--type-individual-contact .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods,
  .node--type-division.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods,
  .node--type-division.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods,
  .node--type-branch.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods,
  .node--type-branch.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods,
  .node--type-general.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods,
  .node--type-general.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods,
  .node--type-health-education-initiative.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-committee .field--name-field-card-text,
  .node--type-committee .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-card-text,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-and-events--landing .landing-social,
  .news-and-events--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .landing-social,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-cards,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .locationMap.contact-location-map-container,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .locationMap,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .grants-and-training-card-wrapper,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-division-card-wrapper,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .hei-tools-icon-card-wrapper,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-grants-and-training-card,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-division-card,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-tool-icon-card,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-promotional-card,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sv-promotional-cards,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .strategic-vision-titleblock,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .ppg-titleblock-wrapper,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .ppg-guidelines-card-wrapper,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-human-subject-cards,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-section-card,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-highlight-card,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .health-topic-teaser-container,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard,
  .about-nhlbi-our-mission-wrapper .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-leadership > .director-bioCard,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ,
  .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi,
  .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-professionals-nhlbi,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .healthEducationBlock .standard-teaser,
  .healthEducationBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .systematicEvidenceReviewsBlock .view-content,
  .systematicEvidenceReviewsBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content,
  .clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsAndFactSheetsBlock .view-content,
  .publicationsAndFactSheetsBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .rtFlexContainer,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page,
  .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-science-supplemental-page,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .researchTopicPublications,
  .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .researchTopicPublications,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.listTeaserCard,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.standard-teaser,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.newsEventsCard,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .esi-feature-card,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .featured-science-instance-teaser-container,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .sfa-teaser-container,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .training-opportunity-card .field--name-field-associated-people,
  .training-opportunity-card .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-associated-people,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-featured-training-opportun,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-career-stages,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-workforce-development-card,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-update.node--view-mode-executive-teaser,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-and-events-titleblock,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contact-box > .field--name-field-contact-methods,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .leadership-container,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership,
  .leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership,
  .branch-leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications,
  .node--type-general .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt,
  .node--type-general .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-general-publications-rlt,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser,
  .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser,
  .node--type-general .field--name-field-related-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .objective-text-container,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .objective-list-container,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-goal-card,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .strategic-vision-landing-goals-wrapper,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper,
  .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .striped-container-wrapper,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container,
  .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .striped-container,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser.node--view-mode-short-teaser,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-awards,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .registerSocialContainer,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .eventdatesLocationType,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-article-container,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-header-container,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contacts-container .field--name-field-contacts,
  .contacts-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contacts,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsBox .field--name-field-related-publications,
  .publicationsBox .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-primary-featured-item,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-featured-items,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-health-topics-container,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-mission-areas-container,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-location-container,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-alumni,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser,
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .flexcontainer,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .related-ht-ser-container,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sfa-card,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-speaker,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-executives,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-card-field,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-advisory-committees,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contact-nhlbi-titleblock,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-cards,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-employment-opportunity-car,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .all-grants-foa-container,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-program-officers,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods,
  .node--type-individual-contact .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods,
  .node--type-division.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods,
  .node--type-division.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods,
  .node--type-branch.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods,
  .node--type-branch.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods,
  .node--type-general.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods,
  .node--type-general.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods,
  .node--type-health-education-initiative.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-committee .field--name-field-card-text,
  .node--type-committee .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-card-text,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-and-events--landing .landing-social,
  .news-and-events--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .landing-social,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sfa-cards,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .locationMap.contact-location-map-container,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .locationMap,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .grants-and-training-card-wrapper,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-division-card-wrapper,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .hei-tools-icon-card-wrapper,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-grants-and-training-card,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-division-card,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-tool-icon-card,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-promotional-card,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sv-promotional-cards,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .strategic-vision-titleblock,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .ppg-titleblock-wrapper,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .ppg-guidelines-card-wrapper,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-human-subject-cards,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-section-card,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-highlight-card,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .health-topic-teaser-container,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard,
  .about-nhlbi-our-mission-wrapper .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-leadership > .director-bioCard,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-health-professionals-nhlbi,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .healthEducationBlock .standard-teaser,
  .healthEducationBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .systematicEvidenceReviewsBlock .view-content,
  .systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content,
  .clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsAndFactSheetsBlock .view-content,
  .publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .rtFlexContainer,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page,
  .node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-science-supplemental-page,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .researchTopicPublications,
  .node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .researchTopicPublications,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.listTeaserCard,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.standard-teaser,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.newsEventsCard,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .esi-feature-card,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .featured-science-instance-teaser-container,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .sfa-teaser-container,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .training-opportunity-card .field--name-field-associated-people,
  .training-opportunity-card .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-associated-people,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-featured-training-opportun,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-career-stages,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-workforce-development-card,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-update.node--view-mode-executive-teaser,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-and-events-titleblock,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contact-box > .field--name-field-contact-methods,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .leadership-container,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership,
  .leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .branch-leadership-container,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership,
  .branch-leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications,
  .node--type-general .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt,
  .node--type-general .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-general-publications-rlt,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser,
  .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser,
  .node--type-general .field--name-field-related-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .objective-text-container,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .objective-list-container,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-goal-card,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .strategic-vision-landing-goals-wrapper,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper,
  .node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .striped-container-wrapper,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container,
  .node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .striped-container,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser.node--view-mode-short-teaser,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-awards,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .registerSocialContainer,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .eventdatesLocationType,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-article-container,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-header-container,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contacts-container .field--name-field-contacts,
  .contacts-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contacts,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsBox .field--name-field-related-publications,
  .publicationsBox .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-primary-featured-item,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-featured-items,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-health-topics-container,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-mission-areas-container,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-location-container,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-alumni,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser,
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .flexcontainer,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .related-ht-ser-container,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-card,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-speaker,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-executives,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-card-field,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-advisory-committees,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contact-nhlbi-titleblock,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-cards,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-employment-opportunity-car,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .all-grants-foa-container,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-program-officers,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods,
  .node--type-individual-contact .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods,
  .node--type-division.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods,
  .node--type-division.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods,
  .node--type-branch.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods,
  .node--type-branch.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods,
  .node--type-general.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods,
  .node--type-general.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods,
  .node--type-health-education-initiative.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-committee .field--name-field-card-text,
  .node--type-committee .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-card-text,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-and-events--landing .landing-social,
  .news-and-events--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .landing-social,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-cards,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .locationMap.contact-location-map-container,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .locationMap,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .grants-and-training-card-wrapper,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-division-card-wrapper,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .hei-tools-icon-card-wrapper,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-grants-and-training-card,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-division-card,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-tool-icon-card,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-promotional-card,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sv-promotional-cards,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .strategic-vision-titleblock,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .ppg-titleblock-wrapper,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .ppg-guidelines-card-wrapper,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-human-subject-cards,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-section-card,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-highlight-card,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .health-topic-teaser-container,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard,
  .about-nhlbi-our-mission-wrapper .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-leadership > .director-bioCard,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-professionals-nhlbi,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .healthEducationBlock .standard-teaser,
  .healthEducationBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .systematicEvidenceReviewsBlock .view-content,
  .systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content,
  .clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsAndFactSheetsBlock .view-content,
  .publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .rtFlexContainer,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page,
  .node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-science-supplemental-page,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .researchTopicPublications,
  .node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .researchTopicPublications,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.listTeaserCard,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.standard-teaser,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.newsEventsCard,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .esi-feature-card,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .featured-science-instance-teaser-container,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .sfa-teaser-container,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .training-opportunity-card .field--name-field-associated-people,
  .training-opportunity-card .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-associated-people,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-featured-training-opportun,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-career-stages,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-workforce-development-card,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-update.node--view-mode-executive-teaser,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-and-events-titleblock,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contact-box > .field--name-field-contact-methods,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .leadership-container,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership,
  .leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership,
  .branch-leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications,
  .node--type-general .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt,
  .node--type-general .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-general-publications-rlt,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser,
  .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser,
  .node--type-general .field--name-field-related-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .objective-text-container,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .objective-list-container,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-goal-card,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .strategic-vision-landing-goals-wrapper,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper,
  .node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .striped-container-wrapper,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container,
  .node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .striped-container,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser.node--view-mode-short-teaser,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-awards,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .registerSocialContainer,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .eventdatesLocationType,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-article-container,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-header-container,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contacts-container .field--name-field-contacts,
  .contacts-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contacts,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsBox .field--name-field-related-publications,
  .publicationsBox .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-primary-featured-item,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-featured-items,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-health-topics-container,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-mission-areas-container,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-location-container,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-alumni,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser,
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser {
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    -o-align-items: flex-start;
    align-items: flex-start;
  }
}
/* line 36, ../sass/components/_health_pro.scss */
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .flexcontainer .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .related-ht-ser-container .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sfa-card .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-speaker .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-executives .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-card-field .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-advisory-committees .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contact-nhlbi-titleblock .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-cards .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .all-grants-foa-container .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-program-officers .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemImage, .node--type-individual-contact .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemImage,
.node--type-division.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImage,
.node--type-division.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemImage,
.node--type-branch.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImage,
.node--type-branch.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemImage,
.node--type-general.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImage,
.node--type-general.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemImage,
.node--type-health-education-initiative.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImage,
.node--type-health-education-initiative.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemImage, .node--type-committee .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-card-text .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-and-events--landing .landing-social .flexItemImage, .news-and-events--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .landing-social .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sfa-cards .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .locationMap.contact-location-map-container .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .locationMap .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .grants-and-training-card-wrapper .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-grants-and-training-card .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-division-card .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-tool-icon-card .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-promotional-card .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .strategic-vision-titleblock .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .ppg-titleblock-wrapper .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-human-subject-cards .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-section-card .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-highlight-card .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .health-topic-teaser-container .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImage, .about-nhlbi-our-mission-wrapper .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImage, .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImage,
.nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImage, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImage,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemImage, .healthEducationBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemImage, .systematicEvidenceReviewsBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemImage,
.clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemImage,
.publicationsAndFactSheetsBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .rtFlexContainer .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImage, .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-science-supplemental-page .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemImage, .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .researchTopicPublications .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemImage, .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.listTeaserCard .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImage, .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.standard-teaser .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImage,
.node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.newsEventsCard .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .esi-feature-card .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .featured-science-instance-teaser-container .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .sfa-teaser-container .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemImage, .training-opportunity-card .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-associated-people .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-featured-training-opportun .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-career-stages .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-workforce-development-card .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-and-events-titleblock .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .leadership-container .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImage, .leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .branch-leadership-container .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImage, .branch-leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemImage, .node--type-general .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemImage, .node--type-general .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-general-publications-rlt .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImage, .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImage, .node--type-general .field--name-field-related-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .objective-text-container .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .objective-list-container .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-goal-card .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemImage, .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .striped-container-wrapper .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemImage, .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .striped-container .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImage, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemImage,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImage, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-awards .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .registerSocialContainer .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .eventdatesLocationType .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-article-container .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-header-container .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemImage, .contacts-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contacts .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemImage, .publicationsBox .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-primary-featured-item .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-featured-items .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-health-topics-container .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-mission-areas-container .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-location-container .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-alumni .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemImage, .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemImage,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemImage, .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemImage,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImage, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImage,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .flexcontainer .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .related-ht-ser-container .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sfa-card .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-speaker .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-executives .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-card-field .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-advisory-committees .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contact-nhlbi-titleblock .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-cards .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .all-grants-foa-container .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-program-officers .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemImageHalf, .node--type-individual-contact .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemImageHalf,
.node--type-division.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageHalf,
.node--type-division.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemImageHalf,
.node--type-branch.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageHalf,
.node--type-branch.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemImageHalf,
.node--type-general.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageHalf,
.node--type-general.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemImageHalf,
.node--type-health-education-initiative.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageHalf,
.node--type-health-education-initiative.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemImageHalf, .node--type-committee .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-card-text .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-and-events--landing .landing-social .flexItemImageHalf, .news-and-events--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .landing-social .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sfa-cards .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .locationMap.contact-location-map-container .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .locationMap .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .grants-and-training-card-wrapper .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-grants-and-training-card .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-division-card .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-tool-icon-card .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-promotional-card .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .strategic-vision-titleblock .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .ppg-titleblock-wrapper .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-human-subject-cards .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-section-card .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-highlight-card .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .health-topic-teaser-container .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageHalf, .about-nhlbi-our-mission-wrapper .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageHalf, .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageHalf,
.nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageHalf, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageHalf,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemImageHalf, .healthEducationBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemImageHalf, .systematicEvidenceReviewsBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemImageHalf,
.clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemImageHalf,
.publicationsAndFactSheetsBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .rtFlexContainer .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageHalf, .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-science-supplemental-page .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemImageHalf, .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .researchTopicPublications .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemImageHalf, .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.listTeaserCard .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageHalf, .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.standard-teaser .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageHalf,
.node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.newsEventsCard .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .esi-feature-card .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .featured-science-instance-teaser-container .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .sfa-teaser-container .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemImageHalf, .training-opportunity-card .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-associated-people .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-featured-training-opportun .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-career-stages .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-workforce-development-card .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-and-events-titleblock .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .leadership-container .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageHalf, .leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .branch-leadership-container .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageHalf, .branch-leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemImageHalf, .node--type-general .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemImageHalf, .node--type-general .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-general-publications-rlt .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageHalf, .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageHalf, .node--type-general .field--name-field-related-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .objective-text-container .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .objective-list-container .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-goal-card .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemImageHalf, .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .striped-container-wrapper .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemImageHalf, .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .striped-container .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImageHalf, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemImageHalf,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageHalf, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-awards .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .registerSocialContainer .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .eventdatesLocationType .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-article-container .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-header-container .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemImageHalf, .contacts-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contacts .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemImageHalf, .publicationsBox .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-primary-featured-item .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-featured-items .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-health-topics-container .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-mission-areas-container .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-location-container .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-alumni .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemImageHalf, .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemImageHalf,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemImageHalf, .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemImageHalf,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageHalf, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageHalf,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .flexcontainer .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .related-ht-ser-container .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sfa-card .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-speaker .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-executives .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-card-field .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-advisory-committees .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contact-nhlbi-titleblock .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-cards .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .all-grants-foa-container .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-program-officers .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemImageTenth, .node--type-individual-contact .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemImageTenth,
.node--type-division.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageTenth,
.node--type-division.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemImageTenth,
.node--type-branch.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageTenth,
.node--type-branch.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemImageTenth,
.node--type-general.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageTenth,
.node--type-general.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemImageTenth,
.node--type-health-education-initiative.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageTenth,
.node--type-health-education-initiative.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemImageTenth, .node--type-committee .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-card-text .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-and-events--landing .landing-social .flexItemImageTenth, .news-and-events--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .landing-social .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sfa-cards .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .locationMap.contact-location-map-container .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .locationMap .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .grants-and-training-card-wrapper .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-grants-and-training-card .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-division-card .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-tool-icon-card .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-promotional-card .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .strategic-vision-titleblock .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .ppg-titleblock-wrapper .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-human-subject-cards .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-section-card .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-highlight-card .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .health-topic-teaser-container .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageTenth, .about-nhlbi-our-mission-wrapper .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageTenth, .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageTenth,
.nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageTenth, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageTenth,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemImageTenth, .healthEducationBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemImageTenth, .systematicEvidenceReviewsBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemImageTenth,
.clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemImageTenth,
.publicationsAndFactSheetsBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .rtFlexContainer .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageTenth, .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-science-supplemental-page .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemImageTenth, .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .researchTopicPublications .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemImageTenth, .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.listTeaserCard .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageTenth, .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.standard-teaser .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageTenth,
.node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.newsEventsCard .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .esi-feature-card .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .featured-science-instance-teaser-container .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .sfa-teaser-container .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemImageTenth, .training-opportunity-card .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-associated-people .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-featured-training-opportun .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-career-stages .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-workforce-development-card .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-and-events-titleblock .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .leadership-container .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageTenth, .leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .branch-leadership-container .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageTenth, .branch-leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemImageTenth, .node--type-general .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemImageTenth, .node--type-general .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-general-publications-rlt .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageTenth, .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageTenth, .node--type-general .field--name-field-related-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .objective-text-container .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .objective-list-container .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-goal-card .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemImageTenth, .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .striped-container-wrapper .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemImageTenth, .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .striped-container .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImageTenth, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemImageTenth,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageTenth, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-awards .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .registerSocialContainer .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .eventdatesLocationType .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-article-container .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-header-container .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemImageTenth, .contacts-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contacts .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemImageTenth, .publicationsBox .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-primary-featured-item .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-featured-items .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-health-topics-container .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-mission-areas-container .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-location-container .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-alumni .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemImageTenth, .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemImageTenth,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemImageTenth, .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemImageTenth,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageTenth, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageTenth,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .flexcontainer .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .related-ht-ser-container .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sfa-card .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-speaker .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-executives .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-card-field .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-advisory-committees .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contact-nhlbi-titleblock .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-cards .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .all-grants-foa-container .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-program-officers .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemImageFourth, .node--type-individual-contact .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemImageFourth,
.node--type-division.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageFourth,
.node--type-division.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemImageFourth,
.node--type-branch.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageFourth,
.node--type-branch.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemImageFourth,
.node--type-general.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageFourth,
.node--type-general.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemImageFourth,
.node--type-health-education-initiative.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageFourth,
.node--type-health-education-initiative.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemImageFourth, .node--type-committee .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-card-text .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-and-events--landing .landing-social .flexItemImageFourth, .news-and-events--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .landing-social .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sfa-cards .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .locationMap.contact-location-map-container .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .locationMap .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .grants-and-training-card-wrapper .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-grants-and-training-card .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-division-card .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-tool-icon-card .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-promotional-card .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .strategic-vision-titleblock .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .ppg-titleblock-wrapper .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-human-subject-cards .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-section-card .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-highlight-card .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .health-topic-teaser-container .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageFourth, .about-nhlbi-our-mission-wrapper .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageFourth, .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageFourth,
.nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageFourth, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageFourth,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemImageFourth, .healthEducationBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemImageFourth, .systematicEvidenceReviewsBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemImageFourth,
.clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemImageFourth,
.publicationsAndFactSheetsBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .rtFlexContainer .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageFourth, .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-science-supplemental-page .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemImageFourth, .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .researchTopicPublications .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemImageFourth, .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.listTeaserCard .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageFourth, .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.standard-teaser .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageFourth,
.node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.newsEventsCard .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .esi-feature-card .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .featured-science-instance-teaser-container .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .sfa-teaser-container .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemImageFourth, .training-opportunity-card .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-associated-people .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-featured-training-opportun .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-career-stages .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-workforce-development-card .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-and-events-titleblock .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .leadership-container .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageFourth, .leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .branch-leadership-container .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageFourth, .branch-leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemImageFourth, .node--type-general .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemImageFourth, .node--type-general .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-general-publications-rlt .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageFourth, .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageFourth, .node--type-general .field--name-field-related-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .objective-text-container .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .objective-list-container .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-goal-card .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemImageFourth, .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .striped-container-wrapper .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemImageFourth, .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .striped-container .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImageFourth, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemImageFourth,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageFourth, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-awards .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .registerSocialContainer .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .eventdatesLocationType .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-article-container .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-header-container .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemImageFourth, .contacts-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contacts .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemImageFourth, .publicationsBox .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-primary-featured-item .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-featured-items .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-health-topics-container .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-mission-areas-container .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-location-container .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-alumni .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemImageFourth, .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemImageFourth,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemImageFourth, .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemImageFourth,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageFourth, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageFourth,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .flexcontainer .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .related-ht-ser-container .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sfa-card .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-speaker .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-executives .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-card-field .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-advisory-committees .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contact-nhlbi-titleblock .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-cards .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .all-grants-foa-container .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-program-officers .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemImageThird, .node--type-individual-contact .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemImageThird,
.node--type-division.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThird,
.node--type-division.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemImageThird,
.node--type-branch.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThird,
.node--type-branch.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemImageThird,
.node--type-general.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThird,
.node--type-general.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemImageThird,
.node--type-health-education-initiative.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThird,
.node--type-health-education-initiative.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemImageThird, .node--type-committee .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-card-text .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-and-events--landing .landing-social .flexItemImageThird, .news-and-events--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .landing-social .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sfa-cards .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .locationMap.contact-location-map-container .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .locationMap .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .grants-and-training-card-wrapper .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-grants-and-training-card .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-division-card .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-tool-icon-card .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-promotional-card .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .strategic-vision-titleblock .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .ppg-titleblock-wrapper .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-human-subject-cards .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-section-card .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-highlight-card .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .health-topic-teaser-container .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageThird, .about-nhlbi-our-mission-wrapper .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageThird, .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageThird,
.nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageThird, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageThird,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemImageThird, .healthEducationBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemImageThird, .systematicEvidenceReviewsBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemImageThird,
.clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemImageThird,
.publicationsAndFactSheetsBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .rtFlexContainer .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageThird, .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-science-supplemental-page .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemImageThird, .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .researchTopicPublications .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemImageThird, .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.listTeaserCard .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageThird, .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.standard-teaser .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageThird,
.node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.newsEventsCard .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .esi-feature-card .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .featured-science-instance-teaser-container .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .sfa-teaser-container .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemImageThird, .training-opportunity-card .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-associated-people .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-featured-training-opportun .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-career-stages .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-workforce-development-card .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-and-events-titleblock .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .leadership-container .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageThird, .leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .branch-leadership-container .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageThird, .branch-leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemImageThird, .node--type-general .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemImageThird, .node--type-general .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-general-publications-rlt .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageThird, .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageThird, .node--type-general .field--name-field-related-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .objective-text-container .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .objective-list-container .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-goal-card .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemImageThird, .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .striped-container-wrapper .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemImageThird, .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .striped-container .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImageThird, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemImageThird,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageThird, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-awards .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .registerSocialContainer .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .eventdatesLocationType .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-article-container .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-header-container .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemImageThird, .contacts-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contacts .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemImageThird, .publicationsBox .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-primary-featured-item .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-featured-items .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-health-topics-container .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-mission-areas-container .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-location-container .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-alumni .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemImageThird, .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemImageThird,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemImageThird, .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemImageThird,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageThird, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageThird,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .flexcontainer .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .related-ht-ser-container .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sfa-card .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-speaker .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-executives .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-card-field .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-advisory-committees .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contact-nhlbi-titleblock .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-cards .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .all-grants-foa-container .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-program-officers .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemImageThirdHalf, .node--type-individual-contact .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-division.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-division.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-branch.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-branch.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-general.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-general.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-health-education-initiative.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-health-education-initiative.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemImageThirdHalf, .node--type-committee .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-card-text .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-and-events--landing .landing-social .flexItemImageThirdHalf, .news-and-events--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .landing-social .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sfa-cards .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .locationMap.contact-location-map-container .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .locationMap .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .grants-and-training-card-wrapper .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-grants-and-training-card .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-division-card .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-tool-icon-card .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-promotional-card .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .strategic-vision-titleblock .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .ppg-titleblock-wrapper .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-human-subject-cards .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-section-card .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-highlight-card .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .health-topic-teaser-container .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageThirdHalf, .about-nhlbi-our-mission-wrapper .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageThirdHalf, .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageThirdHalf,
.nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageThirdHalf, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageThirdHalf,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemImageThirdHalf, .healthEducationBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemImageThirdHalf, .systematicEvidenceReviewsBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemImageThirdHalf,
.clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemImageThirdHalf,
.publicationsAndFactSheetsBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .rtFlexContainer .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageThirdHalf, .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-science-supplemental-page .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemImageThirdHalf, .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .researchTopicPublications .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemImageThirdHalf, .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.listTeaserCard .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageThirdHalf, .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.standard-teaser .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageThirdHalf,
.node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.newsEventsCard .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .esi-feature-card .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .featured-science-instance-teaser-container .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .sfa-teaser-container .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemImageThirdHalf, .training-opportunity-card .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-associated-people .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-featured-training-opportun .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-career-stages .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-workforce-development-card .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-and-events-titleblock .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .leadership-container .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageThirdHalf, .leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .branch-leadership-container .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageThirdHalf, .branch-leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemImageThirdHalf, .node--type-general .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemImageThirdHalf, .node--type-general .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-general-publications-rlt .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageThirdHalf, .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageThirdHalf, .node--type-general .field--name-field-related-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .objective-text-container .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .objective-list-container .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-goal-card .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemImageThirdHalf, .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .striped-container-wrapper .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemImageThirdHalf, .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .striped-container .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImageThirdHalf, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemImageThirdHalf,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageThirdHalf, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-awards .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .registerSocialContainer .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .eventdatesLocationType .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-article-container .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-header-container .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemImageThirdHalf, .contacts-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contacts .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemImageThirdHalf, .publicationsBox .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-primary-featured-item .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-featured-items .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-health-topics-container .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-mission-areas-container .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-location-container .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-alumni .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemImageThirdHalf, .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemImageThirdHalf,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemImageThirdHalf, .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemImageThirdHalf,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageThirdHalf, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageThirdHalf,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .flexcontainer .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .related-ht-ser-container .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sfa-card .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-speaker .hero-image,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-executives .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-card-field .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-advisory-committees .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contact-nhlbi-titleblock .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-cards .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-employment-opportunity-car .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .all-grants-foa-container .hero-image,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-program-officers .hero-image,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .hero-image,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .hero-image, .node--type-individual-contact .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .hero-image,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .hero-image,
.node--type-division.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .hero-image,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .hero-image,
.node--type-division.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .hero-image,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .hero-image,
.node--type-branch.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .hero-image,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .hero-image,
.node--type-branch.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .hero-image,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .hero-image,
.node--type-general.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .hero-image,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .hero-image,
.node--type-general.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .hero-image,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .hero-image,
.node--type-health-education-initiative.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .hero-image,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .hero-image,
.node--type-health-education-initiative.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-committee .field--name-field-card-text .hero-image, .node--type-committee .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-card-text .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-and-events--landing .landing-social .hero-image, .news-and-events--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .landing-social .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sfa-cards .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .locationMap.contact-location-map-container .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .locationMap .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .grants-and-training-card-wrapper .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-division-card-wrapper .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .hei-tools-icon-card-wrapper .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-grants-and-training-card .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-division-card .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-tool-icon-card .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-promotional-card .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sv-promotional-cards .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .strategic-vision-titleblock .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .ppg-titleblock-wrapper .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .ppg-guidelines-card-wrapper .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-human-subject-cards .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-section-card .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-highlight-card .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .health-topic-teaser-container .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .hero-image, .about-nhlbi-our-mission-wrapper .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-leadership > .director-bioCard .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .hero-image, .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .hero-image,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .hero-image,
.nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-health-professionals-nhlbi .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .hero-image, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .hero-image,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .hero-image,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .hero-image,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .healthEducationBlock .standard-teaser .hero-image, .healthEducationBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .hero-image, .systematicEvidenceReviewsBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content .hero-image,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .hero-image,
.clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content .hero-image,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .hero-image,
.publicationsAndFactSheetsBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .rtFlexContainer .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .hero-image, .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-science-supplemental-page .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .researchTopicPublications .hero-image, .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .researchTopicPublications .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .hero-image, .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.listTeaserCard .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .hero-image, .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.standard-teaser .hero-image,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .hero-image,
.node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.newsEventsCard .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .esi-feature-card .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .featured-science-instance-teaser-container .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .sfa-teaser-container .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .hero-image, .training-opportunity-card .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-associated-people .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-featured-training-opportun .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-career-stages .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-workforce-development-card .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-and-events-titleblock .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contact-box > .field--name-field-contact-methods .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .leadership-container .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .hero-image, .leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .branch-leadership-container .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .hero-image, .branch-leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications .hero-image, .node--type-general .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .hero-image, .node--type-general .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-general-publications-rlt .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .hero-image, .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .hero-image, .node--type-general .field--name-field-related-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .objective-text-container .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .objective-list-container .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-goal-card .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .strategic-vision-landing-goals-wrapper .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .hero-image, .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .striped-container-wrapper .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container .hero-image, .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .striped-container .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .hero-image, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article .hero-image,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .hero-image,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .hero-image, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-awards .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .registerSocialContainer .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .eventdatesLocationType .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-article-container .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .hero-image,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .hero-image,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .hero-image,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .hero-image,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .hero-image,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .hero-image,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-header-container .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contacts-container .field--name-field-contacts .hero-image, .contacts-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contacts .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsBox .field--name-field-related-publications .hero-image, .publicationsBox .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-primary-featured-item .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-featured-items .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-health-topics-container .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-mission-areas-container .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-location-container .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-alumni .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .hero-image, .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .hero-image,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .hero-image,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .hero-image, .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .hero-image,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .hero-image,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .hero-image, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .hero-image,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .hero-image,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .flexcontainer .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .related-ht-ser-container .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-card .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-speaker .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-executives .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-card-field .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-advisory-committees .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contact-nhlbi-titleblock .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-cards .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .all-grants-foa-container .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-program-officers .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemImage,
.node--type-individual-contact .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemImage,
.node--type-division.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImage,
.node--type-division.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemImage,
.node--type-branch.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImage,
.node--type-branch.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemImage,
.node--type-general.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImage,
.node--type-general.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemImage,
.node--type-health-education-initiative.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImage,
.node--type-health-education-initiative.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemImage,
.node--type-committee .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-card-text .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-and-events--landing .landing-social .flexItemImage,
.news-and-events--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .landing-social .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-cards .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .locationMap.contact-location-map-container .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .locationMap .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .grants-and-training-card-wrapper .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-grants-and-training-card .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-division-card .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-tool-icon-card .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-promotional-card .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .strategic-vision-titleblock .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .ppg-titleblock-wrapper .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-human-subject-cards .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-section-card .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-highlight-card .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .health-topic-teaser-container .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImage,
.about-nhlbi-our-mission-wrapper .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImage,
.nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImage,
.nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImage,
.nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImage,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemImage,
.healthEducationBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemImage,
.systematicEvidenceReviewsBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemImage,
.clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemImage,
.publicationsAndFactSheetsBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .rtFlexContainer .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImage,
.node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-science-supplemental-page .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemImage,
.node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .researchTopicPublications .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemImage,
.node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.listTeaserCard .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImage,
.node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.standard-teaser .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImage,
.node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.newsEventsCard .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .esi-feature-card .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .featured-science-instance-teaser-container .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .sfa-teaser-container .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemImage,
.training-opportunity-card .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-associated-people .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-featured-training-opportun .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-career-stages .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-workforce-development-card .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-and-events-titleblock .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .leadership-container .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImage,
.leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImage,
.branch-leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemImage,
.node--type-general .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemImage,
.node--type-general .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-general-publications-rlt .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImage,
.node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImage,
.node--type-general .field--name-field-related-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .objective-text-container .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .objective-list-container .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-goal-card .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemImage,
.node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .striped-container-wrapper .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemImage,
.node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .striped-container .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImage,
.node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemImage,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImage,
.node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-awards .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .registerSocialContainer .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .eventdatesLocationType .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-article-container .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-header-container .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemImage,
.contacts-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contacts .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemImage,
.publicationsBox .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-primary-featured-item .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-featured-items .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-health-topics-container .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-mission-areas-container .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-location-container .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-alumni .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemImage,
.node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemImage,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemImage,
.node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemImage,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImage,
.node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImage,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImage,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .flexcontainer .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .related-ht-ser-container .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-card .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-speaker .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-executives .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-card-field .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-advisory-committees .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contact-nhlbi-titleblock .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-cards .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .all-grants-foa-container .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-program-officers .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemImageHalf,
.node--type-individual-contact .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemImageHalf,
.node--type-division.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageHalf,
.node--type-division.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemImageHalf,
.node--type-branch.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageHalf,
.node--type-branch.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemImageHalf,
.node--type-general.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageHalf,
.node--type-general.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemImageHalf,
.node--type-health-education-initiative.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageHalf,
.node--type-health-education-initiative.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemImageHalf,
.node--type-committee .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-card-text .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-and-events--landing .landing-social .flexItemImageHalf,
.news-and-events--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .landing-social .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-cards .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .locationMap.contact-location-map-container .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .locationMap .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .grants-and-training-card-wrapper .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-grants-and-training-card .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-division-card .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-tool-icon-card .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-promotional-card .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .strategic-vision-titleblock .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .ppg-titleblock-wrapper .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-human-subject-cards .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-section-card .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-highlight-card .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .health-topic-teaser-container .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageHalf,
.about-nhlbi-our-mission-wrapper .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageHalf,
.nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageHalf,
.nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageHalf,
.nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageHalf,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemImageHalf,
.healthEducationBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemImageHalf,
.systematicEvidenceReviewsBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemImageHalf,
.clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemImageHalf,
.publicationsAndFactSheetsBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .rtFlexContainer .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageHalf,
.node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-science-supplemental-page .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemImageHalf,
.node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .researchTopicPublications .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemImageHalf,
.node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.listTeaserCard .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageHalf,
.node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.standard-teaser .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageHalf,
.node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.newsEventsCard .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .esi-feature-card .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .featured-science-instance-teaser-container .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .sfa-teaser-container .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemImageHalf,
.training-opportunity-card .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-associated-people .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-featured-training-opportun .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-career-stages .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-workforce-development-card .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-and-events-titleblock .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .leadership-container .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageHalf,
.leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageHalf,
.branch-leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemImageHalf,
.node--type-general .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemImageHalf,
.node--type-general .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-general-publications-rlt .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageHalf,
.node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageHalf,
.node--type-general .field--name-field-related-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .objective-text-container .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .objective-list-container .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-goal-card .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemImageHalf,
.node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .striped-container-wrapper .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemImageHalf,
.node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .striped-container .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImageHalf,
.node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemImageHalf,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageHalf,
.node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-awards .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .registerSocialContainer .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .eventdatesLocationType .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-article-container .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-header-container .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemImageHalf,
.contacts-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contacts .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemImageHalf,
.publicationsBox .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-primary-featured-item .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-featured-items .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-health-topics-container .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-mission-areas-container .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-location-container .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-alumni .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemImageHalf,
.node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemImageHalf,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemImageHalf,
.node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemImageHalf,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageHalf,
.node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageHalf,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .flexcontainer .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .related-ht-ser-container .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-card .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-speaker .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-executives .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-card-field .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-advisory-committees .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contact-nhlbi-titleblock .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-cards .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .all-grants-foa-container .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-program-officers .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemImageTenth,
.node--type-individual-contact .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemImageTenth,
.node--type-division.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageTenth,
.node--type-division.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemImageTenth,
.node--type-branch.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageTenth,
.node--type-branch.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemImageTenth,
.node--type-general.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageTenth,
.node--type-general.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemImageTenth,
.node--type-health-education-initiative.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageTenth,
.node--type-health-education-initiative.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemImageTenth,
.node--type-committee .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-card-text .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-and-events--landing .landing-social .flexItemImageTenth,
.news-and-events--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .landing-social .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-cards .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .locationMap.contact-location-map-container .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .locationMap .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .grants-and-training-card-wrapper .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-grants-and-training-card .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-division-card .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-tool-icon-card .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-promotional-card .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .strategic-vision-titleblock .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .ppg-titleblock-wrapper .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-human-subject-cards .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-section-card .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-highlight-card .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .health-topic-teaser-container .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageTenth,
.about-nhlbi-our-mission-wrapper .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageTenth,
.nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageTenth,
.nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageTenth,
.nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageTenth,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemImageTenth,
.healthEducationBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemImageTenth,
.systematicEvidenceReviewsBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemImageTenth,
.clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemImageTenth,
.publicationsAndFactSheetsBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .rtFlexContainer .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageTenth,
.node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-science-supplemental-page .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemImageTenth,
.node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .researchTopicPublications .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemImageTenth,
.node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.listTeaserCard .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageTenth,
.node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.standard-teaser .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageTenth,
.node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.newsEventsCard .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .esi-feature-card .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .featured-science-instance-teaser-container .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .sfa-teaser-container .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemImageTenth,
.training-opportunity-card .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-associated-people .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-featured-training-opportun .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-career-stages .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-workforce-development-card .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-and-events-titleblock .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .leadership-container .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageTenth,
.leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageTenth,
.branch-leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemImageTenth,
.node--type-general .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemImageTenth,
.node--type-general .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-general-publications-rlt .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageTenth,
.node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageTenth,
.node--type-general .field--name-field-related-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .objective-text-container .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .objective-list-container .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-goal-card .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemImageTenth,
.node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .striped-container-wrapper .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemImageTenth,
.node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .striped-container .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImageTenth,
.node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemImageTenth,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageTenth,
.node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-awards .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .registerSocialContainer .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .eventdatesLocationType .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-article-container .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-header-container .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemImageTenth,
.contacts-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contacts .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemImageTenth,
.publicationsBox .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-primary-featured-item .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-featured-items .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-health-topics-container .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-mission-areas-container .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-location-container .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-alumni .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemImageTenth,
.node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemImageTenth,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemImageTenth,
.node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemImageTenth,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageTenth,
.node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageTenth,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageTenth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .flexcontainer .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .related-ht-ser-container .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-card .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-speaker .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-executives .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-card-field .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-advisory-committees .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contact-nhlbi-titleblock .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-cards .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .all-grants-foa-container .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-program-officers .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemImageFourth,
.node--type-individual-contact .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemImageFourth,
.node--type-division.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageFourth,
.node--type-division.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemImageFourth,
.node--type-branch.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageFourth,
.node--type-branch.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemImageFourth,
.node--type-general.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageFourth,
.node--type-general.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemImageFourth,
.node--type-health-education-initiative.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageFourth,
.node--type-health-education-initiative.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemImageFourth,
.node--type-committee .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-card-text .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-and-events--landing .landing-social .flexItemImageFourth,
.news-and-events--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .landing-social .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-cards .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .locationMap.contact-location-map-container .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .locationMap .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .grants-and-training-card-wrapper .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-grants-and-training-card .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-division-card .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-tool-icon-card .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-promotional-card .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .strategic-vision-titleblock .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .ppg-titleblock-wrapper .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-human-subject-cards .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-section-card .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-highlight-card .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .health-topic-teaser-container .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageFourth,
.about-nhlbi-our-mission-wrapper .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageFourth,
.nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageFourth,
.nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageFourth,
.nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageFourth,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemImageFourth,
.healthEducationBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemImageFourth,
.systematicEvidenceReviewsBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemImageFourth,
.clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemImageFourth,
.publicationsAndFactSheetsBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .rtFlexContainer .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageFourth,
.node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-science-supplemental-page .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemImageFourth,
.node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .researchTopicPublications .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemImageFourth,
.node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.listTeaserCard .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageFourth,
.node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.standard-teaser .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageFourth,
.node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.newsEventsCard .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .esi-feature-card .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .featured-science-instance-teaser-container .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .sfa-teaser-container .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemImageFourth,
.training-opportunity-card .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-associated-people .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-featured-training-opportun .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-career-stages .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-workforce-development-card .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-and-events-titleblock .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .leadership-container .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageFourth,
.leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageFourth,
.branch-leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemImageFourth,
.node--type-general .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemImageFourth,
.node--type-general .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-general-publications-rlt .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageFourth,
.node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageFourth,
.node--type-general .field--name-field-related-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .objective-text-container .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .objective-list-container .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-goal-card .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemImageFourth,
.node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .striped-container-wrapper .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemImageFourth,
.node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .striped-container .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImageFourth,
.node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemImageFourth,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageFourth,
.node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-awards .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .registerSocialContainer .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .eventdatesLocationType .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-article-container .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-header-container .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemImageFourth,
.contacts-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contacts .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemImageFourth,
.publicationsBox .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-primary-featured-item .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-featured-items .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-health-topics-container .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-mission-areas-container .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-location-container .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-alumni .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemImageFourth,
.node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemImageFourth,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemImageFourth,
.node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemImageFourth,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageFourth,
.node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageFourth,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageFourth,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .flexcontainer .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .related-ht-ser-container .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-card .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-speaker .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-executives .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-card-field .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-advisory-committees .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contact-nhlbi-titleblock .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-cards .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .all-grants-foa-container .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-program-officers .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemImageThird,
.node--type-individual-contact .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemImageThird,
.node--type-division.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThird,
.node--type-division.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemImageThird,
.node--type-branch.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThird,
.node--type-branch.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemImageThird,
.node--type-general.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThird,
.node--type-general.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemImageThird,
.node--type-health-education-initiative.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThird,
.node--type-health-education-initiative.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemImageThird,
.node--type-committee .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-card-text .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-and-events--landing .landing-social .flexItemImageThird,
.news-and-events--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .landing-social .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-cards .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .locationMap.contact-location-map-container .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .locationMap .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .grants-and-training-card-wrapper .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-grants-and-training-card .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-division-card .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-tool-icon-card .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-promotional-card .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .strategic-vision-titleblock .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .ppg-titleblock-wrapper .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-human-subject-cards .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-section-card .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-highlight-card .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .health-topic-teaser-container .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageThird,
.about-nhlbi-our-mission-wrapper .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageThird,
.nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageThird,
.nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageThird,
.nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageThird,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemImageThird,
.healthEducationBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemImageThird,
.systematicEvidenceReviewsBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemImageThird,
.clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemImageThird,
.publicationsAndFactSheetsBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .rtFlexContainer .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageThird,
.node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-science-supplemental-page .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemImageThird,
.node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .researchTopicPublications .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemImageThird,
.node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.listTeaserCard .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageThird,
.node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.standard-teaser .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageThird,
.node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.newsEventsCard .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .esi-feature-card .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .featured-science-instance-teaser-container .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .sfa-teaser-container .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemImageThird,
.training-opportunity-card .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-associated-people .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-featured-training-opportun .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-career-stages .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-workforce-development-card .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-and-events-titleblock .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .leadership-container .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageThird,
.leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageThird,
.branch-leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemImageThird,
.node--type-general .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemImageThird,
.node--type-general .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-general-publications-rlt .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageThird,
.node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageThird,
.node--type-general .field--name-field-related-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .objective-text-container .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .objective-list-container .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-goal-card .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemImageThird,
.node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .striped-container-wrapper .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemImageThird,
.node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .striped-container .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImageThird,
.node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemImageThird,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageThird,
.node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-awards .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .registerSocialContainer .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .eventdatesLocationType .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-article-container .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-header-container .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemImageThird,
.contacts-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contacts .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemImageThird,
.publicationsBox .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-primary-featured-item .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-featured-items .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-health-topics-container .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-mission-areas-container .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-location-container .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-alumni .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemImageThird,
.node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemImageThird,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemImageThird,
.node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemImageThird,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageThird,
.node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageThird,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageThird,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .flexcontainer .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .related-ht-ser-container .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-card .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-speaker .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-executives .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-card-field .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-advisory-committees .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contact-nhlbi-titleblock .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-cards .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .all-grants-foa-container .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-program-officers .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-individual-contact .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-division.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-division.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-branch.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-branch.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-general.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-general.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-health-education-initiative.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-health-education-initiative.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemImageThirdHalf,
.node--type-committee .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-card-text .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-and-events--landing .landing-social .flexItemImageThirdHalf,
.news-and-events--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .landing-social .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-cards .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .locationMap.contact-location-map-container .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .locationMap .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .grants-and-training-card-wrapper .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-grants-and-training-card .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-division-card .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-tool-icon-card .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-promotional-card .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .strategic-vision-titleblock .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .ppg-titleblock-wrapper .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-human-subject-cards .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-section-card .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-highlight-card .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .health-topic-teaser-container .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageThirdHalf,
.about-nhlbi-our-mission-wrapper .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageThirdHalf,
.nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageThirdHalf,
.nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageThirdHalf,
.nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageThirdHalf,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemImageThirdHalf,
.healthEducationBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemImageThirdHalf,
.systematicEvidenceReviewsBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemImageThirdHalf,
.clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemImageThirdHalf,
.publicationsAndFactSheetsBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .rtFlexContainer .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageThirdHalf,
.node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-science-supplemental-page .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemImageThirdHalf,
.node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .researchTopicPublications .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemImageThirdHalf,
.node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.listTeaserCard .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageThirdHalf,
.node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.standard-teaser .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageThirdHalf,
.node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.newsEventsCard .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .esi-feature-card .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .featured-science-instance-teaser-container .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .sfa-teaser-container .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemImageThirdHalf,
.training-opportunity-card .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-associated-people .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-featured-training-opportun .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-career-stages .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-workforce-development-card .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-and-events-titleblock .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .leadership-container .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageThirdHalf,
.leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageThirdHalf,
.branch-leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemImageThirdHalf,
.node--type-general .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemImageThirdHalf,
.node--type-general .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-general-publications-rlt .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageThirdHalf,
.node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageThirdHalf,
.node--type-general .field--name-field-related-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .objective-text-container .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .objective-list-container .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-goal-card .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemImageThirdHalf,
.node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .striped-container-wrapper .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemImageThirdHalf,
.node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .striped-container .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImageThirdHalf,
.node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemImageThirdHalf,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageThirdHalf,
.node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-awards .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .registerSocialContainer .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .eventdatesLocationType .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-article-container .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-header-container .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemImageThirdHalf,
.contacts-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contacts .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemImageThirdHalf,
.publicationsBox .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-primary-featured-item .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-featured-items .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-health-topics-container .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-mission-areas-container .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-location-container .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-alumni .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemImageThirdHalf,
.node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemImageThirdHalf,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemImageThirdHalf,
.node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemImageThirdHalf,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageThirdHalf,
.node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageThirdHalf,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageThirdHalf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .flexcontainer .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .related-ht-ser-container .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-card .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-speaker .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-executives .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-card-field .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-advisory-committees .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contact-nhlbi-titleblock .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-cards .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-employment-opportunity-car .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .all-grants-foa-container .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-program-officers .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .hero-image,
.node--type-individual-contact .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .hero-image,
.node--type-division.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .hero-image,
.node--type-division.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .hero-image,
.node--type-branch.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .hero-image,
.node--type-branch.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .hero-image,
.node--type-general.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .hero-image,
.node--type-general.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .hero-image,
.node--type-health-education-initiative.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .hero-image,
.node--type-health-education-initiative.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-committee .field--name-field-card-text .hero-image,
.node--type-committee .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-card-text .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-and-events--landing .landing-social .hero-image,
.news-and-events--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .landing-social .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-cards .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .locationMap.contact-location-map-container .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .locationMap .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .grants-and-training-card-wrapper .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-division-card-wrapper .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .hei-tools-icon-card-wrapper .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-grants-and-training-card .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-division-card .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-tool-icon-card .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-promotional-card .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sv-promotional-cards .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .strategic-vision-titleblock .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .ppg-titleblock-wrapper .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .ppg-guidelines-card-wrapper .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-human-subject-cards .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-section-card .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-highlight-card .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .health-topic-teaser-container .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .hero-image,
.about-nhlbi-our-mission-wrapper .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-leadership > .director-bioCard .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .hero-image,
.nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .hero-image,
.nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-professionals-nhlbi .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .hero-image,
.nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .hero-image,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .healthEducationBlock .standard-teaser .hero-image,
.healthEducationBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .hero-image,
.systematicEvidenceReviewsBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .hero-image,
.clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .hero-image,
.publicationsAndFactSheetsBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .rtFlexContainer .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .hero-image,
.node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-science-supplemental-page .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .researchTopicPublications .hero-image,
.node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .researchTopicPublications .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .hero-image,
.node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.listTeaserCard .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .hero-image,
.node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.standard-teaser .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .hero-image,
.node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.newsEventsCard .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .esi-feature-card .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .featured-science-instance-teaser-container .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .sfa-teaser-container .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .hero-image,
.training-opportunity-card .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-associated-people .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-featured-training-opportun .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-career-stages .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-workforce-development-card .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-and-events-titleblock .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contact-box > .field--name-field-contact-methods .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .leadership-container .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .hero-image,
.leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .hero-image,
.branch-leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications .hero-image,
.node--type-general .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .hero-image,
.node--type-general .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-general-publications-rlt .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .hero-image,
.node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .hero-image,
.node--type-general .field--name-field-related-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .objective-text-container .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .objective-list-container .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-goal-card .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .strategic-vision-landing-goals-wrapper .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .hero-image,
.node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .striped-container-wrapper .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container .hero-image,
.node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .striped-container .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .hero-image,
.node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .hero-image,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .hero-image,
.node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-awards .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .registerSocialContainer .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .eventdatesLocationType .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-article-container .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-header-container .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contacts-container .field--name-field-contacts .hero-image,
.contacts-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contacts .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsBox .field--name-field-related-publications .hero-image,
.publicationsBox .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-primary-featured-item .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-featured-items .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-health-topics-container .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-mission-areas-container .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-location-container .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-alumni .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .hero-image,
.node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .hero-image,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .hero-image,
.node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .hero-image,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .hero-image,
.node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .hero-image,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .hero-image,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .flexcontainer .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .related-ht-ser-container .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sfa-card .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-speaker .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-executives .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-card-field .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-advisory-committees .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contact-nhlbi-titleblock .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-cards .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .all-grants-foa-container .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-program-officers .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemImage,
.node--type-individual-contact .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemImage,
.node--type-division.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImage,
.node--type-division.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemImage,
.node--type-branch.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImage,
.node--type-branch.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemImage,
.node--type-general.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImage,
.node--type-general.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemImage,
.node--type-health-education-initiative.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImage,
.node--type-health-education-initiative.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemImage,
.node--type-committee .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-card-text .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-and-events--landing .landing-social .flexItemImage,
.news-and-events--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .landing-social .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sfa-cards .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .locationMap.contact-location-map-container .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .locationMap .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .grants-and-training-card-wrapper .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-grants-and-training-card .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-division-card .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-tool-icon-card .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-promotional-card .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .strategic-vision-titleblock .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .ppg-titleblock-wrapper .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-human-subject-cards .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-section-card .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-highlight-card .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .health-topic-teaser-container .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImage,
.about-nhlbi-our-mission-wrapper .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImage,
.nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImage,
.nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImage,
.nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImage,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemImage,
.healthEducationBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemImage,
.systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemImage,
.clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemImage,
.publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .rtFlexContainer .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImage,
.node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-science-supplemental-page .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemImage,
.node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .researchTopicPublications .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemImage,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.listTeaserCard .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImage,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.standard-teaser .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImage,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.newsEventsCard .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .esi-feature-card .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .featured-science-instance-teaser-container .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .sfa-teaser-container .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemImage,
.training-opportunity-card .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-associated-people .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-featured-training-opportun .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-career-stages .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-workforce-development-card .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-and-events-titleblock .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .leadership-container .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImage,
.leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .branch-leadership-container .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImage,
.branch-leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemImage,
.node--type-general .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemImage,
.node--type-general .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-general-publications-rlt .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImage,
.node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImage,
.node--type-general .field--name-field-related-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .objective-text-container .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .objective-list-container .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-goal-card .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemImage,
.node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .striped-container-wrapper .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemImage,
.node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .striped-container .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImage,
.node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemImage,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImage,
.node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-awards .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .registerSocialContainer .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .eventdatesLocationType .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-article-container .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-header-container .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemImage,
.contacts-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contacts .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemImage,
.publicationsBox .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-primary-featured-item .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-featured-items .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-health-topics-container .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-mission-areas-container .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-location-container .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-alumni .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemImage,
.node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemImage,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemImage,
.node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemImage,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImage,
.node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImage,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .flexcontainer .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .related-ht-ser-container .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sfa-card .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-speaker .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-executives .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-card-field .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-advisory-committees .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contact-nhlbi-titleblock .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-cards .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .all-grants-foa-container .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-program-officers .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemImageHalf,
.node--type-individual-contact .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemImageHalf,
.node--type-division.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageHalf,
.node--type-division.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemImageHalf,
.node--type-branch.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageHalf,
.node--type-branch.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemImageHalf,
.node--type-general.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageHalf,
.node--type-general.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemImageHalf,
.node--type-health-education-initiative.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageHalf,
.node--type-health-education-initiative.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemImageHalf,
.node--type-committee .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-card-text .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-and-events--landing .landing-social .flexItemImageHalf,
.news-and-events--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .landing-social .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sfa-cards .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .locationMap.contact-location-map-container .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .locationMap .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .grants-and-training-card-wrapper .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-grants-and-training-card .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-division-card .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-tool-icon-card .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-promotional-card .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .strategic-vision-titleblock .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .ppg-titleblock-wrapper .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-human-subject-cards .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-section-card .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-highlight-card .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .health-topic-teaser-container .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageHalf,
.about-nhlbi-our-mission-wrapper .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageHalf,
.nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageHalf,
.nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageHalf,
.nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageHalf,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemImageHalf,
.healthEducationBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemImageHalf,
.systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemImageHalf,
.clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemImageHalf,
.publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .rtFlexContainer .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageHalf,
.node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-science-supplemental-page .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemImageHalf,
.node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .researchTopicPublications .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemImageHalf,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.listTeaserCard .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageHalf,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.standard-teaser .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageHalf,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.newsEventsCard .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .esi-feature-card .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .featured-science-instance-teaser-container .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .sfa-teaser-container .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemImageHalf,
.training-opportunity-card .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-associated-people .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-featured-training-opportun .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-career-stages .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-workforce-development-card .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-and-events-titleblock .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .leadership-container .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageHalf,
.leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .branch-leadership-container .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageHalf,
.branch-leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemImageHalf,
.node--type-general .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemImageHalf,
.node--type-general .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-general-publications-rlt .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageHalf,
.node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageHalf,
.node--type-general .field--name-field-related-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .objective-text-container .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .objective-list-container .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-goal-card .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemImageHalf,
.node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .striped-container-wrapper .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemImageHalf,
.node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .striped-container .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImageHalf,
.node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemImageHalf,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageHalf,
.node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-awards .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .registerSocialContainer .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .eventdatesLocationType .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-article-container .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-header-container .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemImageHalf,
.contacts-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contacts .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemImageHalf,
.publicationsBox .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-primary-featured-item .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-featured-items .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-health-topics-container .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-mission-areas-container .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-location-container .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-alumni .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemImageHalf,
.node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemImageHalf,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemImageHalf,
.node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemImageHalf,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageHalf,
.node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageHalf,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .flexcontainer .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .related-ht-ser-container .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sfa-card .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-speaker .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-executives .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-card-field .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-advisory-committees .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contact-nhlbi-titleblock .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-cards .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .all-grants-foa-container .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-program-officers .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemImageTenth,
.node--type-individual-contact .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemImageTenth,
.node--type-division.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageTenth,
.node--type-division.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemImageTenth,
.node--type-branch.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageTenth,
.node--type-branch.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemImageTenth,
.node--type-general.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageTenth,
.node--type-general.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemImageTenth,
.node--type-health-education-initiative.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageTenth,
.node--type-health-education-initiative.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemImageTenth,
.node--type-committee .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-card-text .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-and-events--landing .landing-social .flexItemImageTenth,
.news-and-events--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .landing-social .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sfa-cards .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .locationMap.contact-location-map-container .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .locationMap .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .grants-and-training-card-wrapper .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-grants-and-training-card .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-division-card .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-tool-icon-card .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-promotional-card .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .strategic-vision-titleblock .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .ppg-titleblock-wrapper .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-human-subject-cards .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-section-card .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-highlight-card .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .health-topic-teaser-container .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageTenth,
.about-nhlbi-our-mission-wrapper .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageTenth,
.nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageTenth,
.nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageTenth,
.nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageTenth,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemImageTenth,
.healthEducationBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemImageTenth,
.systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemImageTenth,
.clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemImageTenth,
.publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .rtFlexContainer .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageTenth,
.node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-science-supplemental-page .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemImageTenth,
.node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .researchTopicPublications .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemImageTenth,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.listTeaserCard .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageTenth,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.standard-teaser .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageTenth,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.newsEventsCard .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .esi-feature-card .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .featured-science-instance-teaser-container .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .sfa-teaser-container .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemImageTenth,
.training-opportunity-card .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-associated-people .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-featured-training-opportun .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-career-stages .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-workforce-development-card .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-and-events-titleblock .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .leadership-container .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageTenth,
.leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .branch-leadership-container .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageTenth,
.branch-leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemImageTenth,
.node--type-general .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemImageTenth,
.node--type-general .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-general-publications-rlt .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageTenth,
.node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageTenth,
.node--type-general .field--name-field-related-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .objective-text-container .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .objective-list-container .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-goal-card .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemImageTenth,
.node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .striped-container-wrapper .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemImageTenth,
.node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .striped-container .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImageTenth,
.node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemImageTenth,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageTenth,
.node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-awards .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .registerSocialContainer .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .eventdatesLocationType .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-article-container .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-header-container .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemImageTenth,
.contacts-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contacts .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemImageTenth,
.publicationsBox .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-primary-featured-item .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-featured-items .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-health-topics-container .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-mission-areas-container .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-location-container .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-alumni .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemImageTenth,
.node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemImageTenth,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemImageTenth,
.node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemImageTenth,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageTenth,
.node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageTenth,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .flexcontainer .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .related-ht-ser-container .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sfa-card .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-speaker .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-executives .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-card-field .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-advisory-committees .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contact-nhlbi-titleblock .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-cards .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .all-grants-foa-container .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-program-officers .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemImageFourth,
.node--type-individual-contact .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemImageFourth,
.node--type-division.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageFourth,
.node--type-division.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemImageFourth,
.node--type-branch.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageFourth,
.node--type-branch.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemImageFourth,
.node--type-general.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageFourth,
.node--type-general.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemImageFourth,
.node--type-health-education-initiative.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageFourth,
.node--type-health-education-initiative.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemImageFourth,
.node--type-committee .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-card-text .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-and-events--landing .landing-social .flexItemImageFourth,
.news-and-events--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .landing-social .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sfa-cards .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .locationMap.contact-location-map-container .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .locationMap .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .grants-and-training-card-wrapper .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-grants-and-training-card .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-division-card .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-tool-icon-card .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-promotional-card .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .strategic-vision-titleblock .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .ppg-titleblock-wrapper .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-human-subject-cards .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-section-card .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-highlight-card .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .health-topic-teaser-container .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageFourth,
.about-nhlbi-our-mission-wrapper .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageFourth,
.nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageFourth,
.nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageFourth,
.nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageFourth,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemImageFourth,
.healthEducationBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemImageFourth,
.systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemImageFourth,
.clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemImageFourth,
.publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .rtFlexContainer .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageFourth,
.node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-science-supplemental-page .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemImageFourth,
.node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .researchTopicPublications .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemImageFourth,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.listTeaserCard .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageFourth,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.standard-teaser .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageFourth,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.newsEventsCard .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .esi-feature-card .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .featured-science-instance-teaser-container .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .sfa-teaser-container .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemImageFourth,
.training-opportunity-card .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-associated-people .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-featured-training-opportun .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-career-stages .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-workforce-development-card .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-and-events-titleblock .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .leadership-container .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageFourth,
.leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .branch-leadership-container .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageFourth,
.branch-leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemImageFourth,
.node--type-general .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemImageFourth,
.node--type-general .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-general-publications-rlt .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageFourth,
.node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageFourth,
.node--type-general .field--name-field-related-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .objective-text-container .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .objective-list-container .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-goal-card .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemImageFourth,
.node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .striped-container-wrapper .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemImageFourth,
.node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .striped-container .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImageFourth,
.node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemImageFourth,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageFourth,
.node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-awards .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .registerSocialContainer .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .eventdatesLocationType .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-article-container .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-header-container .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemImageFourth,
.contacts-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contacts .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemImageFourth,
.publicationsBox .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-primary-featured-item .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-featured-items .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-health-topics-container .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-mission-areas-container .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-location-container .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-alumni .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemImageFourth,
.node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemImageFourth,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemImageFourth,
.node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemImageFourth,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageFourth,
.node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageFourth,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .flexcontainer .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .related-ht-ser-container .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sfa-card .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-speaker .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-executives .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-card-field .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-advisory-committees .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contact-nhlbi-titleblock .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-cards .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .all-grants-foa-container .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-program-officers .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemImageThird,
.node--type-individual-contact .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemImageThird,
.node--type-division.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThird,
.node--type-division.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemImageThird,
.node--type-branch.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThird,
.node--type-branch.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemImageThird,
.node--type-general.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThird,
.node--type-general.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemImageThird,
.node--type-health-education-initiative.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThird,
.node--type-health-education-initiative.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemImageThird,
.node--type-committee .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-card-text .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-and-events--landing .landing-social .flexItemImageThird,
.news-and-events--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .landing-social .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sfa-cards .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .locationMap.contact-location-map-container .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .locationMap .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .grants-and-training-card-wrapper .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-grants-and-training-card .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-division-card .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-tool-icon-card .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-promotional-card .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .strategic-vision-titleblock .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .ppg-titleblock-wrapper .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-human-subject-cards .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-section-card .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-highlight-card .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .health-topic-teaser-container .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageThird,
.about-nhlbi-our-mission-wrapper .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageThird,
.nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageThird,
.nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageThird,
.nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageThird,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemImageThird,
.healthEducationBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemImageThird,
.systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemImageThird,
.clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemImageThird,
.publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .rtFlexContainer .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageThird,
.node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-science-supplemental-page .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemImageThird,
.node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .researchTopicPublications .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemImageThird,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.listTeaserCard .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageThird,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.standard-teaser .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageThird,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.newsEventsCard .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .esi-feature-card .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .featured-science-instance-teaser-container .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .sfa-teaser-container .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemImageThird,
.training-opportunity-card .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-associated-people .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-featured-training-opportun .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-career-stages .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-workforce-development-card .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-and-events-titleblock .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .leadership-container .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageThird,
.leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .branch-leadership-container .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageThird,
.branch-leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemImageThird,
.node--type-general .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemImageThird,
.node--type-general .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-general-publications-rlt .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageThird,
.node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageThird,
.node--type-general .field--name-field-related-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .objective-text-container .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .objective-list-container .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-goal-card .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemImageThird,
.node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .striped-container-wrapper .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemImageThird,
.node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .striped-container .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImageThird,
.node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemImageThird,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageThird,
.node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-awards .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .registerSocialContainer .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .eventdatesLocationType .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-article-container .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-header-container .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemImageThird,
.contacts-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contacts .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemImageThird,
.publicationsBox .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-primary-featured-item .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-featured-items .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-health-topics-container .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-mission-areas-container .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-location-container .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-alumni .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemImageThird,
.node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemImageThird,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemImageThird,
.node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemImageThird,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageThird,
.node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageThird,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .flexcontainer .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .related-ht-ser-container .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sfa-card .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-speaker .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-executives .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-card-field .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-advisory-committees .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contact-nhlbi-titleblock .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-cards .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .all-grants-foa-container .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-program-officers .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-individual-contact .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-division.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-division.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-branch.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-branch.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-general.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-general.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-health-education-initiative.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-health-education-initiative.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemImageThirdHalf,
.node--type-committee .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-card-text .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-and-events--landing .landing-social .flexItemImageThirdHalf,
.news-and-events--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .landing-social .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sfa-cards .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .locationMap.contact-location-map-container .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .locationMap .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .grants-and-training-card-wrapper .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-grants-and-training-card .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-division-card .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-tool-icon-card .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-promotional-card .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .strategic-vision-titleblock .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .ppg-titleblock-wrapper .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-human-subject-cards .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-section-card .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-highlight-card .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .health-topic-teaser-container .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageThirdHalf,
.about-nhlbi-our-mission-wrapper .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageThirdHalf,
.nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageThirdHalf,
.nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageThirdHalf,
.nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageThirdHalf,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemImageThirdHalf,
.healthEducationBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemImageThirdHalf,
.systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemImageThirdHalf,
.clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemImageThirdHalf,
.publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .rtFlexContainer .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageThirdHalf,
.node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-science-supplemental-page .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemImageThirdHalf,
.node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .researchTopicPublications .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemImageThirdHalf,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.listTeaserCard .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageThirdHalf,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.standard-teaser .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageThirdHalf,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.newsEventsCard .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .esi-feature-card .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .featured-science-instance-teaser-container .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .sfa-teaser-container .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemImageThirdHalf,
.training-opportunity-card .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-associated-people .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-featured-training-opportun .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-career-stages .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-workforce-development-card .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-and-events-titleblock .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .leadership-container .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageThirdHalf,
.leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .branch-leadership-container .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageThirdHalf,
.branch-leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemImageThirdHalf,
.node--type-general .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemImageThirdHalf,
.node--type-general .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-general-publications-rlt .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageThirdHalf,
.node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageThirdHalf,
.node--type-general .field--name-field-related-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .objective-text-container .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .objective-list-container .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-goal-card .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemImageThirdHalf,
.node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .striped-container-wrapper .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemImageThirdHalf,
.node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .striped-container .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImageThirdHalf,
.node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemImageThirdHalf,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageThirdHalf,
.node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-awards .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .registerSocialContainer .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .eventdatesLocationType .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-article-container .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-header-container .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemImageThirdHalf,
.contacts-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contacts .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemImageThirdHalf,
.publicationsBox .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-primary-featured-item .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-featured-items .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-health-topics-container .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-mission-areas-container .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-location-container .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-alumni .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemImageThirdHalf,
.node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemImageThirdHalf,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemImageThirdHalf,
.node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemImageThirdHalf,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageThirdHalf,
.node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageThirdHalf,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .flexcontainer .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .related-ht-ser-container .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sfa-card .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-speaker .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-executives .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-card-field .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-advisory-committees .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contact-nhlbi-titleblock .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-cards .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-employment-opportunity-car .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .all-grants-foa-container .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-program-officers .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .hero-image,
.node--type-individual-contact .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .hero-image,
.node--type-division.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .hero-image,
.node--type-division.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .hero-image,
.node--type-branch.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .hero-image,
.node--type-branch.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .hero-image,
.node--type-general.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .hero-image,
.node--type-general.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .hero-image,
.node--type-health-education-initiative.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .hero-image,
.node--type-health-education-initiative.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-committee .field--name-field-card-text .hero-image,
.node--type-committee .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-card-text .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-and-events--landing .landing-social .hero-image,
.news-and-events--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .landing-social .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sfa-cards .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .locationMap.contact-location-map-container .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .locationMap .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .grants-and-training-card-wrapper .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-division-card-wrapper .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .hei-tools-icon-card-wrapper .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-grants-and-training-card .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-division-card .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-tool-icon-card .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-promotional-card .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sv-promotional-cards .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .strategic-vision-titleblock .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .ppg-titleblock-wrapper .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .ppg-guidelines-card-wrapper .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-human-subject-cards .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-section-card .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-highlight-card .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .health-topic-teaser-container .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .hero-image,
.about-nhlbi-our-mission-wrapper .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-leadership > .director-bioCard .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .hero-image,
.nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .hero-image,
.nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-health-professionals-nhlbi .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .hero-image,
.nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .hero-image,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .healthEducationBlock .standard-teaser .hero-image,
.healthEducationBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .hero-image,
.systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .hero-image,
.clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .hero-image,
.publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .rtFlexContainer .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .hero-image,
.node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-science-supplemental-page .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .researchTopicPublications .hero-image,
.node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .researchTopicPublications .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .hero-image,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.listTeaserCard .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .hero-image,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.standard-teaser .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .hero-image,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.newsEventsCard .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .esi-feature-card .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .featured-science-instance-teaser-container .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .sfa-teaser-container .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .hero-image,
.training-opportunity-card .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-associated-people .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-featured-training-opportun .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-career-stages .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-workforce-development-card .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-and-events-titleblock .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contact-box > .field--name-field-contact-methods .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .leadership-container .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .hero-image,
.leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .branch-leadership-container .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .hero-image,
.branch-leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications .hero-image,
.node--type-general .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .hero-image,
.node--type-general .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-general-publications-rlt .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .hero-image,
.node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .hero-image,
.node--type-general .field--name-field-related-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .objective-text-container .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .objective-list-container .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-goal-card .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .strategic-vision-landing-goals-wrapper .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .hero-image,
.node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .striped-container-wrapper .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container .hero-image,
.node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .striped-container .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .hero-image,
.node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .hero-image,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .hero-image,
.node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-awards .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .registerSocialContainer .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .eventdatesLocationType .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-article-container .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-header-container .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contacts-container .field--name-field-contacts .hero-image,
.contacts-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contacts .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsBox .field--name-field-related-publications .hero-image,
.publicationsBox .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-primary-featured-item .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-featured-items .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-health-topics-container .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-mission-areas-container .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-location-container .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-alumni .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .hero-image,
.node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .hero-image,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .hero-image,
.node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .hero-image,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .hero-image,
.node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .hero-image,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .flexcontainer .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .related-ht-ser-container .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-card .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-speaker .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-executives .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-card-field .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-advisory-committees .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contact-nhlbi-titleblock .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-cards .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .all-grants-foa-container .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-program-officers .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemImage,
.node--type-individual-contact .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemImage,
.node--type-division.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImage,
.node--type-division.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemImage,
.node--type-branch.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImage,
.node--type-branch.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemImage,
.node--type-general.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImage,
.node--type-general.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemImage,
.node--type-health-education-initiative.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImage,
.node--type-health-education-initiative.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemImage,
.node--type-committee .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-card-text .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-and-events--landing .landing-social .flexItemImage,
.news-and-events--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .landing-social .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-cards .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .locationMap.contact-location-map-container .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .locationMap .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .grants-and-training-card-wrapper .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-grants-and-training-card .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-division-card .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-tool-icon-card .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-promotional-card .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .strategic-vision-titleblock .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .ppg-titleblock-wrapper .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-human-subject-cards .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-section-card .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-highlight-card .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .health-topic-teaser-container .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImage,
.about-nhlbi-our-mission-wrapper .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImage,
.nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImage,
.nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImage,
.nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImage,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemImage,
.healthEducationBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemImage,
.systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemImage,
.clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemImage,
.publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .rtFlexContainer .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImage,
.node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-science-supplemental-page .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemImage,
.node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .researchTopicPublications .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemImage,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.listTeaserCard .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImage,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.standard-teaser .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImage,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.newsEventsCard .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .esi-feature-card .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .featured-science-instance-teaser-container .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .sfa-teaser-container .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemImage,
.training-opportunity-card .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-associated-people .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-featured-training-opportun .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-career-stages .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-workforce-development-card .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-and-events-titleblock .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .leadership-container .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImage,
.leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImage,
.branch-leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemImage,
.node--type-general .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemImage,
.node--type-general .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-general-publications-rlt .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImage,
.node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImage,
.node--type-general .field--name-field-related-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .objective-text-container .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .objective-list-container .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-goal-card .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemImage,
.node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .striped-container-wrapper .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemImage,
.node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .striped-container .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImage,
.node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemImage,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImage,
.node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-awards .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .registerSocialContainer .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .eventdatesLocationType .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-article-container .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-header-container .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemImage,
.contacts-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contacts .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemImage,
.publicationsBox .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-primary-featured-item .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-featured-items .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-health-topics-container .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-mission-areas-container .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-location-container .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-alumni .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemImage,
.node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemImage,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemImage,
.node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemImage,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImage,
.node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImage,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImage,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .flexcontainer .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .related-ht-ser-container .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-card .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-speaker .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-executives .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-card-field .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-advisory-committees .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contact-nhlbi-titleblock .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-cards .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .all-grants-foa-container .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-program-officers .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemImageHalf,
.node--type-individual-contact .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemImageHalf,
.node--type-division.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageHalf,
.node--type-division.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemImageHalf,
.node--type-branch.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageHalf,
.node--type-branch.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemImageHalf,
.node--type-general.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageHalf,
.node--type-general.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemImageHalf,
.node--type-health-education-initiative.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageHalf,
.node--type-health-education-initiative.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemImageHalf,
.node--type-committee .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-card-text .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-and-events--landing .landing-social .flexItemImageHalf,
.news-and-events--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .landing-social .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-cards .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .locationMap.contact-location-map-container .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .locationMap .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .grants-and-training-card-wrapper .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-grants-and-training-card .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-division-card .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-tool-icon-card .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-promotional-card .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .strategic-vision-titleblock .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .ppg-titleblock-wrapper .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-human-subject-cards .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-section-card .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-highlight-card .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .health-topic-teaser-container .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageHalf,
.about-nhlbi-our-mission-wrapper .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageHalf,
.nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageHalf,
.nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageHalf,
.nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageHalf,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemImageHalf,
.healthEducationBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemImageHalf,
.systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemImageHalf,
.clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemImageHalf,
.publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .rtFlexContainer .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageHalf,
.node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-science-supplemental-page .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemImageHalf,
.node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .researchTopicPublications .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemImageHalf,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.listTeaserCard .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageHalf,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.standard-teaser .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageHalf,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.newsEventsCard .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .esi-feature-card .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .featured-science-instance-teaser-container .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .sfa-teaser-container .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemImageHalf,
.training-opportunity-card .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-associated-people .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-featured-training-opportun .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-career-stages .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-workforce-development-card .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-and-events-titleblock .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .leadership-container .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageHalf,
.leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageHalf,
.branch-leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemImageHalf,
.node--type-general .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemImageHalf,
.node--type-general .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-general-publications-rlt .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageHalf,
.node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageHalf,
.node--type-general .field--name-field-related-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .objective-text-container .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .objective-list-container .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-goal-card .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemImageHalf,
.node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .striped-container-wrapper .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemImageHalf,
.node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .striped-container .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImageHalf,
.node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemImageHalf,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageHalf,
.node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-awards .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .registerSocialContainer .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .eventdatesLocationType .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-article-container .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-header-container .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemImageHalf,
.contacts-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contacts .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemImageHalf,
.publicationsBox .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-primary-featured-item .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-featured-items .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-health-topics-container .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-mission-areas-container .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-location-container .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-alumni .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemImageHalf,
.node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemImageHalf,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemImageHalf,
.node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemImageHalf,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageHalf,
.node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageHalf,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .flexcontainer .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .related-ht-ser-container .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-card .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-speaker .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-executives .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-card-field .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-advisory-committees .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contact-nhlbi-titleblock .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-cards .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .all-grants-foa-container .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-program-officers .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemImageTenth,
.node--type-individual-contact .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemImageTenth,
.node--type-division.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageTenth,
.node--type-division.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemImageTenth,
.node--type-branch.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageTenth,
.node--type-branch.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemImageTenth,
.node--type-general.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageTenth,
.node--type-general.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemImageTenth,
.node--type-health-education-initiative.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageTenth,
.node--type-health-education-initiative.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemImageTenth,
.node--type-committee .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-card-text .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-and-events--landing .landing-social .flexItemImageTenth,
.news-and-events--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .landing-social .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-cards .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .locationMap.contact-location-map-container .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .locationMap .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .grants-and-training-card-wrapper .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-grants-and-training-card .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-division-card .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-tool-icon-card .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-promotional-card .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .strategic-vision-titleblock .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .ppg-titleblock-wrapper .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-human-subject-cards .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-section-card .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-highlight-card .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .health-topic-teaser-container .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageTenth,
.about-nhlbi-our-mission-wrapper .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageTenth,
.nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageTenth,
.nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageTenth,
.nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageTenth,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemImageTenth,
.healthEducationBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemImageTenth,
.systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemImageTenth,
.clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemImageTenth,
.publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .rtFlexContainer .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageTenth,
.node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-science-supplemental-page .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemImageTenth,
.node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .researchTopicPublications .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemImageTenth,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.listTeaserCard .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageTenth,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.standard-teaser .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageTenth,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.newsEventsCard .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .esi-feature-card .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .featured-science-instance-teaser-container .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .sfa-teaser-container .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemImageTenth,
.training-opportunity-card .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-associated-people .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-featured-training-opportun .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-career-stages .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-workforce-development-card .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-and-events-titleblock .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .leadership-container .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageTenth,
.leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageTenth,
.branch-leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemImageTenth,
.node--type-general .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemImageTenth,
.node--type-general .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-general-publications-rlt .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageTenth,
.node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageTenth,
.node--type-general .field--name-field-related-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .objective-text-container .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .objective-list-container .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-goal-card .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemImageTenth,
.node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .striped-container-wrapper .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemImageTenth,
.node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .striped-container .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImageTenth,
.node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemImageTenth,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageTenth,
.node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-awards .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .registerSocialContainer .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .eventdatesLocationType .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-article-container .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-header-container .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemImageTenth,
.contacts-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contacts .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemImageTenth,
.publicationsBox .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-primary-featured-item .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-featured-items .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-health-topics-container .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-mission-areas-container .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-location-container .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-alumni .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemImageTenth,
.node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemImageTenth,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemImageTenth,
.node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemImageTenth,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageTenth,
.node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageTenth,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageTenth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .flexcontainer .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .related-ht-ser-container .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-card .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-speaker .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-executives .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-card-field .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-advisory-committees .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contact-nhlbi-titleblock .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-cards .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .all-grants-foa-container .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-program-officers .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemImageFourth,
.node--type-individual-contact .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemImageFourth,
.node--type-division.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageFourth,
.node--type-division.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemImageFourth,
.node--type-branch.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageFourth,
.node--type-branch.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemImageFourth,
.node--type-general.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageFourth,
.node--type-general.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemImageFourth,
.node--type-health-education-initiative.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageFourth,
.node--type-health-education-initiative.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemImageFourth,
.node--type-committee .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-card-text .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-and-events--landing .landing-social .flexItemImageFourth,
.news-and-events--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .landing-social .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-cards .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .locationMap.contact-location-map-container .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .locationMap .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .grants-and-training-card-wrapper .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-grants-and-training-card .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-division-card .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-tool-icon-card .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-promotional-card .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .strategic-vision-titleblock .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .ppg-titleblock-wrapper .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-human-subject-cards .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-section-card .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-highlight-card .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .health-topic-teaser-container .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageFourth,
.about-nhlbi-our-mission-wrapper .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageFourth,
.nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageFourth,
.nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageFourth,
.nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageFourth,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemImageFourth,
.healthEducationBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemImageFourth,
.systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemImageFourth,
.clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemImageFourth,
.publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .rtFlexContainer .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageFourth,
.node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-science-supplemental-page .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemImageFourth,
.node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .researchTopicPublications .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemImageFourth,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.listTeaserCard .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageFourth,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.standard-teaser .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageFourth,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.newsEventsCard .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .esi-feature-card .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .featured-science-instance-teaser-container .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .sfa-teaser-container .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemImageFourth,
.training-opportunity-card .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-associated-people .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-featured-training-opportun .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-career-stages .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-workforce-development-card .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-and-events-titleblock .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .leadership-container .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageFourth,
.leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageFourth,
.branch-leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemImageFourth,
.node--type-general .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemImageFourth,
.node--type-general .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-general-publications-rlt .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageFourth,
.node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageFourth,
.node--type-general .field--name-field-related-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .objective-text-container .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .objective-list-container .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-goal-card .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemImageFourth,
.node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .striped-container-wrapper .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemImageFourth,
.node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .striped-container .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImageFourth,
.node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemImageFourth,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageFourth,
.node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-awards .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .registerSocialContainer .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .eventdatesLocationType .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-article-container .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-header-container .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemImageFourth,
.contacts-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contacts .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemImageFourth,
.publicationsBox .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-primary-featured-item .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-featured-items .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-health-topics-container .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-mission-areas-container .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-location-container .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-alumni .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemImageFourth,
.node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemImageFourth,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemImageFourth,
.node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemImageFourth,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageFourth,
.node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageFourth,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageFourth,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .flexcontainer .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .related-ht-ser-container .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-card .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-speaker .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-executives .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-card-field .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-advisory-committees .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contact-nhlbi-titleblock .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-cards .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .all-grants-foa-container .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-program-officers .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemImageThird,
.node--type-individual-contact .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemImageThird,
.node--type-division.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThird,
.node--type-division.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemImageThird,
.node--type-branch.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThird,
.node--type-branch.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemImageThird,
.node--type-general.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThird,
.node--type-general.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemImageThird,
.node--type-health-education-initiative.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThird,
.node--type-health-education-initiative.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemImageThird,
.node--type-committee .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-card-text .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-and-events--landing .landing-social .flexItemImageThird,
.news-and-events--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .landing-social .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-cards .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .locationMap.contact-location-map-container .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .locationMap .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .grants-and-training-card-wrapper .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-grants-and-training-card .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-division-card .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-tool-icon-card .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-promotional-card .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .strategic-vision-titleblock .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .ppg-titleblock-wrapper .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-human-subject-cards .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-section-card .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-highlight-card .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .health-topic-teaser-container .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageThird,
.about-nhlbi-our-mission-wrapper .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageThird,
.nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageThird,
.nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageThird,
.nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageThird,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemImageThird,
.healthEducationBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemImageThird,
.systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemImageThird,
.clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemImageThird,
.publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .rtFlexContainer .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageThird,
.node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-science-supplemental-page .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemImageThird,
.node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .researchTopicPublications .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemImageThird,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.listTeaserCard .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageThird,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.standard-teaser .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageThird,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.newsEventsCard .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .esi-feature-card .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .featured-science-instance-teaser-container .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .sfa-teaser-container .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemImageThird,
.training-opportunity-card .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-associated-people .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-featured-training-opportun .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-career-stages .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-workforce-development-card .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-and-events-titleblock .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .leadership-container .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageThird,
.leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageThird,
.branch-leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemImageThird,
.node--type-general .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemImageThird,
.node--type-general .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-general-publications-rlt .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageThird,
.node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageThird,
.node--type-general .field--name-field-related-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .objective-text-container .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .objective-list-container .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-goal-card .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemImageThird,
.node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .striped-container-wrapper .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemImageThird,
.node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .striped-container .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImageThird,
.node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemImageThird,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageThird,
.node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-awards .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .registerSocialContainer .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .eventdatesLocationType .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-article-container .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-header-container .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemImageThird,
.contacts-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contacts .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemImageThird,
.publicationsBox .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-primary-featured-item .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-featured-items .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-health-topics-container .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-mission-areas-container .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-location-container .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-alumni .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemImageThird,
.node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemImageThird,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemImageThird,
.node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemImageThird,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageThird,
.node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageThird,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageThird,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .flexcontainer .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .related-ht-ser-container .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-card .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-speaker .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-executives .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-card-field .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-advisory-committees .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contact-nhlbi-titleblock .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-cards .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .all-grants-foa-container .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-program-officers .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-individual-contact .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-division.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-division.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-branch.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-branch.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-general.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-general.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-health-education-initiative.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-health-education-initiative.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemImageThirdHalf,
.node--type-committee .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-card-text .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-and-events--landing .landing-social .flexItemImageThirdHalf,
.news-and-events--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .landing-social .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-cards .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .locationMap.contact-location-map-container .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .locationMap .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .grants-and-training-card-wrapper .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-grants-and-training-card .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-division-card .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-tool-icon-card .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-promotional-card .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .strategic-vision-titleblock .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .ppg-titleblock-wrapper .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-human-subject-cards .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-section-card .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-highlight-card .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .health-topic-teaser-container .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageThirdHalf,
.about-nhlbi-our-mission-wrapper .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageThirdHalf,
.nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageThirdHalf,
.nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageThirdHalf,
.nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageThirdHalf,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemImageThirdHalf,
.healthEducationBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemImageThirdHalf,
.systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemImageThirdHalf,
.clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemImageThirdHalf,
.publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .rtFlexContainer .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageThirdHalf,
.node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-science-supplemental-page .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemImageThirdHalf,
.node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .researchTopicPublications .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemImageThirdHalf,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.listTeaserCard .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageThirdHalf,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.standard-teaser .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageThirdHalf,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.newsEventsCard .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .esi-feature-card .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .featured-science-instance-teaser-container .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .sfa-teaser-container .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemImageThirdHalf,
.training-opportunity-card .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-associated-people .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-featured-training-opportun .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-career-stages .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-workforce-development-card .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-and-events-titleblock .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .leadership-container .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageThirdHalf,
.leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageThirdHalf,
.branch-leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemImageThirdHalf,
.node--type-general .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemImageThirdHalf,
.node--type-general .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-general-publications-rlt .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageThirdHalf,
.node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageThirdHalf,
.node--type-general .field--name-field-related-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .objective-text-container .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .objective-list-container .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-goal-card .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemImageThirdHalf,
.node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .striped-container-wrapper .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemImageThirdHalf,
.node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .striped-container .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImageThirdHalf,
.node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemImageThirdHalf,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageThirdHalf,
.node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-awards .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .registerSocialContainer .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .eventdatesLocationType .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-article-container .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-header-container .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemImageThirdHalf,
.contacts-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contacts .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemImageThirdHalf,
.publicationsBox .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-primary-featured-item .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-featured-items .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-health-topics-container .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-mission-areas-container .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-location-container .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-alumni .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemImageThirdHalf,
.node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemImageThirdHalf,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemImageThirdHalf,
.node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemImageThirdHalf,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageThirdHalf,
.node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageThirdHalf,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .flexcontainer .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .related-ht-ser-container .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-card .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-speaker .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-executives .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-card-field .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-advisory-committees .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contact-nhlbi-titleblock .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-cards .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-employment-opportunity-car .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .all-grants-foa-container .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-program-officers .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .hero-image,
.node--type-individual-contact .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .hero-image,
.node--type-division.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .hero-image,
.node--type-division.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .hero-image,
.node--type-branch.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .hero-image,
.node--type-branch.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .hero-image,
.node--type-general.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .hero-image,
.node--type-general.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .hero-image,
.node--type-health-education-initiative.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .hero-image,
.node--type-health-education-initiative.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-committee .field--name-field-card-text .hero-image,
.node--type-committee .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-card-text .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-and-events--landing .landing-social .hero-image,
.news-and-events--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .landing-social .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-cards .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .locationMap.contact-location-map-container .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .locationMap .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .grants-and-training-card-wrapper .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-division-card-wrapper .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .hei-tools-icon-card-wrapper .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-grants-and-training-card .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-division-card .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-tool-icon-card .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-promotional-card .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sv-promotional-cards .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .strategic-vision-titleblock .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .ppg-titleblock-wrapper .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .ppg-guidelines-card-wrapper .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-human-subject-cards .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-section-card .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-highlight-card .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .health-topic-teaser-container .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .hero-image,
.about-nhlbi-our-mission-wrapper .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-leadership > .director-bioCard .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .hero-image,
.nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .hero-image,
.nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-professionals-nhlbi .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .hero-image,
.nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .hero-image,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .healthEducationBlock .standard-teaser .hero-image,
.healthEducationBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .hero-image,
.systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .hero-image,
.clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .hero-image,
.publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .rtFlexContainer .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .hero-image,
.node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-science-supplemental-page .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .researchTopicPublications .hero-image,
.node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .researchTopicPublications .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .hero-image,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.listTeaserCard .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .hero-image,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.standard-teaser .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .hero-image,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.newsEventsCard .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .esi-feature-card .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .featured-science-instance-teaser-container .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .sfa-teaser-container .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .hero-image,
.training-opportunity-card .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-associated-people .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-featured-training-opportun .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-career-stages .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-workforce-development-card .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-and-events-titleblock .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contact-box > .field--name-field-contact-methods .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .leadership-container .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .hero-image,
.leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .hero-image,
.branch-leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications .hero-image,
.node--type-general .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .hero-image,
.node--type-general .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-general-publications-rlt .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .hero-image,
.node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .hero-image,
.node--type-general .field--name-field-related-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .objective-text-container .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .objective-list-container .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-goal-card .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .strategic-vision-landing-goals-wrapper .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .hero-image,
.node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .striped-container-wrapper .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container .hero-image,
.node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .striped-container .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .hero-image,
.node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .hero-image,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .hero-image,
.node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-awards .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .registerSocialContainer .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .eventdatesLocationType .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-article-container .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-header-container .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contacts-container .field--name-field-contacts .hero-image,
.contacts-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contacts .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsBox .field--name-field-related-publications .hero-image,
.publicationsBox .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-primary-featured-item .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-featured-items .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-health-topics-container .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-mission-areas-container .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-location-container .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-alumni .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .hero-image,
.node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .hero-image,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .hero-image,
.node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .hero-image,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .hero-image,
.node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .hero-image,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .hero-image,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .hero-image {
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 36, ../sass/components/_health_pro.scss */
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .flexcontainer .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .related-ht-ser-container .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sfa-card .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-speaker .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-executives .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-card-field .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-advisory-committees .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contact-nhlbi-titleblock .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-cards .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .all-grants-foa-container .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-program-officers .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemImage, .node--type-individual-contact .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemImage,
  .node--type-division.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImage,
  .node--type-division.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemImage,
  .node--type-branch.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImage,
  .node--type-branch.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemImage,
  .node--type-general.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImage,
  .node--type-general.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemImage,
  .node--type-health-education-initiative.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImage,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemImage, .node--type-committee .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-card-text .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-and-events--landing .landing-social .flexItemImage, .news-and-events--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .landing-social .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sfa-cards .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .locationMap.contact-location-map-container .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .locationMap .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .grants-and-training-card-wrapper .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-grants-and-training-card .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-division-card .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-tool-icon-card .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-promotional-card .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .strategic-vision-titleblock .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .ppg-titleblock-wrapper .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-human-subject-cards .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-section-card .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-highlight-card .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .health-topic-teaser-container .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImage, .about-nhlbi-our-mission-wrapper .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImage, .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImage,
  .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImage, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImage,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemImage, .healthEducationBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemImage, .systematicEvidenceReviewsBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemImage,
  .clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemImage,
  .publicationsAndFactSheetsBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .rtFlexContainer .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImage, .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-science-supplemental-page .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemImage, .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .researchTopicPublications .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemImage, .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.listTeaserCard .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImage, .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.standard-teaser .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImage,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.newsEventsCard .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .esi-feature-card .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .featured-science-instance-teaser-container .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .sfa-teaser-container .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemImage, .training-opportunity-card .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-associated-people .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-featured-training-opportun .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-career-stages .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-workforce-development-card .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-and-events-titleblock .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .leadership-container .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImage, .leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .branch-leadership-container .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImage, .branch-leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemImage, .node--type-general .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemImage, .node--type-general .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-general-publications-rlt .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImage, .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImage, .node--type-general .field--name-field-related-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .objective-text-container .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .objective-list-container .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-goal-card .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemImage, .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .striped-container-wrapper .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemImage, .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .striped-container .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImage, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemImage,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImage, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-awards .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .registerSocialContainer .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .eventdatesLocationType .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-article-container .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-header-container .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemImage, .contacts-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contacts .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemImage, .publicationsBox .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-primary-featured-item .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-featured-items .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-health-topics-container .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-mission-areas-container .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-location-container .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-alumni .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemImage, .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemImage,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemImage, .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemImage,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImage, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImage,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImage, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .flexcontainer .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .related-ht-ser-container .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sfa-card .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-speaker .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-executives .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-card-field .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-advisory-committees .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contact-nhlbi-titleblock .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-cards .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .all-grants-foa-container .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-program-officers .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemImageHalf, .node--type-individual-contact .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-division.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-division.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-branch.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-branch.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-general.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-general.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-health-education-initiative.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemImageHalf, .node--type-committee .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-card-text .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-and-events--landing .landing-social .flexItemImageHalf, .news-and-events--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .landing-social .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sfa-cards .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .locationMap.contact-location-map-container .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .locationMap .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .grants-and-training-card-wrapper .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-grants-and-training-card .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-division-card .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-tool-icon-card .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-promotional-card .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .strategic-vision-titleblock .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .ppg-titleblock-wrapper .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-human-subject-cards .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-section-card .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-highlight-card .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .health-topic-teaser-container .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageHalf, .about-nhlbi-our-mission-wrapper .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageHalf, .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageHalf,
  .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageHalf, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageHalf,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemImageHalf, .healthEducationBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemImageHalf, .systematicEvidenceReviewsBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemImageHalf,
  .clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemImageHalf,
  .publicationsAndFactSheetsBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .rtFlexContainer .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageHalf, .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-science-supplemental-page .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemImageHalf, .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .researchTopicPublications .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemImageHalf, .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.listTeaserCard .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageHalf, .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.standard-teaser .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageHalf,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.newsEventsCard .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .esi-feature-card .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .featured-science-instance-teaser-container .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .sfa-teaser-container .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemImageHalf, .training-opportunity-card .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-associated-people .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-featured-training-opportun .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-career-stages .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-workforce-development-card .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-and-events-titleblock .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .leadership-container .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageHalf, .leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .branch-leadership-container .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageHalf, .branch-leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemImageHalf, .node--type-general .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemImageHalf, .node--type-general .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-general-publications-rlt .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageHalf, .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageHalf, .node--type-general .field--name-field-related-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .objective-text-container .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .objective-list-container .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-goal-card .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemImageHalf, .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .striped-container-wrapper .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemImageHalf, .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .striped-container .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImageHalf, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemImageHalf,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageHalf, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-awards .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .registerSocialContainer .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .eventdatesLocationType .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-article-container .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-header-container .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemImageHalf, .contacts-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contacts .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemImageHalf, .publicationsBox .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-primary-featured-item .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-featured-items .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-health-topics-container .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-mission-areas-container .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-location-container .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-alumni .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemImageHalf, .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemImageHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemImageHalf, .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemImageHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageHalf, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .flexcontainer .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .related-ht-ser-container .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sfa-card .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-speaker .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-executives .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-card-field .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-advisory-committees .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contact-nhlbi-titleblock .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-cards .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .all-grants-foa-container .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-program-officers .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemImageTenth, .node--type-individual-contact .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-division.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-division.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-branch.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-branch.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-general.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-general.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-health-education-initiative.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemImageTenth, .node--type-committee .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-card-text .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-and-events--landing .landing-social .flexItemImageTenth, .news-and-events--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .landing-social .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sfa-cards .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .locationMap.contact-location-map-container .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .locationMap .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .grants-and-training-card-wrapper .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-grants-and-training-card .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-division-card .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-tool-icon-card .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-promotional-card .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .strategic-vision-titleblock .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .ppg-titleblock-wrapper .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-human-subject-cards .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-section-card .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-highlight-card .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .health-topic-teaser-container .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageTenth, .about-nhlbi-our-mission-wrapper .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageTenth, .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageTenth,
  .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageTenth, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageTenth,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemImageTenth, .healthEducationBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemImageTenth, .systematicEvidenceReviewsBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemImageTenth,
  .clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemImageTenth,
  .publicationsAndFactSheetsBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .rtFlexContainer .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageTenth, .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-science-supplemental-page .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemImageTenth, .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .researchTopicPublications .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemImageTenth, .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.listTeaserCard .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageTenth, .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.standard-teaser .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageTenth,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.newsEventsCard .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .esi-feature-card .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .featured-science-instance-teaser-container .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .sfa-teaser-container .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemImageTenth, .training-opportunity-card .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-associated-people .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-featured-training-opportun .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-career-stages .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-workforce-development-card .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-and-events-titleblock .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .leadership-container .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageTenth, .leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .branch-leadership-container .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageTenth, .branch-leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemImageTenth, .node--type-general .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemImageTenth, .node--type-general .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-general-publications-rlt .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageTenth, .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageTenth, .node--type-general .field--name-field-related-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .objective-text-container .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .objective-list-container .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-goal-card .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemImageTenth, .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .striped-container-wrapper .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemImageTenth, .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .striped-container .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImageTenth, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemImageTenth,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageTenth, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-awards .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .registerSocialContainer .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .eventdatesLocationType .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-article-container .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-header-container .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemImageTenth, .contacts-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contacts .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemImageTenth, .publicationsBox .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-primary-featured-item .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-featured-items .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-health-topics-container .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-mission-areas-container .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-location-container .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-alumni .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemImageTenth, .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemImageTenth,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemImageTenth, .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemImageTenth,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageTenth, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageTenth,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageTenth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .flexcontainer .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .related-ht-ser-container .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sfa-card .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-speaker .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-executives .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-card-field .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-advisory-committees .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contact-nhlbi-titleblock .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-cards .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .all-grants-foa-container .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-program-officers .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemImageFourth, .node--type-individual-contact .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-division.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-division.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-branch.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-branch.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-general.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-general.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-health-education-initiative.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemImageFourth, .node--type-committee .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-card-text .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-and-events--landing .landing-social .flexItemImageFourth, .news-and-events--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .landing-social .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sfa-cards .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .locationMap.contact-location-map-container .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .locationMap .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .grants-and-training-card-wrapper .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-grants-and-training-card .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-division-card .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-tool-icon-card .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-promotional-card .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .strategic-vision-titleblock .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .ppg-titleblock-wrapper .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-human-subject-cards .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-section-card .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-highlight-card .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .health-topic-teaser-container .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageFourth, .about-nhlbi-our-mission-wrapper .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageFourth, .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageFourth,
  .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageFourth, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageFourth,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemImageFourth, .healthEducationBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemImageFourth, .systematicEvidenceReviewsBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemImageFourth,
  .clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemImageFourth,
  .publicationsAndFactSheetsBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .rtFlexContainer .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageFourth, .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-science-supplemental-page .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemImageFourth, .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .researchTopicPublications .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemImageFourth, .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.listTeaserCard .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageFourth, .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.standard-teaser .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageFourth,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.newsEventsCard .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .esi-feature-card .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .featured-science-instance-teaser-container .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .sfa-teaser-container .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemImageFourth, .training-opportunity-card .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-associated-people .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-featured-training-opportun .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-career-stages .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-workforce-development-card .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-and-events-titleblock .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .leadership-container .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageFourth, .leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .branch-leadership-container .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageFourth, .branch-leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemImageFourth, .node--type-general .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemImageFourth, .node--type-general .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-general-publications-rlt .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageFourth, .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageFourth, .node--type-general .field--name-field-related-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .objective-text-container .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .objective-list-container .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-goal-card .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemImageFourth, .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .striped-container-wrapper .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemImageFourth, .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .striped-container .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImageFourth, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemImageFourth,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageFourth, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-awards .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .registerSocialContainer .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .eventdatesLocationType .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-article-container .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-header-container .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemImageFourth, .contacts-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contacts .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemImageFourth, .publicationsBox .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-primary-featured-item .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-featured-items .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-health-topics-container .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-mission-areas-container .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-location-container .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-alumni .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemImageFourth, .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemImageFourth,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemImageFourth, .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemImageFourth,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageFourth, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageFourth,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageFourth, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .flexcontainer .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .related-ht-ser-container .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sfa-card .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-speaker .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-executives .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-card-field .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-advisory-committees .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contact-nhlbi-titleblock .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-cards .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .all-grants-foa-container .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-program-officers .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemImageThird, .node--type-individual-contact .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemImageThird,
  .node--type-division.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThird,
  .node--type-division.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemImageThird,
  .node--type-branch.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThird,
  .node--type-branch.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemImageThird,
  .node--type-general.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThird,
  .node--type-general.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemImageThird,
  .node--type-health-education-initiative.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThird,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemImageThird, .node--type-committee .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-card-text .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-and-events--landing .landing-social .flexItemImageThird, .news-and-events--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .landing-social .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sfa-cards .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .locationMap.contact-location-map-container .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .locationMap .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .grants-and-training-card-wrapper .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-grants-and-training-card .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-division-card .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-tool-icon-card .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-promotional-card .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .strategic-vision-titleblock .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .ppg-titleblock-wrapper .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-human-subject-cards .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-section-card .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-highlight-card .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .health-topic-teaser-container .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageThird, .about-nhlbi-our-mission-wrapper .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageThird, .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageThird,
  .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageThird, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageThird,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemImageThird, .healthEducationBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemImageThird, .systematicEvidenceReviewsBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemImageThird,
  .clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemImageThird,
  .publicationsAndFactSheetsBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .rtFlexContainer .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageThird, .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-science-supplemental-page .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemImageThird, .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .researchTopicPublications .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemImageThird, .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.listTeaserCard .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageThird, .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.standard-teaser .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageThird,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.newsEventsCard .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .esi-feature-card .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .featured-science-instance-teaser-container .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .sfa-teaser-container .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemImageThird, .training-opportunity-card .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-associated-people .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-featured-training-opportun .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-career-stages .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-workforce-development-card .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-and-events-titleblock .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .leadership-container .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageThird, .leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .branch-leadership-container .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageThird, .branch-leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemImageThird, .node--type-general .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemImageThird, .node--type-general .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-general-publications-rlt .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageThird, .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageThird, .node--type-general .field--name-field-related-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .objective-text-container .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .objective-list-container .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-goal-card .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemImageThird, .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .striped-container-wrapper .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemImageThird, .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .striped-container .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImageThird, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemImageThird,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageThird, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-awards .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .registerSocialContainer .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .eventdatesLocationType .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-article-container .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-header-container .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemImageThird, .contacts-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contacts .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemImageThird, .publicationsBox .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-primary-featured-item .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-featured-items .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-health-topics-container .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-mission-areas-container .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-location-container .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-alumni .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemImageThird, .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemImageThird,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemImageThird, .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemImageThird,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageThird, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageThird,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageThird, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .flexcontainer .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .related-ht-ser-container .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sfa-card .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-speaker .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-executives .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-card-field .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-advisory-committees .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contact-nhlbi-titleblock .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-cards .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .all-grants-foa-container .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-program-officers .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemImageThirdHalf, .node--type-individual-contact .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-division.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-division.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-branch.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-branch.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-general.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-general.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-health-education-initiative.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemImageThirdHalf, .node--type-committee .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-card-text .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-and-events--landing .landing-social .flexItemImageThirdHalf, .news-and-events--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .landing-social .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sfa-cards .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .locationMap.contact-location-map-container .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .locationMap .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .grants-and-training-card-wrapper .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-grants-and-training-card .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-division-card .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-tool-icon-card .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-promotional-card .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .strategic-vision-titleblock .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .ppg-titleblock-wrapper .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-human-subject-cards .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-section-card .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-highlight-card .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .health-topic-teaser-container .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageThirdHalf, .about-nhlbi-our-mission-wrapper .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageThirdHalf, .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageThirdHalf,
  .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageThirdHalf, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageThirdHalf,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemImageThirdHalf, .healthEducationBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemImageThirdHalf, .systematicEvidenceReviewsBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemImageThirdHalf,
  .clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemImageThirdHalf,
  .publicationsAndFactSheetsBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .rtFlexContainer .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageThirdHalf, .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-science-supplemental-page .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemImageThirdHalf, .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .researchTopicPublications .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemImageThirdHalf, .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.listTeaserCard .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageThirdHalf, .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.standard-teaser .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageThirdHalf,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.newsEventsCard .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .esi-feature-card .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .featured-science-instance-teaser-container .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .sfa-teaser-container .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemImageThirdHalf, .training-opportunity-card .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-associated-people .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-featured-training-opportun .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-career-stages .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-workforce-development-card .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-and-events-titleblock .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .leadership-container .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageThirdHalf, .leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .branch-leadership-container .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageThirdHalf, .branch-leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemImageThirdHalf, .node--type-general .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemImageThirdHalf, .node--type-general .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-general-publications-rlt .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageThirdHalf, .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageThirdHalf, .node--type-general .field--name-field-related-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .objective-text-container .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .objective-list-container .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-goal-card .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemImageThirdHalf, .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .striped-container-wrapper .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemImageThirdHalf, .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .striped-container .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImageThirdHalf, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemImageThirdHalf,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageThirdHalf, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-awards .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .registerSocialContainer .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .eventdatesLocationType .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-article-container .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-header-container .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemImageThirdHalf, .contacts-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contacts .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemImageThirdHalf, .publicationsBox .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-primary-featured-item .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-featured-items .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-health-topics-container .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-mission-areas-container .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-location-container .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-alumni .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemImageThirdHalf, .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemImageThirdHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemImageThirdHalf, .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemImageThirdHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageThirdHalf, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageThirdHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageThirdHalf, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .flexcontainer .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .related-ht-ser-container .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sfa-card .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-speaker .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-executives .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-card-field .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-advisory-committees .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contact-nhlbi-titleblock .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-cards .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-employment-opportunity-car .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .all-grants-foa-container .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-program-officers .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .hero-image, .node--type-individual-contact .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .hero-image,
  .node--type-division.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .hero-image,
  .node--type-division.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .hero-image,
  .node--type-branch.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .hero-image,
  .node--type-branch.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .hero-image,
  .node--type-general.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .hero-image,
  .node--type-general.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .hero-image,
  .node--type-health-education-initiative.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .hero-image,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-committee .field--name-field-card-text .hero-image, .node--type-committee .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-card-text .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-and-events--landing .landing-social .hero-image, .news-and-events--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .landing-social .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sfa-cards .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .locationMap.contact-location-map-container .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .locationMap .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .grants-and-training-card-wrapper .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-division-card-wrapper .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .hei-tools-icon-card-wrapper .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-grants-and-training-card .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-division-card .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-tool-icon-card .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-promotional-card .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sv-promotional-cards .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .strategic-vision-titleblock .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .ppg-titleblock-wrapper .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .ppg-guidelines-card-wrapper .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-human-subject-cards .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-section-card .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-highlight-card .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .health-topic-teaser-container .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .hero-image, .about-nhlbi-our-mission-wrapper .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-leadership > .director-bioCard .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .hero-image, .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .hero-image,
  .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-health-professionals-nhlbi .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .hero-image, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .hero-image,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .healthEducationBlock .standard-teaser .hero-image, .healthEducationBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .hero-image, .systematicEvidenceReviewsBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .hero-image,
  .clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .hero-image,
  .publicationsAndFactSheetsBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .rtFlexContainer .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .hero-image, .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-science-supplemental-page .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .researchTopicPublications .hero-image, .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .researchTopicPublications .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .hero-image, .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.listTeaserCard .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .hero-image, .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.standard-teaser .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .hero-image,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.newsEventsCard .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .esi-feature-card .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .featured-science-instance-teaser-container .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .sfa-teaser-container .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .hero-image, .training-opportunity-card .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-associated-people .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-featured-training-opportun .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-career-stages .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-workforce-development-card .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-and-events-titleblock .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contact-box > .field--name-field-contact-methods .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .leadership-container .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .hero-image, .leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .branch-leadership-container .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .hero-image, .branch-leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications .hero-image, .node--type-general .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .hero-image, .node--type-general .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-general-publications-rlt .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .hero-image, .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .hero-image, .node--type-general .field--name-field-related-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .objective-text-container .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .objective-list-container .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-goal-card .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .strategic-vision-landing-goals-wrapper .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .hero-image, .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .striped-container-wrapper .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container .hero-image, .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .striped-container .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .hero-image, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .hero-image,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .hero-image, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-awards .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .registerSocialContainer .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .eventdatesLocationType .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-article-container .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-header-container .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contacts-container .field--name-field-contacts .hero-image, .contacts-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contacts .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsBox .field--name-field-related-publications .hero-image, .publicationsBox .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-primary-featured-item .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-featured-items .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-health-topics-container .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-mission-areas-container .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-location-container .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-alumni .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .hero-image, .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .hero-image,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .hero-image, .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .hero-image,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .hero-image, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .hero-image, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .hero-image,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .flexcontainer .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .related-ht-ser-container .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-card .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-speaker .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-executives .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-card-field .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-advisory-committees .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contact-nhlbi-titleblock .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-cards .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .all-grants-foa-container .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-program-officers .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemImage,
  .node--type-individual-contact .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemImage,
  .node--type-division.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImage,
  .node--type-division.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemImage,
  .node--type-branch.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImage,
  .node--type-branch.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemImage,
  .node--type-general.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImage,
  .node--type-general.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemImage,
  .node--type-health-education-initiative.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImage,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemImage,
  .node--type-committee .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-card-text .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-and-events--landing .landing-social .flexItemImage,
  .news-and-events--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .landing-social .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-cards .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .locationMap.contact-location-map-container .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .locationMap .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .grants-and-training-card-wrapper .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-grants-and-training-card .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-division-card .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-tool-icon-card .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-promotional-card .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .strategic-vision-titleblock .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .ppg-titleblock-wrapper .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-human-subject-cards .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-section-card .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-highlight-card .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .health-topic-teaser-container .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImage,
  .about-nhlbi-our-mission-wrapper .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImage,
  .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImage,
  .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImage,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImage,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemImage,
  .healthEducationBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemImage,
  .systematicEvidenceReviewsBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemImage,
  .clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemImage,
  .publicationsAndFactSheetsBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .rtFlexContainer .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImage,
  .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-science-supplemental-page .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemImage,
  .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .researchTopicPublications .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemImage,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.listTeaserCard .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImage,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.standard-teaser .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImage,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.newsEventsCard .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .esi-feature-card .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .featured-science-instance-teaser-container .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .sfa-teaser-container .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemImage,
  .training-opportunity-card .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-associated-people .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-featured-training-opportun .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-career-stages .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-workforce-development-card .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-and-events-titleblock .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .leadership-container .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImage,
  .leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImage,
  .branch-leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemImage,
  .node--type-general .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemImage,
  .node--type-general .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-general-publications-rlt .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImage,
  .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImage,
  .node--type-general .field--name-field-related-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .objective-text-container .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .objective-list-container .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-goal-card .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemImage,
  .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .striped-container-wrapper .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemImage,
  .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .striped-container .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImage,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemImage,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImage,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-awards .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .registerSocialContainer .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .eventdatesLocationType .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-article-container .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-header-container .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemImage,
  .contacts-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contacts .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemImage,
  .publicationsBox .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-primary-featured-item .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-featured-items .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-health-topics-container .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-mission-areas-container .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-location-container .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-alumni .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemImage,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemImage,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemImage,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemImage,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImage,
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImage,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImage,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .flexcontainer .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .related-ht-ser-container .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-card .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-speaker .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-executives .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-card-field .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-advisory-committees .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contact-nhlbi-titleblock .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-cards .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .all-grants-foa-container .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-program-officers .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-individual-contact .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-division.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-division.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-branch.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-branch.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-general.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-general.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-health-education-initiative.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemImageHalf,
  .node--type-committee .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-card-text .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-and-events--landing .landing-social .flexItemImageHalf,
  .news-and-events--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .landing-social .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-cards .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .locationMap.contact-location-map-container .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .locationMap .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .grants-and-training-card-wrapper .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-grants-and-training-card .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-division-card .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-tool-icon-card .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-promotional-card .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .strategic-vision-titleblock .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .ppg-titleblock-wrapper .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-human-subject-cards .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-section-card .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-highlight-card .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .health-topic-teaser-container .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageHalf,
  .about-nhlbi-our-mission-wrapper .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageHalf,
  .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageHalf,
  .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageHalf,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageHalf,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemImageHalf,
  .healthEducationBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemImageHalf,
  .systematicEvidenceReviewsBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemImageHalf,
  .clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemImageHalf,
  .publicationsAndFactSheetsBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .rtFlexContainer .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageHalf,
  .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-science-supplemental-page .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemImageHalf,
  .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .researchTopicPublications .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemImageHalf,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.listTeaserCard .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageHalf,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.standard-teaser .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageHalf,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.newsEventsCard .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .esi-feature-card .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .featured-science-instance-teaser-container .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .sfa-teaser-container .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemImageHalf,
  .training-opportunity-card .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-associated-people .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-featured-training-opportun .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-career-stages .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-workforce-development-card .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-and-events-titleblock .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .leadership-container .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageHalf,
  .leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageHalf,
  .branch-leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemImageHalf,
  .node--type-general .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemImageHalf,
  .node--type-general .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-general-publications-rlt .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageHalf,
  .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageHalf,
  .node--type-general .field--name-field-related-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .objective-text-container .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .objective-list-container .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-goal-card .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemImageHalf,
  .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .striped-container-wrapper .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemImageHalf,
  .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .striped-container .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImageHalf,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemImageHalf,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageHalf,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-awards .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .registerSocialContainer .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .eventdatesLocationType .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-article-container .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-header-container .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemImageHalf,
  .contacts-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contacts .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemImageHalf,
  .publicationsBox .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-primary-featured-item .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-featured-items .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-health-topics-container .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-mission-areas-container .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-location-container .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-alumni .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemImageHalf,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemImageHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemImageHalf,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemImageHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageHalf,
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .flexcontainer .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .related-ht-ser-container .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-card .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-speaker .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-executives .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-card-field .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-advisory-committees .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contact-nhlbi-titleblock .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-cards .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .all-grants-foa-container .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-program-officers .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-individual-contact .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-division.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-division.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-branch.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-branch.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-general.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-general.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-health-education-initiative.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemImageTenth,
  .node--type-committee .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-card-text .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-and-events--landing .landing-social .flexItemImageTenth,
  .news-and-events--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .landing-social .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-cards .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .locationMap.contact-location-map-container .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .locationMap .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .grants-and-training-card-wrapper .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-grants-and-training-card .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-division-card .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-tool-icon-card .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-promotional-card .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .strategic-vision-titleblock .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .ppg-titleblock-wrapper .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-human-subject-cards .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-section-card .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-highlight-card .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .health-topic-teaser-container .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageTenth,
  .about-nhlbi-our-mission-wrapper .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageTenth,
  .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageTenth,
  .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageTenth,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageTenth,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemImageTenth,
  .healthEducationBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemImageTenth,
  .systematicEvidenceReviewsBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemImageTenth,
  .clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemImageTenth,
  .publicationsAndFactSheetsBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .rtFlexContainer .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageTenth,
  .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-science-supplemental-page .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemImageTenth,
  .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .researchTopicPublications .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemImageTenth,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.listTeaserCard .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageTenth,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.standard-teaser .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageTenth,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.newsEventsCard .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .esi-feature-card .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .featured-science-instance-teaser-container .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .sfa-teaser-container .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemImageTenth,
  .training-opportunity-card .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-associated-people .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-featured-training-opportun .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-career-stages .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-workforce-development-card .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-and-events-titleblock .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .leadership-container .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageTenth,
  .leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageTenth,
  .branch-leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemImageTenth,
  .node--type-general .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemImageTenth,
  .node--type-general .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-general-publications-rlt .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageTenth,
  .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageTenth,
  .node--type-general .field--name-field-related-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .objective-text-container .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .objective-list-container .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-goal-card .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemImageTenth,
  .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .striped-container-wrapper .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemImageTenth,
  .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .striped-container .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImageTenth,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemImageTenth,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageTenth,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-awards .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .registerSocialContainer .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .eventdatesLocationType .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-article-container .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-header-container .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemImageTenth,
  .contacts-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contacts .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemImageTenth,
  .publicationsBox .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-primary-featured-item .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-featured-items .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-health-topics-container .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-mission-areas-container .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-location-container .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-alumni .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemImageTenth,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemImageTenth,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemImageTenth,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemImageTenth,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageTenth,
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageTenth,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageTenth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .flexcontainer .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .related-ht-ser-container .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-card .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-speaker .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-executives .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-card-field .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-advisory-committees .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contact-nhlbi-titleblock .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-cards .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .all-grants-foa-container .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-program-officers .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-individual-contact .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-division.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-division.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-branch.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-branch.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-general.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-general.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-health-education-initiative.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemImageFourth,
  .node--type-committee .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-card-text .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-and-events--landing .landing-social .flexItemImageFourth,
  .news-and-events--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .landing-social .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-cards .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .locationMap.contact-location-map-container .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .locationMap .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .grants-and-training-card-wrapper .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-grants-and-training-card .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-division-card .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-tool-icon-card .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-promotional-card .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .strategic-vision-titleblock .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .ppg-titleblock-wrapper .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-human-subject-cards .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-section-card .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-highlight-card .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .health-topic-teaser-container .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageFourth,
  .about-nhlbi-our-mission-wrapper .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageFourth,
  .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageFourth,
  .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageFourth,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageFourth,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemImageFourth,
  .healthEducationBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemImageFourth,
  .systematicEvidenceReviewsBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemImageFourth,
  .clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemImageFourth,
  .publicationsAndFactSheetsBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .rtFlexContainer .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageFourth,
  .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-science-supplemental-page .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemImageFourth,
  .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .researchTopicPublications .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemImageFourth,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.listTeaserCard .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageFourth,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.standard-teaser .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageFourth,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.newsEventsCard .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .esi-feature-card .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .featured-science-instance-teaser-container .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .sfa-teaser-container .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemImageFourth,
  .training-opportunity-card .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-associated-people .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-featured-training-opportun .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-career-stages .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-workforce-development-card .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-and-events-titleblock .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .leadership-container .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageFourth,
  .leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageFourth,
  .branch-leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemImageFourth,
  .node--type-general .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemImageFourth,
  .node--type-general .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-general-publications-rlt .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageFourth,
  .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageFourth,
  .node--type-general .field--name-field-related-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .objective-text-container .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .objective-list-container .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-goal-card .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemImageFourth,
  .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .striped-container-wrapper .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemImageFourth,
  .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .striped-container .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImageFourth,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemImageFourth,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageFourth,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-awards .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .registerSocialContainer .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .eventdatesLocationType .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-article-container .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-header-container .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemImageFourth,
  .contacts-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contacts .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemImageFourth,
  .publicationsBox .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-primary-featured-item .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-featured-items .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-health-topics-container .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-mission-areas-container .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-location-container .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-alumni .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemImageFourth,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemImageFourth,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemImageFourth,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemImageFourth,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageFourth,
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageFourth,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageFourth,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .flexcontainer .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .related-ht-ser-container .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-card .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-speaker .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-executives .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-card-field .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-advisory-committees .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contact-nhlbi-titleblock .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-cards .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .all-grants-foa-container .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-program-officers .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemImageThird,
  .node--type-individual-contact .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemImageThird,
  .node--type-division.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThird,
  .node--type-division.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemImageThird,
  .node--type-branch.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThird,
  .node--type-branch.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemImageThird,
  .node--type-general.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThird,
  .node--type-general.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemImageThird,
  .node--type-health-education-initiative.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThird,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemImageThird,
  .node--type-committee .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-card-text .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-and-events--landing .landing-social .flexItemImageThird,
  .news-and-events--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .landing-social .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-cards .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .locationMap.contact-location-map-container .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .locationMap .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .grants-and-training-card-wrapper .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-grants-and-training-card .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-division-card .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-tool-icon-card .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-promotional-card .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .strategic-vision-titleblock .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .ppg-titleblock-wrapper .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-human-subject-cards .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-section-card .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-highlight-card .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .health-topic-teaser-container .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageThird,
  .about-nhlbi-our-mission-wrapper .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageThird,
  .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageThird,
  .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageThird,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageThird,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemImageThird,
  .healthEducationBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemImageThird,
  .systematicEvidenceReviewsBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemImageThird,
  .clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemImageThird,
  .publicationsAndFactSheetsBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .rtFlexContainer .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageThird,
  .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-science-supplemental-page .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemImageThird,
  .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .researchTopicPublications .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemImageThird,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.listTeaserCard .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageThird,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.standard-teaser .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageThird,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.newsEventsCard .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .esi-feature-card .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .featured-science-instance-teaser-container .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .sfa-teaser-container .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemImageThird,
  .training-opportunity-card .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-associated-people .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-featured-training-opportun .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-career-stages .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-workforce-development-card .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-and-events-titleblock .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .leadership-container .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageThird,
  .leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageThird,
  .branch-leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemImageThird,
  .node--type-general .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemImageThird,
  .node--type-general .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-general-publications-rlt .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageThird,
  .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageThird,
  .node--type-general .field--name-field-related-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .objective-text-container .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .objective-list-container .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-goal-card .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemImageThird,
  .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .striped-container-wrapper .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemImageThird,
  .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .striped-container .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImageThird,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemImageThird,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageThird,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-awards .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .registerSocialContainer .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .eventdatesLocationType .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-article-container .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-header-container .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemImageThird,
  .contacts-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contacts .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemImageThird,
  .publicationsBox .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-primary-featured-item .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-featured-items .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-health-topics-container .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-mission-areas-container .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-location-container .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-alumni .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemImageThird,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemImageThird,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemImageThird,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemImageThird,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageThird,
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageThird,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageThird,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .flexcontainer .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .related-ht-ser-container .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-card .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-speaker .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-executives .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-card-field .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-advisory-committees .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contact-nhlbi-titleblock .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-cards .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .all-grants-foa-container .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-program-officers .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-individual-contact .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-division.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-division.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-branch.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-branch.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-general.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-general.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-health-education-initiative.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemImageThirdHalf,
  .node--type-committee .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-card-text .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-and-events--landing .landing-social .flexItemImageThirdHalf,
  .news-and-events--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .landing-social .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-cards .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .locationMap.contact-location-map-container .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .locationMap .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .grants-and-training-card-wrapper .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-grants-and-training-card .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-division-card .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-tool-icon-card .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-promotional-card .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .strategic-vision-titleblock .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .ppg-titleblock-wrapper .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-human-subject-cards .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-section-card .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-highlight-card .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .health-topic-teaser-container .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageThirdHalf,
  .about-nhlbi-our-mission-wrapper .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageThirdHalf,
  .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageThirdHalf,
  .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageThirdHalf,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageThirdHalf,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemImageThirdHalf,
  .healthEducationBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemImageThirdHalf,
  .systematicEvidenceReviewsBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemImageThirdHalf,
  .clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemImageThirdHalf,
  .publicationsAndFactSheetsBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .rtFlexContainer .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageThirdHalf,
  .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-science-supplemental-page .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemImageThirdHalf,
  .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .researchTopicPublications .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemImageThirdHalf,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.listTeaserCard .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageThirdHalf,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.standard-teaser .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageThirdHalf,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.newsEventsCard .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .esi-feature-card .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .featured-science-instance-teaser-container .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .sfa-teaser-container .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemImageThirdHalf,
  .training-opportunity-card .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-associated-people .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-featured-training-opportun .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-career-stages .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-workforce-development-card .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-and-events-titleblock .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .leadership-container .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageThirdHalf,
  .leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageThirdHalf,
  .branch-leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemImageThirdHalf,
  .node--type-general .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemImageThirdHalf,
  .node--type-general .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-general-publications-rlt .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageThirdHalf,
  .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageThirdHalf,
  .node--type-general .field--name-field-related-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .objective-text-container .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .objective-list-container .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-goal-card .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemImageThirdHalf,
  .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .striped-container-wrapper .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemImageThirdHalf,
  .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .striped-container .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImageThirdHalf,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemImageThirdHalf,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageThirdHalf,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-awards .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .registerSocialContainer .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .eventdatesLocationType .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-article-container .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-header-container .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemImageThirdHalf,
  .contacts-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contacts .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemImageThirdHalf,
  .publicationsBox .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-primary-featured-item .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-featured-items .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-health-topics-container .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-mission-areas-container .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-location-container .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-alumni .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemImageThirdHalf,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemImageThirdHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemImageThirdHalf,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemImageThirdHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageThirdHalf,
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageThirdHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .flexcontainer .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .related-ht-ser-container .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-card .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-speaker .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-executives .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-card-field .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-advisory-committees .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contact-nhlbi-titleblock .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-cards .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-employment-opportunity-car .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .all-grants-foa-container .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-program-officers .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .hero-image,
  .node--type-individual-contact .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .hero-image,
  .node--type-division.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .hero-image,
  .node--type-division.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .hero-image,
  .node--type-branch.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .hero-image,
  .node--type-branch.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .hero-image,
  .node--type-general.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .hero-image,
  .node--type-general.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .hero-image,
  .node--type-health-education-initiative.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .hero-image,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-committee .field--name-field-card-text .hero-image,
  .node--type-committee .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-card-text .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-and-events--landing .landing-social .hero-image,
  .news-and-events--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .landing-social .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-cards .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .locationMap.contact-location-map-container .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .locationMap .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .grants-and-training-card-wrapper .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-division-card-wrapper .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .hei-tools-icon-card-wrapper .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-grants-and-training-card .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-division-card .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-tool-icon-card .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-promotional-card .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sv-promotional-cards .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .strategic-vision-titleblock .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .ppg-titleblock-wrapper .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .ppg-guidelines-card-wrapper .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-human-subject-cards .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-section-card .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-highlight-card .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .health-topic-teaser-container .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .hero-image,
  .about-nhlbi-our-mission-wrapper .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-leadership > .director-bioCard .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .hero-image,
  .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .hero-image,
  .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-professionals-nhlbi .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .hero-image,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .hero-image,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .healthEducationBlock .standard-teaser .hero-image,
  .healthEducationBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .hero-image,
  .systematicEvidenceReviewsBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .hero-image,
  .clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .hero-image,
  .publicationsAndFactSheetsBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .rtFlexContainer .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .hero-image,
  .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-science-supplemental-page .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .researchTopicPublications .hero-image,
  .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .researchTopicPublications .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .hero-image,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.listTeaserCard .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .hero-image,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.standard-teaser .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .hero-image,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.newsEventsCard .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .esi-feature-card .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .featured-science-instance-teaser-container .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .sfa-teaser-container .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .hero-image,
  .training-opportunity-card .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-associated-people .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-featured-training-opportun .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-career-stages .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-workforce-development-card .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-and-events-titleblock .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contact-box > .field--name-field-contact-methods .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .leadership-container .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .hero-image,
  .leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .hero-image,
  .branch-leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications .hero-image,
  .node--type-general .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .hero-image,
  .node--type-general .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-general-publications-rlt .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .hero-image,
  .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .hero-image,
  .node--type-general .field--name-field-related-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .objective-text-container .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .objective-list-container .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-goal-card .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .strategic-vision-landing-goals-wrapper .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .hero-image,
  .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .striped-container-wrapper .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container .hero-image,
  .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .striped-container .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .hero-image,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .hero-image,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .hero-image,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-awards .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .registerSocialContainer .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .eventdatesLocationType .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-article-container .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-header-container .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contacts-container .field--name-field-contacts .hero-image,
  .contacts-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contacts .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsBox .field--name-field-related-publications .hero-image,
  .publicationsBox .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-primary-featured-item .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-featured-items .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-health-topics-container .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-mission-areas-container .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-location-container .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-alumni .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .hero-image,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .hero-image,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .hero-image,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .hero-image,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .hero-image,
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .hero-image,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .hero-image,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .flexcontainer .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .related-ht-ser-container .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sfa-card .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-speaker .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-executives .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-card-field .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-advisory-committees .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contact-nhlbi-titleblock .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-cards .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .all-grants-foa-container .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-program-officers .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemImage,
  .node--type-individual-contact .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemImage,
  .node--type-division.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImage,
  .node--type-division.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemImage,
  .node--type-branch.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImage,
  .node--type-branch.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemImage,
  .node--type-general.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImage,
  .node--type-general.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemImage,
  .node--type-health-education-initiative.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImage,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemImage,
  .node--type-committee .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-card-text .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-and-events--landing .landing-social .flexItemImage,
  .news-and-events--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .landing-social .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sfa-cards .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .locationMap.contact-location-map-container .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .locationMap .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .grants-and-training-card-wrapper .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-grants-and-training-card .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-division-card .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-tool-icon-card .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-promotional-card .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .strategic-vision-titleblock .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .ppg-titleblock-wrapper .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-human-subject-cards .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-section-card .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-highlight-card .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .health-topic-teaser-container .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImage,
  .about-nhlbi-our-mission-wrapper .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImage,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImage,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImage,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImage,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemImage,
  .healthEducationBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemImage,
  .systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemImage,
  .clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemImage,
  .publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .rtFlexContainer .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImage,
  .node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-science-supplemental-page .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemImage,
  .node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .researchTopicPublications .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemImage,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.listTeaserCard .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImage,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.standard-teaser .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImage,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.newsEventsCard .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .esi-feature-card .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .featured-science-instance-teaser-container .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .sfa-teaser-container .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemImage,
  .training-opportunity-card .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-associated-people .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-featured-training-opportun .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-career-stages .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-workforce-development-card .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-and-events-titleblock .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .leadership-container .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImage,
  .leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .branch-leadership-container .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImage,
  .branch-leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemImage,
  .node--type-general .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemImage,
  .node--type-general .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-general-publications-rlt .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImage,
  .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImage,
  .node--type-general .field--name-field-related-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .objective-text-container .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .objective-list-container .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-goal-card .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemImage,
  .node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .striped-container-wrapper .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemImage,
  .node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .striped-container .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImage,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemImage,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImage,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-awards .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .registerSocialContainer .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .eventdatesLocationType .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-article-container .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-header-container .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemImage,
  .contacts-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contacts .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemImage,
  .publicationsBox .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-primary-featured-item .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-featured-items .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-health-topics-container .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-mission-areas-container .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-location-container .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-alumni .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemImage,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemImage,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemImage,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemImage,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImage,
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImage,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .flexcontainer .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .related-ht-ser-container .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sfa-card .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-speaker .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-executives .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-card-field .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-advisory-committees .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contact-nhlbi-titleblock .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-cards .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .all-grants-foa-container .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-program-officers .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-individual-contact .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-division.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-division.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-branch.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-branch.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-general.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-general.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-health-education-initiative.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemImageHalf,
  .node--type-committee .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-card-text .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-and-events--landing .landing-social .flexItemImageHalf,
  .news-and-events--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .landing-social .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sfa-cards .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .locationMap.contact-location-map-container .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .locationMap .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .grants-and-training-card-wrapper .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-grants-and-training-card .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-division-card .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-tool-icon-card .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-promotional-card .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .strategic-vision-titleblock .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .ppg-titleblock-wrapper .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-human-subject-cards .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-section-card .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-highlight-card .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .health-topic-teaser-container .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageHalf,
  .about-nhlbi-our-mission-wrapper .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageHalf,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageHalf,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageHalf,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageHalf,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemImageHalf,
  .healthEducationBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemImageHalf,
  .systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemImageHalf,
  .clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemImageHalf,
  .publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .rtFlexContainer .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageHalf,
  .node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-science-supplemental-page .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemImageHalf,
  .node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .researchTopicPublications .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemImageHalf,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.listTeaserCard .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageHalf,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.standard-teaser .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageHalf,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.newsEventsCard .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .esi-feature-card .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .featured-science-instance-teaser-container .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .sfa-teaser-container .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemImageHalf,
  .training-opportunity-card .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-associated-people .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-featured-training-opportun .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-career-stages .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-workforce-development-card .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-and-events-titleblock .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .leadership-container .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageHalf,
  .leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .branch-leadership-container .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageHalf,
  .branch-leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemImageHalf,
  .node--type-general .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemImageHalf,
  .node--type-general .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-general-publications-rlt .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageHalf,
  .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageHalf,
  .node--type-general .field--name-field-related-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .objective-text-container .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .objective-list-container .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-goal-card .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemImageHalf,
  .node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .striped-container-wrapper .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemImageHalf,
  .node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .striped-container .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImageHalf,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemImageHalf,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageHalf,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-awards .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .registerSocialContainer .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .eventdatesLocationType .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-article-container .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-header-container .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemImageHalf,
  .contacts-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contacts .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemImageHalf,
  .publicationsBox .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-primary-featured-item .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-featured-items .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-health-topics-container .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-mission-areas-container .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-location-container .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-alumni .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemImageHalf,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemImageHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemImageHalf,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemImageHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageHalf,
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .flexcontainer .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .related-ht-ser-container .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sfa-card .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-speaker .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-executives .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-card-field .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-advisory-committees .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contact-nhlbi-titleblock .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-cards .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .all-grants-foa-container .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-program-officers .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-individual-contact .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-division.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-division.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-branch.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-branch.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-general.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-general.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-health-education-initiative.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemImageTenth,
  .node--type-committee .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-card-text .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-and-events--landing .landing-social .flexItemImageTenth,
  .news-and-events--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .landing-social .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sfa-cards .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .locationMap.contact-location-map-container .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .locationMap .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .grants-and-training-card-wrapper .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-grants-and-training-card .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-division-card .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-tool-icon-card .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-promotional-card .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .strategic-vision-titleblock .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .ppg-titleblock-wrapper .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-human-subject-cards .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-section-card .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-highlight-card .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .health-topic-teaser-container .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageTenth,
  .about-nhlbi-our-mission-wrapper .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageTenth,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageTenth,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageTenth,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageTenth,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemImageTenth,
  .healthEducationBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemImageTenth,
  .systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemImageTenth,
  .clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemImageTenth,
  .publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .rtFlexContainer .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageTenth,
  .node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-science-supplemental-page .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemImageTenth,
  .node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .researchTopicPublications .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemImageTenth,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.listTeaserCard .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageTenth,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.standard-teaser .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageTenth,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.newsEventsCard .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .esi-feature-card .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .featured-science-instance-teaser-container .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .sfa-teaser-container .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemImageTenth,
  .training-opportunity-card .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-associated-people .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-featured-training-opportun .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-career-stages .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-workforce-development-card .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-and-events-titleblock .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .leadership-container .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageTenth,
  .leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .branch-leadership-container .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageTenth,
  .branch-leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemImageTenth,
  .node--type-general .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemImageTenth,
  .node--type-general .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-general-publications-rlt .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageTenth,
  .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageTenth,
  .node--type-general .field--name-field-related-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .objective-text-container .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .objective-list-container .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-goal-card .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemImageTenth,
  .node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .striped-container-wrapper .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemImageTenth,
  .node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .striped-container .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImageTenth,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemImageTenth,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageTenth,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-awards .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .registerSocialContainer .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .eventdatesLocationType .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-article-container .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-header-container .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemImageTenth,
  .contacts-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contacts .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemImageTenth,
  .publicationsBox .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-primary-featured-item .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-featured-items .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-health-topics-container .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-mission-areas-container .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-location-container .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-alumni .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemImageTenth,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemImageTenth,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemImageTenth,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemImageTenth,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageTenth,
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageTenth,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .flexcontainer .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .related-ht-ser-container .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sfa-card .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-speaker .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-executives .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-card-field .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-advisory-committees .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contact-nhlbi-titleblock .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-cards .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .all-grants-foa-container .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-program-officers .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-individual-contact .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-division.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-division.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-branch.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-branch.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-general.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-general.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-health-education-initiative.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemImageFourth,
  .node--type-committee .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-card-text .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-and-events--landing .landing-social .flexItemImageFourth,
  .news-and-events--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .landing-social .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sfa-cards .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .locationMap.contact-location-map-container .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .locationMap .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .grants-and-training-card-wrapper .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-grants-and-training-card .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-division-card .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-tool-icon-card .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-promotional-card .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .strategic-vision-titleblock .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .ppg-titleblock-wrapper .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-human-subject-cards .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-section-card .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-highlight-card .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .health-topic-teaser-container .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageFourth,
  .about-nhlbi-our-mission-wrapper .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageFourth,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageFourth,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageFourth,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageFourth,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemImageFourth,
  .healthEducationBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemImageFourth,
  .systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemImageFourth,
  .clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemImageFourth,
  .publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .rtFlexContainer .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageFourth,
  .node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-science-supplemental-page .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemImageFourth,
  .node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .researchTopicPublications .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemImageFourth,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.listTeaserCard .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageFourth,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.standard-teaser .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageFourth,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.newsEventsCard .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .esi-feature-card .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .featured-science-instance-teaser-container .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .sfa-teaser-container .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemImageFourth,
  .training-opportunity-card .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-associated-people .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-featured-training-opportun .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-career-stages .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-workforce-development-card .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-and-events-titleblock .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .leadership-container .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageFourth,
  .leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .branch-leadership-container .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageFourth,
  .branch-leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemImageFourth,
  .node--type-general .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemImageFourth,
  .node--type-general .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-general-publications-rlt .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageFourth,
  .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageFourth,
  .node--type-general .field--name-field-related-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .objective-text-container .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .objective-list-container .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-goal-card .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemImageFourth,
  .node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .striped-container-wrapper .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemImageFourth,
  .node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .striped-container .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImageFourth,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemImageFourth,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageFourth,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-awards .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .registerSocialContainer .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .eventdatesLocationType .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-article-container .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-header-container .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemImageFourth,
  .contacts-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contacts .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemImageFourth,
  .publicationsBox .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-primary-featured-item .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-featured-items .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-health-topics-container .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-mission-areas-container .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-location-container .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-alumni .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemImageFourth,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemImageFourth,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemImageFourth,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemImageFourth,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageFourth,
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageFourth,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .flexcontainer .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .related-ht-ser-container .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sfa-card .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-speaker .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-executives .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-card-field .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-advisory-committees .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contact-nhlbi-titleblock .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-cards .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .all-grants-foa-container .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-program-officers .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemImageThird,
  .node--type-individual-contact .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemImageThird,
  .node--type-division.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThird,
  .node--type-division.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemImageThird,
  .node--type-branch.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThird,
  .node--type-branch.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemImageThird,
  .node--type-general.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThird,
  .node--type-general.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemImageThird,
  .node--type-health-education-initiative.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThird,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemImageThird,
  .node--type-committee .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-card-text .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-and-events--landing .landing-social .flexItemImageThird,
  .news-and-events--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .landing-social .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sfa-cards .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .locationMap.contact-location-map-container .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .locationMap .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .grants-and-training-card-wrapper .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-grants-and-training-card .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-division-card .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-tool-icon-card .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-promotional-card .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .strategic-vision-titleblock .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .ppg-titleblock-wrapper .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-human-subject-cards .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-section-card .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-highlight-card .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .health-topic-teaser-container .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageThird,
  .about-nhlbi-our-mission-wrapper .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageThird,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageThird,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageThird,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageThird,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemImageThird,
  .healthEducationBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemImageThird,
  .systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemImageThird,
  .clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemImageThird,
  .publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .rtFlexContainer .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageThird,
  .node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-science-supplemental-page .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemImageThird,
  .node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .researchTopicPublications .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemImageThird,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.listTeaserCard .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageThird,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.standard-teaser .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageThird,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.newsEventsCard .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .esi-feature-card .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .featured-science-instance-teaser-container .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .sfa-teaser-container .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemImageThird,
  .training-opportunity-card .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-associated-people .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-featured-training-opportun .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-career-stages .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-workforce-development-card .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-and-events-titleblock .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .leadership-container .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageThird,
  .leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .branch-leadership-container .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageThird,
  .branch-leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemImageThird,
  .node--type-general .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemImageThird,
  .node--type-general .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-general-publications-rlt .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageThird,
  .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageThird,
  .node--type-general .field--name-field-related-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .objective-text-container .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .objective-list-container .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-goal-card .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemImageThird,
  .node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .striped-container-wrapper .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemImageThird,
  .node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .striped-container .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImageThird,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemImageThird,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageThird,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-awards .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .registerSocialContainer .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .eventdatesLocationType .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-article-container .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-header-container .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemImageThird,
  .contacts-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contacts .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemImageThird,
  .publicationsBox .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-primary-featured-item .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-featured-items .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-health-topics-container .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-mission-areas-container .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-location-container .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-alumni .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemImageThird,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemImageThird,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemImageThird,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemImageThird,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageThird,
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageThird,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .flexcontainer .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .related-ht-ser-container .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sfa-card .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-speaker .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-executives .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-card-field .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-advisory-committees .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contact-nhlbi-titleblock .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-cards .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .all-grants-foa-container .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-program-officers .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-individual-contact .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-division.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-division.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-branch.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-branch.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-general.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-general.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-health-education-initiative.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemImageThirdHalf,
  .node--type-committee .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-card-text .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-and-events--landing .landing-social .flexItemImageThirdHalf,
  .news-and-events--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .landing-social .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sfa-cards .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .locationMap.contact-location-map-container .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .locationMap .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .grants-and-training-card-wrapper .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-grants-and-training-card .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-division-card .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-tool-icon-card .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-promotional-card .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .strategic-vision-titleblock .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .ppg-titleblock-wrapper .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-human-subject-cards .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-section-card .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-highlight-card .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .health-topic-teaser-container .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageThirdHalf,
  .about-nhlbi-our-mission-wrapper .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageThirdHalf,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageThirdHalf,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageThirdHalf,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageThirdHalf,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemImageThirdHalf,
  .healthEducationBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemImageThirdHalf,
  .systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemImageThirdHalf,
  .clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemImageThirdHalf,
  .publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .rtFlexContainer .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageThirdHalf,
  .node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-science-supplemental-page .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemImageThirdHalf,
  .node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .researchTopicPublications .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemImageThirdHalf,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.listTeaserCard .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageThirdHalf,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.standard-teaser .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageThirdHalf,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.newsEventsCard .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .esi-feature-card .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .featured-science-instance-teaser-container .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .sfa-teaser-container .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemImageThirdHalf,
  .training-opportunity-card .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-associated-people .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-featured-training-opportun .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-career-stages .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-workforce-development-card .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-and-events-titleblock .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .leadership-container .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageThirdHalf,
  .leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .branch-leadership-container .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageThirdHalf,
  .branch-leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemImageThirdHalf,
  .node--type-general .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemImageThirdHalf,
  .node--type-general .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-general-publications-rlt .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageThirdHalf,
  .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageThirdHalf,
  .node--type-general .field--name-field-related-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .objective-text-container .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .objective-list-container .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-goal-card .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemImageThirdHalf,
  .node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .striped-container-wrapper .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemImageThirdHalf,
  .node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .striped-container .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImageThirdHalf,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemImageThirdHalf,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageThirdHalf,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-awards .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .registerSocialContainer .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .eventdatesLocationType .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-article-container .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-header-container .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemImageThirdHalf,
  .contacts-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contacts .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemImageThirdHalf,
  .publicationsBox .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-primary-featured-item .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-featured-items .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-health-topics-container .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-mission-areas-container .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-location-container .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-alumni .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemImageThirdHalf,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemImageThirdHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemImageThirdHalf,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemImageThirdHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageThirdHalf,
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageThirdHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .flexcontainer .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .related-ht-ser-container .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sfa-card .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-speaker .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-executives .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-card-field .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-advisory-committees .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contact-nhlbi-titleblock .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-cards .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-employment-opportunity-car .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .all-grants-foa-container .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-program-officers .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .hero-image,
  .node--type-individual-contact .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .hero-image,
  .node--type-division.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .hero-image,
  .node--type-division.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .hero-image,
  .node--type-branch.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .hero-image,
  .node--type-branch.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .hero-image,
  .node--type-general.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .hero-image,
  .node--type-general.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .hero-image,
  .node--type-health-education-initiative.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .hero-image,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-committee .field--name-field-card-text .hero-image,
  .node--type-committee .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-card-text .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-and-events--landing .landing-social .hero-image,
  .news-and-events--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .landing-social .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sfa-cards .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .locationMap.contact-location-map-container .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .locationMap .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .grants-and-training-card-wrapper .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-division-card-wrapper .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .hei-tools-icon-card-wrapper .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-grants-and-training-card .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-division-card .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-tool-icon-card .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-promotional-card .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sv-promotional-cards .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .strategic-vision-titleblock .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .ppg-titleblock-wrapper .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .ppg-guidelines-card-wrapper .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-human-subject-cards .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-section-card .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-highlight-card .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .health-topic-teaser-container .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .hero-image,
  .about-nhlbi-our-mission-wrapper .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-leadership > .director-bioCard .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .hero-image,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .hero-image,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-health-professionals-nhlbi .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .hero-image,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .hero-image,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .healthEducationBlock .standard-teaser .hero-image,
  .healthEducationBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .hero-image,
  .systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .hero-image,
  .clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .hero-image,
  .publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .rtFlexContainer .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .hero-image,
  .node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-science-supplemental-page .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .researchTopicPublications .hero-image,
  .node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .researchTopicPublications .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .hero-image,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.listTeaserCard .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .hero-image,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.standard-teaser .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .hero-image,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.newsEventsCard .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .esi-feature-card .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .featured-science-instance-teaser-container .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .sfa-teaser-container .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .hero-image,
  .training-opportunity-card .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-associated-people .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-featured-training-opportun .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-career-stages .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-workforce-development-card .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-and-events-titleblock .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contact-box > .field--name-field-contact-methods .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .leadership-container .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .hero-image,
  .leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .branch-leadership-container .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .hero-image,
  .branch-leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications .hero-image,
  .node--type-general .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .hero-image,
  .node--type-general .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-general-publications-rlt .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .hero-image,
  .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .hero-image,
  .node--type-general .field--name-field-related-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .objective-text-container .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .objective-list-container .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-goal-card .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .strategic-vision-landing-goals-wrapper .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .hero-image,
  .node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .striped-container-wrapper .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container .hero-image,
  .node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .striped-container .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .hero-image,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .hero-image,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .hero-image,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-awards .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .registerSocialContainer .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .eventdatesLocationType .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-article-container .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-header-container .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contacts-container .field--name-field-contacts .hero-image,
  .contacts-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contacts .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsBox .field--name-field-related-publications .hero-image,
  .publicationsBox .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-primary-featured-item .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-featured-items .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-health-topics-container .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-mission-areas-container .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-location-container .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-alumni .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .hero-image,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .hero-image,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .hero-image,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .hero-image,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .hero-image,
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .hero-image,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .flexcontainer .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .related-ht-ser-container .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-card .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-speaker .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-executives .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-card-field .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-advisory-committees .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contact-nhlbi-titleblock .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-cards .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .all-grants-foa-container .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-program-officers .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemImage,
  .node--type-individual-contact .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemImage,
  .node--type-division.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImage,
  .node--type-division.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemImage,
  .node--type-branch.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImage,
  .node--type-branch.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemImage,
  .node--type-general.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImage,
  .node--type-general.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemImage,
  .node--type-health-education-initiative.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImage,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemImage,
  .node--type-committee .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-card-text .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-and-events--landing .landing-social .flexItemImage,
  .news-and-events--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .landing-social .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-cards .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .locationMap.contact-location-map-container .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .locationMap .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .grants-and-training-card-wrapper .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-grants-and-training-card .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-division-card .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-tool-icon-card .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-promotional-card .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .strategic-vision-titleblock .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .ppg-titleblock-wrapper .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-human-subject-cards .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-section-card .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-highlight-card .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .health-topic-teaser-container .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImage,
  .about-nhlbi-our-mission-wrapper .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImage,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImage,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImage,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImage,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemImage,
  .healthEducationBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemImage,
  .systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemImage,
  .clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemImage,
  .publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .rtFlexContainer .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImage,
  .node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-science-supplemental-page .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemImage,
  .node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .researchTopicPublications .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemImage,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.listTeaserCard .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImage,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.standard-teaser .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImage,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.newsEventsCard .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .esi-feature-card .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .featured-science-instance-teaser-container .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .sfa-teaser-container .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemImage,
  .training-opportunity-card .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-associated-people .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-featured-training-opportun .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-career-stages .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-workforce-development-card .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-and-events-titleblock .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .leadership-container .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImage,
  .leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImage,
  .branch-leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemImage,
  .node--type-general .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemImage,
  .node--type-general .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-general-publications-rlt .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImage,
  .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImage,
  .node--type-general .field--name-field-related-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .objective-text-container .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .objective-list-container .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-goal-card .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemImage,
  .node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .striped-container-wrapper .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemImage,
  .node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .striped-container .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImage,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemImage,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImage,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-awards .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .registerSocialContainer .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .eventdatesLocationType .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-article-container .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-header-container .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemImage,
  .contacts-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contacts .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemImage,
  .publicationsBox .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-primary-featured-item .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-featured-items .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-health-topics-container .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-mission-areas-container .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-location-container .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-alumni .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemImage,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemImage,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemImage,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemImage,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImage,
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImage,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImage,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .flexcontainer .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .related-ht-ser-container .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-card .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-speaker .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-executives .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-card-field .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-advisory-committees .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contact-nhlbi-titleblock .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-cards .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .all-grants-foa-container .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-program-officers .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-individual-contact .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-division.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-division.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-branch.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-branch.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-general.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-general.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-health-education-initiative.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemImageHalf,
  .node--type-committee .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-card-text .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-and-events--landing .landing-social .flexItemImageHalf,
  .news-and-events--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .landing-social .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-cards .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .locationMap.contact-location-map-container .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .locationMap .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .grants-and-training-card-wrapper .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-grants-and-training-card .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-division-card .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-tool-icon-card .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-promotional-card .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .strategic-vision-titleblock .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .ppg-titleblock-wrapper .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-human-subject-cards .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-section-card .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-highlight-card .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .health-topic-teaser-container .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageHalf,
  .about-nhlbi-our-mission-wrapper .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageHalf,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageHalf,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageHalf,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageHalf,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemImageHalf,
  .healthEducationBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemImageHalf,
  .systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemImageHalf,
  .clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemImageHalf,
  .publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .rtFlexContainer .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageHalf,
  .node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-science-supplemental-page .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemImageHalf,
  .node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .researchTopicPublications .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemImageHalf,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.listTeaserCard .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageHalf,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.standard-teaser .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageHalf,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.newsEventsCard .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .esi-feature-card .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .featured-science-instance-teaser-container .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .sfa-teaser-container .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemImageHalf,
  .training-opportunity-card .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-associated-people .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-featured-training-opportun .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-career-stages .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-workforce-development-card .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-and-events-titleblock .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .leadership-container .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageHalf,
  .leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageHalf,
  .branch-leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemImageHalf,
  .node--type-general .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemImageHalf,
  .node--type-general .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-general-publications-rlt .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageHalf,
  .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageHalf,
  .node--type-general .field--name-field-related-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .objective-text-container .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .objective-list-container .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-goal-card .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemImageHalf,
  .node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .striped-container-wrapper .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemImageHalf,
  .node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .striped-container .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImageHalf,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemImageHalf,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageHalf,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-awards .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .registerSocialContainer .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .eventdatesLocationType .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-article-container .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-header-container .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemImageHalf,
  .contacts-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contacts .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemImageHalf,
  .publicationsBox .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-primary-featured-item .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-featured-items .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-health-topics-container .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-mission-areas-container .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-location-container .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-alumni .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemImageHalf,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemImageHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemImageHalf,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemImageHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageHalf,
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .flexcontainer .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .related-ht-ser-container .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-card .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-speaker .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-executives .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-card-field .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-advisory-committees .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contact-nhlbi-titleblock .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-cards .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .all-grants-foa-container .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-program-officers .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-individual-contact .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-division.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-division.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-branch.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-branch.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-general.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-general.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-health-education-initiative.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemImageTenth,
  .node--type-committee .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-card-text .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-and-events--landing .landing-social .flexItemImageTenth,
  .news-and-events--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .landing-social .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-cards .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .locationMap.contact-location-map-container .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .locationMap .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .grants-and-training-card-wrapper .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-grants-and-training-card .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-division-card .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-tool-icon-card .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-promotional-card .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .strategic-vision-titleblock .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .ppg-titleblock-wrapper .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-human-subject-cards .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-section-card .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-highlight-card .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .health-topic-teaser-container .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageTenth,
  .about-nhlbi-our-mission-wrapper .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageTenth,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageTenth,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageTenth,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageTenth,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemImageTenth,
  .healthEducationBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemImageTenth,
  .systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemImageTenth,
  .clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemImageTenth,
  .publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .rtFlexContainer .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageTenth,
  .node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-science-supplemental-page .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemImageTenth,
  .node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .researchTopicPublications .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemImageTenth,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.listTeaserCard .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageTenth,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.standard-teaser .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageTenth,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.newsEventsCard .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .esi-feature-card .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .featured-science-instance-teaser-container .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .sfa-teaser-container .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemImageTenth,
  .training-opportunity-card .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-associated-people .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-featured-training-opportun .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-career-stages .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-workforce-development-card .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-and-events-titleblock .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .leadership-container .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageTenth,
  .leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageTenth,
  .branch-leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemImageTenth,
  .node--type-general .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemImageTenth,
  .node--type-general .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-general-publications-rlt .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageTenth,
  .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageTenth,
  .node--type-general .field--name-field-related-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .objective-text-container .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .objective-list-container .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-goal-card .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemImageTenth,
  .node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .striped-container-wrapper .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemImageTenth,
  .node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .striped-container .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImageTenth,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemImageTenth,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageTenth,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-awards .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .registerSocialContainer .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .eventdatesLocationType .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-article-container .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-header-container .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemImageTenth,
  .contacts-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contacts .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemImageTenth,
  .publicationsBox .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-primary-featured-item .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-featured-items .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-health-topics-container .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-mission-areas-container .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-location-container .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-alumni .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemImageTenth,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemImageTenth,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemImageTenth,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemImageTenth,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageTenth,
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageTenth,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageTenth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .flexcontainer .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .related-ht-ser-container .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-card .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-speaker .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-executives .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-card-field .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-advisory-committees .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contact-nhlbi-titleblock .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-cards .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .all-grants-foa-container .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-program-officers .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-individual-contact .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-division.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-division.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-branch.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-branch.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-general.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-general.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-health-education-initiative.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemImageFourth,
  .node--type-committee .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-card-text .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-and-events--landing .landing-social .flexItemImageFourth,
  .news-and-events--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .landing-social .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-cards .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .locationMap.contact-location-map-container .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .locationMap .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .grants-and-training-card-wrapper .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-grants-and-training-card .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-division-card .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-tool-icon-card .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-promotional-card .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .strategic-vision-titleblock .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .ppg-titleblock-wrapper .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-human-subject-cards .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-section-card .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-highlight-card .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .health-topic-teaser-container .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageFourth,
  .about-nhlbi-our-mission-wrapper .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageFourth,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageFourth,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageFourth,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageFourth,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemImageFourth,
  .healthEducationBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemImageFourth,
  .systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemImageFourth,
  .clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemImageFourth,
  .publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .rtFlexContainer .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageFourth,
  .node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-science-supplemental-page .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemImageFourth,
  .node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .researchTopicPublications .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemImageFourth,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.listTeaserCard .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageFourth,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.standard-teaser .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageFourth,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.newsEventsCard .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .esi-feature-card .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .featured-science-instance-teaser-container .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .sfa-teaser-container .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemImageFourth,
  .training-opportunity-card .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-associated-people .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-featured-training-opportun .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-career-stages .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-workforce-development-card .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-and-events-titleblock .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .leadership-container .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageFourth,
  .leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageFourth,
  .branch-leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemImageFourth,
  .node--type-general .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemImageFourth,
  .node--type-general .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-general-publications-rlt .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageFourth,
  .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageFourth,
  .node--type-general .field--name-field-related-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .objective-text-container .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .objective-list-container .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-goal-card .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemImageFourth,
  .node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .striped-container-wrapper .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemImageFourth,
  .node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .striped-container .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImageFourth,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemImageFourth,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageFourth,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-awards .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .registerSocialContainer .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .eventdatesLocationType .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-article-container .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-header-container .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemImageFourth,
  .contacts-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contacts .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemImageFourth,
  .publicationsBox .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-primary-featured-item .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-featured-items .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-health-topics-container .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-mission-areas-container .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-location-container .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-alumni .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemImageFourth,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemImageFourth,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemImageFourth,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemImageFourth,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageFourth,
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageFourth,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageFourth,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .flexcontainer .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .related-ht-ser-container .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-card .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-speaker .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-executives .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-card-field .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-advisory-committees .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contact-nhlbi-titleblock .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-cards .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .all-grants-foa-container .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-program-officers .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemImageThird,
  .node--type-individual-contact .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemImageThird,
  .node--type-division.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThird,
  .node--type-division.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemImageThird,
  .node--type-branch.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThird,
  .node--type-branch.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemImageThird,
  .node--type-general.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThird,
  .node--type-general.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemImageThird,
  .node--type-health-education-initiative.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThird,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemImageThird,
  .node--type-committee .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-card-text .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-and-events--landing .landing-social .flexItemImageThird,
  .news-and-events--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .landing-social .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-cards .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .locationMap.contact-location-map-container .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .locationMap .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .grants-and-training-card-wrapper .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-grants-and-training-card .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-division-card .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-tool-icon-card .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-promotional-card .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .strategic-vision-titleblock .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .ppg-titleblock-wrapper .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-human-subject-cards .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-section-card .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-highlight-card .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .health-topic-teaser-container .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageThird,
  .about-nhlbi-our-mission-wrapper .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageThird,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageThird,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageThird,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageThird,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemImageThird,
  .healthEducationBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemImageThird,
  .systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemImageThird,
  .clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemImageThird,
  .publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .rtFlexContainer .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageThird,
  .node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-science-supplemental-page .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemImageThird,
  .node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .researchTopicPublications .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemImageThird,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.listTeaserCard .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageThird,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.standard-teaser .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageThird,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.newsEventsCard .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .esi-feature-card .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .featured-science-instance-teaser-container .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .sfa-teaser-container .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemImageThird,
  .training-opportunity-card .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-associated-people .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-featured-training-opportun .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-career-stages .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-workforce-development-card .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-and-events-titleblock .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .leadership-container .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageThird,
  .leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageThird,
  .branch-leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemImageThird,
  .node--type-general .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemImageThird,
  .node--type-general .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-general-publications-rlt .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageThird,
  .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageThird,
  .node--type-general .field--name-field-related-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .objective-text-container .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .objective-list-container .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-goal-card .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemImageThird,
  .node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .striped-container-wrapper .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemImageThird,
  .node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .striped-container .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImageThird,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemImageThird,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageThird,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-awards .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .registerSocialContainer .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .eventdatesLocationType .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-article-container .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-header-container .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemImageThird,
  .contacts-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contacts .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemImageThird,
  .publicationsBox .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-primary-featured-item .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-featured-items .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-health-topics-container .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-mission-areas-container .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-location-container .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-alumni .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemImageThird,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemImageThird,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemImageThird,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemImageThird,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageThird,
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageThird,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageThird,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .flexcontainer .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .related-ht-ser-container .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-card .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-speaker .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-executives .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-card-field .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-advisory-committees .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contact-nhlbi-titleblock .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-cards .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .all-grants-foa-container .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-program-officers .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-individual-contact .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-division.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-division.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-branch.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-branch.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-general.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-general.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-health-education-initiative.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemImageThirdHalf,
  .node--type-committee .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-card-text .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-and-events--landing .landing-social .flexItemImageThirdHalf,
  .news-and-events--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .landing-social .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-cards .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .locationMap.contact-location-map-container .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .locationMap .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .grants-and-training-card-wrapper .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-grants-and-training-card .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-division-card .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-tool-icon-card .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-promotional-card .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .strategic-vision-titleblock .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .ppg-titleblock-wrapper .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-human-subject-cards .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-section-card .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-highlight-card .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .health-topic-teaser-container .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageThirdHalf,
  .about-nhlbi-our-mission-wrapper .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageThirdHalf,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageThirdHalf,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemImageThirdHalf,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemImageThirdHalf,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemImageThirdHalf,
  .healthEducationBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemImageThirdHalf,
  .systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemImageThirdHalf,
  .clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemImageThirdHalf,
  .publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .rtFlexContainer .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageThirdHalf,
  .node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-science-supplemental-page .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemImageThirdHalf,
  .node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .researchTopicPublications .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemImageThirdHalf,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.listTeaserCard .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageThirdHalf,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.standard-teaser .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageThirdHalf,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.newsEventsCard .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .esi-feature-card .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .featured-science-instance-teaser-container .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .sfa-teaser-container .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemImageThirdHalf,
  .training-opportunity-card .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-associated-people .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-featured-training-opportun .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-career-stages .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-workforce-development-card .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-and-events-titleblock .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .leadership-container .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageThirdHalf,
  .leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageThirdHalf,
  .branch-leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemImageThirdHalf,
  .node--type-general .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemImageThirdHalf,
  .node--type-general .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-general-publications-rlt .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageThirdHalf,
  .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageThirdHalf,
  .node--type-general .field--name-field-related-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .objective-text-container .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .objective-list-container .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-goal-card .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemImageThirdHalf,
  .node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .striped-container-wrapper .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemImageThirdHalf,
  .node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .striped-container .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImageThirdHalf,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemImageThirdHalf,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageThirdHalf,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-awards .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .registerSocialContainer .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .eventdatesLocationType .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-article-container .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-header-container .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemImageThirdHalf,
  .contacts-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contacts .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemImageThirdHalf,
  .publicationsBox .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-primary-featured-item .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-featured-items .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-health-topics-container .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-mission-areas-container .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-location-container .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-alumni .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemImageThirdHalf,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemImageThirdHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemImageThirdHalf,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemImageThirdHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageThirdHalf,
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageThirdHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .flexcontainer .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .related-ht-ser-container .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-card .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-speaker .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-executives .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-card-field .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-advisory-committees .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contact-nhlbi-titleblock .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-cards .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-employment-opportunity-car .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .all-grants-foa-container .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-program-officers .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .hero-image,
  .node--type-individual-contact .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .hero-image,
  .node--type-division.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .hero-image,
  .node--type-division.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .hero-image,
  .node--type-branch.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .hero-image,
  .node--type-branch.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .hero-image,
  .node--type-general.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .hero-image,
  .node--type-general.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .hero-image,
  .node--type-health-education-initiative.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .hero-image,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-committee .field--name-field-card-text .hero-image,
  .node--type-committee .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-card-text .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-and-events--landing .landing-social .hero-image,
  .news-and-events--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .landing-social .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-cards .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .locationMap.contact-location-map-container .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .locationMap .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .grants-and-training-card-wrapper .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-division-card-wrapper .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .hei-tools-icon-card-wrapper .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-grants-and-training-card .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-division-card .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-tool-icon-card .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-promotional-card .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sv-promotional-cards .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .strategic-vision-titleblock .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .ppg-titleblock-wrapper .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .ppg-guidelines-card-wrapper .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-human-subject-cards .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-section-card .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-highlight-card .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .health-topic-teaser-container .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .hero-image,
  .about-nhlbi-our-mission-wrapper .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-leadership > .director-bioCard .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .hero-image,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .hero-image,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-professionals-nhlbi .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .hero-image,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .hero-image,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .healthEducationBlock .standard-teaser .hero-image,
  .healthEducationBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .hero-image,
  .systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .hero-image,
  .clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .hero-image,
  .publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .rtFlexContainer .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .hero-image,
  .node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-science-supplemental-page .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .researchTopicPublications .hero-image,
  .node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .researchTopicPublications .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .hero-image,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.listTeaserCard .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .hero-image,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.standard-teaser .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .hero-image,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.newsEventsCard .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .esi-feature-card .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .featured-science-instance-teaser-container .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .sfa-teaser-container .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .hero-image,
  .training-opportunity-card .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-associated-people .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-featured-training-opportun .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-career-stages .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-workforce-development-card .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-and-events-titleblock .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contact-box > .field--name-field-contact-methods .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .leadership-container .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .hero-image,
  .leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .hero-image,
  .branch-leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications .hero-image,
  .node--type-general .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .hero-image,
  .node--type-general .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-general-publications-rlt .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .hero-image,
  .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .hero-image,
  .node--type-general .field--name-field-related-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .objective-text-container .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .objective-list-container .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-goal-card .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .strategic-vision-landing-goals-wrapper .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .hero-image,
  .node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .striped-container-wrapper .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container .hero-image,
  .node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .striped-container .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .hero-image,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .hero-image,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .hero-image,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-awards .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .registerSocialContainer .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .eventdatesLocationType .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-article-container .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-header-container .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contacts-container .field--name-field-contacts .hero-image,
  .contacts-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contacts .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsBox .field--name-field-related-publications .hero-image,
  .publicationsBox .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-primary-featured-item .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-featured-items .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-health-topics-container .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-mission-areas-container .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-location-container .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-alumni .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .hero-image,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .hero-image,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .hero-image,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .hero-image,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .hero-image,
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .hero-image,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .hero-image,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .hero-image {
    padding-top: 1em;
    padding-bottom: 1em;
    margin-left: auto;
    margin-right: auto;
    width: auto;
  }
}
/* line 46, ../sass/components/_health_pro.scss */
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .flexcontainer .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .related-ht-ser-container .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sfa-card .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-speaker .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-executives .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-card-field .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-advisory-committees .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contact-nhlbi-titleblock .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-cards .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .all-grants-foa-container .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-program-officers .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemText, .node--type-individual-contact .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemText,
.node--type-division.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText,
.node--type-division.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemText,
.node--type-branch.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText,
.node--type-branch.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemText,
.node--type-general.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText,
.node--type-general.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemText,
.node--type-health-education-initiative.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText,
.node--type-health-education-initiative.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemText, .node--type-committee .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-card-text .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-and-events--landing .landing-social .flexItemText, .news-and-events--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .landing-social .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sfa-cards .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .locationMap.contact-location-map-container .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .locationMap .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .grants-and-training-card-wrapper .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-grants-and-training-card .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-division-card .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-tool-icon-card .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-promotional-card .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .strategic-vision-titleblock .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .ppg-titleblock-wrapper .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-human-subject-cards .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-section-card .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-highlight-card .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .health-topic-teaser-container .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText, .about-nhlbi-our-mission-wrapper .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemText, .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemText,
.nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemText, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemText,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemText, .healthEducationBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemText, .systematicEvidenceReviewsBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemText,
.clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemText,
.publicationsAndFactSheetsBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .rtFlexContainer .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText, .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-science-supplemental-page .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemText, .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .researchTopicPublications .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemText, .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.listTeaserCard .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemText, .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.standard-teaser .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemText,
.node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.newsEventsCard .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .esi-feature-card .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .featured-science-instance-teaser-container .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .sfa-teaser-container .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemText, .training-opportunity-card .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-associated-people .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-featured-training-opportun .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-career-stages .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-workforce-development-card .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-and-events-titleblock .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .leadership-container .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText, .leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .branch-leadership-container .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText, .branch-leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemText, .node--type-general .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemText, .node--type-general .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-general-publications-rlt .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemText, .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemText, .node--type-general .field--name-field-related-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .objective-text-container .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .objective-list-container .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-goal-card .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemText, .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .striped-container-wrapper .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemText, .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .striped-container .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemText, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemText,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemText, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-awards .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .registerSocialContainer .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .eventdatesLocationType .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-article-container .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-header-container .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemText, .contacts-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contacts .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemText, .publicationsBox .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-primary-featured-item .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-featured-items .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-health-topics-container .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-mission-areas-container .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-location-container .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-alumni .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemText, .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemText,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemText, .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemText,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .flexcontainer .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .related-ht-ser-container .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-card .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-speaker .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-executives .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-card-field .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-advisory-committees .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contact-nhlbi-titleblock .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-cards .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .all-grants-foa-container .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-program-officers .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemText,
.node--type-individual-contact .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemText,
.node--type-division.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText,
.node--type-division.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemText,
.node--type-branch.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText,
.node--type-branch.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemText,
.node--type-general.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText,
.node--type-general.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemText,
.node--type-health-education-initiative.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText,
.node--type-health-education-initiative.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemText,
.node--type-committee .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-card-text .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-and-events--landing .landing-social .flexItemText,
.news-and-events--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .landing-social .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-cards .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .locationMap.contact-location-map-container .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .locationMap .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .grants-and-training-card-wrapper .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-grants-and-training-card .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-division-card .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-tool-icon-card .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-promotional-card .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .strategic-vision-titleblock .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .ppg-titleblock-wrapper .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-human-subject-cards .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-section-card .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-highlight-card .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .health-topic-teaser-container .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText,
.about-nhlbi-our-mission-wrapper .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemText,
.nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemText,
.nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemText,
.nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemText,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemText,
.healthEducationBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemText,
.systematicEvidenceReviewsBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemText,
.clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemText,
.publicationsAndFactSheetsBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .rtFlexContainer .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText,
.node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-science-supplemental-page .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemText,
.node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .researchTopicPublications .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemText,
.node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.listTeaserCard .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemText,
.node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.standard-teaser .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemText,
.node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.newsEventsCard .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .esi-feature-card .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .featured-science-instance-teaser-container .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .sfa-teaser-container .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemText,
.training-opportunity-card .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-associated-people .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-featured-training-opportun .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-career-stages .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-workforce-development-card .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-and-events-titleblock .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .leadership-container .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText,
.leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText,
.branch-leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemText,
.node--type-general .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemText,
.node--type-general .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-general-publications-rlt .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemText,
.node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemText,
.node--type-general .field--name-field-related-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .objective-text-container .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .objective-list-container .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-goal-card .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemText,
.node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .striped-container-wrapper .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemText,
.node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .striped-container .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemText,
.node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemText,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemText,
.node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-awards .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .registerSocialContainer .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .eventdatesLocationType .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-article-container .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-header-container .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemText,
.contacts-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contacts .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemText,
.publicationsBox .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-primary-featured-item .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-featured-items .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-health-topics-container .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-mission-areas-container .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-location-container .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-alumni .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemText,
.node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemText,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemText,
.node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemText,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText,
.node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .flexcontainer .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .related-ht-ser-container .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sfa-card .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-speaker .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-executives .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-card-field .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-advisory-committees .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contact-nhlbi-titleblock .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-cards .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .all-grants-foa-container .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-program-officers .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemText,
.node--type-individual-contact .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemText,
.node--type-division.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText,
.node--type-division.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemText,
.node--type-branch.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText,
.node--type-branch.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemText,
.node--type-general.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText,
.node--type-general.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemText,
.node--type-health-education-initiative.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText,
.node--type-health-education-initiative.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemText,
.node--type-committee .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-card-text .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-and-events--landing .landing-social .flexItemText,
.news-and-events--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .landing-social .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sfa-cards .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .locationMap.contact-location-map-container .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .locationMap .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .grants-and-training-card-wrapper .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-grants-and-training-card .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-division-card .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-tool-icon-card .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-promotional-card .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .strategic-vision-titleblock .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .ppg-titleblock-wrapper .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-human-subject-cards .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-section-card .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-highlight-card .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .health-topic-teaser-container .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText,
.about-nhlbi-our-mission-wrapper .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemText,
.nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemText,
.nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemText,
.nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemText,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemText,
.healthEducationBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemText,
.systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemText,
.clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemText,
.publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .rtFlexContainer .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText,
.node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-science-supplemental-page .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemText,
.node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .researchTopicPublications .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemText,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.listTeaserCard .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemText,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.standard-teaser .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemText,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.newsEventsCard .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .esi-feature-card .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .featured-science-instance-teaser-container .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .sfa-teaser-container .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemText,
.training-opportunity-card .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-associated-people .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-featured-training-opportun .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-career-stages .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-workforce-development-card .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-and-events-titleblock .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .leadership-container .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText,
.leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .branch-leadership-container .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText,
.branch-leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemText,
.node--type-general .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemText,
.node--type-general .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-general-publications-rlt .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemText,
.node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemText,
.node--type-general .field--name-field-related-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .objective-text-container .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .objective-list-container .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-goal-card .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemText,
.node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .striped-container-wrapper .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemText,
.node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .striped-container .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemText,
.node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemText,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemText,
.node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-awards .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .registerSocialContainer .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .eventdatesLocationType .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-article-container .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-header-container .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemText,
.contacts-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contacts .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemText,
.publicationsBox .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-primary-featured-item .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-featured-items .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-health-topics-container .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-mission-areas-container .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-location-container .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-alumni .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemText,
.node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemText,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemText,
.node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemText,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText,
.node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .flexcontainer .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .related-ht-ser-container .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-card .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-speaker .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-executives .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-card-field .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-advisory-committees .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contact-nhlbi-titleblock .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-cards .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .all-grants-foa-container .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-program-officers .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemText,
.node--type-individual-contact .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemText,
.node--type-division.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText,
.node--type-division.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemText,
.node--type-branch.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText,
.node--type-branch.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemText,
.node--type-general.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText,
.node--type-general.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemText,
.node--type-health-education-initiative.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText,
.node--type-health-education-initiative.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemText,
.node--type-committee .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-card-text .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-and-events--landing .landing-social .flexItemText,
.news-and-events--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .landing-social .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-cards .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .locationMap.contact-location-map-container .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .locationMap .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .grants-and-training-card-wrapper .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-grants-and-training-card .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-division-card .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-tool-icon-card .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-promotional-card .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .strategic-vision-titleblock .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .ppg-titleblock-wrapper .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-human-subject-cards .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-section-card .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-highlight-card .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .health-topic-teaser-container .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText,
.about-nhlbi-our-mission-wrapper .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemText,
.nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemText,
.nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemText,
.nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemText,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemText,
.healthEducationBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemText,
.systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemText,
.clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemText,
.publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .rtFlexContainer .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText,
.node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-science-supplemental-page .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemText,
.node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .researchTopicPublications .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemText,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.listTeaserCard .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemText,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.standard-teaser .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemText,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.newsEventsCard .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .esi-feature-card .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .featured-science-instance-teaser-container .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .sfa-teaser-container .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemText,
.training-opportunity-card .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-associated-people .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-featured-training-opportun .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-career-stages .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-workforce-development-card .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-and-events-titleblock .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .leadership-container .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText,
.leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText,
.branch-leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemText,
.node--type-general .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemText,
.node--type-general .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-general-publications-rlt .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemText,
.node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemText,
.node--type-general .field--name-field-related-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .objective-text-container .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .objective-list-container .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-goal-card .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemText,
.node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .striped-container-wrapper .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemText,
.node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .striped-container .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemText,
.node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemText,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemText,
.node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-awards .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .registerSocialContainer .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .eventdatesLocationType .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-article-container .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-header-container .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemText,
.contacts-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contacts .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemText,
.publicationsBox .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-primary-featured-item .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-featured-items .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-health-topics-container .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-mission-areas-container .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-location-container .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-alumni .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemText,
.node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemText,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemText,
.node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemText,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText,
.node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText {
  -webkit-box-ordinal-group: 2;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
  padding-top: 0;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 46, ../sass/components/_health_pro.scss */
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .flexcontainer .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .related-ht-ser-container .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sfa-card .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-speaker .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-executives .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-card-field .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-advisory-committees .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contact-nhlbi-titleblock .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-cards .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .all-grants-foa-container .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-program-officers .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemText, .node--type-individual-contact .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemText,
  .node--type-division.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText,
  .node--type-division.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemText,
  .node--type-branch.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText,
  .node--type-branch.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemText,
  .node--type-general.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText,
  .node--type-general.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemText,
  .node--type-health-education-initiative.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemText, .node--type-committee .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-card-text .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-and-events--landing .landing-social .flexItemText, .news-and-events--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .landing-social .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sfa-cards .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .locationMap.contact-location-map-container .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .locationMap .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .grants-and-training-card-wrapper .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-grants-and-training-card .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-division-card .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-tool-icon-card .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-promotional-card .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .strategic-vision-titleblock .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .ppg-titleblock-wrapper .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-human-subject-cards .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-section-card .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-highlight-card .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .health-topic-teaser-container .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText, .about-nhlbi-our-mission-wrapper .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemText, .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemText,
  .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemText, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemText,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemText, .healthEducationBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemText, .systematicEvidenceReviewsBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemText,
  .clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemText,
  .publicationsAndFactSheetsBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .rtFlexContainer .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText, .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-science-supplemental-page .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemText, .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .researchTopicPublications .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemText, .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.listTeaserCard .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemText, .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.standard-teaser .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemText,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.newsEventsCard .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .esi-feature-card .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .featured-science-instance-teaser-container .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .sfa-teaser-container .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemText, .training-opportunity-card .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-associated-people .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-featured-training-opportun .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-career-stages .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-workforce-development-card .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-and-events-titleblock .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .leadership-container .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText, .leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .branch-leadership-container .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText, .branch-leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemText, .node--type-general .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemText, .node--type-general .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-general-publications-rlt .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemText, .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemText, .node--type-general .field--name-field-related-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .objective-text-container .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .objective-list-container .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-goal-card .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemText, .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .striped-container-wrapper .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemText, .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .striped-container .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemText, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemText,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemText, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-awards .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .registerSocialContainer .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .eventdatesLocationType .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-article-container .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-header-container .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemText, .contacts-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contacts .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemText, .publicationsBox .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-primary-featured-item .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-featured-items .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-health-topics-container .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-mission-areas-container .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-location-container .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-alumni .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemText, .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemText,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemText, .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemText,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemText, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .flexcontainer .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .related-ht-ser-container .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-card .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-speaker .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-executives .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-card-field .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-advisory-committees .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contact-nhlbi-titleblock .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-cards .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .all-grants-foa-container .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-program-officers .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemText,
  .node--type-individual-contact .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemText,
  .node--type-division.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText,
  .node--type-division.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemText,
  .node--type-branch.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText,
  .node--type-branch.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemText,
  .node--type-general.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText,
  .node--type-general.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemText,
  .node--type-health-education-initiative.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemText,
  .node--type-committee .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-card-text .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-and-events--landing .landing-social .flexItemText,
  .news-and-events--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .landing-social .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-cards .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .locationMap.contact-location-map-container .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .locationMap .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .grants-and-training-card-wrapper .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-grants-and-training-card .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-division-card .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-tool-icon-card .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-promotional-card .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .strategic-vision-titleblock .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .ppg-titleblock-wrapper .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-human-subject-cards .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-section-card .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-highlight-card .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .health-topic-teaser-container .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText,
  .about-nhlbi-our-mission-wrapper .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemText,
  .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemText,
  .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemText,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemText,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemText,
  .healthEducationBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemText,
  .systematicEvidenceReviewsBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemText,
  .clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemText,
  .publicationsAndFactSheetsBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .rtFlexContainer .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText,
  .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-science-supplemental-page .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemText,
  .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .researchTopicPublications .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemText,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.listTeaserCard .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemText,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.standard-teaser .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemText,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.newsEventsCard .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .esi-feature-card .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .featured-science-instance-teaser-container .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .sfa-teaser-container .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemText,
  .training-opportunity-card .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-associated-people .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-featured-training-opportun .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-career-stages .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-workforce-development-card .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-and-events-titleblock .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .leadership-container .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText,
  .leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText,
  .branch-leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemText,
  .node--type-general .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemText,
  .node--type-general .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-general-publications-rlt .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemText,
  .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemText,
  .node--type-general .field--name-field-related-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .objective-text-container .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .objective-list-container .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-goal-card .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemText,
  .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .striped-container-wrapper .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemText,
  .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .striped-container .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemText,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemText,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemText,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-awards .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .registerSocialContainer .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .eventdatesLocationType .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-article-container .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-header-container .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemText,
  .contacts-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contacts .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemText,
  .publicationsBox .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-primary-featured-item .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-featured-items .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-health-topics-container .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-mission-areas-container .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-location-container .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-alumni .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemText,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemText,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemText,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemText,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText,
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .flexcontainer .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .related-ht-ser-container .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sfa-card .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-speaker .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-executives .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-card-field .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-advisory-committees .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contact-nhlbi-titleblock .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-cards .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .all-grants-foa-container .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-program-officers .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemText,
  .node--type-individual-contact .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemText,
  .node--type-division.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText,
  .node--type-division.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemText,
  .node--type-branch.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText,
  .node--type-branch.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemText,
  .node--type-general.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText,
  .node--type-general.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemText,
  .node--type-health-education-initiative.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemText,
  .node--type-committee .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-card-text .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-and-events--landing .landing-social .flexItemText,
  .news-and-events--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .landing-social .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sfa-cards .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .locationMap.contact-location-map-container .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .locationMap .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .grants-and-training-card-wrapper .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-grants-and-training-card .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-division-card .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-tool-icon-card .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-promotional-card .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .strategic-vision-titleblock .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .ppg-titleblock-wrapper .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-human-subject-cards .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-section-card .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-highlight-card .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .health-topic-teaser-container .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText,
  .about-nhlbi-our-mission-wrapper .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemText,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemText,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemText,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemText,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemText,
  .healthEducationBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemText,
  .systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemText,
  .clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemText,
  .publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .rtFlexContainer .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText,
  .node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-science-supplemental-page .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemText,
  .node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .researchTopicPublications .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemText,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.listTeaserCard .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemText,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.standard-teaser .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemText,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.newsEventsCard .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .esi-feature-card .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .featured-science-instance-teaser-container .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .sfa-teaser-container .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemText,
  .training-opportunity-card .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-associated-people .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-featured-training-opportun .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-career-stages .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-workforce-development-card .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-and-events-titleblock .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .leadership-container .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText,
  .leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .branch-leadership-container .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText,
  .branch-leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemText,
  .node--type-general .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemText,
  .node--type-general .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-general-publications-rlt .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemText,
  .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemText,
  .node--type-general .field--name-field-related-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .objective-text-container .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .objective-list-container .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-goal-card .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemText,
  .node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .striped-container-wrapper .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemText,
  .node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .striped-container .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemText,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemText,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemText,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-awards .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .registerSocialContainer .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .eventdatesLocationType .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-article-container .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-header-container .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemText,
  .contacts-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contacts .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemText,
  .publicationsBox .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-primary-featured-item .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-featured-items .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-health-topics-container .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-mission-areas-container .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-location-container .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-alumni .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemText,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemText,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemText,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemText,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText,
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .flexcontainer .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .related-ht-ser-container .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-card .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-speaker .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-executives .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-card-field .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-advisory-committees .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contact-nhlbi-titleblock .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-cards .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .all-grants-foa-container .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-program-officers .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemText,
  .node--type-individual-contact .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemText,
  .node--type-division.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText,
  .node--type-division.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemText,
  .node--type-branch.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText,
  .node--type-branch.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemText,
  .node--type-general.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText,
  .node--type-general.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemText,
  .node--type-health-education-initiative.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemText,
  .node--type-committee .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-card-text .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-and-events--landing .landing-social .flexItemText,
  .news-and-events--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .landing-social .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-cards .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .locationMap.contact-location-map-container .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .locationMap .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .grants-and-training-card-wrapper .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-grants-and-training-card .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-division-card .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-tool-icon-card .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-promotional-card .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .strategic-vision-titleblock .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .ppg-titleblock-wrapper .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-human-subject-cards .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-section-card .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-highlight-card .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .health-topic-teaser-container .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText,
  .about-nhlbi-our-mission-wrapper .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemText,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemText,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemText,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemText,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemText,
  .healthEducationBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemText,
  .systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemText,
  .clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemText,
  .publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .rtFlexContainer .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText,
  .node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-science-supplemental-page .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemText,
  .node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .researchTopicPublications .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemText,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.listTeaserCard .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemText,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.standard-teaser .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemText,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.newsEventsCard .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .esi-feature-card .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .featured-science-instance-teaser-container .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .sfa-teaser-container .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemText,
  .training-opportunity-card .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-associated-people .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-featured-training-opportun .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-career-stages .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-workforce-development-card .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-and-events-titleblock .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .leadership-container .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText,
  .leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText,
  .branch-leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemText,
  .node--type-general .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemText,
  .node--type-general .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-general-publications-rlt .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemText,
  .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemText,
  .node--type-general .field--name-field-related-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .objective-text-container .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .objective-list-container .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-goal-card .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemText,
  .node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .striped-container-wrapper .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemText,
  .node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .striped-container .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemText,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemText,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemText,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-awards .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .registerSocialContainer .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .eventdatesLocationType .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-article-container .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-header-container .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemText,
  .contacts-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contacts .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemText,
  .publicationsBox .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-primary-featured-item .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-featured-items .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-health-topics-container .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-mission-areas-container .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-location-container .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-alumni .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemText,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemText,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemText,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemText,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText,
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText {
    padding-left: 0;
    padding-right: 0;
  }
}
/* line 53, ../sass/components/_health_pro.scss */
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .flexcontainer .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .related-ht-ser-container .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sfa-card .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-speaker .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-executives .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-card-field .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-advisory-committees .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contact-nhlbi-titleblock .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-cards .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .all-grants-foa-container .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-program-officers .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemText .herobannertitle, .node--type-individual-contact .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-division.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-division.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-branch.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-branch.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-general.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-general.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-health-education-initiative.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-health-education-initiative.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemText .herobannertitle, .node--type-committee .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-card-text .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-and-events--landing .landing-social .flexItemText .herobannertitle, .news-and-events--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .landing-social .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sfa-cards .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .locationMap.contact-location-map-container .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .locationMap .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .grants-and-training-card-wrapper .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-grants-and-training-card .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-division-card .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-tool-icon-card .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-promotional-card .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .strategic-vision-titleblock .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .ppg-titleblock-wrapper .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-human-subject-cards .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-section-card .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-highlight-card .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .health-topic-teaser-container .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText .herobannertitle, .about-nhlbi-our-mission-wrapper .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemText .herobannertitle, .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemText .herobannertitle,
.nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemText .herobannertitle, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemText .herobannertitle,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemText .herobannertitle, .healthEducationBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemText .herobannertitle, .systematicEvidenceReviewsBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemText .herobannertitle,
.clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemText .herobannertitle,
.publicationsAndFactSheetsBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .rtFlexContainer .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText .herobannertitle, .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-science-supplemental-page .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemText .herobannertitle, .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .researchTopicPublications .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemText .herobannertitle, .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.listTeaserCard .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemText .herobannertitle, .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.standard-teaser .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemText .herobannertitle,
.node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.newsEventsCard .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .esi-feature-card .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .featured-science-instance-teaser-container .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .sfa-teaser-container .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemText .herobannertitle, .training-opportunity-card .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-associated-people .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-featured-training-opportun .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-career-stages .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-workforce-development-card .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-and-events-titleblock .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .leadership-container .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .herobannertitle, .leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .branch-leadership-container .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .herobannertitle, .branch-leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemText .herobannertitle, .node--type-general .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemText .herobannertitle, .node--type-general .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-general-publications-rlt .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemText .herobannertitle, .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemText .herobannertitle, .node--type-general .field--name-field-related-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .objective-text-container .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .objective-list-container .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-goal-card .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemText .herobannertitle, .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .striped-container-wrapper .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemText .herobannertitle, .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .striped-container .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemText .herobannertitle, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemText .herobannertitle,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemText .herobannertitle, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-awards .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .registerSocialContainer .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .eventdatesLocationType .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-article-container .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-header-container .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemText .herobannertitle, .contacts-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contacts .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemText .herobannertitle, .publicationsBox .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-primary-featured-item .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-featured-items .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-health-topics-container .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-mission-areas-container .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-location-container .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-alumni .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemText .herobannertitle, .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemText .herobannertitle,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle, .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText .herobannertitle, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText .herobannertitle,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText .herobannertitle, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .flexcontainer .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .related-ht-ser-container .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sfa-card .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-speaker .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-executives .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-card-field .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-advisory-committees .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contact-nhlbi-titleblock .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-cards .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .all-grants-foa-container .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-program-officers .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemText .herobannertitle-grey, .node--type-individual-contact .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-division.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-division.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-branch.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-branch.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-general.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-general.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-health-education-initiative.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-health-education-initiative.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemText .herobannertitle-grey, .node--type-committee .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-card-text .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-and-events--landing .landing-social .flexItemText .herobannertitle-grey, .news-and-events--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .landing-social .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sfa-cards .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .locationMap.contact-location-map-container .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .locationMap .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .grants-and-training-card-wrapper .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-grants-and-training-card .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-division-card .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-tool-icon-card .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-promotional-card .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .strategic-vision-titleblock .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .ppg-titleblock-wrapper .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-human-subject-cards .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-section-card .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-highlight-card .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .health-topic-teaser-container .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText .herobannertitle-grey, .about-nhlbi-our-mission-wrapper .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemText .herobannertitle-grey, .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemText .herobannertitle-grey,
.nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemText .herobannertitle-grey, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemText .herobannertitle-grey,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemText .herobannertitle-grey, .healthEducationBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemText .herobannertitle-grey, .systematicEvidenceReviewsBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemText .herobannertitle-grey,
.clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemText .herobannertitle-grey,
.publicationsAndFactSheetsBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .rtFlexContainer .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText .herobannertitle-grey, .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-science-supplemental-page .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemText .herobannertitle-grey, .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .researchTopicPublications .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemText .herobannertitle-grey, .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.listTeaserCard .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemText .herobannertitle-grey, .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.standard-teaser .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemText .herobannertitle-grey,
.node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.newsEventsCard .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .esi-feature-card .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .featured-science-instance-teaser-container .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .sfa-teaser-container .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemText .herobannertitle-grey, .training-opportunity-card .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-associated-people .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-featured-training-opportun .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-career-stages .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-workforce-development-card .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-and-events-titleblock .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .leadership-container .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .herobannertitle-grey, .leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .branch-leadership-container .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .herobannertitle-grey, .branch-leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemText .herobannertitle-grey, .node--type-general .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemText .herobannertitle-grey, .node--type-general .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-general-publications-rlt .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemText .herobannertitle-grey, .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemText .herobannertitle-grey, .node--type-general .field--name-field-related-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .objective-text-container .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .objective-list-container .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-goal-card .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemText .herobannertitle-grey, .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .striped-container-wrapper .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemText .herobannertitle-grey, .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .striped-container .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemText .herobannertitle-grey, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemText .herobannertitle-grey,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemText .herobannertitle-grey, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-awards .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .registerSocialContainer .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .eventdatesLocationType .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-article-container .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-header-container .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemText .herobannertitle-grey, .contacts-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contacts .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemText .herobannertitle-grey, .publicationsBox .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-primary-featured-item .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-featured-items .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-health-topics-container .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-mission-areas-container .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-location-container .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-alumni .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemText .herobannertitle-grey, .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemText .herobannertitle-grey,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle-grey, .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle-grey,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText .herobannertitle-grey, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText .herobannertitle-grey,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .flexcontainer .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .related-ht-ser-container .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-card .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-speaker .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-executives .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-card-field .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-advisory-committees .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contact-nhlbi-titleblock .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-cards .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .all-grants-foa-container .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-program-officers .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-individual-contact .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-division.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-division.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-branch.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-branch.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-general.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-general.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-health-education-initiative.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-health-education-initiative.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemText .herobannertitle,
.node--type-committee .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-card-text .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-and-events--landing .landing-social .flexItemText .herobannertitle,
.news-and-events--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .landing-social .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-cards .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .locationMap.contact-location-map-container .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .locationMap .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .grants-and-training-card-wrapper .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-grants-and-training-card .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-division-card .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-tool-icon-card .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-promotional-card .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .strategic-vision-titleblock .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .ppg-titleblock-wrapper .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-human-subject-cards .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-section-card .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-highlight-card .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .health-topic-teaser-container .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText .herobannertitle,
.about-nhlbi-our-mission-wrapper .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemText .herobannertitle,
.nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemText .herobannertitle,
.nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemText .herobannertitle,
.nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemText .herobannertitle,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemText .herobannertitle,
.healthEducationBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemText .herobannertitle,
.systematicEvidenceReviewsBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemText .herobannertitle,
.clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemText .herobannertitle,
.publicationsAndFactSheetsBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .rtFlexContainer .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText .herobannertitle,
.node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-science-supplemental-page .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemText .herobannertitle,
.node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .researchTopicPublications .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemText .herobannertitle,
.node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.listTeaserCard .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemText .herobannertitle,
.node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.standard-teaser .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemText .herobannertitle,
.node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.newsEventsCard .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .esi-feature-card .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .featured-science-instance-teaser-container .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .sfa-teaser-container .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemText .herobannertitle,
.training-opportunity-card .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-associated-people .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-featured-training-opportun .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-career-stages .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-workforce-development-card .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-and-events-titleblock .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .leadership-container .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .herobannertitle,
.leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .herobannertitle,
.branch-leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemText .herobannertitle,
.node--type-general .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemText .herobannertitle,
.node--type-general .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-general-publications-rlt .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemText .herobannertitle,
.node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemText .herobannertitle,
.node--type-general .field--name-field-related-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .objective-text-container .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .objective-list-container .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-goal-card .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemText .herobannertitle,
.node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .striped-container-wrapper .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemText .herobannertitle,
.node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .striped-container .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemText .herobannertitle,
.node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemText .herobannertitle,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemText .herobannertitle,
.node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-awards .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .registerSocialContainer .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .eventdatesLocationType .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-article-container .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-header-container .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemText .herobannertitle,
.contacts-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contacts .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemText .herobannertitle,
.publicationsBox .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-primary-featured-item .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-featured-items .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-health-topics-container .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-mission-areas-container .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-location-container .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-alumni .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemText .herobannertitle,
.node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemText .herobannertitle,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle,
.node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText .herobannertitle,
.node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText .herobannertitle,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText .herobannertitle,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .flexcontainer .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .related-ht-ser-container .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-card .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-speaker .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-executives .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-card-field .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-advisory-committees .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contact-nhlbi-titleblock .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-cards .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .all-grants-foa-container .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-program-officers .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-individual-contact .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-division.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-division.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-branch.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-branch.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-general.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-general.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-health-education-initiative.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-health-education-initiative.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemText .herobannertitle-grey,
.node--type-committee .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-card-text .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-and-events--landing .landing-social .flexItemText .herobannertitle-grey,
.news-and-events--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .landing-social .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-cards .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .locationMap.contact-location-map-container .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .locationMap .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .grants-and-training-card-wrapper .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-grants-and-training-card .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-division-card .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-tool-icon-card .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-promotional-card .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .strategic-vision-titleblock .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .ppg-titleblock-wrapper .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-human-subject-cards .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-section-card .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-highlight-card .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .health-topic-teaser-container .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText .herobannertitle-grey,
.about-nhlbi-our-mission-wrapper .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemText .herobannertitle-grey,
.nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemText .herobannertitle-grey,
.nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemText .herobannertitle-grey,
.nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemText .herobannertitle-grey,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemText .herobannertitle-grey,
.healthEducationBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemText .herobannertitle-grey,
.systematicEvidenceReviewsBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemText .herobannertitle-grey,
.clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemText .herobannertitle-grey,
.publicationsAndFactSheetsBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .rtFlexContainer .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText .herobannertitle-grey,
.node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-science-supplemental-page .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemText .herobannertitle-grey,
.node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .researchTopicPublications .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemText .herobannertitle-grey,
.node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.listTeaserCard .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemText .herobannertitle-grey,
.node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.standard-teaser .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemText .herobannertitle-grey,
.node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.newsEventsCard .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .esi-feature-card .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .featured-science-instance-teaser-container .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .sfa-teaser-container .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemText .herobannertitle-grey,
.training-opportunity-card .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-associated-people .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-featured-training-opportun .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-career-stages .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-workforce-development-card .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-and-events-titleblock .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .leadership-container .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .herobannertitle-grey,
.leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .herobannertitle-grey,
.branch-leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemText .herobannertitle-grey,
.node--type-general .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemText .herobannertitle-grey,
.node--type-general .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-general-publications-rlt .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemText .herobannertitle-grey,
.node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemText .herobannertitle-grey,
.node--type-general .field--name-field-related-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .objective-text-container .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .objective-list-container .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-goal-card .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemText .herobannertitle-grey,
.node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .striped-container-wrapper .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemText .herobannertitle-grey,
.node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .striped-container .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemText .herobannertitle-grey,
.node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemText .herobannertitle-grey,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemText .herobannertitle-grey,
.node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-awards .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .registerSocialContainer .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .eventdatesLocationType .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-article-container .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-header-container .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemText .herobannertitle-grey,
.contacts-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contacts .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemText .herobannertitle-grey,
.publicationsBox .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-primary-featured-item .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-featured-items .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-health-topics-container .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-mission-areas-container .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-location-container .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-alumni .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemText .herobannertitle-grey,
.node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemText .herobannertitle-grey,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle-grey,
.node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle-grey,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText .herobannertitle-grey,
.node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText .herobannertitle-grey,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .flexcontainer .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .related-ht-ser-container .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sfa-card .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-speaker .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-executives .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-card-field .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-advisory-committees .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contact-nhlbi-titleblock .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-cards .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .all-grants-foa-container .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-program-officers .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-individual-contact .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-division.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-division.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-branch.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-branch.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-general.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-general.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-health-education-initiative.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-health-education-initiative.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemText .herobannertitle,
.node--type-committee .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-card-text .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-and-events--landing .landing-social .flexItemText .herobannertitle,
.news-and-events--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .landing-social .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sfa-cards .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .locationMap.contact-location-map-container .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .locationMap .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .grants-and-training-card-wrapper .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-grants-and-training-card .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-division-card .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-tool-icon-card .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-promotional-card .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .strategic-vision-titleblock .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .ppg-titleblock-wrapper .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-human-subject-cards .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-section-card .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-highlight-card .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .health-topic-teaser-container .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText .herobannertitle,
.about-nhlbi-our-mission-wrapper .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemText .herobannertitle,
.nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemText .herobannertitle,
.nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemText .herobannertitle,
.nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemText .herobannertitle,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemText .herobannertitle,
.healthEducationBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemText .herobannertitle,
.systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemText .herobannertitle,
.clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemText .herobannertitle,
.publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .rtFlexContainer .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText .herobannertitle,
.node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-science-supplemental-page .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemText .herobannertitle,
.node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .researchTopicPublications .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemText .herobannertitle,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.listTeaserCard .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemText .herobannertitle,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.standard-teaser .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemText .herobannertitle,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.newsEventsCard .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .esi-feature-card .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .featured-science-instance-teaser-container .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .sfa-teaser-container .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemText .herobannertitle,
.training-opportunity-card .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-associated-people .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-featured-training-opportun .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-career-stages .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-workforce-development-card .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-and-events-titleblock .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .leadership-container .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .herobannertitle,
.leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .branch-leadership-container .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .herobannertitle,
.branch-leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemText .herobannertitle,
.node--type-general .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemText .herobannertitle,
.node--type-general .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-general-publications-rlt .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemText .herobannertitle,
.node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemText .herobannertitle,
.node--type-general .field--name-field-related-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .objective-text-container .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .objective-list-container .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-goal-card .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemText .herobannertitle,
.node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .striped-container-wrapper .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemText .herobannertitle,
.node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .striped-container .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemText .herobannertitle,
.node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemText .herobannertitle,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemText .herobannertitle,
.node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-awards .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .registerSocialContainer .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .eventdatesLocationType .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-article-container .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-header-container .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemText .herobannertitle,
.contacts-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contacts .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemText .herobannertitle,
.publicationsBox .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-primary-featured-item .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-featured-items .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-health-topics-container .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-mission-areas-container .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-location-container .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-alumni .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemText .herobannertitle,
.node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemText .herobannertitle,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle,
.node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText .herobannertitle,
.node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText .herobannertitle,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .flexcontainer .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .related-ht-ser-container .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sfa-card .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-speaker .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-executives .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-card-field .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-advisory-committees .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contact-nhlbi-titleblock .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-cards .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .all-grants-foa-container .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-program-officers .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-individual-contact .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-division.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-division.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-branch.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-branch.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-general.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-general.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-health-education-initiative.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-health-education-initiative.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemText .herobannertitle-grey,
.node--type-committee .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-card-text .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-and-events--landing .landing-social .flexItemText .herobannertitle-grey,
.news-and-events--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .landing-social .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sfa-cards .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .locationMap.contact-location-map-container .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .locationMap .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .grants-and-training-card-wrapper .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-grants-and-training-card .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-division-card .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-tool-icon-card .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-promotional-card .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .strategic-vision-titleblock .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .ppg-titleblock-wrapper .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-human-subject-cards .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-section-card .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-highlight-card .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .health-topic-teaser-container .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText .herobannertitle-grey,
.about-nhlbi-our-mission-wrapper .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemText .herobannertitle-grey,
.nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemText .herobannertitle-grey,
.nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemText .herobannertitle-grey,
.nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemText .herobannertitle-grey,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemText .herobannertitle-grey,
.healthEducationBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemText .herobannertitle-grey,
.systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemText .herobannertitle-grey,
.clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemText .herobannertitle-grey,
.publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .rtFlexContainer .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText .herobannertitle-grey,
.node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-science-supplemental-page .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemText .herobannertitle-grey,
.node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .researchTopicPublications .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemText .herobannertitle-grey,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.listTeaserCard .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemText .herobannertitle-grey,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.standard-teaser .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemText .herobannertitle-grey,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.newsEventsCard .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .esi-feature-card .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .featured-science-instance-teaser-container .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .sfa-teaser-container .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemText .herobannertitle-grey,
.training-opportunity-card .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-associated-people .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-featured-training-opportun .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-career-stages .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-workforce-development-card .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-and-events-titleblock .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .leadership-container .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .herobannertitle-grey,
.leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .branch-leadership-container .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .herobannertitle-grey,
.branch-leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemText .herobannertitle-grey,
.node--type-general .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemText .herobannertitle-grey,
.node--type-general .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-general-publications-rlt .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemText .herobannertitle-grey,
.node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemText .herobannertitle-grey,
.node--type-general .field--name-field-related-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .objective-text-container .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .objective-list-container .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-goal-card .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemText .herobannertitle-grey,
.node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .striped-container-wrapper .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemText .herobannertitle-grey,
.node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .striped-container .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemText .herobannertitle-grey,
.node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemText .herobannertitle-grey,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemText .herobannertitle-grey,
.node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-awards .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .registerSocialContainer .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .eventdatesLocationType .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-article-container .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-header-container .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemText .herobannertitle-grey,
.contacts-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contacts .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemText .herobannertitle-grey,
.publicationsBox .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-primary-featured-item .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-featured-items .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-health-topics-container .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-mission-areas-container .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-location-container .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-alumni .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemText .herobannertitle-grey,
.node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemText .herobannertitle-grey,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle-grey,
.node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle-grey,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText .herobannertitle-grey,
.node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText .herobannertitle-grey,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .flexcontainer .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .related-ht-ser-container .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-card .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-speaker .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-executives .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-card-field .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-advisory-committees .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contact-nhlbi-titleblock .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-cards .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .all-grants-foa-container .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-program-officers .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-individual-contact .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-division.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-division.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-branch.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-branch.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-general.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-general.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-health-education-initiative.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-health-education-initiative.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemText .herobannertitle,
.node--type-committee .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-card-text .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-and-events--landing .landing-social .flexItemText .herobannertitle,
.news-and-events--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .landing-social .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-cards .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .locationMap.contact-location-map-container .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .locationMap .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .grants-and-training-card-wrapper .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-grants-and-training-card .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-division-card .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-tool-icon-card .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-promotional-card .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .strategic-vision-titleblock .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .ppg-titleblock-wrapper .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-human-subject-cards .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-section-card .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-highlight-card .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .health-topic-teaser-container .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText .herobannertitle,
.about-nhlbi-our-mission-wrapper .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemText .herobannertitle,
.nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemText .herobannertitle,
.nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemText .herobannertitle,
.nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemText .herobannertitle,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemText .herobannertitle,
.healthEducationBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemText .herobannertitle,
.systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemText .herobannertitle,
.clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemText .herobannertitle,
.publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .rtFlexContainer .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText .herobannertitle,
.node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-science-supplemental-page .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemText .herobannertitle,
.node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .researchTopicPublications .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemText .herobannertitle,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.listTeaserCard .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemText .herobannertitle,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.standard-teaser .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemText .herobannertitle,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.newsEventsCard .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .esi-feature-card .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .featured-science-instance-teaser-container .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .sfa-teaser-container .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemText .herobannertitle,
.training-opportunity-card .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-associated-people .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-featured-training-opportun .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-career-stages .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-workforce-development-card .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-and-events-titleblock .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .leadership-container .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .herobannertitle,
.leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .herobannertitle,
.branch-leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemText .herobannertitle,
.node--type-general .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemText .herobannertitle,
.node--type-general .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-general-publications-rlt .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemText .herobannertitle,
.node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemText .herobannertitle,
.node--type-general .field--name-field-related-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .objective-text-container .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .objective-list-container .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-goal-card .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemText .herobannertitle,
.node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .striped-container-wrapper .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemText .herobannertitle,
.node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .striped-container .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemText .herobannertitle,
.node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemText .herobannertitle,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemText .herobannertitle,
.node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-awards .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .registerSocialContainer .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .eventdatesLocationType .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-article-container .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-header-container .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemText .herobannertitle,
.contacts-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contacts .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemText .herobannertitle,
.publicationsBox .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-primary-featured-item .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-featured-items .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-health-topics-container .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-mission-areas-container .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-location-container .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-alumni .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemText .herobannertitle,
.node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemText .herobannertitle,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle,
.node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText .herobannertitle,
.node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText .herobannertitle,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .flexcontainer .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .related-ht-ser-container .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-card .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-speaker .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-executives .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-card-field .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-advisory-committees .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contact-nhlbi-titleblock .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-cards .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .all-grants-foa-container .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-program-officers .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-individual-contact .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-division.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-division.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-branch.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-branch.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-general.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-general.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-health-education-initiative.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-health-education-initiative.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemText .herobannertitle-grey,
.node--type-committee .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-card-text .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-and-events--landing .landing-social .flexItemText .herobannertitle-grey,
.news-and-events--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .landing-social .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-cards .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .locationMap.contact-location-map-container .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .locationMap .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .grants-and-training-card-wrapper .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-grants-and-training-card .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-division-card .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-tool-icon-card .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-promotional-card .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .strategic-vision-titleblock .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .ppg-titleblock-wrapper .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-human-subject-cards .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-section-card .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-highlight-card .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .health-topic-teaser-container .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText .herobannertitle-grey,
.about-nhlbi-our-mission-wrapper .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemText .herobannertitle-grey,
.nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemText .herobannertitle-grey,
.nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemText .herobannertitle-grey,
.nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemText .herobannertitle-grey,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemText .herobannertitle-grey,
.healthEducationBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemText .herobannertitle-grey,
.systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemText .herobannertitle-grey,
.clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemText .herobannertitle-grey,
.publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .rtFlexContainer .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText .herobannertitle-grey,
.node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-science-supplemental-page .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemText .herobannertitle-grey,
.node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .researchTopicPublications .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemText .herobannertitle-grey,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.listTeaserCard .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemText .herobannertitle-grey,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.standard-teaser .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemText .herobannertitle-grey,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.newsEventsCard .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .esi-feature-card .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .featured-science-instance-teaser-container .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .sfa-teaser-container .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemText .herobannertitle-grey,
.training-opportunity-card .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-associated-people .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-featured-training-opportun .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-career-stages .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-workforce-development-card .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-and-events-titleblock .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .leadership-container .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .herobannertitle-grey,
.leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .herobannertitle-grey,
.branch-leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemText .herobannertitle-grey,
.node--type-general .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemText .herobannertitle-grey,
.node--type-general .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-general-publications-rlt .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemText .herobannertitle-grey,
.node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemText .herobannertitle-grey,
.node--type-general .field--name-field-related-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .objective-text-container .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .objective-list-container .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-goal-card .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemText .herobannertitle-grey,
.node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .striped-container-wrapper .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemText .herobannertitle-grey,
.node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .striped-container .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemText .herobannertitle-grey,
.node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemText .herobannertitle-grey,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemText .herobannertitle-grey,
.node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-awards .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .registerSocialContainer .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .eventdatesLocationType .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-article-container .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-header-container .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemText .herobannertitle-grey,
.contacts-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contacts .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemText .herobannertitle-grey,
.publicationsBox .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-primary-featured-item .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-featured-items .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-health-topics-container .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-mission-areas-container .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-location-container .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-alumni .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemText .herobannertitle-grey,
.node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemText .herobannertitle-grey,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle-grey,
.node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle-grey,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText .herobannertitle-grey,
.node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText .herobannertitle-grey,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText .herobannertitle-grey {
  color: #222;
}
/* line 57, ../sass/components/_health_pro.scss */
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .flexcontainer .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .related-ht-ser-container .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sfa-card .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-speaker .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-executives .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-card-field .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-advisory-committees .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contact-nhlbi-titleblock .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-cards .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .all-grants-foa-container .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-program-officers .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemText .file-download-button, .node--type-individual-contact .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-division.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-division.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-branch.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-branch.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-general.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-general.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-health-education-initiative.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-health-education-initiative.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemText .file-download-button, .node--type-committee .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-card-text .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-and-events--landing .landing-social .flexItemText .file-download-button, .news-and-events--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .landing-social .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sfa-cards .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .locationMap.contact-location-map-container .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .locationMap .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .grants-and-training-card-wrapper .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-grants-and-training-card .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-division-card .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-tool-icon-card .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-promotional-card .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .strategic-vision-titleblock .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .ppg-titleblock-wrapper .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-human-subject-cards .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-section-card .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-highlight-card .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .health-topic-teaser-container .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText .file-download-button, .about-nhlbi-our-mission-wrapper .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemText .file-download-button, .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemText .file-download-button,
.nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemText .file-download-button, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemText .file-download-button,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemText .file-download-button, .healthEducationBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemText .file-download-button, .systematicEvidenceReviewsBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemText .file-download-button,
.clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemText .file-download-button,
.publicationsAndFactSheetsBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .rtFlexContainer .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText .file-download-button, .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-science-supplemental-page .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemText .file-download-button, .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .researchTopicPublications .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemText .file-download-button, .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.listTeaserCard .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemText .file-download-button, .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.standard-teaser .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemText .file-download-button,
.node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.newsEventsCard .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .esi-feature-card .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .featured-science-instance-teaser-container .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .sfa-teaser-container .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemText .file-download-button, .training-opportunity-card .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-associated-people .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-featured-training-opportun .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-career-stages .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-workforce-development-card .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-and-events-titleblock .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .leadership-container .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .file-download-button, .leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .branch-leadership-container .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .file-download-button, .branch-leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemText .file-download-button, .node--type-general .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemText .file-download-button, .node--type-general .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-general-publications-rlt .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemText .file-download-button, .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemText .file-download-button, .node--type-general .field--name-field-related-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .objective-text-container .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .objective-list-container .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-goal-card .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemText .file-download-button, .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .striped-container-wrapper .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemText .file-download-button, .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .striped-container .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemText .file-download-button, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemText .file-download-button,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemText .file-download-button, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-awards .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .registerSocialContainer .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .eventdatesLocationType .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-article-container .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-header-container .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemText .file-download-button, .contacts-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contacts .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemText .file-download-button, .publicationsBox .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-primary-featured-item .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-featured-items .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-health-topics-container .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-mission-areas-container .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-location-container .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-alumni .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemText .file-download-button, .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemText .file-download-button,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemText .file-download-button, .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemText .file-download-button,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemText .file-download-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText .file-download-button, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText .file-download-button,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .flexcontainer .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .related-ht-ser-container .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-card .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-speaker .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-executives .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-card-field .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-advisory-committees .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contact-nhlbi-titleblock .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-cards .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .all-grants-foa-container .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-program-officers .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-individual-contact .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-division.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-division.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-branch.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-branch.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-general.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-general.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-health-education-initiative.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-health-education-initiative.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemText .file-download-button,
.node--type-committee .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-card-text .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-and-events--landing .landing-social .flexItemText .file-download-button,
.news-and-events--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .landing-social .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-cards .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .locationMap.contact-location-map-container .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .locationMap .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .grants-and-training-card-wrapper .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-grants-and-training-card .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-division-card .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-tool-icon-card .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-promotional-card .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .strategic-vision-titleblock .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .ppg-titleblock-wrapper .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-human-subject-cards .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-section-card .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-highlight-card .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .health-topic-teaser-container .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText .file-download-button,
.about-nhlbi-our-mission-wrapper .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemText .file-download-button,
.nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemText .file-download-button,
.nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemText .file-download-button,
.nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemText .file-download-button,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemText .file-download-button,
.healthEducationBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemText .file-download-button,
.systematicEvidenceReviewsBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemText .file-download-button,
.clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemText .file-download-button,
.publicationsAndFactSheetsBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .rtFlexContainer .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText .file-download-button,
.node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-science-supplemental-page .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemText .file-download-button,
.node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .researchTopicPublications .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemText .file-download-button,
.node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.listTeaserCard .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemText .file-download-button,
.node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.standard-teaser .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemText .file-download-button,
.node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.newsEventsCard .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .esi-feature-card .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .featured-science-instance-teaser-container .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .sfa-teaser-container .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemText .file-download-button,
.training-opportunity-card .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-associated-people .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-featured-training-opportun .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-career-stages .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-workforce-development-card .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-and-events-titleblock .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .leadership-container .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .file-download-button,
.leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .file-download-button,
.branch-leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemText .file-download-button,
.node--type-general .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemText .file-download-button,
.node--type-general .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-general-publications-rlt .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemText .file-download-button,
.node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemText .file-download-button,
.node--type-general .field--name-field-related-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .objective-text-container .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .objective-list-container .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-goal-card .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemText .file-download-button,
.node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .striped-container-wrapper .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemText .file-download-button,
.node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .striped-container .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemText .file-download-button,
.node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemText .file-download-button,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemText .file-download-button,
.node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-awards .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .registerSocialContainer .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .eventdatesLocationType .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-article-container .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-header-container .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemText .file-download-button,
.contacts-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contacts .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemText .file-download-button,
.publicationsBox .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-primary-featured-item .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-featured-items .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-health-topics-container .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-mission-areas-container .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-location-container .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-alumni .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemText .file-download-button,
.node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemText .file-download-button,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemText .file-download-button,
.node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemText .file-download-button,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText .file-download-button,
.node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText .file-download-button,
.node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText .file-download-button,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .flexcontainer .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .related-ht-ser-container .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sfa-card .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-speaker .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-executives .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-card-field .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-advisory-committees .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contact-nhlbi-titleblock .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-cards .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .all-grants-foa-container .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-program-officers .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-individual-contact .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-division.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-division.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-branch.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-branch.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-general.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-general.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-health-education-initiative.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-health-education-initiative.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemText .file-download-button,
.node--type-committee .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-card-text .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-and-events--landing .landing-social .flexItemText .file-download-button,
.news-and-events--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .landing-social .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sfa-cards .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .locationMap.contact-location-map-container .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .locationMap .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .grants-and-training-card-wrapper .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-grants-and-training-card .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-division-card .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-tool-icon-card .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-promotional-card .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .strategic-vision-titleblock .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .ppg-titleblock-wrapper .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-human-subject-cards .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-section-card .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-highlight-card .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .health-topic-teaser-container .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText .file-download-button,
.about-nhlbi-our-mission-wrapper .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemText .file-download-button,
.nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemText .file-download-button,
.nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemText .file-download-button,
.nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemText .file-download-button,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemText .file-download-button,
.healthEducationBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemText .file-download-button,
.systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemText .file-download-button,
.clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemText .file-download-button,
.publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .rtFlexContainer .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText .file-download-button,
.node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-science-supplemental-page .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemText .file-download-button,
.node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .researchTopicPublications .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemText .file-download-button,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.listTeaserCard .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemText .file-download-button,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.standard-teaser .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemText .file-download-button,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.newsEventsCard .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .esi-feature-card .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .featured-science-instance-teaser-container .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .sfa-teaser-container .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemText .file-download-button,
.training-opportunity-card .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-associated-people .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-featured-training-opportun .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-career-stages .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-workforce-development-card .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-and-events-titleblock .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .leadership-container .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .file-download-button,
.leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .branch-leadership-container .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .file-download-button,
.branch-leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemText .file-download-button,
.node--type-general .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemText .file-download-button,
.node--type-general .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-general-publications-rlt .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemText .file-download-button,
.node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemText .file-download-button,
.node--type-general .field--name-field-related-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .objective-text-container .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .objective-list-container .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-goal-card .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemText .file-download-button,
.node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .striped-container-wrapper .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemText .file-download-button,
.node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .striped-container .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemText .file-download-button,
.node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemText .file-download-button,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemText .file-download-button,
.node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-awards .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .registerSocialContainer .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .eventdatesLocationType .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-article-container .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-header-container .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemText .file-download-button,
.contacts-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contacts .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemText .file-download-button,
.publicationsBox .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-primary-featured-item .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-featured-items .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-health-topics-container .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-mission-areas-container .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-location-container .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-alumni .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemText .file-download-button,
.node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemText .file-download-button,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemText .file-download-button,
.node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemText .file-download-button,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText .file-download-button,
.node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText .file-download-button,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .flexcontainer .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .related-ht-ser-container .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-card .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-speaker .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-executives .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-card-field .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-advisory-committees .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contact-nhlbi-titleblock .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-cards .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .all-grants-foa-container .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-program-officers .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-individual-contact .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-division.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-division.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-branch.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-branch.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-general.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-general.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-health-education-initiative.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-health-education-initiative.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemText .file-download-button,
.node--type-committee .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-card-text .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-and-events--landing .landing-social .flexItemText .file-download-button,
.news-and-events--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .landing-social .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-cards .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .locationMap.contact-location-map-container .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .locationMap .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .grants-and-training-card-wrapper .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-grants-and-training-card .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-division-card .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-tool-icon-card .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-promotional-card .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .strategic-vision-titleblock .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .ppg-titleblock-wrapper .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-human-subject-cards .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-section-card .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-highlight-card .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .health-topic-teaser-container .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText .file-download-button,
.about-nhlbi-our-mission-wrapper .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemText .file-download-button,
.nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemText .file-download-button,
.nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemText .file-download-button,
.nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemText .file-download-button,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemText .file-download-button,
.healthEducationBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemText .file-download-button,
.systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemText .file-download-button,
.clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemText .file-download-button,
.publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .rtFlexContainer .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText .file-download-button,
.node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-science-supplemental-page .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemText .file-download-button,
.node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .researchTopicPublications .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemText .file-download-button,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.listTeaserCard .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemText .file-download-button,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.standard-teaser .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemText .file-download-button,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.newsEventsCard .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .esi-feature-card .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .featured-science-instance-teaser-container .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .sfa-teaser-container .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemText .file-download-button,
.training-opportunity-card .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-associated-people .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-featured-training-opportun .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-career-stages .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-workforce-development-card .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-and-events-titleblock .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .leadership-container .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .file-download-button,
.leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .file-download-button,
.branch-leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemText .file-download-button,
.node--type-general .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemText .file-download-button,
.node--type-general .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-general-publications-rlt .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemText .file-download-button,
.node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemText .file-download-button,
.node--type-general .field--name-field-related-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .objective-text-container .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .objective-list-container .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-goal-card .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemText .file-download-button,
.node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .striped-container-wrapper .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemText .file-download-button,
.node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .striped-container .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemText .file-download-button,
.node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemText .file-download-button,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemText .file-download-button,
.node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-awards .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .registerSocialContainer .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .eventdatesLocationType .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-article-container .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-header-container .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemText .file-download-button,
.contacts-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contacts .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemText .file-download-button,
.publicationsBox .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-primary-featured-item .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-featured-items .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-health-topics-container .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-mission-areas-container .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-location-container .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-alumni .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemText .file-download-button,
.node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemText .file-download-button,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemText .file-download-button,
.node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemText .file-download-button,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText .file-download-button,
.node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText .file-download-button,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText .file-download-button,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText .file-download-button {
  margin-top: 1em;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 60, ../sass/components/_health_pro.scss */
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .flexcontainer .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .related-ht-ser-container .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sfa-card .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-speaker .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-executives .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-card-field .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-advisory-committees .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contact-nhlbi-titleblock .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-cards .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .all-grants-foa-container .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-program-officers .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button, .node--type-individual-contact .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-division.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-division.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-branch.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-branch.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-general.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-general.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-health-education-initiative.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemText .desktop-and-tablet-button, .node--type-committee .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-card-text .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-and-events--landing .landing-social .flexItemText .desktop-and-tablet-button, .news-and-events--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .landing-social .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sfa-cards .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .locationMap.contact-location-map-container .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .locationMap .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .grants-and-training-card-wrapper .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-grants-and-training-card .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-division-card .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-tool-icon-card .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-promotional-card .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .strategic-vision-titleblock .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .ppg-titleblock-wrapper .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-human-subject-cards .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-section-card .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-highlight-card .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .health-topic-teaser-container .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText .desktop-and-tablet-button, .about-nhlbi-our-mission-wrapper .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemText .desktop-and-tablet-button, .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemText .desktop-and-tablet-button,
  .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemText .desktop-and-tablet-button, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemText .desktop-and-tablet-button,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemText .desktop-and-tablet-button, .healthEducationBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemText .desktop-and-tablet-button, .systematicEvidenceReviewsBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemText .desktop-and-tablet-button,
  .clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemText .desktop-and-tablet-button,
  .publicationsAndFactSheetsBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .rtFlexContainer .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText .desktop-and-tablet-button, .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-science-supplemental-page .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemText .desktop-and-tablet-button, .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .researchTopicPublications .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemText .desktop-and-tablet-button, .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.listTeaserCard .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemText .desktop-and-tablet-button, .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.standard-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemText .desktop-and-tablet-button,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.newsEventsCard .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .esi-feature-card .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .featured-science-instance-teaser-container .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .sfa-teaser-container .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemText .desktop-and-tablet-button, .training-opportunity-card .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-associated-people .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-featured-training-opportun .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-career-stages .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-workforce-development-card .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-and-events-titleblock .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .leadership-container .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .desktop-and-tablet-button, .leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .branch-leadership-container .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .desktop-and-tablet-button, .branch-leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemText .desktop-and-tablet-button, .node--type-general .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemText .desktop-and-tablet-button, .node--type-general .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-general-publications-rlt .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemText .desktop-and-tablet-button, .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemText .desktop-and-tablet-button, .node--type-general .field--name-field-related-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .objective-text-container .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .objective-list-container .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-goal-card .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemText .desktop-and-tablet-button, .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .striped-container-wrapper .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemText .desktop-and-tablet-button, .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .striped-container .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemText .desktop-and-tablet-button, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemText .desktop-and-tablet-button,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemText .desktop-and-tablet-button, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-awards .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .registerSocialContainer .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .eventdatesLocationType .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-article-container .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-header-container .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemText .desktop-and-tablet-button, .contacts-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contacts .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemText .desktop-and-tablet-button, .publicationsBox .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-primary-featured-item .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-featured-items .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-health-topics-container .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-mission-areas-container .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-location-container .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-alumni .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemText .desktop-and-tablet-button, .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemText .desktop-and-tablet-button,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemText .desktop-and-tablet-button, .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemText .desktop-and-tablet-button,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText .desktop-and-tablet-button, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .flexcontainer .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .related-ht-ser-container .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-card .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-speaker .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-executives .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-card-field .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-advisory-committees .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contact-nhlbi-titleblock .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-cards .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .all-grants-foa-container .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-program-officers .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-individual-contact .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-division.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-division.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-branch.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-branch.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-general.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-general.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-health-education-initiative.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemText .desktop-and-tablet-button,
  .node--type-committee .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-card-text .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-and-events--landing .landing-social .flexItemText .desktop-and-tablet-button,
  .news-and-events--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .landing-social .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-cards .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .locationMap.contact-location-map-container .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .locationMap .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .grants-and-training-card-wrapper .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-grants-and-training-card .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-division-card .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-tool-icon-card .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-promotional-card .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .strategic-vision-titleblock .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .ppg-titleblock-wrapper .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-human-subject-cards .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-section-card .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-highlight-card .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .health-topic-teaser-container .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText .desktop-and-tablet-button,
  .about-nhlbi-our-mission-wrapper .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemText .desktop-and-tablet-button,
  .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemText .desktop-and-tablet-button,
  .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemText .desktop-and-tablet-button,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemText .desktop-and-tablet-button,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemText .desktop-and-tablet-button,
  .healthEducationBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemText .desktop-and-tablet-button,
  .systematicEvidenceReviewsBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemText .desktop-and-tablet-button,
  .clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemText .desktop-and-tablet-button,
  .publicationsAndFactSheetsBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .rtFlexContainer .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText .desktop-and-tablet-button,
  .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-science-supplemental-page .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemText .desktop-and-tablet-button,
  .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .researchTopicPublications .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemText .desktop-and-tablet-button,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.listTeaserCard .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.standard-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemText .desktop-and-tablet-button,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.newsEventsCard .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .esi-feature-card .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .featured-science-instance-teaser-container .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .sfa-teaser-container .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemText .desktop-and-tablet-button,
  .training-opportunity-card .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-associated-people .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-featured-training-opportun .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-career-stages .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-workforce-development-card .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-and-events-titleblock .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .leadership-container .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .desktop-and-tablet-button,
  .leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .desktop-and-tablet-button,
  .branch-leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemText .desktop-and-tablet-button,
  .node--type-general .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemText .desktop-and-tablet-button,
  .node--type-general .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-general-publications-rlt .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-general .field--name-field-related-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .objective-text-container .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .objective-list-container .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-goal-card .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemText .desktop-and-tablet-button,
  .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .striped-container-wrapper .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemText .desktop-and-tablet-button,
  .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .striped-container .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemText .desktop-and-tablet-button,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemText .desktop-and-tablet-button,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-awards .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .registerSocialContainer .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .eventdatesLocationType .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-article-container .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-header-container .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemText .desktop-and-tablet-button,
  .contacts-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contacts .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemText .desktop-and-tablet-button,
  .publicationsBox .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-primary-featured-item .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-featured-items .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-health-topics-container .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-mission-areas-container .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-location-container .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-alumni .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemText .desktop-and-tablet-button,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemText .desktop-and-tablet-button,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemText .desktop-and-tablet-button,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemText .desktop-and-tablet-button,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .flexcontainer .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .related-ht-ser-container .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sfa-card .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-speaker .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-executives .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-card-field .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-advisory-committees .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contact-nhlbi-titleblock .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-cards .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .all-grants-foa-container .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-program-officers .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-individual-contact .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-division.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-division.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-branch.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-branch.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-general.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-general.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-health-education-initiative.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemText .desktop-and-tablet-button,
  .node--type-committee .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-card-text .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-and-events--landing .landing-social .flexItemText .desktop-and-tablet-button,
  .news-and-events--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .landing-social .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sfa-cards .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .locationMap.contact-location-map-container .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .locationMap .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .grants-and-training-card-wrapper .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-grants-and-training-card .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-division-card .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-tool-icon-card .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-promotional-card .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .strategic-vision-titleblock .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .ppg-titleblock-wrapper .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-human-subject-cards .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-section-card .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-highlight-card .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .health-topic-teaser-container .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText .desktop-and-tablet-button,
  .about-nhlbi-our-mission-wrapper .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemText .desktop-and-tablet-button,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemText .desktop-and-tablet-button,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemText .desktop-and-tablet-button,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemText .desktop-and-tablet-button,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemText .desktop-and-tablet-button,
  .healthEducationBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemText .desktop-and-tablet-button,
  .systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemText .desktop-and-tablet-button,
  .clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemText .desktop-and-tablet-button,
  .publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .rtFlexContainer .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText .desktop-and-tablet-button,
  .node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-science-supplemental-page .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemText .desktop-and-tablet-button,
  .node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .researchTopicPublications .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemText .desktop-and-tablet-button,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.listTeaserCard .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.standard-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemText .desktop-and-tablet-button,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.newsEventsCard .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .esi-feature-card .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .featured-science-instance-teaser-container .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .sfa-teaser-container .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemText .desktop-and-tablet-button,
  .training-opportunity-card .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-associated-people .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-featured-training-opportun .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-career-stages .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-workforce-development-card .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-and-events-titleblock .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .leadership-container .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .desktop-and-tablet-button,
  .leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .branch-leadership-container .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .desktop-and-tablet-button,
  .branch-leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemText .desktop-and-tablet-button,
  .node--type-general .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemText .desktop-and-tablet-button,
  .node--type-general .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-general-publications-rlt .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-general .field--name-field-related-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .objective-text-container .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .objective-list-container .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-goal-card .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemText .desktop-and-tablet-button,
  .node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .striped-container-wrapper .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemText .desktop-and-tablet-button,
  .node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .striped-container .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemText .desktop-and-tablet-button,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemText .desktop-and-tablet-button,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-awards .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .registerSocialContainer .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .eventdatesLocationType .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-article-container .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-header-container .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemText .desktop-and-tablet-button,
  .contacts-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contacts .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemText .desktop-and-tablet-button,
  .publicationsBox .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-primary-featured-item .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-featured-items .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-health-topics-container .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-mission-areas-container .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-location-container .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-alumni .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemText .desktop-and-tablet-button,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemText .desktop-and-tablet-button,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemText .desktop-and-tablet-button,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemText .desktop-and-tablet-button,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .flexcontainer .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .related-ht-ser-container .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-card .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-speaker .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-executives .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-card-field .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-advisory-committees .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contact-nhlbi-titleblock .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-cards .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-employment-opportunity-car .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .all-grants-foa-container .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-program-officers .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-individual-contact .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-division.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-division.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-branch.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-branch.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-general.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-general.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-health-education-initiative.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-committee .field--name-field-card-text .flexItemText .desktop-and-tablet-button,
  .node--type-committee .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-card-text .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-and-events--landing .landing-social .flexItemText .desktop-and-tablet-button,
  .news-and-events--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .landing-social .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-cards .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .locationMap.contact-location-map-container .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .locationMap .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .grants-and-training-card-wrapper .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-division-card-wrapper .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .hei-tools-icon-card-wrapper .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-grants-and-training-card .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-division-card .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-tool-icon-card .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-promotional-card .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sv-promotional-cards .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .strategic-vision-titleblock .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .ppg-titleblock-wrapper .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .ppg-guidelines-card-wrapper .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-human-subject-cards .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-section-card .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-highlight-card .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .health-topic-teaser-container .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText .desktop-and-tablet-button,
  .about-nhlbi-our-mission-wrapper .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-leadership > .director-bioCard .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemText .desktop-and-tablet-button,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemText .desktop-and-tablet-button,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-professionals-nhlbi .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .flexItemText .desktop-and-tablet-button,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .flexItemText .desktop-and-tablet-button,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .healthEducationBlock .standard-teaser .flexItemText .desktop-and-tablet-button,
  .healthEducationBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .flexItemText .desktop-and-tablet-button,
  .systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .flexItemText .desktop-and-tablet-button,
  .clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .flexItemText .desktop-and-tablet-button,
  .publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .rtFlexContainer .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText .desktop-and-tablet-button,
  .node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-science-supplemental-page .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .researchTopicPublications .flexItemText .desktop-and-tablet-button,
  .node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .researchTopicPublications .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemText .desktop-and-tablet-button,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.listTeaserCard .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.standard-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemText .desktop-and-tablet-button,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.newsEventsCard .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .esi-feature-card .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .featured-science-instance-teaser-container .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .sfa-teaser-container .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .flexItemText .desktop-and-tablet-button,
  .training-opportunity-card .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-associated-people .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-featured-training-opportun .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-career-stages .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-workforce-development-card .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-and-events-titleblock .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contact-box > .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .leadership-container .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .desktop-and-tablet-button,
  .leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .desktop-and-tablet-button,
  .branch-leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications .flexItemText .desktop-and-tablet-button,
  .node--type-general .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .flexItemText .desktop-and-tablet-button,
  .node--type-general .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-general-publications-rlt .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-general .field--name-field-related-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .objective-text-container .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .objective-list-container .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-goal-card .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .strategic-vision-landing-goals-wrapper .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .flexItemText .desktop-and-tablet-button,
  .node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .striped-container-wrapper .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container .flexItemText .desktop-and-tablet-button,
  .node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .striped-container .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemText .desktop-and-tablet-button,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemText .desktop-and-tablet-button,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-awards .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .registerSocialContainer .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .eventdatesLocationType .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-article-container .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-header-container .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contacts-container .field--name-field-contacts .flexItemText .desktop-and-tablet-button,
  .contacts-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contacts .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsBox .field--name-field-related-publications .flexItemText .desktop-and-tablet-button,
  .publicationsBox .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-primary-featured-item .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-featured-items .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-health-topics-container .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-mission-areas-container .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-location-container .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-alumni .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemText .desktop-and-tablet-button,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemText .desktop-and-tablet-button,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemText .desktop-and-tablet-button,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemText .desktop-and-tablet-button,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .flexItemText .desktop-and-tablet-button {
    display: none;
  }
}
@media all and (min-width: 768px) {
  /* line 66, ../sass/components/_health_pro.scss */
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .flexcontainer .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .related-ht-ser-container .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sfa-card .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-speaker .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-executives .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-card-field .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-advisory-committees .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contact-nhlbi-titleblock .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-cards .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-employment-opportunity-car .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .all-grants-foa-container .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-program-officers .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .phone-button, .node--type-individual-contact .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .phone-button,
  .node--type-division.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .phone-button,
  .node--type-division.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .phone-button,
  .node--type-branch.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .phone-button,
  .node--type-branch.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .phone-button,
  .node--type-general.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .phone-button,
  .node--type-general.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .phone-button,
  .node--type-health-education-initiative.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .phone-button,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-committee .field--name-field-card-text .phone-button, .node--type-committee .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-card-text .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-and-events--landing .landing-social .phone-button, .news-and-events--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .landing-social .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sfa-cards .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .locationMap.contact-location-map-container .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .locationMap .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .grants-and-training-card-wrapper .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-division-card-wrapper .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .hei-tools-icon-card-wrapper .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-grants-and-training-card .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-division-card .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-tool-icon-card .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-promotional-card .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sv-promotional-cards .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .strategic-vision-titleblock .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .ppg-titleblock-wrapper .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .ppg-guidelines-card-wrapper .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-human-subject-cards .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-section-card .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-highlight-card .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .health-topic-teaser-container .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .phone-button, .about-nhlbi-our-mission-wrapper .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-leadership > .director-bioCard .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .phone-button, .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .phone-button,
  .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-health-professionals-nhlbi .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .phone-button, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .phone-button,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .healthEducationBlock .standard-teaser .phone-button, .healthEducationBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .phone-button, .systematicEvidenceReviewsBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .phone-button,
  .clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .phone-button,
  .publicationsAndFactSheetsBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .rtFlexContainer .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .phone-button, .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-science-supplemental-page .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .researchTopicPublications .phone-button, .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .researchTopicPublications .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .phone-button, .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.listTeaserCard .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .phone-button, .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.standard-teaser .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .phone-button,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.newsEventsCard .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .esi-feature-card .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .featured-science-instance-teaser-container .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .sfa-teaser-container .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .phone-button, .training-opportunity-card .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-associated-people .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-featured-training-opportun .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-career-stages .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-workforce-development-card .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-and-events-titleblock .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contact-box > .field--name-field-contact-methods .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .leadership-container .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .phone-button, .leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .branch-leadership-container .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .phone-button, .branch-leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications .phone-button, .node--type-general .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .phone-button, .node--type-general .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-general-publications-rlt .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .phone-button, .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .phone-button, .node--type-general .field--name-field-related-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .objective-text-container .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .objective-list-container .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-goal-card .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .strategic-vision-landing-goals-wrapper .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .phone-button, .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .striped-container-wrapper .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container .phone-button, .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .striped-container .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .phone-button, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .phone-button,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .phone-button, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-awards .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .registerSocialContainer .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .eventdatesLocationType .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-article-container .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-header-container .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contacts-container .field--name-field-contacts .phone-button, .contacts-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contacts .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsBox .field--name-field-related-publications .phone-button, .publicationsBox .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-primary-featured-item .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-featured-items .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-health-topics-container .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-mission-areas-container .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-location-container .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-alumni .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .phone-button, .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .phone-button,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .phone-button, .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .phone-button,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .phone-button, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .phone-button,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .flexcontainer .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .related-ht-ser-container .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-card .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-speaker .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-executives .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-card-field .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-advisory-committees .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contact-nhlbi-titleblock .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-cards .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-employment-opportunity-car .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .all-grants-foa-container .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-program-officers .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .phone-button,
  .node--type-individual-contact .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .phone-button,
  .node--type-division.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .phone-button,
  .node--type-division.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .phone-button,
  .node--type-branch.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .phone-button,
  .node--type-branch.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .phone-button,
  .node--type-general.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .phone-button,
  .node--type-general.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .phone-button,
  .node--type-health-education-initiative.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .phone-button,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-committee .field--name-field-card-text .phone-button,
  .node--type-committee .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-card-text .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-and-events--landing .landing-social .phone-button,
  .news-and-events--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .landing-social .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-cards .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .locationMap.contact-location-map-container .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .locationMap .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .grants-and-training-card-wrapper .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-division-card-wrapper .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .hei-tools-icon-card-wrapper .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-grants-and-training-card .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-division-card .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-tool-icon-card .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-promotional-card .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sv-promotional-cards .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .strategic-vision-titleblock .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .ppg-titleblock-wrapper .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .ppg-guidelines-card-wrapper .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-human-subject-cards .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-section-card .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-highlight-card .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .health-topic-teaser-container .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .phone-button,
  .about-nhlbi-our-mission-wrapper .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-leadership > .director-bioCard .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .phone-button,
  .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .phone-button,
  .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-professionals-nhlbi .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .phone-button,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .phone-button,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .healthEducationBlock .standard-teaser .phone-button,
  .healthEducationBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .phone-button,
  .systematicEvidenceReviewsBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .phone-button,
  .clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .phone-button,
  .publicationsAndFactSheetsBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .rtFlexContainer .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .phone-button,
  .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-science-supplemental-page .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .researchTopicPublications .phone-button,
  .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .researchTopicPublications .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .phone-button,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.listTeaserCard .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .phone-button,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.standard-teaser .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .phone-button,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.newsEventsCard .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .esi-feature-card .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .featured-science-instance-teaser-container .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .sfa-teaser-container .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .phone-button,
  .training-opportunity-card .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-associated-people .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-featured-training-opportun .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-career-stages .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-workforce-development-card .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-and-events-titleblock .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contact-box > .field--name-field-contact-methods .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .leadership-container .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .phone-button,
  .leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .phone-button,
  .branch-leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications .phone-button,
  .node--type-general .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .phone-button,
  .node--type-general .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-general-publications-rlt .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .phone-button,
  .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .phone-button,
  .node--type-general .field--name-field-related-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .objective-text-container .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .objective-list-container .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-goal-card .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .strategic-vision-landing-goals-wrapper .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .phone-button,
  .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .striped-container-wrapper .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container .phone-button,
  .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .striped-container .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .phone-button,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .phone-button,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .phone-button,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-awards .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .registerSocialContainer .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .eventdatesLocationType .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-article-container .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-header-container .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contacts-container .field--name-field-contacts .phone-button,
  .contacts-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contacts .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsBox .field--name-field-related-publications .phone-button,
  .publicationsBox .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-primary-featured-item .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-featured-items .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-health-topics-container .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-mission-areas-container .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-location-container .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-alumni .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .phone-button,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .phone-button,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .phone-button,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .phone-button,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .phone-button,
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .phone-button,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .flexcontainer .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .related-ht-ser-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sfa-card .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-speaker .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-executives .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-card-field .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-advisory-committees .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contact-nhlbi-titleblock .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-cards .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-employment-opportunity-car .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .all-grants-foa-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-program-officers .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .phone-button,
  .node--type-individual-contact .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .phone-button,
  .node--type-division.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .phone-button,
  .node--type-division.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .phone-button,
  .node--type-branch.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .phone-button,
  .node--type-branch.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .phone-button,
  .node--type-general.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .phone-button,
  .node--type-general.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .phone-button,
  .node--type-health-education-initiative.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .phone-button,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-committee .field--name-field-card-text .phone-button,
  .node--type-committee .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-card-text .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-and-events--landing .landing-social .phone-button,
  .news-and-events--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .landing-social .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sfa-cards .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .locationMap.contact-location-map-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .locationMap .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .grants-and-training-card-wrapper .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-division-card-wrapper .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .hei-tools-icon-card-wrapper .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-grants-and-training-card .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-division-card .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-tool-icon-card .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-promotional-card .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sv-promotional-cards .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .strategic-vision-titleblock .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .ppg-titleblock-wrapper .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .ppg-guidelines-card-wrapper .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-human-subject-cards .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-section-card .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-highlight-card .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .health-topic-teaser-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .phone-button,
  .about-nhlbi-our-mission-wrapper .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-leadership > .director-bioCard .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .phone-button,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .phone-button,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-health-professionals-nhlbi .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .phone-button,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .phone-button,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .healthEducationBlock .standard-teaser .phone-button,
  .healthEducationBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .phone-button,
  .systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .phone-button,
  .clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .phone-button,
  .publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .rtFlexContainer .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .phone-button,
  .node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-science-supplemental-page .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .researchTopicPublications .phone-button,
  .node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .researchTopicPublications .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .phone-button,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.listTeaserCard .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .phone-button,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.standard-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .phone-button,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.newsEventsCard .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .esi-feature-card .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .featured-science-instance-teaser-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .sfa-teaser-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .phone-button,
  .training-opportunity-card .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-associated-people .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-featured-training-opportun .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-career-stages .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-workforce-development-card .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-and-events-titleblock .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contact-box > .field--name-field-contact-methods .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .leadership-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .phone-button,
  .leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .branch-leadership-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .phone-button,
  .branch-leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications .phone-button,
  .node--type-general .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .phone-button,
  .node--type-general .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-general-publications-rlt .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .phone-button,
  .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .phone-button,
  .node--type-general .field--name-field-related-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .objective-text-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .objective-list-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-goal-card .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .strategic-vision-landing-goals-wrapper .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .phone-button,
  .node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .striped-container-wrapper .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container .phone-button,
  .node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .striped-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .phone-button,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .phone-button,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .phone-button,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-awards .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .registerSocialContainer .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .eventdatesLocationType .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-article-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-header-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contacts-container .field--name-field-contacts .phone-button,
  .contacts-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contacts .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsBox .field--name-field-related-publications .phone-button,
  .publicationsBox .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-primary-featured-item .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-featured-items .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-health-topics-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-mission-areas-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-location-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-alumni .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .phone-button,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .phone-button,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .phone-button,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .phone-button,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .phone-button,
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .phone-button,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .flexcontainer .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .related-ht-ser-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-card .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-speaker .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-executives .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-card-field .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-advisory-committees .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contact-nhlbi-titleblock .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-cards .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-employment-opportunity-car .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .all-grants-foa-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-program-officers .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .phone-button,
  .node--type-individual-contact .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .phone-button,
  .node--type-division.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .phone-button,
  .node--type-division.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .phone-button,
  .node--type-branch.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .phone-button,
  .node--type-branch.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .phone-button,
  .node--type-general.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .phone-button,
  .node--type-general.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .phone-button,
  .node--type-health-education-initiative.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .phone-button,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-committee .field--name-field-card-text .phone-button,
  .node--type-committee .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-card-text .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-and-events--landing .landing-social .phone-button,
  .news-and-events--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .landing-social .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-cards .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .locationMap.contact-location-map-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .locationMap .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .grants-and-training-card-wrapper .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-division-card-wrapper .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .hei-tools-icon-card-wrapper .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-grants-and-training-card .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-division-card .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-tool-icon-card .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-promotional-card .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sv-promotional-cards .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .strategic-vision-titleblock .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .ppg-titleblock-wrapper .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .ppg-guidelines-card-wrapper .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-human-subject-cards .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-section-card .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-highlight-card .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .health-topic-teaser-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .phone-button,
  .about-nhlbi-our-mission-wrapper .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-leadership > .director-bioCard .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .phone-button,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .phone-button,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-professionals-nhlbi .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .phone-button,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .phone-button,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .healthEducationBlock .standard-teaser .phone-button,
  .healthEducationBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .phone-button,
  .systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .phone-button,
  .clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .phone-button,
  .publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .rtFlexContainer .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .phone-button,
  .node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-science-supplemental-page .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .researchTopicPublications .phone-button,
  .node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .researchTopicPublications .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .phone-button,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.listTeaserCard .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .phone-button,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.standard-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .phone-button,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.newsEventsCard .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .esi-feature-card .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .featured-science-instance-teaser-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .sfa-teaser-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .phone-button,
  .training-opportunity-card .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-associated-people .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-featured-training-opportun .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-career-stages .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-workforce-development-card .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-and-events-titleblock .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contact-box > .field--name-field-contact-methods .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .leadership-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .phone-button,
  .leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .phone-button,
  .branch-leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications .phone-button,
  .node--type-general .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .phone-button,
  .node--type-general .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-general-publications-rlt .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .phone-button,
  .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .phone-button,
  .node--type-general .field--name-field-related-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .objective-text-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .objective-list-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-goal-card .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .strategic-vision-landing-goals-wrapper .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .phone-button,
  .node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .striped-container-wrapper .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container .phone-button,
  .node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .striped-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .phone-button,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .phone-button,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .phone-button,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-awards .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .registerSocialContainer .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .eventdatesLocationType .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-article-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-header-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contacts-container .field--name-field-contacts .phone-button,
  .contacts-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contacts .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsBox .field--name-field-related-publications .phone-button,
  .publicationsBox .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-primary-featured-item .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-featured-items .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-health-topics-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-mission-areas-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-location-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-alumni .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .phone-button,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .phone-button,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .phone-button,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .phone-button,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .phone-button,
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .phone-button,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .phone-button {
    display: none;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 66, ../sass/components/_health_pro.scss */
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .flexcontainer .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .related-ht-ser-container .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sfa-card .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-speaker .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-executives .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-card-field .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-advisory-committees .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contact-nhlbi-titleblock .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-cards .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-employment-opportunity-car .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .all-grants-foa-container .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-program-officers .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .phone-button, .node--type-individual-contact .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .phone-button,
  .node--type-division.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .phone-button,
  .node--type-division.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .phone-button,
  .node--type-branch.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .phone-button,
  .node--type-branch.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .phone-button,
  .node--type-general.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .phone-button,
  .node--type-general.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .phone-button,
  .node--type-health-education-initiative.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .phone-button,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-committee .field--name-field-card-text .phone-button, .node--type-committee .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-card-text .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-and-events--landing .landing-social .phone-button, .news-and-events--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .landing-social .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sfa-cards .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .locationMap.contact-location-map-container .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .locationMap .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .grants-and-training-card-wrapper .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-division-card-wrapper .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .hei-tools-icon-card-wrapper .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-grants-and-training-card .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-division-card .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-tool-icon-card .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-promotional-card .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-sv-promotional-cards .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .strategic-vision-titleblock .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .ppg-titleblock-wrapper .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .ppg-guidelines-card-wrapper .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-human-subject-cards .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-section-card .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-highlight-card .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .health-topic-teaser-container .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .phone-button, .about-nhlbi-our-mission-wrapper .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-leadership > .director-bioCard .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .phone-button, .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .phone-button,
  .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-health-professionals-nhlbi .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .phone-button, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .phone-button,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .healthEducationBlock .standard-teaser .phone-button, .healthEducationBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .phone-button, .systematicEvidenceReviewsBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .phone-button,
  .clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .phone-button,
  .publicationsAndFactSheetsBlock .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .view-content .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .rtFlexContainer .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .phone-button, .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-science-supplemental-page .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .researchTopicPublications .phone-button, .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .researchTopicPublications .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .phone-button, .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.listTeaserCard .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .phone-button, .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.standard-teaser .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .phone-button,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article.newsEventsCard .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .esi-feature-card .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .featured-science-instance-teaser-container .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .sfa-teaser-container .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .phone-button, .training-opportunity-card .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-associated-people .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-featured-training-opportun .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-career-stages .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-workforce-development-card .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-and-events-titleblock .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contact-box > .field--name-field-contact-methods .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .leadership-container .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .phone-button, .leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .branch-leadership-container .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .phone-button, .branch-leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications .phone-button, .node--type-general .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .phone-button, .node--type-general .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-general-publications-rlt .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .phone-button, .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .phone-button, .node--type-general .field--name-field-related-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .objective-text-container .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .objective-list-container .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-goal-card .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .strategic-vision-landing-goals-wrapper .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .phone-button, .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .striped-container-wrapper .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container .phone-button, .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .striped-container .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .phone-button, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .phone-button,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header article .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .phone-button, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-awards .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .registerSocialContainer .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .eventdatesLocationType .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-article-container .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .news-header-container .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .contacts-container .field--name-field-contacts .phone-button, .contacts-container .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-contacts .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .publicationsBox .field--name-field-related-publications .phone-button, .publicationsBox .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-primary-featured-item .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-additional-featured-items .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-health-topics-container .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-mission-areas-container .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .homepage-location-container .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-alumni .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .phone-button, .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .phone-button,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .phone-button, .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .phone-button,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .phone-button, .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .phone-button, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .phone-button,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-full .ser-guideline-header .standard-teaser .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .flexcontainer .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .related-ht-ser-container .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-card .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-speaker .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-executives .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-card-field .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-advisory-committees .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contact-nhlbi-titleblock .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-cards .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-employment-opportunity-car .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .all-grants-foa-container .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-program-officers .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .phone-button,
  .node--type-individual-contact .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .phone-button,
  .node--type-division.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .phone-button,
  .node--type-division.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .phone-button,
  .node--type-branch.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .phone-button,
  .node--type-branch.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .phone-button,
  .node--type-general.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .phone-button,
  .node--type-general.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .phone-button,
  .node--type-health-education-initiative.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .phone-button,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-committee .field--name-field-card-text .phone-button,
  .node--type-committee .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-card-text .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-and-events--landing .landing-social .phone-button,
  .news-and-events--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .landing-social .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-cards .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .locationMap.contact-location-map-container .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .locationMap .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .grants-and-training-card-wrapper .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-division-card-wrapper .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .hei-tools-icon-card-wrapper .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-grants-and-training-card .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-division-card .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-tool-icon-card .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-promotional-card .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-sv-promotional-cards .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .strategic-vision-titleblock .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .ppg-titleblock-wrapper .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .ppg-guidelines-card-wrapper .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-human-subject-cards .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-section-card .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-highlight-card .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .health-topic-teaser-container .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .phone-button,
  .about-nhlbi-our-mission-wrapper .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-leadership > .director-bioCard .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .phone-button,
  .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .phone-button,
  .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-professionals-nhlbi .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .phone-button,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .phone-button,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .healthEducationBlock .standard-teaser .phone-button,
  .healthEducationBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .phone-button,
  .systematicEvidenceReviewsBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .phone-button,
  .clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .phone-button,
  .publicationsAndFactSheetsBlock .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .view-content .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .rtFlexContainer .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .phone-button,
  .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-science-supplemental-page .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .researchTopicPublications .phone-button,
  .node--type-research-topic .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .researchTopicPublications .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .phone-button,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.listTeaserCard .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .phone-button,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.standard-teaser .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .phone-button,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article.newsEventsCard .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .esi-feature-card .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .featured-science-instance-teaser-container .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .sfa-teaser-container .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .phone-button,
  .training-opportunity-card .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-associated-people .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-featured-training-opportun .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-career-stages .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-workforce-development-card .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-and-events-titleblock .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contact-box > .field--name-field-contact-methods .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .leadership-container .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .phone-button,
  .leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .phone-button,
  .branch-leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications .phone-button,
  .node--type-general .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .phone-button,
  .node--type-general .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-general-publications-rlt .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .phone-button,
  .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .phone-button,
  .node--type-general .field--name-field-related-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .objective-text-container .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .objective-list-container .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-goal-card .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .strategic-vision-landing-goals-wrapper .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .phone-button,
  .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .striped-container-wrapper .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container .phone-button,
  .node--type-principal-investigator .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .striped-container .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .phone-button,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .phone-button,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header article .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .phone-button,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-awards .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .registerSocialContainer .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .eventdatesLocationType .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-article-container .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .news-header-container .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .contacts-container .field--name-field-contacts .phone-button,
  .contacts-container .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-contacts .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .publicationsBox .field--name-field-related-publications .phone-button,
  .publicationsBox .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-primary-featured-item .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-featured-items .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-health-topics-container .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-mission-areas-container .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .homepage-location-container .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-alumni .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .phone-button,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .phone-button,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .phone-button,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .phone-button,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .phone-button,
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .phone-button,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .phone-button,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review.node--view-mode-subscribe .ser-guideline-header .standard-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .flexcontainer .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .related-ht-ser-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sfa-card .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-speaker .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-executives .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-card-field .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-advisory-committees .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contact-nhlbi-titleblock .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-cards .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-employment-opportunity-car .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .all-grants-foa-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-program-officers .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .phone-button,
  .node--type-individual-contact .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .phone-button,
  .node--type-division.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .phone-button,
  .node--type-division.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .phone-button,
  .node--type-branch.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .phone-button,
  .node--type-branch.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .phone-button,
  .node--type-general.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .phone-button,
  .node--type-general.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .phone-button,
  .node--type-health-education-initiative.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .phone-button,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-committee .field--name-field-card-text .phone-button,
  .node--type-committee .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-card-text .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-and-events--landing .landing-social .phone-button,
  .news-and-events--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .landing-social .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sfa-cards .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .locationMap.contact-location-map-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .locationMap .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .grants-and-training-card-wrapper .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-division-card-wrapper .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .hei-tools-icon-card-wrapper .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-grants-and-training-card .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-division-card .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-tool-icon-card .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-promotional-card .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-sv-promotional-cards .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .strategic-vision-titleblock .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .ppg-titleblock-wrapper .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .ppg-guidelines-card-wrapper .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-human-subject-cards .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-section-card .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-highlight-card .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .health-topic-teaser-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .phone-button,
  .about-nhlbi-our-mission-wrapper .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-leadership > .director-bioCard .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .phone-button,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .phone-button,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-health-professionals-nhlbi .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .phone-button,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .phone-button,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .healthEducationBlock .standard-teaser .phone-button,
  .healthEducationBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .phone-button,
  .systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .phone-button,
  .clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .phone-button,
  .publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .view-content .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .rtFlexContainer .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .phone-button,
  .node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-science-supplemental-page .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .researchTopicPublications .phone-button,
  .node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .researchTopicPublications .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .phone-button,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.listTeaserCard .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .phone-button,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.standard-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .phone-button,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article.newsEventsCard .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .esi-feature-card .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .featured-science-instance-teaser-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .sfa-teaser-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .phone-button,
  .training-opportunity-card .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-associated-people .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-featured-training-opportun .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-career-stages .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-workforce-development-card .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-and-events-titleblock .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contact-box > .field--name-field-contact-methods .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .leadership-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .phone-button,
  .leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .branch-leadership-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .phone-button,
  .branch-leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-leadership .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications .phone-button,
  .node--type-general .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .phone-button,
  .node--type-general .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-general-publications-rlt .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .phone-button,
  .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .phone-button,
  .node--type-general .field--name-field-related-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .objective-text-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .objective-list-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-goal-card .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .strategic-vision-landing-goals-wrapper .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .phone-button,
  .node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .striped-container-wrapper .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .striped-container .phone-button,
  .node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .striped-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .phone-button,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .phone-button,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header article .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .phone-button,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-awards .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .registerSocialContainer .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .eventdatesLocationType .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-article-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .news-header-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .contacts-container .field--name-field-contacts .phone-button,
  .contacts-container .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-contacts .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .publicationsBox .field--name-field-related-publications .phone-button,
  .publicationsBox .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-publications .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-primary-featured-item .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-additional-featured-items .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-health-topics-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-mission-areas-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .homepage-location-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-alumni .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .phone-button,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .phone-button,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .nhlbi-publication-details-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .phone-button,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .phone-button,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .field--name-field-related-nhlbi-publications .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .phone-button,
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .phone-button,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-full .ser-guideline-header .standard-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .flexcontainer .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .related-ht-ser-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-card .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-speaker .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-executives .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-card-field .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-advisory-committees .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contact-nhlbi-titleblock .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-cards .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-employment-opportunity-car .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .all-grants-foa-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-program-officers .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-individual-contact .field--name-field-contact-methods .phone-button,
  .node--type-individual-contact .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-full .field--name-field-contact-methods .phone-button,
  .node--type-division.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .phone-button,
  .node--type-division.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-full .field--name-field-contact-methods .phone-button,
  .node--type-branch.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .phone-button,
  .node--type-branch.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-full .field--name-field-contact-methods .phone-button,
  .node--type-general.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .phone-button,
  .node--type-general.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods .phone-button,
  .node--type-health-education-initiative.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods .phone-button,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contact-methods .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-committee .field--name-field-card-text .phone-button,
  .node--type-committee .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-card-text .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-and-events--landing .landing-social .phone-button,
  .news-and-events--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .landing-social .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sfa-cards .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .locationMap.contact-location-map-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .locationMap .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .grants-and-training-card-wrapper .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-division-card-wrapper .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .hei-tools-icon-card-wrapper .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-grants-and-training-card .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-division-card .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-tool-icon-card .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-promotional-card .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-sv-promotional-cards .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-about-nhlbi-promotional-ca .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .strategic-vision-titleblock .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .ppg-titleblock-wrapper .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .ppg-guidelines-card-wrapper .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-human-subject-cards .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-section-card .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-highlight-card .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .health-topic-teaser-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .phone-button,
  .about-nhlbi-our-mission-wrapper .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-leadership > .director-bioCard .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .phone-button,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-consumer-nhlbi-publ .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .phone-button,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-health-professionals-nhlbi .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser .phone-button,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser .phone-button,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsBlock.view-nhlbi-publications > .view-content .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .healthEducationBlock .standard-teaser .phone-button,
  .healthEducationBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .systematicEvidenceReviewsBlock .view-content .phone-button,
  .systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .clinicalPracticeGuidelinesBlock .view-content .phone-button,
  .clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsAndFactSheetsBlock .view-content .phone-button,
  .publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .view-content .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .rtFlexContainer .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-science-supplemental-page .phone-button,
  .node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-science-supplemental-page .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .researchTopicPublications .phone-button,
  .node--type-research-topic .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .researchTopicPublications .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .phone-button,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.listTeaserCard .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .phone-button,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.standard-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .phone-button,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article.newsEventsCard .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .esi-feature-card .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .featured-science-instance-teaser-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .sfa-teaser-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .training-opportunity-card .field--name-field-associated-people .phone-button,
  .training-opportunity-card .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-associated-people .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-featured-training-opportun .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-career-stages .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-workforce-development-card .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-update.node--view-mode-executive-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-and-events-titleblock .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contact-box > .field--name-field-contact-methods .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .leadership-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .phone-button,
  .leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .phone-button,
  .branch-leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-leadership .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications .phone-button,
  .node--type-general .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt .phone-button,
  .node--type-general .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-general-publications-rlt .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .phone-button,
  .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .phone-button,
  .node--type-general .field--name-field-related-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .objective-text-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .objective-list-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-goal-card .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .strategic-vision-landing-goals-wrapper .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container-wrapper .phone-button,
  .node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .striped-container-wrapper .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .striped-container .phone-button,
  .node--type-principal-investigator .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .striped-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .phone-button,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .phone-button,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header article .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .phone-button,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser.node--view-mode-short-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-awards .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .registerSocialContainer .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .eventdatesLocationType .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-article-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-press-release-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-press-release-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-press-release-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-feature-article.node--view-mode-hp-press-release-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-press-release.node--view-mode-hp-press-release-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-events.node--view-mode-hp-press-release-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-news-mention.node--view-mode-hp-press-release-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .news-header-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .contacts-container .field--name-field-contacts .phone-button,
  .contacts-container .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-contacts .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .publicationsBox .field--name-field-related-publications .phone-button,
  .publicationsBox .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-publications .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-primary-featured-item .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-additional-featured-items .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-health-topics-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-mission-areas-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .homepage-location-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-alumni .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .phone-button,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .phone-button,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .nhlbi-publication-details-container .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .phone-button,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .phone-button,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .field--name-field-related-nhlbi-publications .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .phone-button,
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .phone-button,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .phone-button,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline.node--view-mode-subscribe .ser-guideline-header .standard-teaser .phone-button {
    -webkit-box-ordinal-group: 3;
    -moz-box-ordinal-group: 3;
    -ms-flex-order: 3;
    -webkit-order: 3;
    order: 3;
    display: block;
  }
}
/* line 79, ../sass/components/_health_pro.scss */
.node--type-systematic-evidence-review.node--view-mode-full .darkBlueBackground h3, .node--type-systematic-evidence-review.node--view-mode-full .darkBlueBackground .field--name-field-social-phrase-group-title, .node--type-systematic-evidence-review.node--view-mode-full .darkBlueBackground .field--name-field-image-gallery-title,
.node--type-systematic-evidence-review.node--view-mode-subscribe .darkBlueBackground h3,
.node--type-systematic-evidence-review.node--view-mode-subscribe .darkBlueBackground .field--name-field-social-phrase-group-title,
.node--type-systematic-evidence-review.node--view-mode-subscribe .darkBlueBackground .field--name-field-image-gallery-title,
.node--type-clinical-practice-guideline.node--view-mode-full .darkBlueBackground h3,
.node--type-clinical-practice-guideline.node--view-mode-full .darkBlueBackground .field--name-field-social-phrase-group-title,
.node--type-clinical-practice-guideline.node--view-mode-full .darkBlueBackground .field--name-field-image-gallery-title,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .darkBlueBackground h3,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .darkBlueBackground .field--name-field-social-phrase-group-title,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .darkBlueBackground .field--name-field-image-gallery-title {
  color: #fff;
  font-weight: normal;
  margin: 15px 0;
}
/* line 87, ../sass/components/_health_pro.scss */
.node--type-systematic-evidence-review.node--view-mode-full .file-download-button a:link,
.node--type-systematic-evidence-review.node--view-mode-subscribe .file-download-button a:link,
.node--type-clinical-practice-guideline.node--view-mode-full .file-download-button a:link,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .file-download-button a:link {
  color: #fff;
}
/* line 93, ../sass/components/_health_pro.scss */
.node--type-systematic-evidence-review.node--view-mode-full a.grayLabelFile,
.node--type-systematic-evidence-review.node--view-mode-subscribe a.grayLabelFile,
.node--type-clinical-practice-guideline.node--view-mode-full a.grayLabelFile,
.node--type-clinical-practice-guideline.node--view-mode-subscribe a.grayLabelFile {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 8px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-weight: normal;
  cursor: pointer;
  clear: both;
  margin: 1em auto;
  padding: 0.8em 3em;
  color: #fff;
  background-color: #575b5e;
  font-size: 1rem;
  color: white;
  display: inline-block;
  width: 211px;
  margin-top: 15px;
  text-align: center;
  padding: 10px 0;
  text-decoration: none;
}
/* line 1468, ../sass/_mixins.scss */
.node--type-systematic-evidence-review.node--view-mode-full a.grayLabelFile :hover,
.node--type-systematic-evidence-review.node--view-mode-subscribe a.grayLabelFile :hover,
.node--type-clinical-practice-guideline.node--view-mode-full a.grayLabelFile :hover,
.node--type-clinical-practice-guideline.node--view-mode-subscribe a.grayLabelFile :hover {
  color: #3885ca;
  background-color: transparent;
}
/* line 126, ../sass/_mixins.scss */
.node--type-systematic-evidence-review.node--view-mode-full a.grayLabelFile a, .node--type-systematic-evidence-review.node--view-mode-full a.grayLabelFile a:link,
.node--type-systematic-evidence-review.node--view-mode-subscribe a.grayLabelFile a,
.node--type-systematic-evidence-review.node--view-mode-subscribe a.grayLabelFile a:link,
.node--type-clinical-practice-guideline.node--view-mode-full a.grayLabelFile a,
.node--type-clinical-practice-guideline.node--view-mode-full a.grayLabelFile a:link,
.node--type-clinical-practice-guideline.node--view-mode-subscribe a.grayLabelFile a,
.node--type-clinical-practice-guideline.node--view-mode-subscribe a.grayLabelFile a:link {
  color: #fff;
  text-decoration: underline;
}
/* line 132, ../sass/_mixins.scss */
.node--type-systematic-evidence-review.node--view-mode-full a.grayLabelFile a:visited,
.node--type-systematic-evidence-review.node--view-mode-subscribe a.grayLabelFile a:visited,
.node--type-clinical-practice-guideline.node--view-mode-full a.grayLabelFile a:visited,
.node--type-clinical-practice-guideline.node--view-mode-subscribe a.grayLabelFile a:visited {
  color: #D7E7F4;
}
/* line 145, ../sass/_mixins.scss */
.node--type-systematic-evidence-review.node--view-mode-full a.grayLabelFile a:hover,
.node--type-systematic-evidence-review.node--view-mode-subscribe a.grayLabelFile a:hover,
.node--type-clinical-practice-guideline.node--view-mode-full a.grayLabelFile a:hover,
.node--type-clinical-practice-guideline.node--view-mode-subscribe a.grayLabelFile a:hover {
  font-weight: bold;
}
/* line 154, ../sass/_mixins.scss */
.node--type-systematic-evidence-review.node--view-mode-full a.grayLabelFile h1, .node--type-systematic-evidence-review.node--view-mode-full a.grayLabelFile .photocredit,
.node--type-systematic-evidence-review.node--view-mode-subscribe a.grayLabelFile h1,
.node--type-systematic-evidence-review.node--view-mode-subscribe a.grayLabelFile .photocredit,
.node--type-clinical-practice-guideline.node--view-mode-full a.grayLabelFile h1,
.node--type-clinical-practice-guideline.node--view-mode-full a.grayLabelFile .photocredit,
.node--type-clinical-practice-guideline.node--view-mode-subscribe a.grayLabelFile h1,
.node--type-clinical-practice-guideline.node--view-mode-subscribe a.grayLabelFile .photocredit {
  color: #fff;
}
/* line 1478, ../sass/_mixins.scss */
.node--type-systematic-evidence-review.node--view-mode-full a.grayLabelFile a, .node--type-systematic-evidence-review.node--view-mode-full a.grayLabelFile a:visited, .node--type-systematic-evidence-review.node--view-mode-full a.grayLabelFile a:link,
.node--type-systematic-evidence-review.node--view-mode-subscribe a.grayLabelFile a,
.node--type-systematic-evidence-review.node--view-mode-subscribe a.grayLabelFile a:visited,
.node--type-systematic-evidence-review.node--view-mode-subscribe a.grayLabelFile a:link,
.node--type-clinical-practice-guideline.node--view-mode-full a.grayLabelFile a,
.node--type-clinical-practice-guideline.node--view-mode-full a.grayLabelFile a:visited,
.node--type-clinical-practice-guideline.node--view-mode-full a.grayLabelFile a:link,
.node--type-clinical-practice-guideline.node--view-mode-subscribe a.grayLabelFile a,
.node--type-clinical-practice-guideline.node--view-mode-subscribe a.grayLabelFile a:visited,
.node--type-clinical-practice-guideline.node--view-mode-subscribe a.grayLabelFile a:link {
  color: #fff;
  text-decoration: none;
}
/* line 1482, ../sass/_mixins.scss */
.node--type-systematic-evidence-review.node--view-mode-full a.grayLabelFile a:hover,
.node--type-systematic-evidence-review.node--view-mode-subscribe a.grayLabelFile a:hover,
.node--type-clinical-practice-guideline.node--view-mode-full a.grayLabelFile a:hover,
.node--type-clinical-practice-guideline.node--view-mode-subscribe a.grayLabelFile a:hover {
  color: #fff;
  font-weight: normal;
}
/* line 1486, ../sass/_mixins.scss */
.node--type-systematic-evidence-review.node--view-mode-full a.grayLabelFile:hover,
.node--type-systematic-evidence-review.node--view-mode-subscribe a.grayLabelFile:hover,
.node--type-clinical-practice-guideline.node--view-mode-full a.grayLabelFile:hover,
.node--type-clinical-practice-guideline.node--view-mode-subscribe a.grayLabelFile:hover {
  background-color: #232526;
}
@media all and (min-width: 1440px) {
  /* line 93, ../sass/components/_health_pro.scss */
  .node--type-systematic-evidence-review.node--view-mode-full a.grayLabelFile,
  .node--type-systematic-evidence-review.node--view-mode-subscribe a.grayLabelFile,
  .node--type-clinical-practice-guideline.node--view-mode-full a.grayLabelFile,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe a.grayLabelFile {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 93, ../sass/components/_health_pro.scss */
  .node--type-systematic-evidence-review.node--view-mode-full a.grayLabelFile,
  .node--type-systematic-evidence-review.node--view-mode-subscribe a.grayLabelFile,
  .node--type-clinical-practice-guideline.node--view-mode-full a.grayLabelFile,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe a.grayLabelFile {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 93, ../sass/components/_health_pro.scss */
  .node--type-systematic-evidence-review.node--view-mode-full a.grayLabelFile,
  .node--type-systematic-evidence-review.node--view-mode-subscribe a.grayLabelFile,
  .node--type-clinical-practice-guideline.node--view-mode-full a.grayLabelFile,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe a.grayLabelFile {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 93, ../sass/components/_health_pro.scss */
  .node--type-systematic-evidence-review.node--view-mode-full a.grayLabelFile,
  .node--type-systematic-evidence-review.node--view-mode-subscribe a.grayLabelFile,
  .node--type-clinical-practice-guideline.node--view-mode-full a.grayLabelFile,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe a.grayLabelFile {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 93, ../sass/components/_health_pro.scss */
  .node--type-systematic-evidence-review.node--view-mode-full a.grayLabelFile,
  .node--type-systematic-evidence-review.node--view-mode-subscribe a.grayLabelFile,
  .node--type-clinical-practice-guideline.node--view-mode-full a.grayLabelFile,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe a.grayLabelFile {
    padding: 10px 0;
    display: block;
    width: 240px;
  }
}
/* line 109, ../sass/components/_health_pro.scss */
.node--type-systematic-evidence-review.node--view-mode-full a.grayLabelFile span,
.node--type-systematic-evidence-review.node--view-mode-subscribe a.grayLabelFile span,
.node--type-clinical-practice-guideline.node--view-mode-full a.grayLabelFile span,
.node--type-clinical-practice-guideline.node--view-mode-subscribe a.grayLabelFile span {
  display: block;
}
/* line 112, ../sass/components/_health_pro.scss */
.node--type-systematic-evidence-review.node--view-mode-full a.grayLabelFile span:hover,
.node--type-systematic-evidence-review.node--view-mode-subscribe a.grayLabelFile span:hover,
.node--type-clinical-practice-guideline.node--view-mode-full a.grayLabelFile span:hover,
.node--type-clinical-practice-guideline.node--view-mode-subscribe a.grayLabelFile span:hover {
  color: white;
}
/* line 116, ../sass/components/_health_pro.scss */
.node--type-systematic-evidence-review.node--view-mode-full a.grayLabelFile:hover,
.node--type-systematic-evidence-review.node--view-mode-subscribe a.grayLabelFile:hover,
.node--type-clinical-practice-guideline.node--view-mode-full a.grayLabelFile:hover,
.node--type-clinical-practice-guideline.node--view-mode-subscribe a.grayLabelFile:hover {
  color: white;
}
/* line 120, ../sass/components/_health_pro.scss */
.node--type-systematic-evidence-review.node--view-mode-full .field--name-field-health-pro-news .whitesubhead,
.node--type-systematic-evidence-review.node--view-mode-subscribe .field--name-field-health-pro-news .whitesubhead,
.node--type-clinical-practice-guideline.node--view-mode-full .field--name-field-health-pro-news .whitesubhead,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .field--name-field-health-pro-news .whitesubhead {
  padding-bottom: 1.5em;
}
/* line 123, ../sass/components/_health_pro.scss */
.node--type-systematic-evidence-review.node--view-mode-full h2.other-jnc-report, .node--type-systematic-evidence-review.node--view-mode-full .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.other-jnc-report, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-systematic-evidence-review.node--view-mode-full h1.other-jnc-report, .node--type-systematic-evidence-review.node--view-mode-full .other-jnc-report.contact-method-label,
.node--type-systematic-evidence-review.node--view-mode-subscribe h2.other-jnc-report,
.node--type-systematic-evidence-review.node--view-mode-subscribe .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.other-jnc-report,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-systematic-evidence-review.node--view-mode-subscribe h1.other-jnc-report,
.node--type-systematic-evidence-review.node--view-mode-subscribe .other-jnc-report.contact-method-label,
.node--type-clinical-practice-guideline.node--view-mode-full h2.other-jnc-report,
.node--type-clinical-practice-guideline.node--view-mode-full .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.other-jnc-report,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-clinical-practice-guideline.node--view-mode-full h1.other-jnc-report,
.node--type-clinical-practice-guideline.node--view-mode-full .other-jnc-report.contact-method-label,
.node--type-clinical-practice-guideline.node--view-mode-subscribe h2.other-jnc-report,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.other-jnc-report,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-clinical-practice-guideline.node--view-mode-subscribe h1.other-jnc-report,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .other-jnc-report.contact-method-label {
  margin: 1.5em 0 0.25em;
  padding: 0;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-weight: bold;
  font-style: normal;
  color: #222;
}
/* line 131, ../sass/components/_health_pro.scss */
.node--type-systematic-evidence-review.node--view-mode-full .other-jnc-report.contact-method-label,
.node--type-systematic-evidence-review.node--view-mode-subscribe .other-jnc-report.contact-method-label,
.node--type-clinical-practice-guideline.node--view-mode-full .other-jnc-report.contact-method-label,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .other-jnc-report.contact-method-label {
  margin: 1.5em 0 0.25em;
  padding: 0;
}
/* line 135, ../sass/components/_health_pro.scss */
.node--type-systematic-evidence-review.node--view-mode-full .otherVersions,
.node--type-systematic-evidence-review.node--view-mode-subscribe .otherVersions,
.node--type-clinical-practice-guideline.node--view-mode-full .otherVersions,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .otherVersions {
  padding: 15px 0 0 0;
}
/* line 138, ../sass/components/_health_pro.scss */
.node--type-systematic-evidence-review.node--view-mode-full .otherVersions .field__items,
.node--type-systematic-evidence-review.node--view-mode-subscribe .otherVersions .field__items,
.node--type-clinical-practice-guideline.node--view-mode-full .otherVersions .field__items,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .otherVersions .field__items {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -o-justify-content: flex-start;
  justify-content: flex-start;
  background-color: transparent;
  color: #222;
  width: 100%;
  -webkit-justify-content: left;
  -moz-justify-content: left;
  -ms-justify-content: left;
  -o-justify-content: left;
  justify-content: left;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 138, ../sass/components/_health_pro.scss */
  .node--type-systematic-evidence-review.node--view-mode-full .otherVersions .field__items,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .otherVersions .field__items,
  .node--type-clinical-practice-guideline.node--view-mode-full .otherVersions .field__items,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .otherVersions .field__items {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    -ms-align-items: stretch;
    -o-align-items: stretch;
    align-items: stretch;
  }
}
/* line 143, ../sass/components/_health_pro.scss */
.node--type-systematic-evidence-review.node--view-mode-full .otherVersions .field__item,
.node--type-systematic-evidence-review.node--view-mode-subscribe .otherVersions .field__item,
.node--type-clinical-practice-guideline.node--view-mode-full .otherVersions .field__item,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .otherVersions .field__item {
  margin-bottom: 20px;
  margin-right: 20px;
  display: inline-block;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
@media all and (min-width: 1100px) {
  /* line 143, ../sass/components/_health_pro.scss */
  .node--type-systematic-evidence-review.node--view-mode-full .otherVersions .field__item,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .otherVersions .field__item,
  .node--type-clinical-practice-guideline.node--view-mode-full .otherVersions .field__item,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .otherVersions .field__item {
    width: 30%;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 143, ../sass/components/_health_pro.scss */
  .node--type-systematic-evidence-review.node--view-mode-full .otherVersions .field__item,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .otherVersions .field__item,
  .node--type-clinical-practice-guideline.node--view-mode-full .otherVersions .field__item,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .otherVersions .field__item {
    width: 45%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 143, ../sass/components/_health_pro.scss */
  .node--type-systematic-evidence-review.node--view-mode-full .otherVersions .field__item,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .otherVersions .field__item,
  .node--type-clinical-practice-guideline.node--view-mode-full .otherVersions .field__item,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .otherVersions .field__item {
    width: 90%;
  }
}
/* line 2133, ../sass/_mixins.scss */
.node--type-systematic-evidence-review.node--view-mode-full .otherVersions .field__item .file--application-pdf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .otherVersions .field__item .file--application-pdf,
.node--type-clinical-practice-guideline.node--view-mode-full .otherVersions .field__item .file--application-pdf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .otherVersions .field__item .file--application-pdf {
  background-image: url("../images/ico-pdf.png");
  background-size: 50px 50px;
  background-repeat: no-repeat;
  background-position: right center;
  display: inline-block;
  content: " ";
  height: inherit;
}
/* line 2137, ../sass/_mixins.scss */
.node--type-systematic-evidence-review.node--view-mode-full .otherVersions .field__item .file--x-office-document,
.node--type-systematic-evidence-review.node--view-mode-subscribe .otherVersions .field__item .file--x-office-document,
.node--type-clinical-practice-guideline.node--view-mode-full .otherVersions .field__item .file--x-office-document,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .otherVersions .field__item .file--x-office-document {
  background-image: url("../images/ico-doc.png");
  background-size: 50px 50px;
  background-repeat: no-repeat;
  background-position: right center;
  display: inline-block;
  content: " ";
  height: inherit;
}
/* line 2141, ../sass/_mixins.scss */
.node--type-systematic-evidence-review.node--view-mode-full .otherVersions .field__item .file--x-office-spreadsheet,
.node--type-systematic-evidence-review.node--view-mode-subscribe .otherVersions .field__item .file--x-office-spreadsheet,
.node--type-clinical-practice-guideline.node--view-mode-full .otherVersions .field__item .file--x-office-spreadsheet,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .otherVersions .field__item .file--x-office-spreadsheet {
  background-image: url("../images/ico-xls.png");
  background-size: 50px 50px;
  background-repeat: no-repeat;
  background-position: right center;
  display: inline-block;
  content: " ";
  height: inherit;
}
/* line 2145, ../sass/_mixins.scss */
.node--type-systematic-evidence-review.node--view-mode-full .otherVersions .field__item .file--x-office-presentation,
.node--type-systematic-evidence-review.node--view-mode-subscribe .otherVersions .field__item .file--x-office-presentation,
.node--type-clinical-practice-guideline.node--view-mode-full .otherVersions .field__item .file--x-office-presentation,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .otherVersions .field__item .file--x-office-presentation {
  background-image: url("../images/ico-ppt.png");
  background-size: 50px 50px;
  background-repeat: no-repeat;
  background-position: right center;
  display: inline-block;
  content: " ";
  height: inherit;
}
/* line 2149, ../sass/_mixins.scss */
.node--type-systematic-evidence-review.node--view-mode-full .otherVersions .field__item .file-download-card,
.node--type-systematic-evidence-review.node--view-mode-subscribe .otherVersions .field__item .file-download-card,
.node--type-clinical-practice-guideline.node--view-mode-full .otherVersions .field__item .file-download-card,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .otherVersions .field__item .file-download-card {
  background-color: white;
  width: 100%;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2149, ../sass/_mixins.scss */
  .node--type-systematic-evidence-review.node--view-mode-full .otherVersions .field__item .file-download-card,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .otherVersions .field__item .file-download-card,
  .node--type-clinical-practice-guideline.node--view-mode-full .otherVersions .field__item .file-download-card,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .otherVersions .field__item .file-download-card {
    flex-direction: row;
  }
}
/* line 2160, ../sass/_mixins.scss */
.node--type-systematic-evidence-review.node--view-mode-full .otherVersions .field__item .file-download-card .file-details,
.node--type-systematic-evidence-review.node--view-mode-subscribe .otherVersions .field__item .file-download-card .file-details,
.node--type-clinical-practice-guideline.node--view-mode-full .otherVersions .field__item .file-download-card .file-details,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .otherVersions .field__item .file-download-card .file-details {
  width: 100%;
}
/* line 2162, ../sass/_mixins.scss */
.node--type-systematic-evidence-review.node--view-mode-full .otherVersions .field__item .file-download-card .file-details .file-link-text,
.node--type-systematic-evidence-review.node--view-mode-subscribe .otherVersions .field__item .file-download-card .file-details .file-link-text,
.node--type-clinical-practice-guideline.node--view-mode-full .otherVersions .field__item .file-download-card .file-details .file-link-text,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .otherVersions .field__item .file-download-card .file-details .file-link-text {
  padding-top: 25px;
  padding-left: 1em;
}
/* line 2166, ../sass/_mixins.scss */
.node--type-systematic-evidence-review.node--view-mode-full .otherVersions .field__item .file-download-card .file-details .file-size,
.node--type-systematic-evidence-review.node--view-mode-subscribe .otherVersions .field__item .file-download-card .file-details .file-size,
.node--type-clinical-practice-guideline.node--view-mode-full .otherVersions .field__item .file-download-card .file-details .file-size,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .otherVersions .field__item .file-download-card .file-details .file-size {
  padding-top: 0.5em;
  padding-left: 1em;
}
/* line 2171, ../sass/_mixins.scss */
.node--type-systematic-evidence-review.node--view-mode-full .otherVersions .field__item .file-download-card .file,
.node--type-systematic-evidence-review.node--view-mode-subscribe .otherVersions .field__item .file-download-card .file,
.node--type-clinical-practice-guideline.node--view-mode-full .otherVersions .field__item .file-download-card .file,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .otherVersions .field__item .file-download-card .file {
  width: 50px;
  margin-right: 10px;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 143, ../sass/components/_health_pro.scss */
  .node--type-systematic-evidence-review.node--view-mode-full .otherVersions .field__item,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .otherVersions .field__item,
  .node--type-clinical-practice-guideline.node--view-mode-full .otherVersions .field__item,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .otherVersions .field__item {
    padding-bottom: 0;
    padding-right: 0;
    margin-right: 0;
    width: 100%;
  }
}
/* line 156, ../sass/components/_health_pro.scss */
.node--type-systematic-evidence-review.node--view-mode-full .otherVersions .field__item .file-download-card,
.node--type-systematic-evidence-review.node--view-mode-subscribe .otherVersions .field__item .file-download-card,
.node--type-clinical-practice-guideline.node--view-mode-full .otherVersions .field__item .file-download-card,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .otherVersions .field__item .file-download-card {
  border: 2px solid #D7D7D7;
}
/* line 162, ../sass/components/_health_pro.scss */
.node--type-systematic-evidence-review.node--view-mode-full .field--name-field-supporting-materials,
.node--type-systematic-evidence-review.node--view-mode-subscribe .field--name-field-supporting-materials,
.node--type-clinical-practice-guideline.node--view-mode-full .field--name-field-supporting-materials,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .field--name-field-supporting-materials {
  padding: 0;
}
/* line 164, ../sass/components/_health_pro.scss */
.node--type-systematic-evidence-review.node--view-mode-full .field--name-field-supporting-materials .field__items,
.node--type-systematic-evidence-review.node--view-mode-subscribe .field--name-field-supporting-materials .field__items,
.node--type-clinical-practice-guideline.node--view-mode-full .field--name-field-supporting-materials .field__items,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .field--name-field-supporting-materials .field__items {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -o-justify-content: flex-start;
  justify-content: flex-start;
  background-color: transparent;
  color: #222;
  width: 100%;
  -webkit-justify-content: left;
  -moz-justify-content: left;
  -ms-justify-content: left;
  -o-justify-content: left;
  justify-content: left;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 164, ../sass/components/_health_pro.scss */
  .node--type-systematic-evidence-review.node--view-mode-full .field--name-field-supporting-materials .field__items,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .field--name-field-supporting-materials .field__items,
  .node--type-clinical-practice-guideline.node--view-mode-full .field--name-field-supporting-materials .field__items,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .field--name-field-supporting-materials .field__items {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    -ms-align-items: stretch;
    -o-align-items: stretch;
    align-items: stretch;
  }
}
/* line 169, ../sass/components/_health_pro.scss */
.node--type-systematic-evidence-review.node--view-mode-full .field--name-field-supporting-materials .field__item,
.node--type-systematic-evidence-review.node--view-mode-subscribe .field--name-field-supporting-materials .field__item,
.node--type-clinical-practice-guideline.node--view-mode-full .field--name-field-supporting-materials .field__item,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .field--name-field-supporting-materials .field__item {
  margin-bottom: 20px;
  margin-right: 20px;
  display: inline-block;
}
@media all and (min-width: 1100px) {
  /* line 169, ../sass/components/_health_pro.scss */
  .node--type-systematic-evidence-review.node--view-mode-full .field--name-field-supporting-materials .field__item,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .field--name-field-supporting-materials .field__item,
  .node--type-clinical-practice-guideline.node--view-mode-full .field--name-field-supporting-materials .field__item,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .field--name-field-supporting-materials .field__item {
    width: 30%;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 169, ../sass/components/_health_pro.scss */
  .node--type-systematic-evidence-review.node--view-mode-full .field--name-field-supporting-materials .field__item,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .field--name-field-supporting-materials .field__item,
  .node--type-clinical-practice-guideline.node--view-mode-full .field--name-field-supporting-materials .field__item,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .field--name-field-supporting-materials .field__item {
    width: 45%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 169, ../sass/components/_health_pro.scss */
  .node--type-systematic-evidence-review.node--view-mode-full .field--name-field-supporting-materials .field__item,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .field--name-field-supporting-materials .field__item,
  .node--type-clinical-practice-guideline.node--view-mode-full .field--name-field-supporting-materials .field__item,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .field--name-field-supporting-materials .field__item {
    width: 90%;
  }
}
/* line 2133, ../sass/_mixins.scss */
.node--type-systematic-evidence-review.node--view-mode-full .field--name-field-supporting-materials .field__item .file--application-pdf,
.node--type-systematic-evidence-review.node--view-mode-subscribe .field--name-field-supporting-materials .field__item .file--application-pdf,
.node--type-clinical-practice-guideline.node--view-mode-full .field--name-field-supporting-materials .field__item .file--application-pdf,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .field--name-field-supporting-materials .field__item .file--application-pdf {
  background-image: url("../images/ico-pdf.png");
  background-size: 50px 50px;
  background-repeat: no-repeat;
  background-position: right center;
  display: inline-block;
  content: " ";
  height: inherit;
}
/* line 2137, ../sass/_mixins.scss */
.node--type-systematic-evidence-review.node--view-mode-full .field--name-field-supporting-materials .field__item .file--x-office-document,
.node--type-systematic-evidence-review.node--view-mode-subscribe .field--name-field-supporting-materials .field__item .file--x-office-document,
.node--type-clinical-practice-guideline.node--view-mode-full .field--name-field-supporting-materials .field__item .file--x-office-document,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .field--name-field-supporting-materials .field__item .file--x-office-document {
  background-image: url("../images/ico-doc.png");
  background-size: 50px 50px;
  background-repeat: no-repeat;
  background-position: right center;
  display: inline-block;
  content: " ";
  height: inherit;
}
/* line 2141, ../sass/_mixins.scss */
.node--type-systematic-evidence-review.node--view-mode-full .field--name-field-supporting-materials .field__item .file--x-office-spreadsheet,
.node--type-systematic-evidence-review.node--view-mode-subscribe .field--name-field-supporting-materials .field__item .file--x-office-spreadsheet,
.node--type-clinical-practice-guideline.node--view-mode-full .field--name-field-supporting-materials .field__item .file--x-office-spreadsheet,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .field--name-field-supporting-materials .field__item .file--x-office-spreadsheet {
  background-image: url("../images/ico-xls.png");
  background-size: 50px 50px;
  background-repeat: no-repeat;
  background-position: right center;
  display: inline-block;
  content: " ";
  height: inherit;
}
/* line 2145, ../sass/_mixins.scss */
.node--type-systematic-evidence-review.node--view-mode-full .field--name-field-supporting-materials .field__item .file--x-office-presentation,
.node--type-systematic-evidence-review.node--view-mode-subscribe .field--name-field-supporting-materials .field__item .file--x-office-presentation,
.node--type-clinical-practice-guideline.node--view-mode-full .field--name-field-supporting-materials .field__item .file--x-office-presentation,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .field--name-field-supporting-materials .field__item .file--x-office-presentation {
  background-image: url("../images/ico-ppt.png");
  background-size: 50px 50px;
  background-repeat: no-repeat;
  background-position: right center;
  display: inline-block;
  content: " ";
  height: inherit;
}
/* line 2149, ../sass/_mixins.scss */
.node--type-systematic-evidence-review.node--view-mode-full .field--name-field-supporting-materials .field__item .file-download-card,
.node--type-systematic-evidence-review.node--view-mode-subscribe .field--name-field-supporting-materials .field__item .file-download-card,
.node--type-clinical-practice-guideline.node--view-mode-full .field--name-field-supporting-materials .field__item .file-download-card,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .field--name-field-supporting-materials .field__item .file-download-card {
  background-color: white;
  width: 100%;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2149, ../sass/_mixins.scss */
  .node--type-systematic-evidence-review.node--view-mode-full .field--name-field-supporting-materials .field__item .file-download-card,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .field--name-field-supporting-materials .field__item .file-download-card,
  .node--type-clinical-practice-guideline.node--view-mode-full .field--name-field-supporting-materials .field__item .file-download-card,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .field--name-field-supporting-materials .field__item .file-download-card {
    flex-direction: row;
  }
}
/* line 2160, ../sass/_mixins.scss */
.node--type-systematic-evidence-review.node--view-mode-full .field--name-field-supporting-materials .field__item .file-download-card .file-details,
.node--type-systematic-evidence-review.node--view-mode-subscribe .field--name-field-supporting-materials .field__item .file-download-card .file-details,
.node--type-clinical-practice-guideline.node--view-mode-full .field--name-field-supporting-materials .field__item .file-download-card .file-details,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .field--name-field-supporting-materials .field__item .file-download-card .file-details {
  width: 100%;
}
/* line 2162, ../sass/_mixins.scss */
.node--type-systematic-evidence-review.node--view-mode-full .field--name-field-supporting-materials .field__item .file-download-card .file-details .file-link-text,
.node--type-systematic-evidence-review.node--view-mode-subscribe .field--name-field-supporting-materials .field__item .file-download-card .file-details .file-link-text,
.node--type-clinical-practice-guideline.node--view-mode-full .field--name-field-supporting-materials .field__item .file-download-card .file-details .file-link-text,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .field--name-field-supporting-materials .field__item .file-download-card .file-details .file-link-text {
  padding-top: 25px;
  padding-left: 1em;
}
/* line 2166, ../sass/_mixins.scss */
.node--type-systematic-evidence-review.node--view-mode-full .field--name-field-supporting-materials .field__item .file-download-card .file-details .file-size,
.node--type-systematic-evidence-review.node--view-mode-subscribe .field--name-field-supporting-materials .field__item .file-download-card .file-details .file-size,
.node--type-clinical-practice-guideline.node--view-mode-full .field--name-field-supporting-materials .field__item .file-download-card .file-details .file-size,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .field--name-field-supporting-materials .field__item .file-download-card .file-details .file-size {
  padding-top: 0.5em;
  padding-left: 1em;
}
/* line 2171, ../sass/_mixins.scss */
.node--type-systematic-evidence-review.node--view-mode-full .field--name-field-supporting-materials .field__item .file-download-card .file,
.node--type-systematic-evidence-review.node--view-mode-subscribe .field--name-field-supporting-materials .field__item .file-download-card .file,
.node--type-clinical-practice-guideline.node--view-mode-full .field--name-field-supporting-materials .field__item .file-download-card .file,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .field--name-field-supporting-materials .field__item .file-download-card .file {
  width: 50px;
  margin-right: 10px;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 169, ../sass/components/_health_pro.scss */
  .node--type-systematic-evidence-review.node--view-mode-full .field--name-field-supporting-materials .field__item,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .field--name-field-supporting-materials .field__item,
  .node--type-clinical-practice-guideline.node--view-mode-full .field--name-field-supporting-materials .field__item,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .field--name-field-supporting-materials .field__item {
    padding-bottom: 0;
    padding-right: 0;
    margin-right: 0;
    width: 100%;
  }
}
/* line 181, ../sass/components/_health_pro.scss */
.node--type-systematic-evidence-review.node--view-mode-full .field--name-field-supporting-materials h3, .node--type-systematic-evidence-review.node--view-mode-full .field--name-field-supporting-materials .field--name-field-social-phrase-group-title, .node--type-systematic-evidence-review.node--view-mode-full .field--name-field-supporting-materials .field--name-field-image-gallery-title,
.node--type-systematic-evidence-review.node--view-mode-subscribe .field--name-field-supporting-materials h3,
.node--type-systematic-evidence-review.node--view-mode-subscribe .field--name-field-supporting-materials .field--name-field-social-phrase-group-title,
.node--type-systematic-evidence-review.node--view-mode-subscribe .field--name-field-supporting-materials .field--name-field-image-gallery-title,
.node--type-clinical-practice-guideline.node--view-mode-full .field--name-field-supporting-materials h3,
.node--type-clinical-practice-guideline.node--view-mode-full .field--name-field-supporting-materials .field--name-field-social-phrase-group-title,
.node--type-clinical-practice-guideline.node--view-mode-full .field--name-field-supporting-materials .field--name-field-image-gallery-title,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .field--name-field-supporting-materials h3,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .field--name-field-supporting-materials .field--name-field-social-phrase-group-title,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .field--name-field-supporting-materials .field--name-field-image-gallery-title {
  color: white;
}
/* line 186, ../sass/components/_health_pro.scss */
.node--type-systematic-evidence-review.node--view-mode-full .field-accordion-pane,
.node--type-systematic-evidence-review.node--view-mode-subscribe .field-accordion-pane,
.node--type-clinical-practice-guideline.node--view-mode-full .field-accordion-pane,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .field-accordion-pane {
  margin-bottom: 20px;
}
/* line 188, ../sass/components/_health_pro.scss */
.node--type-systematic-evidence-review.node--view-mode-full .field-accordion-pane .content-container,
.node--type-systematic-evidence-review.node--view-mode-subscribe .field-accordion-pane .content-container,
.node--type-clinical-practice-guideline.node--view-mode-full .field-accordion-pane .content-container,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .field-accordion-pane .content-container {
  margin-top: 0;
}
/* line 191, ../sass/components/_health_pro.scss */
.node--type-systematic-evidence-review.node--view-mode-full .field-accordion-pane .secondary-accordion,
.node--type-systematic-evidence-review.node--view-mode-subscribe .field-accordion-pane .secondary-accordion,
.node--type-clinical-practice-guideline.node--view-mode-full .field-accordion-pane .secondary-accordion,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .field-accordion-pane .secondary-accordion {
  padding-top: 0;
}
/* line 193, ../sass/components/_health_pro.scss */
.node--type-systematic-evidence-review.node--view-mode-full .field-accordion-pane .secondary-accordion h2, .node--type-systematic-evidence-review.node--view-mode-full .field-accordion-pane .secondary-accordion .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-systematic-evidence-review.node--view-mode-full .field-accordion-pane .secondary-accordion h1, .node--type-systematic-evidence-review.node--view-mode-full .field-accordion-pane .secondary-accordion .contact-method-label,
.node--type-systematic-evidence-review.node--view-mode-subscribe .field-accordion-pane .secondary-accordion h2,
.node--type-systematic-evidence-review.node--view-mode-subscribe .field-accordion-pane .secondary-accordion .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-systematic-evidence-review.node--view-mode-subscribe .field-accordion-pane .secondary-accordion h1,
.node--type-systematic-evidence-review.node--view-mode-subscribe .field-accordion-pane .secondary-accordion .contact-method-label,
.node--type-clinical-practice-guideline.node--view-mode-full .field-accordion-pane .secondary-accordion h2,
.node--type-clinical-practice-guideline.node--view-mode-full .field-accordion-pane .secondary-accordion .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-clinical-practice-guideline.node--view-mode-full .field-accordion-pane .secondary-accordion h1,
.node--type-clinical-practice-guideline.node--view-mode-full .field-accordion-pane .secondary-accordion .contact-method-label,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .field-accordion-pane .secondary-accordion h2,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .field-accordion-pane .secondary-accordion .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-clinical-practice-guideline.node--view-mode-subscribe .field-accordion-pane .secondary-accordion h1,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .field-accordion-pane .secondary-accordion .contact-method-label {
  font-size: 1.375rem;
  margin: 0 0 11px 0;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-weight: bold;
  font-style: normal;
  color: #222;
  font-size: 1.25rem;
  font-weight: normal;
  margin: 1.5em 0 0.25em;
  padding: 0;
  color: #222;
  font-size: 1.25rem;
}
@media all and (min-width: 1440px) {
  /* line 193, ../sass/components/_health_pro.scss */
  .node--type-systematic-evidence-review.node--view-mode-full .field-accordion-pane .secondary-accordion h2, .node--type-systematic-evidence-review.node--view-mode-full .field-accordion-pane .secondary-accordion .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-systematic-evidence-review.node--view-mode-full .field-accordion-pane .secondary-accordion h1, .node--type-systematic-evidence-review.node--view-mode-full .field-accordion-pane .secondary-accordion .contact-method-label,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .field-accordion-pane .secondary-accordion h2,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .field-accordion-pane .secondary-accordion .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1,
  .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-systematic-evidence-review.node--view-mode-subscribe .field-accordion-pane .secondary-accordion h1,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .field-accordion-pane .secondary-accordion .contact-method-label,
  .node--type-clinical-practice-guideline.node--view-mode-full .field-accordion-pane .secondary-accordion h2,
  .node--type-clinical-practice-guideline.node--view-mode-full .field-accordion-pane .secondary-accordion .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1,
  .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-clinical-practice-guideline.node--view-mode-full .field-accordion-pane .secondary-accordion h1,
  .node--type-clinical-practice-guideline.node--view-mode-full .field-accordion-pane .secondary-accordion .contact-method-label,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .field-accordion-pane .secondary-accordion h2,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .field-accordion-pane .secondary-accordion .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1,
  .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-clinical-practice-guideline.node--view-mode-subscribe .field-accordion-pane .secondary-accordion h1,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .field-accordion-pane .secondary-accordion .contact-method-label {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 193, ../sass/components/_health_pro.scss */
  .node--type-systematic-evidence-review.node--view-mode-full .field-accordion-pane .secondary-accordion h2, .node--type-systematic-evidence-review.node--view-mode-full .field-accordion-pane .secondary-accordion .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-systematic-evidence-review.node--view-mode-full .field-accordion-pane .secondary-accordion h1, .node--type-systematic-evidence-review.node--view-mode-full .field-accordion-pane .secondary-accordion .contact-method-label,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .field-accordion-pane .secondary-accordion h2,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .field-accordion-pane .secondary-accordion .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1,
  .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-systematic-evidence-review.node--view-mode-subscribe .field-accordion-pane .secondary-accordion h1,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .field-accordion-pane .secondary-accordion .contact-method-label,
  .node--type-clinical-practice-guideline.node--view-mode-full .field-accordion-pane .secondary-accordion h2,
  .node--type-clinical-practice-guideline.node--view-mode-full .field-accordion-pane .secondary-accordion .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1,
  .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-clinical-practice-guideline.node--view-mode-full .field-accordion-pane .secondary-accordion h1,
  .node--type-clinical-practice-guideline.node--view-mode-full .field-accordion-pane .secondary-accordion .contact-method-label,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .field-accordion-pane .secondary-accordion h2,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .field-accordion-pane .secondary-accordion .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1,
  .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-clinical-practice-guideline.node--view-mode-subscribe .field-accordion-pane .secondary-accordion h1,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .field-accordion-pane .secondary-accordion .contact-method-label {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 193, ../sass/components/_health_pro.scss */
  .node--type-systematic-evidence-review.node--view-mode-full .field-accordion-pane .secondary-accordion h2, .node--type-systematic-evidence-review.node--view-mode-full .field-accordion-pane .secondary-accordion .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-systematic-evidence-review.node--view-mode-full .field-accordion-pane .secondary-accordion h1, .node--type-systematic-evidence-review.node--view-mode-full .field-accordion-pane .secondary-accordion .contact-method-label,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .field-accordion-pane .secondary-accordion h2,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .field-accordion-pane .secondary-accordion .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1,
  .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-systematic-evidence-review.node--view-mode-subscribe .field-accordion-pane .secondary-accordion h1,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .field-accordion-pane .secondary-accordion .contact-method-label,
  .node--type-clinical-practice-guideline.node--view-mode-full .field-accordion-pane .secondary-accordion h2,
  .node--type-clinical-practice-guideline.node--view-mode-full .field-accordion-pane .secondary-accordion .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1,
  .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-clinical-practice-guideline.node--view-mode-full .field-accordion-pane .secondary-accordion h1,
  .node--type-clinical-practice-guideline.node--view-mode-full .field-accordion-pane .secondary-accordion .contact-method-label,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .field-accordion-pane .secondary-accordion h2,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .field-accordion-pane .secondary-accordion .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1,
  .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-clinical-practice-guideline.node--view-mode-subscribe .field-accordion-pane .secondary-accordion h1,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .field-accordion-pane .secondary-accordion .contact-method-label {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 193, ../sass/components/_health_pro.scss */
  .node--type-systematic-evidence-review.node--view-mode-full .field-accordion-pane .secondary-accordion h2, .node--type-systematic-evidence-review.node--view-mode-full .field-accordion-pane .secondary-accordion .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-systematic-evidence-review.node--view-mode-full .field-accordion-pane .secondary-accordion h1, .node--type-systematic-evidence-review.node--view-mode-full .field-accordion-pane .secondary-accordion .contact-method-label,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .field-accordion-pane .secondary-accordion h2,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .field-accordion-pane .secondary-accordion .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1,
  .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-systematic-evidence-review.node--view-mode-subscribe .field-accordion-pane .secondary-accordion h1,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .field-accordion-pane .secondary-accordion .contact-method-label,
  .node--type-clinical-practice-guideline.node--view-mode-full .field-accordion-pane .secondary-accordion h2,
  .node--type-clinical-practice-guideline.node--view-mode-full .field-accordion-pane .secondary-accordion .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1,
  .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-clinical-practice-guideline.node--view-mode-full .field-accordion-pane .secondary-accordion h1,
  .node--type-clinical-practice-guideline.node--view-mode-full .field-accordion-pane .secondary-accordion .contact-method-label,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .field-accordion-pane .secondary-accordion h2,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .field-accordion-pane .secondary-accordion .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1,
  .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-clinical-practice-guideline.node--view-mode-subscribe .field-accordion-pane .secondary-accordion h1,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .field-accordion-pane .secondary-accordion .contact-method-label {
    font-size: 1rem;
  }
}
@media all and (min-width: 1440px) {
  /* line 193, ../sass/components/_health_pro.scss */
  .node--type-systematic-evidence-review.node--view-mode-full .field-accordion-pane .secondary-accordion h2, .node--type-systematic-evidence-review.node--view-mode-full .field-accordion-pane .secondary-accordion .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-systematic-evidence-review.node--view-mode-full .field-accordion-pane .secondary-accordion h1, .node--type-systematic-evidence-review.node--view-mode-full .field-accordion-pane .secondary-accordion .contact-method-label,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .field-accordion-pane .secondary-accordion h2,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .field-accordion-pane .secondary-accordion .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1,
  .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-systematic-evidence-review.node--view-mode-subscribe .field-accordion-pane .secondary-accordion h1,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .field-accordion-pane .secondary-accordion .contact-method-label,
  .node--type-clinical-practice-guideline.node--view-mode-full .field-accordion-pane .secondary-accordion h2,
  .node--type-clinical-practice-guideline.node--view-mode-full .field-accordion-pane .secondary-accordion .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1,
  .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-clinical-practice-guideline.node--view-mode-full .field-accordion-pane .secondary-accordion h1,
  .node--type-clinical-practice-guideline.node--view-mode-full .field-accordion-pane .secondary-accordion .contact-method-label,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .field-accordion-pane .secondary-accordion h2,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .field-accordion-pane .secondary-accordion .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1,
  .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-clinical-practice-guideline.node--view-mode-subscribe .field-accordion-pane .secondary-accordion h1,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .field-accordion-pane .secondary-accordion .contact-method-label {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 193, ../sass/components/_health_pro.scss */
  .node--type-systematic-evidence-review.node--view-mode-full .field-accordion-pane .secondary-accordion h2, .node--type-systematic-evidence-review.node--view-mode-full .field-accordion-pane .secondary-accordion .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-systematic-evidence-review.node--view-mode-full .field-accordion-pane .secondary-accordion h1, .node--type-systematic-evidence-review.node--view-mode-full .field-accordion-pane .secondary-accordion .contact-method-label,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .field-accordion-pane .secondary-accordion h2,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .field-accordion-pane .secondary-accordion .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1,
  .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-systematic-evidence-review.node--view-mode-subscribe .field-accordion-pane .secondary-accordion h1,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .field-accordion-pane .secondary-accordion .contact-method-label,
  .node--type-clinical-practice-guideline.node--view-mode-full .field-accordion-pane .secondary-accordion h2,
  .node--type-clinical-practice-guideline.node--view-mode-full .field-accordion-pane .secondary-accordion .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1,
  .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-clinical-practice-guideline.node--view-mode-full .field-accordion-pane .secondary-accordion h1,
  .node--type-clinical-practice-guideline.node--view-mode-full .field-accordion-pane .secondary-accordion .contact-method-label,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .field-accordion-pane .secondary-accordion h2,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .field-accordion-pane .secondary-accordion .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1,
  .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-clinical-practice-guideline.node--view-mode-subscribe .field-accordion-pane .secondary-accordion h1,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .field-accordion-pane .secondary-accordion .contact-method-label {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 193, ../sass/components/_health_pro.scss */
  .node--type-systematic-evidence-review.node--view-mode-full .field-accordion-pane .secondary-accordion h2, .node--type-systematic-evidence-review.node--view-mode-full .field-accordion-pane .secondary-accordion .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-systematic-evidence-review.node--view-mode-full .field-accordion-pane .secondary-accordion h1, .node--type-systematic-evidence-review.node--view-mode-full .field-accordion-pane .secondary-accordion .contact-method-label,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .field-accordion-pane .secondary-accordion h2,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .field-accordion-pane .secondary-accordion .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1,
  .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-systematic-evidence-review.node--view-mode-subscribe .field-accordion-pane .secondary-accordion h1,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .field-accordion-pane .secondary-accordion .contact-method-label,
  .node--type-clinical-practice-guideline.node--view-mode-full .field-accordion-pane .secondary-accordion h2,
  .node--type-clinical-practice-guideline.node--view-mode-full .field-accordion-pane .secondary-accordion .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1,
  .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-clinical-practice-guideline.node--view-mode-full .field-accordion-pane .secondary-accordion h1,
  .node--type-clinical-practice-guideline.node--view-mode-full .field-accordion-pane .secondary-accordion .contact-method-label,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .field-accordion-pane .secondary-accordion h2,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .field-accordion-pane .secondary-accordion .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1,
  .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-clinical-practice-guideline.node--view-mode-subscribe .field-accordion-pane .secondary-accordion h1,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .field-accordion-pane .secondary-accordion .contact-method-label {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 193, ../sass/components/_health_pro.scss */
  .node--type-systematic-evidence-review.node--view-mode-full .field-accordion-pane .secondary-accordion h2, .node--type-systematic-evidence-review.node--view-mode-full .field-accordion-pane .secondary-accordion .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-systematic-evidence-review.node--view-mode-full .field-accordion-pane .secondary-accordion h1, .node--type-systematic-evidence-review.node--view-mode-full .field-accordion-pane .secondary-accordion .contact-method-label,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .field-accordion-pane .secondary-accordion h2,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .field-accordion-pane .secondary-accordion .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1,
  .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-systematic-evidence-review.node--view-mode-subscribe .field-accordion-pane .secondary-accordion h1,
  .node--type-systematic-evidence-review.node--view-mode-subscribe .field-accordion-pane .secondary-accordion .contact-method-label,
  .node--type-clinical-practice-guideline.node--view-mode-full .field-accordion-pane .secondary-accordion h2,
  .node--type-clinical-practice-guideline.node--view-mode-full .field-accordion-pane .secondary-accordion .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1,
  .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-clinical-practice-guideline.node--view-mode-full .field-accordion-pane .secondary-accordion h1,
  .node--type-clinical-practice-guideline.node--view-mode-full .field-accordion-pane .secondary-accordion .contact-method-label,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .field-accordion-pane .secondary-accordion h2,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .field-accordion-pane .secondary-accordion .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1,
  .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-clinical-practice-guideline.node--view-mode-subscribe .field-accordion-pane .secondary-accordion h1,
  .node--type-clinical-practice-guideline.node--view-mode-subscribe .field-accordion-pane .secondary-accordion .contact-method-label {
    font-size: 1rem;
  }
}
/* line 201, ../sass/components/_health_pro.scss */
.node--type-systematic-evidence-review.node--view-mode-full .field-accordion-pane .secondary-accordion h2:focus, .node--type-systematic-evidence-review.node--view-mode-full .field-accordion-pane .secondary-accordion .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1:focus, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-systematic-evidence-review.node--view-mode-full .field-accordion-pane .secondary-accordion h1:focus, .node--type-systematic-evidence-review.node--view-mode-full .field-accordion-pane .secondary-accordion .contact-method-label:focus,
.node--type-systematic-evidence-review.node--view-mode-subscribe .field-accordion-pane .secondary-accordion h2:focus,
.node--type-systematic-evidence-review.node--view-mode-subscribe .field-accordion-pane .secondary-accordion .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1:focus,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-systematic-evidence-review.node--view-mode-subscribe .field-accordion-pane .secondary-accordion h1:focus,
.node--type-systematic-evidence-review.node--view-mode-subscribe .field-accordion-pane .secondary-accordion .contact-method-label:focus,
.node--type-clinical-practice-guideline.node--view-mode-full .field-accordion-pane .secondary-accordion h2:focus,
.node--type-clinical-practice-guideline.node--view-mode-full .field-accordion-pane .secondary-accordion .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1:focus,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-clinical-practice-guideline.node--view-mode-full .field-accordion-pane .secondary-accordion h1:focus,
.node--type-clinical-practice-guideline.node--view-mode-full .field-accordion-pane .secondary-accordion .contact-method-label:focus,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .field-accordion-pane .secondary-accordion h2:focus,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .field-accordion-pane .secondary-accordion .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1:focus,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-clinical-practice-guideline.node--view-mode-subscribe .field-accordion-pane .secondary-accordion h1:focus,
.node--type-clinical-practice-guideline.node--view-mode-subscribe .field-accordion-pane .secondary-accordion .contact-method-label:focus {
  outline: #bf0d2e dotted 3px;
}

/* line 209, ../sass/components/_health_pro.scss */
.node--type-systematic-evidence-review h1 {
  margin-top: 0;
}

/* line 3, ../sass/components/_researchtopics.scss */
.rtFlexContainer {
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  -o-align-items: flex-start;
  align-items: flex-start;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  overflow: visible;
  padding-top: 2em;
}
/* line 10, ../sass/components/_researchtopics.scss */
.rtFlexContainer h1 {
  background-color: #f4f4f4;
  padding-top: 0;
  margin: 0;
}
/* line 15, ../sass/components/_researchtopics.scss */
.rtFlexContainer .rtTitleClassification {
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
  -webkit-align-self: center;
  -moz-align-self: center;
  -ms-align-self: center;
  -o-align-self: center;
  align-self: center;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 15, ../sass/components/_researchtopics.scss */
  .rtFlexContainer .rtTitleClassification {
    -webkit-align-self: flex-start;
    -moz-align-self: flex-start;
    -ms-align-self: flex-start;
    -o-align-self: flex-start;
    align-self: flex-start;
    margin-bottom: 1em;
  }
}
/* line 25, ../sass/components/_researchtopics.scss */
.rtFlexContainer .field--name-field-related-sfas {
  margin-top: 1em;
  margin-bottom: 1em;
}
/* line 29, ../sass/components/_researchtopics.scss */
.rtFlexContainer .field--name-field-related-sfas .field__item {
  display: inline-block;
  margin-bottom: 0;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 29, ../sass/components/_researchtopics.scss */
  .rtFlexContainer .field--name-field-related-sfas .field__item {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: -ms-fit-content;
    width: -o-fit-content;
    width: fit-content;
  }
}
/* line 37, ../sass/components/_researchtopics.scss */
.rtFlexContainer .field--name-field-related-sfas a {
  padding-right: 1.75em;
  padding-left: 1.75em;
  display: inherit;
  margin: 1em 1em 1em 0;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 37, ../sass/components/_researchtopics.scss */
  .rtFlexContainer .field--name-field-related-sfas a {
    padding-right: 1.25em;
    padding-left: 1.25em;
  }
}
/* line 50, ../sass/components/_researchtopics.scss */
.rtFlexContainer .rtPIandOfficer {
  -webkit-box-ordinal-group: 2;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
  display: inline-block;
  float: right;
}
/* line 54, ../sass/components/_researchtopics.scss */
.rtFlexContainer .rtPIandOfficer .contactFlex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
}
/* line 58, ../sass/components/_researchtopics.scss */
.rtFlexContainer .rtPIandOfficer .contactFlexText {
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
  font-weight: bold;
  padding-right: 1em;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 58, ../sass/components/_researchtopics.scss */
  .rtFlexContainer .rtPIandOfficer .contactFlexText {
    -webkit-box-ordinal-group: 2;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
    padding-left: 1em;
  }
}
/* line 67, ../sass/components/_researchtopics.scss */
.rtFlexContainer .rtPIandOfficer .contactFlexImage {
  -webkit-box-ordinal-group: 2;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 67, ../sass/components/_researchtopics.scss */
  .rtFlexContainer .rtPIandOfficer .contactFlexImage {
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
}
/* line 73, ../sass/components/_researchtopics.scss */
.rtFlexContainer .rtPIandOfficer a.contact-link {
  float: right;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 73, ../sass/components/_researchtopics.scss */
  .rtFlexContainer .rtPIandOfficer a.contact-link {
    float: none;
  }
}

/* line 82, ../sass/components/_researchtopics.scss */
.node--type-research-topic h3, .node--type-research-topic .field--name-field-social-phrase-group-title, .node--type-research-topic .field--name-field-image-gallery-title {
  color: #fff;
}
/* line 86, ../sass/components/_researchtopics.scss */
.node--type-research-topic .rtDescription {
  padding-bottom: 3em;
  width: 75%;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 86, ../sass/components/_researchtopics.scss */
  .node--type-research-topic .rtDescription {
    margin-top: 1em;
    width: 100%;
  }
}
@media all and (min-width: 1100px) {
  /* line 100, ../sass/components/_researchtopics.scss */
  .node--type-research-topic .researchPeopleToolsBlock {
    padding-top: 3em;
    padding-bottom: 3em;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 100, ../sass/components/_researchtopics.scss */
  .node--type-research-topic .researchPeopleToolsBlock {
    padding-top: 3em;
    padding-bottom: 3em;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 100, ../sass/components/_researchtopics.scss */
  .node--type-research-topic .researchPeopleToolsBlock {
    padding-top: 2em;
    padding-bottom: 0.5em;
  }
}
/* line 115, ../sass/components/_researchtopics.scss */
.node--type-research-topic .field--name-field-science-supplemental-page {
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  -o-align-items: flex-end;
  align-items: flex-end;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  -ms-justify-content: space-around;
  -o-justify-content: space-around;
  justify-content: space-around;
  overflow: visible;
}
/* line 123, ../sass/components/_researchtopics.scss */
.node--type-research-topic .field--name-field-science-supplemental-page .field__item {
  text-align: center;
}
/* line 129, ../sass/components/_researchtopics.scss */
.node--type-research-topic .field--name-field-science-supplemental-page .field__item h3, .node--type-research-topic .field--name-field-science-supplemental-page .field__item .field--name-field-social-phrase-group-title, .node--type-research-topic .field--name-field-science-supplemental-page .field__item .field--name-field-image-gallery-title {
  display: block;
  position: relative;
  text-align: center;
  clear: both;
  width: 100%;
  margin: 0.6em 0 0 0;
  color: #222;
  background-color: transparent;
}
/* line 126, ../sass/_mixins.scss */
.node--type-research-topic .field--name-field-science-supplemental-page .field__item h3 a, .node--type-research-topic .field--name-field-science-supplemental-page .field__item .field--name-field-social-phrase-group-title a, .node--type-research-topic .field--name-field-science-supplemental-page .field__item .field--name-field-image-gallery-title a, .node--type-research-topic .field--name-field-science-supplemental-page .field__item h3 a:link, .node--type-research-topic .field--name-field-science-supplemental-page .field__item .field--name-field-social-phrase-group-title a:link, .node--type-research-topic .field--name-field-science-supplemental-page .field__item .field--name-field-image-gallery-title a:link {
  color: #222;
  text-decoration: underline;
}
/* line 136, ../sass/_mixins.scss */
.node--type-research-topic .field--name-field-science-supplemental-page .field__item h3 a:visited, .node--type-research-topic .field--name-field-science-supplemental-page .field__item .field--name-field-social-phrase-group-title a:visited, .node--type-research-topic .field--name-field-science-supplemental-page .field__item .field--name-field-image-gallery-title a:visited {
  color: #6f57B5;
}
/* line 145, ../sass/_mixins.scss */
.node--type-research-topic .field--name-field-science-supplemental-page .field__item h3 a:hover, .node--type-research-topic .field--name-field-science-supplemental-page .field__item .field--name-field-social-phrase-group-title a:hover, .node--type-research-topic .field--name-field-science-supplemental-page .field__item .field--name-field-image-gallery-title a:hover {
  font-weight: bold;
}
/* line 154, ../sass/_mixins.scss */
.node--type-research-topic .field--name-field-science-supplemental-page .field__item h3 h1, .node--type-research-topic .field--name-field-science-supplemental-page .field__item .field--name-field-social-phrase-group-title h1, .node--type-research-topic .field--name-field-science-supplemental-page .field__item .field--name-field-image-gallery-title h1, .node--type-research-topic .field--name-field-science-supplemental-page .field__item h3 .photocredit, .node--type-research-topic .field--name-field-science-supplemental-page .field__item .field--name-field-social-phrase-group-title .photocredit, .node--type-research-topic .field--name-field-science-supplemental-page .field__item .field--name-field-image-gallery-title .photocredit {
  color: #222;
}
/* line 135, ../sass/components/_researchtopics.scss */
.node--type-research-topic .field--name-field-science-supplemental-page .field__item h3 a:hover, .node--type-research-topic .field--name-field-science-supplemental-page .field__item .field--name-field-social-phrase-group-title a:hover, .node--type-research-topic .field--name-field-science-supplemental-page .field__item .field--name-field-image-gallery-title a:hover {
  background-color: transparent;
}
/* line 140, ../sass/components/_researchtopics.scss */
.node--type-research-topic .field--name-field-science-supplemental-page .field__item a:visited h3, .node--type-research-topic .field--name-field-science-supplemental-page .field__item a:visited .field--name-field-social-phrase-group-title, .node--type-research-topic .field--name-field-science-supplemental-page .field__item a:visited .field--name-field-image-gallery-title {
  color: #6f57B5;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 123, ../sass/components/_researchtopics.scss */
  .node--type-research-topic .field--name-field-science-supplemental-page .field__item {
    width: 100%;
    padding-bottom: 2em;
    margin-right: 0;
  }
}
@media all and (min-width: 768px) {
  /* line 149, ../sass/components/_researchtopics.scss */
  .node--type-research-topic .field--name-field-science-supplemental-page .field__item:last-child {
    padding-right: 0;
    margin-right: 0;
  }
}
/* line 158, ../sass/components/_researchtopics.scss */
.node--type-research-topic .field--name-field-content {
  color: #fff;
  background-color: transparent;
}
/* line 126, ../sass/_mixins.scss */
.node--type-research-topic .field--name-field-content a, .node--type-research-topic .field--name-field-content a:link {
  color: #fff;
  text-decoration: underline;
}
/* line 132, ../sass/_mixins.scss */
.node--type-research-topic .field--name-field-content a:visited {
  color: #D7E7F4;
}
/* line 145, ../sass/_mixins.scss */
.node--type-research-topic .field--name-field-content a:hover {
  font-weight: bold;
}
/* line 154, ../sass/_mixins.scss */
.node--type-research-topic .field--name-field-content h1, .node--type-research-topic .field--name-field-content .photocredit {
  color: #fff;
}
/* line 161, ../sass/components/_researchtopics.scss */
.node--type-research-topic .field--name-field-content a.blueJoinbutton:hover, .node--type-research-topic .field--name-field-content a.bluebutton:hover {
  color: #fff;
}
/* line 165, ../sass/components/_researchtopics.scss */
.node--type-research-topic .field--name-field-content article.node--type-employment-and-fellowship-opport a.bluebutton {
  margin: 0;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 169, ../sass/components/_researchtopics.scss */
  .node--type-research-topic .field--name-field-content .bodytext, .node--type-research-topic .field--name-field-content .darkGrayBodyText, .node--type-research-topic .field--name-field-content .foa-expiration-date {
    display: none;
  }
}
/* line 177, ../sass/components/_researchtopics.scss */
.node--type-research-topic .field--name-field-content > .field__item .rtUpdatesView.rtUpdatesView.view-display-id-block_4 {
  color: #222;
  background-color: #fff;
}
/* line 126, ../sass/_mixins.scss */
.node--type-research-topic .field--name-field-content > .field__item .rtUpdatesView.rtUpdatesView.view-display-id-block_4 a, .node--type-research-topic .field--name-field-content > .field__item .rtUpdatesView.rtUpdatesView.view-display-id-block_4 a:link {
  color: #222;
  text-decoration: underline;
}
/* line 136, ../sass/_mixins.scss */
.node--type-research-topic .field--name-field-content > .field__item .rtUpdatesView.rtUpdatesView.view-display-id-block_4 a:visited {
  color: #6f57B5;
}
/* line 145, ../sass/_mixins.scss */
.node--type-research-topic .field--name-field-content > .field__item .rtUpdatesView.rtUpdatesView.view-display-id-block_4 a:hover {
  font-weight: bold;
}
/* line 154, ../sass/_mixins.scss */
.node--type-research-topic .field--name-field-content > .field__item .rtUpdatesView.rtUpdatesView.view-display-id-block_4 h1, .node--type-research-topic .field--name-field-content > .field__item .rtUpdatesView.rtUpdatesView.view-display-id-block_4 .photocredit {
  color: #222;
}
/* line 181, ../sass/components/_researchtopics.scss */
.node--type-research-topic .field--name-field-content > .field__item .rtUpdatesView.rtUpdatesView.view-display-id-block_4 a, .node--type-research-topic .field--name-field-content > .field__item .rtUpdatesView.rtUpdatesView.view-display-id-block_4 a:link {
  text-decoration: none;
}
/* line 185, ../sass/components/_researchtopics.scss */
.node--type-research-topic .field--name-field-content > .field__item .rtUpdatesView.rtUpdatesView.view-display-id-block_4 .bodytext, .node--type-research-topic .field--name-field-content > .field__item .rtUpdatesView.rtUpdatesView.view-display-id-block_4 .darkGrayBodyText, .node--type-research-topic .field--name-field-content > .field__item .rtUpdatesView.rtUpdatesView.view-display-id-block_4 .foa-expiration-date {
  color: #222;
}
/* line 188, ../sass/components/_researchtopics.scss */
.node--type-research-topic .field--name-field-content > .field__item .rtUpdatesView.rtUpdatesView.view-display-id-block_4 .updatesLink {
  padding: 1em 0;
}
@media all and (min-width: 768px) {
  /* line 200, ../sass/components/_researchtopics.scss */
  .node--type-research-topic .researchTopicPublications .flexItemImage, .node--type-research-topic .researchTopicPublications .flexItemImageHalf, .node--type-research-topic .researchTopicPublications .flexItemImageTenth, .node--type-research-topic .researchTopicPublications .flexItemImageFourth, .node--type-research-topic .researchTopicPublications .flexItemImageThird, .node--type-research-topic .researchTopicPublications .flexItemImageThirdHalf, .node--type-research-topic .researchTopicPublications .hero-image {
    max-width: 50%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 200, ../sass/components/_researchtopics.scss */
  .node--type-research-topic .researchTopicPublications .flexItemImage, .node--type-research-topic .researchTopicPublications .flexItemImageHalf, .node--type-research-topic .researchTopicPublications .flexItemImageTenth, .node--type-research-topic .researchTopicPublications .flexItemImageFourth, .node--type-research-topic .researchTopicPublications .flexItemImageThird, .node--type-research-topic .researchTopicPublications .flexItemImageThirdHalf, .node--type-research-topic .researchTopicPublications .hero-image {
    max-width: 100%;
  }
}
/* line 209, ../sass/components/_researchtopics.scss */
.node--type-research-topic .field--name-field-content > .field__item {
  background-color: #1a568c;
  display: block;
}
/* line 213, ../sass/components/_researchtopics.scss */
.node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf a.viewalllink, .node--type-research-topic .field--name-field-content > .field__item .promoted-content-container .flexItemText.flexItemTextHalf .field--name-field-url > a, .promoted-content-container .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .field--name-field-url > a, .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf a, .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf a, .node--type-research-topic .field--name-field-content > .field__item .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf a, .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .field--name-field-url > a {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #1a568c;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #fff;
  padding: 0.8em 3em;
  display: table !important;
  background-image: none;
}
@media all and (min-width: 1440px) {
  /* line 213, ../sass/components/_researchtopics.scss */
  .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf a.viewalllink, .node--type-research-topic .field--name-field-content > .field__item .promoted-content-container .flexItemText.flexItemTextHalf .field--name-field-url > a, .promoted-content-container .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .field--name-field-url > a, .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf a, .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf a, .node--type-research-topic .field--name-field-content > .field__item .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf a, .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 213, ../sass/components/_researchtopics.scss */
  .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf a.viewalllink, .node--type-research-topic .field--name-field-content > .field__item .promoted-content-container .flexItemText.flexItemTextHalf .field--name-field-url > a, .promoted-content-container .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .field--name-field-url > a, .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf a, .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf a, .node--type-research-topic .field--name-field-content > .field__item .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf a, .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 213, ../sass/components/_researchtopics.scss */
  .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf a.viewalllink, .node--type-research-topic .field--name-field-content > .field__item .promoted-content-container .flexItemText.flexItemTextHalf .field--name-field-url > a, .promoted-content-container .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .field--name-field-url > a, .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf a, .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf a, .node--type-research-topic .field--name-field-content > .field__item .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf a, .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 213, ../sass/components/_researchtopics.scss */
  .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf a.viewalllink, .node--type-research-topic .field--name-field-content > .field__item .promoted-content-container .flexItemText.flexItemTextHalf .field--name-field-url > a, .promoted-content-container .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .field--name-field-url > a, .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf a, .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf a, .node--type-research-topic .field--name-field-content > .field__item .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf a, .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf a.viewalllink :hover, .node--type-research-topic .field--name-field-content > .field__item .promoted-content-container .flexItemText.flexItemTextHalf .field--name-field-url > a :hover, .promoted-content-container .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .field--name-field-url > a :hover, .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .contact-nhlbi--landing .field--name-field-directions-link a :hover, .contact-nhlbi--landing .field--name-field-directions-link .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf a :hover, .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .isi-job-opportunities--landing .field--name-field-vacancies-link a :hover, .isi-job-opportunities--landing .field--name-field-vacancies-link .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf a :hover, .node--type-research-topic .field--name-field-content > .field__item .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a :hover, .field--name-field-promotional-card > .field__item .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a :hover, .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .fixedDarkBluePane .field--name-field-traveling-and-security a :hover, .fixedDarkBluePane .field--name-field-traveling-and-security .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf a :hover, .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .field--name-field-community-card .field--name-field-url > a :hover, .field--name-field-community-card .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .field--name-field-url > a :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 213, ../sass/components/_researchtopics.scss */
  .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf a.viewalllink, .node--type-research-topic .field--name-field-content > .field__item .promoted-content-container .flexItemText.flexItemTextHalf .field--name-field-url > a, .promoted-content-container .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .field--name-field-url > a, .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf a, .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf a, .node--type-research-topic .field--name-field-content > .field__item .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf a, .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 213, ../sass/components/_researchtopics.scss */
  .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf a.viewalllink, .node--type-research-topic .field--name-field-content > .field__item .promoted-content-container .flexItemText.flexItemTextHalf .field--name-field-url > a, .promoted-content-container .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .field--name-field-url > a, .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf a, .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf a, .node--type-research-topic .field--name-field-content > .field__item .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf a, .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 213, ../sass/components/_researchtopics.scss */
  .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf a.viewalllink, .node--type-research-topic .field--name-field-content > .field__item .promoted-content-container .flexItemText.flexItemTextHalf .field--name-field-url > a, .promoted-content-container .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .field--name-field-url > a, .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf a, .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf a, .node--type-research-topic .field--name-field-content > .field__item .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf a, .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 213, ../sass/components/_researchtopics.scss */
  .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf a.viewalllink, .node--type-research-topic .field--name-field-content > .field__item .promoted-content-container .flexItemText.flexItemTextHalf .field--name-field-url > a, .promoted-content-container .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .field--name-field-url > a, .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf a, .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf a, .node--type-research-topic .field--name-field-content > .field__item .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf a, .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 213, ../sass/components/_researchtopics.scss */
  .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf a.viewalllink, .node--type-research-topic .field--name-field-content > .field__item .promoted-content-container .flexItemText.flexItemTextHalf .field--name-field-url > a, .promoted-content-container .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .field--name-field-url > a, .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf a, .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf a, .node--type-research-topic .field--name-field-content > .field__item .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf a, .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .field--name-field-url > a {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf a.viewalllink:hover, .node--type-research-topic .field--name-field-content > .field__item .promoted-content-container .flexItemText.flexItemTextHalf .field--name-field-url > a:hover, .promoted-content-container .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .field--name-field-url > a:hover, .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .contact-nhlbi--landing .field--name-field-directions-link a:hover, .contact-nhlbi--landing .field--name-field-directions-link .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf a:hover, .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .isi-job-opportunities--landing .field--name-field-vacancies-link a:hover, .isi-job-opportunities--landing .field--name-field-vacancies-link .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf a:hover, .node--type-research-topic .field--name-field-content > .field__item .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:hover, .field--name-field-promotional-card > .field__item .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:hover, .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .fixedDarkBluePane .field--name-field-traveling-and-security a:hover, .fixedDarkBluePane .field--name-field-traveling-and-security .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf a:hover, .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .field--name-field-community-card .field--name-field-url > a:hover, .field--name-field-community-card .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .field--name-field-url > a:hover {
  background-color: #fff;
  border-color: #fff;
  color: #1a568c;
  text-decoration: none;
}
/* line 2379, ../sass/_mixins.scss */
.node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf a.viewalllink:focus, .node--type-research-topic .field--name-field-content > .field__item .promoted-content-container .flexItemText.flexItemTextHalf .field--name-field-url > a:focus, .promoted-content-container .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .field--name-field-url > a:focus, .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .contact-nhlbi--landing .field--name-field-directions-link a:focus, .contact-nhlbi--landing .field--name-field-directions-link .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf a:focus, .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .isi-job-opportunities--landing .field--name-field-vacancies-link a:focus, .isi-job-opportunities--landing .field--name-field-vacancies-link .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf a:focus, .node--type-research-topic .field--name-field-content > .field__item .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:focus, .field--name-field-promotional-card > .field__item .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:focus, .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .fixedDarkBluePane .field--name-field-traveling-and-security a:focus, .fixedDarkBluePane .field--name-field-traveling-and-security .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf a:focus, .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .field--name-field-community-card .field--name-field-url > a:focus, .field--name-field-community-card .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .field--name-field-url > a:focus, .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf a.viewalllink:active, .node--type-research-topic .field--name-field-content > .field__item .promoted-content-container .flexItemText.flexItemTextHalf .field--name-field-url > a:active, .promoted-content-container .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .field--name-field-url > a:active, .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .contact-nhlbi--landing .field--name-field-directions-link a:active, .contact-nhlbi--landing .field--name-field-directions-link .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf a:active, .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .isi-job-opportunities--landing .field--name-field-vacancies-link a:active, .isi-job-opportunities--landing .field--name-field-vacancies-link .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf a:active, .node--type-research-topic .field--name-field-content > .field__item .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:active, .field--name-field-promotional-card > .field__item .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:active, .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .fixedDarkBluePane .field--name-field-traveling-and-security a:active, .fixedDarkBluePane .field--name-field-traveling-and-security .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf a:active, .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .field--name-field-community-card .field--name-field-url > a:active, .field--name-field-community-card .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .field--name-field-url > a:active {
  outline: #fff dotted 3px !important;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 213, ../sass/components/_researchtopics.scss */
  .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf a.viewalllink, .node--type-research-topic .field--name-field-content > .field__item .promoted-content-container .flexItemText.flexItemTextHalf .field--name-field-url > a, .promoted-content-container .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .field--name-field-url > a, .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf a, .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf a, .node--type-research-topic .field--name-field-content > .field__item .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf a, .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .node--type-research-topic .field--name-field-content > .field__item .flexItemText.flexItemTextHalf .field--name-field-url > a {
    display: none;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 223, ../sass/components/_researchtopics.scss */
  .node--type-research-topic .field--name-field-content > .field__item .node--type-landing-page.node--view-mode-short-teaser .flexItemText.flexItemTextHalf a.viewalllink, .node--type-research-topic .field--name-field-content > .field__item .node--type-landing-page.node--view-mode-short-teaser .promoted-content-container .flexItemText.flexItemTextHalf .field--name-field-url > a, .promoted-content-container .node--type-research-topic .field--name-field-content > .field__item .node--type-landing-page.node--view-mode-short-teaser .flexItemText.flexItemTextHalf .field--name-field-url > a, .node--type-research-topic .field--name-field-content > .field__item .node--type-landing-page.node--view-mode-short-teaser .flexItemText.flexItemTextHalf .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .node--type-research-topic .field--name-field-content > .field__item .node--type-landing-page.node--view-mode-short-teaser .flexItemText.flexItemTextHalf a, .node--type-research-topic .field--name-field-content > .field__item .node--type-landing-page.node--view-mode-short-teaser .flexItemText.flexItemTextHalf .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .node--type-research-topic .field--name-field-content > .field__item .node--type-landing-page.node--view-mode-short-teaser .flexItemText.flexItemTextHalf a, .node--type-research-topic .field--name-field-content > .field__item .node--type-landing-page.node--view-mode-short-teaser .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .node--type-research-topic .field--name-field-content > .field__item .node--type-landing-page.node--view-mode-short-teaser .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .node--type-research-topic .field--name-field-content > .field__item .node--type-landing-page.node--view-mode-short-teaser .flexItemText.flexItemTextHalf .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .node--type-research-topic .field--name-field-content > .field__item .node--type-landing-page.node--view-mode-short-teaser .flexItemText.flexItemTextHalf a, .node--type-research-topic .field--name-field-content > .field__item .node--type-landing-page.node--view-mode-short-teaser .flexItemText.flexItemTextHalf .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .node--type-research-topic .field--name-field-content > .field__item .node--type-landing-page.node--view-mode-short-teaser .flexItemText.flexItemTextHalf .field--name-field-url > a {
    display: block;
  }
}
/* line 238, ../sass/components/_researchtopics.scss */
.node--type-research-topic .field--name-field-content > .field__item .researchTopicPublications .flexItemText {
  -webkit-box-ordinal-group: 2;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
}
/* line 241, ../sass/components/_researchtopics.scss */
.node--type-research-topic .field--name-field-content > .field__item .researchTopicPublications .flexItemImage, .node--type-research-topic .field--name-field-content > .field__item .researchTopicPublications .flexItemImageHalf, .node--type-research-topic .field--name-field-content > .field__item .researchTopicPublications .flexItemImageTenth, .node--type-research-topic .field--name-field-content > .field__item .researchTopicPublications .flexItemImageFourth, .node--type-research-topic .field--name-field-content > .field__item .researchTopicPublications .flexItemImageThird, .node--type-research-topic .field--name-field-content > .field__item .researchTopicPublications .flexItemImageThirdHalf, .node--type-research-topic .field--name-field-content > .field__item .researchTopicPublications .hero-image {
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
}
/* line 245, ../sass/components/_researchtopics.scss */
.node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
/* line 250, ../sass/components/_researchtopics.scss */
.node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .herobannertitle a:hover, .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .herobannertitle-grey a:hover,
.node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .posttitlethumb a:hover,
.node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .blue-posttitlethumb a:hover,
.node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .objective-list-container .objective-side-text a:hover,
.objective-list-container .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .objective-side-text a:hover {
  background-color: transparent;
}
/* line 254, ../sass/components/_researchtopics.scss */
.node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .graydate, .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .publicationCard .flexItemText .datetime, .publicationCard .flexItemText .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .datetime {
  padding-bottom: 1em;
}
/* line 257, ../sass/components/_researchtopics.scss */
.node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexTextLeft {
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
  border-right: 1px solid #000;
  padding-top: 1.5em;
  padding-bottom: 1.5em;
}
@media all and (min-width: 768px) {
  /* line 257, ../sass/components/_researchtopics.scss */
  .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexTextLeft {
    max-width: 50%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 257, ../sass/components/_researchtopics.scss */
  .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexTextLeft {
    max-width: 100%;
    border-right: none;
  }
}
/* line 270, ../sass/components/_researchtopics.scss */
.node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexTextRight {
  -webkit-box-ordinal-group: 2;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
  padding-left: 1.5rem;
  padding-top: 1.5em;
  padding-bottom: 1.5em;
  overflow: hidden;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 270, ../sass/components/_researchtopics.scss */
  .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexTextRight {
    padding-left: 0;
    padding-top: 0;
  }
}
/* line 281, ../sass/components/_researchtopics.scss */
.node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexTextRight .views-element-container, .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexTextRight .rtUpdatesView, .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexTextRight .rtUpdatesView > .view-content {
  height: 100%;
}
/* line 284, ../sass/components/_researchtopics.scss */
.node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexTextRight .rtUpdatesView > .view-content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
}
/* line 289, ../sass/components/_researchtopics.scss */
.node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexTextRight .node--view-mode-processed-link {
  padding-bottom: 1em;
}
/* line 294, ../sass/components/_researchtopics.scss */
.node--type-research-topic .field--name-field-content > .field__item article.list-teaser {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
}
/* line 303, ../sass/components/_researchtopics.scss */
.node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemText,
.node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemText {
  -webkit-box-ordinal-group: 2;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
}
/* line 306, ../sass/components/_researchtopics.scss */
.node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImage, .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageHalf, .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageTenth, .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageFourth, .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageThird, .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageThirdHalf, .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .hero-image,
.node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImage,
.node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageHalf,
.node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageTenth,
.node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageFourth,
.node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageThird,
.node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageThirdHalf,
.node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .hero-image {
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
}
@media all and (min-width: 768px) {
  /* line 306, ../sass/components/_researchtopics.scss */
  .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImage, .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageHalf, .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageTenth, .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageFourth, .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageThird, .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageThirdHalf, .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .hero-image,
  .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImage,
  .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageHalf,
  .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageTenth,
  .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageFourth,
  .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageThird,
  .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageThirdHalf,
  .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .hero-image {
    max-width: 50%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 306, ../sass/components/_researchtopics.scss */
  .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImage, .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageHalf, .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageTenth, .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageFourth, .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageThird, .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemImageThirdHalf, .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .hero-image,
  .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImage,
  .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageHalf,
  .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageTenth,
  .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageFourth,
  .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageThird,
  .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemImageThirdHalf,
  .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .hero-image {
    max-width: 100%;
  }
}
/* line 318, ../sass/components/_researchtopics.scss */
.node--type-research-topic .field--name-field-content > .field__item:nth-of-type(2n) {
  background-color: #102d66;
}
/* line 325, ../sass/components/_researchtopics.scss */
.node--type-research-topic .field--name-field-content > .field__item:nth-of-type(2n) .researchTopicPublications .view-content {
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
  padding-right: 1em;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 325, ../sass/components/_researchtopics.scss */
  .node--type-research-topic .field--name-field-content > .field__item:nth-of-type(2n) .researchTopicPublications .view-content {
    -webkit-box-ordinal-group: 2;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
}
/* line 332, ../sass/components/_researchtopics.scss */
.node--type-research-topic .field--name-field-content > .field__item:nth-of-type(2n) .researchTopicPublications .researchPublicationsImage {
  -webkit-box-ordinal-group: 2;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 332, ../sass/components/_researchtopics.scss */
  .node--type-research-topic .field--name-field-content > .field__item:nth-of-type(2n) .researchTopicPublications .researchPublicationsImage {
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
}
/* line 340, ../sass/components/_researchtopics.scss */
.node--type-research-topic .field--name-field-content > .field__item:nth-of-type(2n) article.updateCard .graydate, .node--type-research-topic .field--name-field-content > .field__item:nth-of-type(2n) article.updateCard .publicationCard .flexItemText .datetime, .publicationCard .flexItemText .node--type-research-topic .field--name-field-content > .field__item:nth-of-type(2n) article.updateCard .datetime {
  padding-bottom: 1em;
}
/* line 348, ../sass/components/_researchtopics.scss */
.node--type-research-topic .field--name-field-content > .field__item:nth-of-type(2n) article.updateCard .flexItemText,
.node--type-research-topic .field--name-field-content > .field__item:nth-of-type(2n) article.standard-teaser .flexItemText,
.node--type-research-topic .field--name-field-content > .field__item:nth-of-type(2n) article.newsEventsCard .flexItemText {
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 348, ../sass/components/_researchtopics.scss */
  .node--type-research-topic .field--name-field-content > .field__item:nth-of-type(2n) article.updateCard .flexItemText,
  .node--type-research-topic .field--name-field-content > .field__item:nth-of-type(2n) article.standard-teaser .flexItemText,
  .node--type-research-topic .field--name-field-content > .field__item:nth-of-type(2n) article.newsEventsCard .flexItemText {
    -webkit-box-ordinal-group: 2;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
}
/* line 354, ../sass/components/_researchtopics.scss */
.node--type-research-topic .field--name-field-content > .field__item:nth-of-type(2n) article.updateCard .flexItemImage, .node--type-research-topic .field--name-field-content > .field__item:nth-of-type(2n) article.updateCard .flexItemImageHalf, .node--type-research-topic .field--name-field-content > .field__item:nth-of-type(2n) article.updateCard .flexItemImageTenth, .node--type-research-topic .field--name-field-content > .field__item:nth-of-type(2n) article.updateCard .flexItemImageFourth, .node--type-research-topic .field--name-field-content > .field__item:nth-of-type(2n) article.updateCard .flexItemImageThird, .node--type-research-topic .field--name-field-content > .field__item:nth-of-type(2n) article.updateCard .flexItemImageThirdHalf, .node--type-research-topic .field--name-field-content > .field__item:nth-of-type(2n) article.updateCard .hero-image,
.node--type-research-topic .field--name-field-content > .field__item:nth-of-type(2n) article.standard-teaser .flexItemImage,
.node--type-research-topic .field--name-field-content > .field__item:nth-of-type(2n) article.standard-teaser .flexItemImageHalf,
.node--type-research-topic .field--name-field-content > .field__item:nth-of-type(2n) article.standard-teaser .flexItemImageTenth,
.node--type-research-topic .field--name-field-content > .field__item:nth-of-type(2n) article.standard-teaser .flexItemImageFourth,
.node--type-research-topic .field--name-field-content > .field__item:nth-of-type(2n) article.standard-teaser .flexItemImageThird,
.node--type-research-topic .field--name-field-content > .field__item:nth-of-type(2n) article.standard-teaser .flexItemImageThirdHalf,
.node--type-research-topic .field--name-field-content > .field__item:nth-of-type(2n) article.standard-teaser .hero-image,
.node--type-research-topic .field--name-field-content > .field__item:nth-of-type(2n) article.newsEventsCard .flexItemImage,
.node--type-research-topic .field--name-field-content > .field__item:nth-of-type(2n) article.newsEventsCard .flexItemImageHalf,
.node--type-research-topic .field--name-field-content > .field__item:nth-of-type(2n) article.newsEventsCard .flexItemImageTenth,
.node--type-research-topic .field--name-field-content > .field__item:nth-of-type(2n) article.newsEventsCard .flexItemImageFourth,
.node--type-research-topic .field--name-field-content > .field__item:nth-of-type(2n) article.newsEventsCard .flexItemImageThird,
.node--type-research-topic .field--name-field-content > .field__item:nth-of-type(2n) article.newsEventsCard .flexItemImageThirdHalf,
.node--type-research-topic .field--name-field-content > .field__item:nth-of-type(2n) article.newsEventsCard .hero-image {
  -webkit-box-ordinal-group: 2;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 354, ../sass/components/_researchtopics.scss */
  .node--type-research-topic .field--name-field-content > .field__item:nth-of-type(2n) article.updateCard .flexItemImage, .node--type-research-topic .field--name-field-content > .field__item:nth-of-type(2n) article.updateCard .flexItemImageHalf, .node--type-research-topic .field--name-field-content > .field__item:nth-of-type(2n) article.updateCard .flexItemImageTenth, .node--type-research-topic .field--name-field-content > .field__item:nth-of-type(2n) article.updateCard .flexItemImageFourth, .node--type-research-topic .field--name-field-content > .field__item:nth-of-type(2n) article.updateCard .flexItemImageThird, .node--type-research-topic .field--name-field-content > .field__item:nth-of-type(2n) article.updateCard .flexItemImageThirdHalf, .node--type-research-topic .field--name-field-content > .field__item:nth-of-type(2n) article.updateCard .hero-image,
  .node--type-research-topic .field--name-field-content > .field__item:nth-of-type(2n) article.standard-teaser .flexItemImage,
  .node--type-research-topic .field--name-field-content > .field__item:nth-of-type(2n) article.standard-teaser .flexItemImageHalf,
  .node--type-research-topic .field--name-field-content > .field__item:nth-of-type(2n) article.standard-teaser .flexItemImageTenth,
  .node--type-research-topic .field--name-field-content > .field__item:nth-of-type(2n) article.standard-teaser .flexItemImageFourth,
  .node--type-research-topic .field--name-field-content > .field__item:nth-of-type(2n) article.standard-teaser .flexItemImageThird,
  .node--type-research-topic .field--name-field-content > .field__item:nth-of-type(2n) article.standard-teaser .flexItemImageThirdHalf,
  .node--type-research-topic .field--name-field-content > .field__item:nth-of-type(2n) article.standard-teaser .hero-image,
  .node--type-research-topic .field--name-field-content > .field__item:nth-of-type(2n) article.newsEventsCard .flexItemImage,
  .node--type-research-topic .field--name-field-content > .field__item:nth-of-type(2n) article.newsEventsCard .flexItemImageHalf,
  .node--type-research-topic .field--name-field-content > .field__item:nth-of-type(2n) article.newsEventsCard .flexItemImageTenth,
  .node--type-research-topic .field--name-field-content > .field__item:nth-of-type(2n) article.newsEventsCard .flexItemImageFourth,
  .node--type-research-topic .field--name-field-content > .field__item:nth-of-type(2n) article.newsEventsCard .flexItemImageThird,
  .node--type-research-topic .field--name-field-content > .field__item:nth-of-type(2n) article.newsEventsCard .flexItemImageThirdHalf,
  .node--type-research-topic .field--name-field-content > .field__item:nth-of-type(2n) article.newsEventsCard .hero-image {
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
}

/* line 366, ../sass/components/_researchtopics.scss */
article.node--type-employment-and-fellowship-opport .content-container {
  margin-bottom: 1.4em;
}
/* line 369, ../sass/components/_researchtopics.scss */
article.node--type-employment-and-fellowship-opport .field--name-field-teaser-description {
  margin-bottom: 1em;
}

/* line 375, ../sass/components/_researchtopics.scss */
.openPositionTile {
  background-color: #fff;
  padding: 1em;
  margin-bottom: 1em;
}

/* line 5, ../sass/components/_esi.scss */
.rtTitleClassification {
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
  -webkit-align-self: flex-start;
  -moz-align-self: flex-start;
  -ms-align-self: flex-start;
  -o-align-self: flex-start;
  align-self: flex-start;
  margin-right: 1em;
  width: 66%;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 5, ../sass/components/_esi.scss */
  .rtTitleClassification {
    width: 100%;
    margin-bottom: 1em;
  }
}

/* line 16, ../sass/components/_esi.scss */
.onThisPage {
  -webkit-box-ordinal-group: 2;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
  -webkit-align-self: flex-start;
  -moz-align-self: flex-start;
  -ms-align-self: flex-start;
  -o-align-self: flex-start;
  align-self: flex-start;
  padding: 1em 1em 0;
  margin-bottom: 1.5em;
  background-color: #fff;
  width: 25%;
  border-radius: 1em;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 16, ../sass/components/_esi.scss */
  .onThisPage {
    width: 100%;
  }
}
/* line 27, ../sass/components/_esi.scss */
.onThisPage ul {
  list-style: none;
  margin-left: 0;
  padding: 0;
}
/* line 31, ../sass/components/_esi.scss */
.onThisPage ul li {
  margin-bottom: 1em;
}
/* line 35, ../sass/components/_esi.scss */
.onThisPage ul li a:hover, .onThisPage ul li a:active {
  outline: #bf0d2e 3px dotted;
}

/* line 47, ../sass/components/_esi.scss */
.node--type-extramural-science-instance.node--view-mode-full .supplemental-accordion, .node--type-extramural-science-instance.node--view-mode-full .field--name-field-study-description,
.node--type-extramural-science-instance.node--view-mode-subscribe .supplemental-accordion,
.node--type-extramural-science-instance.node--view-mode-subscribe .field--name-field-study-description,
.node--type-scientific-focus-area.node--view-mode-full .supplemental-accordion,
.node--type-scientific-focus-area.node--view-mode-full .field--name-field-study-description,
.node--type-scientific-focus-area.node--view-mode-subscribe .supplemental-accordion,
.node--type-scientific-focus-area.node--view-mode-subscribe .field--name-field-study-description {
  margin-bottom: 2em;
}

/* line 51, ../sass/components/_esi.scss */
.storycalloutbox {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  padding-bottom: 2.3em;
  padding-top: 0.69em;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 51, ../sass/components/_esi.scss */
  .storycalloutbox {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
  }
}

/* line 61, ../sass/components/_esi.scss */
.storycallouttitle {
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
}
@media all and (min-width: 1100px) {
  /* line 61, ../sass/components/_esi.scss */
  .storycallouttitle {
    width: 35%;
    max-width: 35%;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 61, ../sass/components/_esi.scss */
  .storycallouttitle {
    width: auto;
  }
}

/* line 72, ../sass/components/_esi.scss */
.storycallouttext {
  -webkit-box-ordinal-group: 2;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
  padding-left: 2em;
}
@media all and (min-width: 1100px) {
  /* line 72, ../sass/components/_esi.scss */
  .storycallouttext {
    width: 60%;
    max-width: 60%;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 72, ../sass/components/_esi.scss */
  .storycallouttext {
    padding-left: 0;
    width: auto;
  }
}

/* line 86, ../sass/components/_esi.scss */
.storycalloutlist ul {
  list-style: none;
  margin: 4em 0 2em;
}
/* line 90, ../sass/components/_esi.scss */
.storycalloutlist li {
  margin-bottom: 0.8em;
}
/* line 92, ../sass/components/_esi.scss */
.storycalloutlist li .calloutdata {
  display: table-cell;
  padding-left: 22px;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 92, ../sass/components/_esi.scss */
  .storycalloutlist li .calloutdata {
    padding-left: 17px;
  }
}
/* line 100, ../sass/components/_esi.scss */
.storycalloutlist li:before {
  margin-top: 10px;
  width: 11px;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 100, ../sass/components/_esi.scss */
  .storycalloutlist li:before {
    width: 7px;
  }
}

/* line 121, ../sass/components/_esi.scss */
.esi-feature-card, .featured-science-instance-teaser-container {
  padding: 1em;
  margin: 1.4em 0 2em 0;
  background-color: #fff;
}
/* line 126, ../sass/components/_esi.scss */
.esi-feature-card .herobannertitle, .featured-science-instance-teaser-container .herobannertitle, .esi-feature-card .herobannertitle-grey, .featured-science-instance-teaser-container .herobannertitle-grey, .esi-feature-card .herobannertitle a, .featured-science-instance-teaser-container .herobannertitle a, .esi-feature-card .herobannertitle-grey a, .featured-science-instance-teaser-container .herobannertitle-grey a {
  color: #222;
  margin-bottom: 0.25em;
}
/* line 130, ../sass/components/_esi.scss */
.esi-feature-card .herobannertitle-grey, .featured-science-instance-teaser-container .herobannertitle-grey, .esi-feature-card .herobannertitle-grey a, .featured-science-instance-teaser-container .herobannertitle-grey a {
  margin-bottom: 0.25em;
}
/* line 133, ../sass/components/_esi.scss */
.esi-feature-card .herobannertitle a:visited, .featured-science-instance-teaser-container .herobannertitle a:visited, .esi-feature-card .herobannertitle-grey a:visited, .featured-science-instance-teaser-container .herobannertitle-grey a:visited {
  color: #6f57B5;
}
/* line 136, ../sass/components/_esi.scss */
.esi-feature-card .herobannertitle:hover, .featured-science-instance-teaser-container .herobannertitle:hover, .esi-feature-card .herobannertitle-grey:hover, .featured-science-instance-teaser-container .herobannertitle-grey:hover, .esi-feature-card .herobannertitle a:hover, .featured-science-instance-teaser-container .herobannertitle a:hover, .esi-feature-card .herobannertitle-grey a:hover, .featured-science-instance-teaser-container .herobannertitle-grey a:hover {
  background-color: transparent;
}
/* line 139, ../sass/components/_esi.scss */
.esi-feature-card .bannerdate, .featured-science-instance-teaser-container .bannerdate, .esi-feature-card .bannerdate-dark-gray, .featured-science-instance-teaser-container .bannerdate-dark-gray {
  color: #222;
  padding: 0;
  border: 0;
}
/* line 144, ../sass/components/_esi.scss */
.esi-feature-card .flexItemText, .featured-science-instance-teaser-container .flexItemText {
  padding-top: 0;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 144, ../sass/components/_esi.scss */
  .esi-feature-card .flexItemText, .featured-science-instance-teaser-container .flexItemText {
    padding-top: 0;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 144, ../sass/components/_esi.scss */
  .esi-feature-card .flexItemText, .featured-science-instance-teaser-container .flexItemText {
    padding: 1em 0;
  }
}
/* line 154, ../sass/components/_esi.scss */
.esi-feature-card .field--name-field-featured-link, .featured-science-instance-teaser-container .field--name-field-featured-link {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  background-color: #1a568c;
  border: 1px solid #1a568c;
  padding: 0.8em 3em;
  display: table !important;
  background-image: none;
}
@media all and (min-width: 1440px) {
  /* line 154, ../sass/components/_esi.scss */
  .esi-feature-card .field--name-field-featured-link, .featured-science-instance-teaser-container .field--name-field-featured-link {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 154, ../sass/components/_esi.scss */
  .esi-feature-card .field--name-field-featured-link, .featured-science-instance-teaser-container .field--name-field-featured-link {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 154, ../sass/components/_esi.scss */
  .esi-feature-card .field--name-field-featured-link, .featured-science-instance-teaser-container .field--name-field-featured-link {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 154, ../sass/components/_esi.scss */
  .esi-feature-card .field--name-field-featured-link, .featured-science-instance-teaser-container .field--name-field-featured-link {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.esi-feature-card .field--name-field-featured-link :hover, .featured-science-instance-teaser-container .field--name-field-featured-link :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 154, ../sass/components/_esi.scss */
  .esi-feature-card .field--name-field-featured-link, .featured-science-instance-teaser-container .field--name-field-featured-link {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 154, ../sass/components/_esi.scss */
  .esi-feature-card .field--name-field-featured-link, .featured-science-instance-teaser-container .field--name-field-featured-link {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 154, ../sass/components/_esi.scss */
  .esi-feature-card .field--name-field-featured-link, .featured-science-instance-teaser-container .field--name-field-featured-link {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 154, ../sass/components/_esi.scss */
  .esi-feature-card .field--name-field-featured-link, .featured-science-instance-teaser-container .field--name-field-featured-link {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 154, ../sass/components/_esi.scss */
  .esi-feature-card .field--name-field-featured-link, .featured-science-instance-teaser-container .field--name-field-featured-link {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.esi-feature-card .field--name-field-featured-link:hover, .featured-science-instance-teaser-container .field--name-field-featured-link:hover {
  background-color: #102d66;
  border-color: #102d66;
  color: #fff;
  text-decoration: none;
}
/* line 2379, ../sass/_mixins.scss */
.esi-feature-card .field--name-field-featured-link:focus, .featured-science-instance-teaser-container .field--name-field-featured-link:focus, .esi-feature-card .field--name-field-featured-link:active, .featured-science-instance-teaser-container .field--name-field-featured-link:active {
  outline: #bf0d2e dotted 3px !important;
}
/* line 157, ../sass/components/_esi.scss */
.esi-feature-card .field--name-field-featured-link > a, .featured-science-instance-teaser-container .field--name-field-featured-link > a {
  color: #fff;
  text-decoration: none;
}
/* line 160, ../sass/components/_esi.scss */
.esi-feature-card .field--name-field-featured-link > a:hover, .featured-science-instance-teaser-container .field--name-field-featured-link > a:hover {
  font-weight: normal;
  color: inherit;
}
/* line 164, ../sass/components/_esi.scss */
.esi-feature-card .field--name-field-featured-link > a:focus, .featured-science-instance-teaser-container .field--name-field-featured-link > a:focus, .esi-feature-card .field--name-field-featured-link > a:active, .featured-science-instance-teaser-container .field--name-field-featured-link > a:active {
  outline: none !important;
}
/* line 170, ../sass/components/_esi.scss */
.esi-feature-card .field--name-field-featured-link:focus, .featured-science-instance-teaser-container .field--name-field-featured-link:focus, .esi-feature-card .field--name-field-featured-link:active, .featured-science-instance-teaser-container .field--name-field-featured-link:active {
  outline: #bf0d2e 3px dotted;
}

@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 178, ../sass/components/_esi.scss */
  .featured-science-instance-teaser-container .bodytext, .featured-science-instance-teaser-container .darkGrayBodyText, .featured-science-instance-teaser-container .foa-expiration-date {
    display: none;
  }
}

/* line 185, ../sass/components/_esi.scss */
.featured-science-instance-teaser-container.node--type-events .flexItemText {
  padding-top: 1.5em;
}

/* line 189, ../sass/components/_esi.scss */
.sfa-teaser-container {
  color: #fff;
  background-color: transparent;
}
/* line 126, ../sass/_mixins.scss */
.sfa-teaser-container a, .sfa-teaser-container a:link {
  color: #fff;
  text-decoration: underline;
}
/* line 132, ../sass/_mixins.scss */
.sfa-teaser-container a:visited {
  color: #D7E7F4;
}
/* line 145, ../sass/_mixins.scss */
.sfa-teaser-container a:hover {
  font-weight: bold;
}
/* line 154, ../sass/_mixins.scss */
.sfa-teaser-container h1, .sfa-teaser-container .photocredit {
  color: #fff;
}

/* line 198, ../sass/components/_esi.scss */
.theScienceNewsItem {
  background-color: #102d66;
}
/* line 201, ../sass/components/_esi.scss */
.theScienceNewsItem .sfa-teaser-container .flexItemImage, .theScienceNewsItem .sfa-teaser-container .flexItemImageHalf, .theScienceNewsItem .sfa-teaser-container .flexItemImageTenth, .theScienceNewsItem .sfa-teaser-container .flexItemImageFourth, .theScienceNewsItem .sfa-teaser-container .flexItemImageThird, .theScienceNewsItem .sfa-teaser-container .flexItemImageThirdHalf, .theScienceNewsItem .sfa-teaser-container .hero-image {
  -webkit-box-ordinal-group: 2;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 201, ../sass/components/_esi.scss */
  .theScienceNewsItem .sfa-teaser-container .flexItemImage, .theScienceNewsItem .sfa-teaser-container .flexItemImageHalf, .theScienceNewsItem .sfa-teaser-container .flexItemImageTenth, .theScienceNewsItem .sfa-teaser-container .flexItemImageFourth, .theScienceNewsItem .sfa-teaser-container .flexItemImageThird, .theScienceNewsItem .sfa-teaser-container .flexItemImageThirdHalf, .theScienceNewsItem .sfa-teaser-container .hero-image {
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
}
/* line 207, ../sass/components/_esi.scss */
.theScienceNewsItem .sfa-teaser-container .flexItemText {
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 207, ../sass/components/_esi.scss */
  .theScienceNewsItem .sfa-teaser-container .flexItemText {
    -webkit-box-ordinal-group: 2;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
}
/* line 213, ../sass/components/_esi.scss */
.theScienceNewsItem .sfa-teaser-container .herobannertitle, .theScienceNewsItem .sfa-teaser-container .herobannertitle-grey {
  color: #fff;
}
/* line 216, ../sass/components/_esi.scss */
.theScienceNewsItem .sfa-teaser-container .grayDate {
  color: #fff;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 219, ../sass/components/_esi.scss */
  .theScienceNewsItem .sfa-teaser-container .bodytext, .theScienceNewsItem .sfa-teaser-container .darkGrayBodyText, .theScienceNewsItem .sfa-teaser-container .foa-expiration-date {
    display: none;
  }
}

/* line 226, ../sass/components/_esi.scss */
.theScienceEventItem {
  background-color: #1a568c;
}
/* line 229, ../sass/components/_esi.scss */
.theScienceEventItem .sfa-teaser-container .flexItemImage, .theScienceEventItem .sfa-teaser-container .flexItemImageHalf, .theScienceEventItem .sfa-teaser-container .flexItemImageTenth, .theScienceEventItem .sfa-teaser-container .flexItemImageFourth, .theScienceEventItem .sfa-teaser-container .flexItemImageThird, .theScienceEventItem .sfa-teaser-container .flexItemImageThirdHalf, .theScienceEventItem .sfa-teaser-container .hero-image {
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
}
/* line 233, ../sass/components/_esi.scss */
.theScienceEventItem .sfa-teaser-container .flexItemText {
  -webkit-box-ordinal-group: 2;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
}
/* line 237, ../sass/components/_esi.scss */
.theScienceEventItem .sfa-teaser-container .eventdatesLocationType {
  overflow: hidden;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  clear: both;
}

/* line 252, ../sass/components/_esi.scss */
.node--type-extramural-science-instance.node--view-mode-full .rtFlexContainer .rtTitleClassification .field--name-field-descriptor,
.node--type-extramural-science-instance.node--view-mode-subscribe .rtFlexContainer .rtTitleClassification .field--name-field-descriptor {
  margin: 1.5em 0;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 252, ../sass/components/_esi.scss */
  .node--type-extramural-science-instance.node--view-mode-full .rtFlexContainer .rtTitleClassification .field--name-field-descriptor,
  .node--type-extramural-science-instance.node--view-mode-subscribe .rtFlexContainer .rtTitleClassification .field--name-field-descriptor {
    margin-bottom: 0;
  }
}
/* line 258, ../sass/components/_esi.scss */
.node--type-extramural-science-instance.node--view-mode-full .rtFlexContainer .rtTitleClassification .field--name-field-descriptor > .field__item,
.node--type-extramural-science-instance.node--view-mode-subscribe .rtFlexContainer .rtTitleClassification .field--name-field-descriptor > .field__item {
  margin-bottom: 1em;
  padding-bottom: 1em;
  border-bottom: 1px solid #d7d7d7;
  width: 66%;
}
/* line 264, ../sass/components/_esi.scss */
.node--type-extramural-science-instance.node--view-mode-full .rtFlexContainer .rtTitleClassification .field--name-field-descriptor > .field__item:last-child,
.node--type-extramural-science-instance.node--view-mode-subscribe .rtFlexContainer .rtTitleClassification .field--name-field-descriptor > .field__item:last-child {
  border: none;
}
/* line 272, ../sass/components/_esi.scss */
.node--type-extramural-science-instance.node--view-mode-full .at-a-glance .storycallouttitle h2.at-a-glance-header, .node--type-extramural-science-instance.node--view-mode-full .at-a-glance .storycallouttitle .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.at-a-glance-header, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-extramural-science-instance.node--view-mode-full .at-a-glance .storycallouttitle h1.at-a-glance-header, .node--type-extramural-science-instance.node--view-mode-full .at-a-glance .storycallouttitle .at-a-glance-header.contact-method-label,
.node--type-extramural-science-instance.node--view-mode-subscribe .at-a-glance .storycallouttitle h2.at-a-glance-header,
.node--type-extramural-science-instance.node--view-mode-subscribe .at-a-glance .storycallouttitle .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.at-a-glance-header,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-extramural-science-instance.node--view-mode-subscribe .at-a-glance .storycallouttitle h1.at-a-glance-header,
.node--type-extramural-science-instance.node--view-mode-subscribe .at-a-glance .storycallouttitle .at-a-glance-header.contact-method-label {
  color: #fff;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-weight: lighter;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 277, ../sass/components/_esi.scss */
  .node--type-extramural-science-instance.node--view-mode-full .at-a-glance .storycallouttext,
  .node--type-extramural-science-instance.node--view-mode-subscribe .at-a-glance .storycallouttext {
    margin-top: -5em;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 277, ../sass/components/_esi.scss */
  .node--type-extramural-science-instance.node--view-mode-full .at-a-glance .storycallouttext,
  .node--type-extramural-science-instance.node--view-mode-subscribe .at-a-glance .storycallouttext {
    margin-top: -4em;
  }
}
/* line 286, ../sass/components/_esi.scss */
.node--type-extramural-science-instance.node--view-mode-full .field--name-field-standard-content,
.node--type-extramural-science-instance.node--view-mode-subscribe .field--name-field-standard-content {
  padding-top: 1em;
  padding-bottom: 1em;
}
/* line 289, ../sass/components/_esi.scss */
.node--type-extramural-science-instance.node--view-mode-full .field--name-field-standard-content h2:first-child, .node--type-extramural-science-instance.node--view-mode-full .field--name-field-standard-content .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1:first-child, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-extramural-science-instance.node--view-mode-full .field--name-field-standard-content h1:first-child, .node--type-extramural-science-instance.node--view-mode-full .field--name-field-standard-content .contact-method-label:first-child,
.node--type-extramural-science-instance.node--view-mode-subscribe .field--name-field-standard-content h2:first-child,
.node--type-extramural-science-instance.node--view-mode-subscribe .field--name-field-standard-content .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1:first-child,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-extramural-science-instance.node--view-mode-subscribe .field--name-field-standard-content h1:first-child,
.node--type-extramural-science-instance.node--view-mode-subscribe .field--name-field-standard-content .contact-method-label:first-child {
  font-size: 1.375rem;
  margin: 0 0 11px 0;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-weight: bold;
  font-style: normal;
  color: #222;
  font-size: 1.25rem;
}
@media all and (min-width: 1440px) {
  /* line 289, ../sass/components/_esi.scss */
  .node--type-extramural-science-instance.node--view-mode-full .field--name-field-standard-content h2:first-child, .node--type-extramural-science-instance.node--view-mode-full .field--name-field-standard-content .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1:first-child, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-extramural-science-instance.node--view-mode-full .field--name-field-standard-content h1:first-child, .node--type-extramural-science-instance.node--view-mode-full .field--name-field-standard-content .contact-method-label:first-child,
  .node--type-extramural-science-instance.node--view-mode-subscribe .field--name-field-standard-content h2:first-child,
  .node--type-extramural-science-instance.node--view-mode-subscribe .field--name-field-standard-content .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1:first-child,
  .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-extramural-science-instance.node--view-mode-subscribe .field--name-field-standard-content h1:first-child,
  .node--type-extramural-science-instance.node--view-mode-subscribe .field--name-field-standard-content .contact-method-label:first-child {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 289, ../sass/components/_esi.scss */
  .node--type-extramural-science-instance.node--view-mode-full .field--name-field-standard-content h2:first-child, .node--type-extramural-science-instance.node--view-mode-full .field--name-field-standard-content .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1:first-child, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-extramural-science-instance.node--view-mode-full .field--name-field-standard-content h1:first-child, .node--type-extramural-science-instance.node--view-mode-full .field--name-field-standard-content .contact-method-label:first-child,
  .node--type-extramural-science-instance.node--view-mode-subscribe .field--name-field-standard-content h2:first-child,
  .node--type-extramural-science-instance.node--view-mode-subscribe .field--name-field-standard-content .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1:first-child,
  .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-extramural-science-instance.node--view-mode-subscribe .field--name-field-standard-content h1:first-child,
  .node--type-extramural-science-instance.node--view-mode-subscribe .field--name-field-standard-content .contact-method-label:first-child {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 289, ../sass/components/_esi.scss */
  .node--type-extramural-science-instance.node--view-mode-full .field--name-field-standard-content h2:first-child, .node--type-extramural-science-instance.node--view-mode-full .field--name-field-standard-content .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1:first-child, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-extramural-science-instance.node--view-mode-full .field--name-field-standard-content h1:first-child, .node--type-extramural-science-instance.node--view-mode-full .field--name-field-standard-content .contact-method-label:first-child,
  .node--type-extramural-science-instance.node--view-mode-subscribe .field--name-field-standard-content h2:first-child,
  .node--type-extramural-science-instance.node--view-mode-subscribe .field--name-field-standard-content .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1:first-child,
  .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-extramural-science-instance.node--view-mode-subscribe .field--name-field-standard-content h1:first-child,
  .node--type-extramural-science-instance.node--view-mode-subscribe .field--name-field-standard-content .contact-method-label:first-child {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 289, ../sass/components/_esi.scss */
  .node--type-extramural-science-instance.node--view-mode-full .field--name-field-standard-content h2:first-child, .node--type-extramural-science-instance.node--view-mode-full .field--name-field-standard-content .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1:first-child, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-extramural-science-instance.node--view-mode-full .field--name-field-standard-content h1:first-child, .node--type-extramural-science-instance.node--view-mode-full .field--name-field-standard-content .contact-method-label:first-child,
  .node--type-extramural-science-instance.node--view-mode-subscribe .field--name-field-standard-content h2:first-child,
  .node--type-extramural-science-instance.node--view-mode-subscribe .field--name-field-standard-content .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1:first-child,
  .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-extramural-science-instance.node--view-mode-subscribe .field--name-field-standard-content h1:first-child,
  .node--type-extramural-science-instance.node--view-mode-subscribe .field--name-field-standard-content .contact-method-label:first-child {
    font-size: 1rem;
  }
}
/* line 293, ../sass/components/_esi.scss */
.node--type-extramural-science-instance.node--view-mode-full .goal-of-study,
.node--type-extramural-science-instance.node--view-mode-subscribe .goal-of-study {
  padding-top: 1em;
  padding-bottom: 2.4em;
}
/* line 297, ../sass/components/_esi.scss */
.node--type-extramural-science-instance.node--view-mode-full .goal-of-study h2, .node--type-extramural-science-instance.node--view-mode-full .goal-of-study .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-extramural-science-instance.node--view-mode-full .goal-of-study h1, .node--type-extramural-science-instance.node--view-mode-full .goal-of-study .contact-method-label,
.node--type-extramural-science-instance.node--view-mode-subscribe .goal-of-study h2,
.node--type-extramural-science-instance.node--view-mode-subscribe .goal-of-study .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-extramural-science-instance.node--view-mode-subscribe .goal-of-study h1,
.node--type-extramural-science-instance.node--view-mode-subscribe .goal-of-study .contact-method-label {
  font-size: 1.375rem;
  margin: 0 0 11px 0;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-weight: bold;
  font-style: normal;
  color: #222;
  font-size: 1.25rem;
  line-height: 1.5;
}
@media all and (min-width: 1440px) {
  /* line 297, ../sass/components/_esi.scss */
  .node--type-extramural-science-instance.node--view-mode-full .goal-of-study h2, .node--type-extramural-science-instance.node--view-mode-full .goal-of-study .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-extramural-science-instance.node--view-mode-full .goal-of-study h1, .node--type-extramural-science-instance.node--view-mode-full .goal-of-study .contact-method-label,
  .node--type-extramural-science-instance.node--view-mode-subscribe .goal-of-study h2,
  .node--type-extramural-science-instance.node--view-mode-subscribe .goal-of-study .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1,
  .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-extramural-science-instance.node--view-mode-subscribe .goal-of-study h1,
  .node--type-extramural-science-instance.node--view-mode-subscribe .goal-of-study .contact-method-label {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 297, ../sass/components/_esi.scss */
  .node--type-extramural-science-instance.node--view-mode-full .goal-of-study h2, .node--type-extramural-science-instance.node--view-mode-full .goal-of-study .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-extramural-science-instance.node--view-mode-full .goal-of-study h1, .node--type-extramural-science-instance.node--view-mode-full .goal-of-study .contact-method-label,
  .node--type-extramural-science-instance.node--view-mode-subscribe .goal-of-study h2,
  .node--type-extramural-science-instance.node--view-mode-subscribe .goal-of-study .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1,
  .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-extramural-science-instance.node--view-mode-subscribe .goal-of-study h1,
  .node--type-extramural-science-instance.node--view-mode-subscribe .goal-of-study .contact-method-label {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 297, ../sass/components/_esi.scss */
  .node--type-extramural-science-instance.node--view-mode-full .goal-of-study h2, .node--type-extramural-science-instance.node--view-mode-full .goal-of-study .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-extramural-science-instance.node--view-mode-full .goal-of-study h1, .node--type-extramural-science-instance.node--view-mode-full .goal-of-study .contact-method-label,
  .node--type-extramural-science-instance.node--view-mode-subscribe .goal-of-study h2,
  .node--type-extramural-science-instance.node--view-mode-subscribe .goal-of-study .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1,
  .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-extramural-science-instance.node--view-mode-subscribe .goal-of-study h1,
  .node--type-extramural-science-instance.node--view-mode-subscribe .goal-of-study .contact-method-label {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 297, ../sass/components/_esi.scss */
  .node--type-extramural-science-instance.node--view-mode-full .goal-of-study h2, .node--type-extramural-science-instance.node--view-mode-full .goal-of-study .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-extramural-science-instance.node--view-mode-full .goal-of-study h1, .node--type-extramural-science-instance.node--view-mode-full .goal-of-study .contact-method-label,
  .node--type-extramural-science-instance.node--view-mode-subscribe .goal-of-study h2,
  .node--type-extramural-science-instance.node--view-mode-subscribe .goal-of-study .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1,
  .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-extramural-science-instance.node--view-mode-subscribe .goal-of-study h1,
  .node--type-extramural-science-instance.node--view-mode-subscribe .goal-of-study .contact-method-label {
    font-size: 1rem;
  }
}

/* line 304, ../sass/components/_esi.scss */
.node--type-scientific-focus-area h2, .node--type-scientific-focus-area .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-scientific-focus-area h1, .node--type-scientific-focus-area .contact-method-label {
  margin-top: 0;
}
/* line 308, ../sass/components/_esi.scss */
.node--type-scientific-focus-area h2#advancingresearch, .node--type-scientific-focus-area .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1#advancingresearch, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-scientific-focus-area h1#advancingresearch, .node--type-scientific-focus-area #advancingresearch.contact-method-label, .node--type-scientific-focus-area h2#makingadifference-desktop, .node--type-scientific-focus-area .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1#makingadifference-desktop, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-scientific-focus-area h1#makingadifference-desktop, .node--type-scientific-focus-area #makingadifference-desktop.contact-method-label {
  margin-top: 0;
}
/* line 311, ../sass/components/_esi.scss */
.node--type-scientific-focus-area .paragraph--type--making-a-difference {
  overflow: visible;
}

/* line 319, ../sass/components/_esi.scss */
.node--type-scientific-focus-area.node--view-mode-full .rtFlexContainer,
.node--type-scientific-focus-area.node--view-mode-subscribe .rtFlexContainer {
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  -o-align-items: flex-start;
  align-items: flex-start;
}
/* line 322, ../sass/components/_esi.scss */
.node--type-scientific-focus-area.node--view-mode-full .rtFlexContainer .rtTitleClassification .field--name-field-definition,
.node--type-scientific-focus-area.node--view-mode-subscribe .rtFlexContainer .rtTitleClassification .field--name-field-definition {
  margin: 1em 0;
}
/* line 327, ../sass/components/_esi.scss */
.node--type-scientific-focus-area.node--view-mode-full .content-container.research-making-a-difference,
.node--type-scientific-focus-area.node--view-mode-subscribe .content-container.research-making-a-difference {
  margin-top: 0;
}
/* line 330, ../sass/components/_esi.scss */
.node--type-scientific-focus-area.node--view-mode-full .sfa-card-container,
.node--type-scientific-focus-area.node--view-mode-subscribe .sfa-card-container {
  margin-top: 1.4em;
}
/* line 333, ../sass/components/_esi.scss */
.node--type-scientific-focus-area.node--view-mode-full .research-making-a-difference,
.node--type-scientific-focus-area.node--view-mode-subscribe .research-making-a-difference {
  padding-top: 2em;
  padding-bottom: 2em;
  margin-top: 0;
}
/* line 338, ../sass/components/_esi.scss */
.node--type-scientific-focus-area.node--view-mode-full .research-making-a-difference .flexItemTextHalf,
.node--type-scientific-focus-area.node--view-mode-subscribe .research-making-a-difference .flexItemTextHalf {
  padding-left: 0;
  padding-top: 1.5rem;
  padding-right: 1.5rem;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 338, ../sass/components/_esi.scss */
  .node--type-scientific-focus-area.node--view-mode-full .research-making-a-difference .flexItemTextHalf,
  .node--type-scientific-focus-area.node--view-mode-subscribe .research-making-a-difference .flexItemTextHalf {
    -webkit-box-ordinal-group: 2;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
    padding-right: 0;
  }
}
/* line 346, ../sass/components/_esi.scss */
.node--type-scientific-focus-area.node--view-mode-full .research-making-a-difference .flexItemTextHalf .bodytext, .node--type-scientific-focus-area.node--view-mode-full .research-making-a-difference .flexItemTextHalf .darkGrayBodyText, .node--type-scientific-focus-area.node--view-mode-full .research-making-a-difference .flexItemTextHalf .foa-expiration-date,
.node--type-scientific-focus-area.node--view-mode-subscribe .research-making-a-difference .flexItemTextHalf .bodytext,
.node--type-scientific-focus-area.node--view-mode-subscribe .research-making-a-difference .flexItemTextHalf .darkGrayBodyText,
.node--type-scientific-focus-area.node--view-mode-subscribe .research-making-a-difference .flexItemTextHalf .foa-expiration-date {
  margin: 1em 0;
}
/* line 350, ../sass/components/_esi.scss */
.node--type-scientific-focus-area.node--view-mode-full .research-making-a-difference .flexItemImageHalf,
.node--type-scientific-focus-area.node--view-mode-subscribe .research-making-a-difference .flexItemImageHalf {
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
  -webkit-align-self: center;
  -moz-align-self: center;
  -ms-align-self: center;
  -o-align-self: center;
  align-self: center;
}
/* line 354, ../sass/components/_esi.scss */
.node--type-scientific-focus-area.node--view-mode-full .research-making-a-difference h2, .node--type-scientific-focus-area.node--view-mode-full .research-making-a-difference .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-scientific-focus-area.node--view-mode-full .research-making-a-difference h1, .node--type-scientific-focus-area.node--view-mode-full .research-making-a-difference .contact-method-label,
.node--type-scientific-focus-area.node--view-mode-subscribe .research-making-a-difference h2,
.node--type-scientific-focus-area.node--view-mode-subscribe .research-making-a-difference .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-scientific-focus-area.node--view-mode-subscribe .research-making-a-difference h1,
.node--type-scientific-focus-area.node--view-mode-subscribe .research-making-a-difference .contact-method-label {
  margin-bottom: 0.75em;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 354, ../sass/components/_esi.scss */
  .node--type-scientific-focus-area.node--view-mode-full .research-making-a-difference h2, .node--type-scientific-focus-area.node--view-mode-full .research-making-a-difference .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-scientific-focus-area.node--view-mode-full .research-making-a-difference h1, .node--type-scientific-focus-area.node--view-mode-full .research-making-a-difference .contact-method-label,
  .node--type-scientific-focus-area.node--view-mode-subscribe .research-making-a-difference h2,
  .node--type-scientific-focus-area.node--view-mode-subscribe .research-making-a-difference .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1,
  .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-scientific-focus-area.node--view-mode-subscribe .research-making-a-difference h1,
  .node--type-scientific-focus-area.node--view-mode-subscribe .research-making-a-difference .contact-method-label {
    padding-top: 0.875rem;
  }
}
/* line 360, ../sass/components/_esi.scss */
.node--type-scientific-focus-area.node--view-mode-full .research-making-a-difference .pullquote,
.node--type-scientific-focus-area.node--view-mode-subscribe .research-making-a-difference .pullquote {
  padding-left: 80px;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 360, ../sass/components/_esi.scss */
  .node--type-scientific-focus-area.node--view-mode-full .research-making-a-difference .pullquote,
  .node--type-scientific-focus-area.node--view-mode-subscribe .research-making-a-difference .pullquote {
    padding-left: 45px;
  }
}
/* line 372, ../sass/components/_esi.scss */
.node--type-scientific-focus-area.node--view-mode-full .why-its-important .storycallouttitle h2.why-its-important-header, .node--type-scientific-focus-area.node--view-mode-full .why-its-important .storycallouttitle .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.why-its-important-header, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-scientific-focus-area.node--view-mode-full .why-its-important .storycallouttitle h1.why-its-important-header, .node--type-scientific-focus-area.node--view-mode-full .why-its-important .storycallouttitle .why-its-important-header.contact-method-label,
.node--type-scientific-focus-area.node--view-mode-subscribe .why-its-important .storycallouttitle h2.why-its-important-header,
.node--type-scientific-focus-area.node--view-mode-subscribe .why-its-important .storycallouttitle .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.why-its-important-header,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-scientific-focus-area.node--view-mode-subscribe .why-its-important .storycallouttitle h1.why-its-important-header,
.node--type-scientific-focus-area.node--view-mode-subscribe .why-its-important .storycallouttitle .why-its-important-header.contact-method-label {
  color: #0051a8;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-weight: lighter;
  font-size: 2rem;
}
@media all and (min-width: 1440px) {
  /* line 372, ../sass/components/_esi.scss */
  .node--type-scientific-focus-area.node--view-mode-full .why-its-important .storycallouttitle h2.why-its-important-header, .node--type-scientific-focus-area.node--view-mode-full .why-its-important .storycallouttitle .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.why-its-important-header, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-scientific-focus-area.node--view-mode-full .why-its-important .storycallouttitle h1.why-its-important-header, .node--type-scientific-focus-area.node--view-mode-full .why-its-important .storycallouttitle .why-its-important-header.contact-method-label,
  .node--type-scientific-focus-area.node--view-mode-subscribe .why-its-important .storycallouttitle h2.why-its-important-header,
  .node--type-scientific-focus-area.node--view-mode-subscribe .why-its-important .storycallouttitle .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.why-its-important-header,
  .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-scientific-focus-area.node--view-mode-subscribe .why-its-important .storycallouttitle h1.why-its-important-header,
  .node--type-scientific-focus-area.node--view-mode-subscribe .why-its-important .storycallouttitle .why-its-important-header.contact-method-label {
    font-size: 2rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 372, ../sass/components/_esi.scss */
  .node--type-scientific-focus-area.node--view-mode-full .why-its-important .storycallouttitle h2.why-its-important-header, .node--type-scientific-focus-area.node--view-mode-full .why-its-important .storycallouttitle .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.why-its-important-header, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-scientific-focus-area.node--view-mode-full .why-its-important .storycallouttitle h1.why-its-important-header, .node--type-scientific-focus-area.node--view-mode-full .why-its-important .storycallouttitle .why-its-important-header.contact-method-label,
  .node--type-scientific-focus-area.node--view-mode-subscribe .why-its-important .storycallouttitle h2.why-its-important-header,
  .node--type-scientific-focus-area.node--view-mode-subscribe .why-its-important .storycallouttitle .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.why-its-important-header,
  .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-scientific-focus-area.node--view-mode-subscribe .why-its-important .storycallouttitle h1.why-its-important-header,
  .node--type-scientific-focus-area.node--view-mode-subscribe .why-its-important .storycallouttitle .why-its-important-header.contact-method-label {
    font-size: 2rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 372, ../sass/components/_esi.scss */
  .node--type-scientific-focus-area.node--view-mode-full .why-its-important .storycallouttitle h2.why-its-important-header, .node--type-scientific-focus-area.node--view-mode-full .why-its-important .storycallouttitle .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.why-its-important-header, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-scientific-focus-area.node--view-mode-full .why-its-important .storycallouttitle h1.why-its-important-header, .node--type-scientific-focus-area.node--view-mode-full .why-its-important .storycallouttitle .why-its-important-header.contact-method-label,
  .node--type-scientific-focus-area.node--view-mode-subscribe .why-its-important .storycallouttitle h2.why-its-important-header,
  .node--type-scientific-focus-area.node--view-mode-subscribe .why-its-important .storycallouttitle .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.why-its-important-header,
  .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-scientific-focus-area.node--view-mode-subscribe .why-its-important .storycallouttitle h1.why-its-important-header,
  .node--type-scientific-focus-area.node--view-mode-subscribe .why-its-important .storycallouttitle .why-its-important-header.contact-method-label {
    font-size: 1.75rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 372, ../sass/components/_esi.scss */
  .node--type-scientific-focus-area.node--view-mode-full .why-its-important .storycallouttitle h2.why-its-important-header, .node--type-scientific-focus-area.node--view-mode-full .why-its-important .storycallouttitle .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.why-its-important-header, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-scientific-focus-area.node--view-mode-full .why-its-important .storycallouttitle h1.why-its-important-header, .node--type-scientific-focus-area.node--view-mode-full .why-its-important .storycallouttitle .why-its-important-header.contact-method-label,
  .node--type-scientific-focus-area.node--view-mode-subscribe .why-its-important .storycallouttitle h2.why-its-important-header,
  .node--type-scientific-focus-area.node--view-mode-subscribe .why-its-important .storycallouttitle .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.why-its-important-header,
  .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-scientific-focus-area.node--view-mode-subscribe .why-its-important .storycallouttitle h1.why-its-important-header,
  .node--type-scientific-focus-area.node--view-mode-subscribe .why-its-important .storycallouttitle .why-its-important-header.contact-method-label {
    font-size: 1.5rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 378, ../sass/components/_esi.scss */
  .node--type-scientific-focus-area.node--view-mode-full .why-its-important .storycallouttext,
  .node--type-scientific-focus-area.node--view-mode-subscribe .why-its-important .storycallouttext {
    margin-top: -5em;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 378, ../sass/components/_esi.scss */
  .node--type-scientific-focus-area.node--view-mode-full .why-its-important .storycallouttext,
  .node--type-scientific-focus-area.node--view-mode-subscribe .why-its-important .storycallouttext {
    margin-top: -2em;
  }
}
/* line 391, ../sass/components/_esi.scss */
.node--type-scientific-focus-area.node--view-mode-full .key-accomplishments .storycallouttitle h2.key-accomplishments-header, .node--type-scientific-focus-area.node--view-mode-full .key-accomplishments .storycallouttitle .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.key-accomplishments-header, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-scientific-focus-area.node--view-mode-full .key-accomplishments .storycallouttitle h1.key-accomplishments-header, .node--type-scientific-focus-area.node--view-mode-full .key-accomplishments .storycallouttitle .key-accomplishments-header.contact-method-label,
.node--type-scientific-focus-area.node--view-mode-subscribe .key-accomplishments .storycallouttitle h2.key-accomplishments-header,
.node--type-scientific-focus-area.node--view-mode-subscribe .key-accomplishments .storycallouttitle .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.key-accomplishments-header,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-scientific-focus-area.node--view-mode-subscribe .key-accomplishments .storycallouttitle h1.key-accomplishments-header,
.node--type-scientific-focus-area.node--view-mode-subscribe .key-accomplishments .storycallouttitle .key-accomplishments-header.contact-method-label {
  color: #fff;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-weight: lighter;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 396, ../sass/components/_esi.scss */
  .node--type-scientific-focus-area.node--view-mode-full .key-accomplishments .storycallouttext,
  .node--type-scientific-focus-area.node--view-mode-subscribe .key-accomplishments .storycallouttext {
    margin-top: -7.5em;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 396, ../sass/components/_esi.scss */
  .node--type-scientific-focus-area.node--view-mode-full .key-accomplishments .storycallouttext,
  .node--type-scientific-focus-area.node--view-mode-subscribe .key-accomplishments .storycallouttext {
    margin-top: -3.5em;
  }
}
/* line 408, ../sass/components/_esi.scss */
.node--type-scientific-focus-area.node--view-mode-full .opportunities-and-challenges .storycallouttitle h2.opportunities-and-challenges-header, .node--type-scientific-focus-area.node--view-mode-full .opportunities-and-challenges .storycallouttitle .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.opportunities-and-challenges-header, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-scientific-focus-area.node--view-mode-full .opportunities-and-challenges .storycallouttitle h1.opportunities-and-challenges-header, .node--type-scientific-focus-area.node--view-mode-full .opportunities-and-challenges .storycallouttitle .opportunities-and-challenges-header.contact-method-label,
.node--type-scientific-focus-area.node--view-mode-subscribe .opportunities-and-challenges .storycallouttitle h2.opportunities-and-challenges-header,
.node--type-scientific-focus-area.node--view-mode-subscribe .opportunities-and-challenges .storycallouttitle .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.opportunities-and-challenges-header,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-scientific-focus-area.node--view-mode-subscribe .opportunities-and-challenges .storycallouttitle h1.opportunities-and-challenges-header,
.node--type-scientific-focus-area.node--view-mode-subscribe .opportunities-and-challenges .storycallouttitle .opportunities-and-challenges-header.contact-method-label {
  color: #0051a8;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-weight: lighter;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 413, ../sass/components/_esi.scss */
  .node--type-scientific-focus-area.node--view-mode-full .opportunities-and-challenges .storycallouttext,
  .node--type-scientific-focus-area.node--view-mode-subscribe .opportunities-and-challenges .storycallouttext {
    margin-top: -3em;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 413, ../sass/components/_esi.scss */
  .node--type-scientific-focus-area.node--view-mode-full .opportunities-and-challenges .storycallouttext,
  .node--type-scientific-focus-area.node--view-mode-subscribe .opportunities-and-challenges .storycallouttext {
    margin-top: -0.5em;
  }
}
/* line 422, ../sass/components/_esi.scss */
.node--type-scientific-focus-area.node--view-mode-full .advancing-the-research,
.node--type-scientific-focus-area.node--view-mode-subscribe .advancing-the-research {
  padding-top: 0.6em;
  padding-bottom: 2em;
}
/* line 427, ../sass/components/_esi.scss */
.node--type-scientific-focus-area.node--view-mode-full .related-ht-press-container,
.node--type-scientific-focus-area.node--view-mode-subscribe .related-ht-press-container {
  padding-bottom: 2em;
}
/* line 429, ../sass/components/_esi.scss */
.node--type-scientific-focus-area.node--view-mode-full .related-ht-press-container .card,
.node--type-scientific-focus-area.node--view-mode-subscribe .related-ht-press-container .card {
  background-color: #fff;
  padding-left: 0;
  padding-top: 0;
  overflow: visible;
}

/* line 439, ../sass/components/_esi.scss */
.science-instance-card h3, .science-instance-card .field--name-field-social-phrase-group-title, .science-instance-card .field--name-field-image-gallery-title {
  font-size: 1.125rem;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  margin: 0 0 11px 0;
  font-weight: bold;
  font-style: normal;
  color: #222;
  font-size: 1rem;
  font-size: 1.25rem;
  text-align: center;
  margin: 0 0 0.25em;
}
@media all and (min-width: 1440px) {
  /* line 439, ../sass/components/_esi.scss */
  .science-instance-card h3, .science-instance-card .field--name-field-social-phrase-group-title, .science-instance-card .field--name-field-image-gallery-title {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 439, ../sass/components/_esi.scss */
  .science-instance-card h3, .science-instance-card .field--name-field-social-phrase-group-title, .science-instance-card .field--name-field-image-gallery-title {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 439, ../sass/components/_esi.scss */
  .science-instance-card h3, .science-instance-card .field--name-field-social-phrase-group-title, .science-instance-card .field--name-field-image-gallery-title {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 439, ../sass/components/_esi.scss */
  .science-instance-card h3, .science-instance-card .field--name-field-social-phrase-group-title, .science-instance-card .field--name-field-image-gallery-title {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1440px) {
  /* line 439, ../sass/components/_esi.scss */
  .science-instance-card h3, .science-instance-card .field--name-field-social-phrase-group-title, .science-instance-card .field--name-field-image-gallery-title {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 439, ../sass/components/_esi.scss */
  .science-instance-card h3, .science-instance-card .field--name-field-social-phrase-group-title, .science-instance-card .field--name-field-image-gallery-title {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 439, ../sass/components/_esi.scss */
  .science-instance-card h3, .science-instance-card .field--name-field-social-phrase-group-title, .science-instance-card .field--name-field-image-gallery-title {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 439, ../sass/components/_esi.scss */
  .science-instance-card h3, .science-instance-card .field--name-field-social-phrase-group-title, .science-instance-card .field--name-field-image-gallery-title {
    font-size: 1rem;
  }
}
/* line 445, ../sass/components/_esi.scss */
.science-instance-card h5, .science-instance-card .image-gallery-item-modal-wrapper h1.image-gallery-item-image-title, .image-gallery-item-modal-wrapper .science-instance-card h1.image-gallery-item-image-title {
  text-align: center;
}
/* line 449, ../sass/components/_esi.scss */
.science-instance-card .field--name-field-card-description a, .science-instance-card .field--name-field-description a {
  font-weight: bold;
}
/* line 452, ../sass/components/_esi.scss */
.science-instance-card .field--name-field-card-description a:hover, .science-instance-card .field--name-field-description a:hover {
  text-shadow: .25px .25px;
}

/* line 460, ../sass/components/_esi.scss */
ul.sub-category-list {
  list-style: none;
  margin-left: 0;
  margin-bottom: 0;
  padding-left: 21px;
}
/* line 465, ../sass/components/_esi.scss */
ul.sub-category-list h3.subcategory-title, ul.sub-category-list .subcategory-title.field--name-field-social-phrase-group-title, ul.sub-category-list .subcategory-title.field--name-field-image-gallery-title {
  color: #0051a8;
}
/* line 470, ../sass/components/_esi.scss */
ul.sub-category-list li.subCategoryBlankListItem,
ul.sub-category-list li.subCategoryListItem {
  margin-top: 1em;
}
/* line 476, ../sass/components/_esi.scss */
ul.sub-category-list li.subCategoryBlankListItem:before,
ul.sub-category-list li.subCategoryListItem:before {
  margin-top: 10px;
  width: 14px;
}
/* line 484, ../sass/components/_esi.scss */
ul.sub-category-list li.subCategoryBlankListItem {
  list-style-image: none;
}
/* line 488, ../sass/components/_esi.scss */
ul.sub-category-list li.subCategoryListItem {
  list-style-image: url("/themes/custom/nhlbi/images/ico-bluesquarebullet.png");
}
/* line 498, ../sass/components/_esi.scss */
ul.sub-category-list a .field--name-field-subcategory-title {
  display: inline;
}

/* line 505, ../sass/components/_esi.scss */
.storycallouttitle#whyimportant, .storycallouttitle#keyaccomplishments, .storycallouttitle#opportunities {
  margin-bottom: 1em;
}

/* line 5, ../sass/components/_training.scss */
.general-accordion .ui-accordion-content.ui-widget-content .view-nhlbi-training-opportunities .views-row,
.general-accordion .ui-accordion-content.ui-widget-content .view-nhlbi-career-stages .views-row {
  padding: 0 0 1em 0;
  border: none;
}
/* line 9, ../sass/components/_training.scss */
.general-accordion .ui-accordion-content.ui-widget-content .view-nhlbi-training-opportunities .views-row article, .general-accordion .ui-accordion-content.ui-widget-content .view-nhlbi-training-opportunities .views-row article > .field--name-field-associated-people,
.general-accordion .ui-accordion-content.ui-widget-content .view-nhlbi-career-stages .views-row article,
.general-accordion .ui-accordion-content.ui-widget-content .view-nhlbi-career-stages .views-row article > .field--name-field-associated-people {
  overflow: visible;
}
/* line 12, ../sass/components/_training.scss */
.general-accordion .ui-accordion-content.ui-widget-content .view-nhlbi-training-opportunities .views-row article .field--name-field-email, .general-accordion .ui-accordion-content.ui-widget-content .view-nhlbi-training-opportunities .views-row article > .field--name-field-associated-people .field--name-field-email,
.general-accordion .ui-accordion-content.ui-widget-content .view-nhlbi-career-stages .views-row article .field--name-field-email,
.general-accordion .ui-accordion-content.ui-widget-content .view-nhlbi-career-stages .views-row article > .field--name-field-associated-people .field--name-field-email {
  word-break: break-all;
}
/* line 17, ../sass/components/_training.scss */
.general-accordion .ui-accordion-content.ui-widget-content .view-nhlbi-training-opportunities .views-row:last-child,
.general-accordion .ui-accordion-content.ui-widget-content .view-nhlbi-career-stages .views-row:last-child {
  padding: 0;
}
/* line 20, ../sass/components/_training.scss */
.general-accordion .ui-accordion-content.ui-widget-content .view-nhlbi-training-opportunities .views-row:hover,
.general-accordion .ui-accordion-content.ui-widget-content .view-nhlbi-career-stages .views-row:hover {
  background-color: transparent;
}

/* line 26, ../sass/components/_training.scss */
.node--type-career-stage h1 {
  margin-top: 0;
}
/* line 30, ../sass/components/_training.scss */
.node--type-career-stage .accordion-header h2, .node--type-career-stage .accordion-header .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-career-stage .accordion-header h1, .node--type-career-stage .accordion-header .contact-method-label {
  color: #222;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  margin: 0 0 0 0;
  font-size: 1.25rem;
}
@media all and (min-width: 1440px) {
  /* line 30, ../sass/components/_training.scss */
  .node--type-career-stage .accordion-header h2, .node--type-career-stage .accordion-header .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-career-stage .accordion-header h1, .node--type-career-stage .accordion-header .contact-method-label {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 30, ../sass/components/_training.scss */
  .node--type-career-stage .accordion-header h2, .node--type-career-stage .accordion-header .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-career-stage .accordion-header h1, .node--type-career-stage .accordion-header .contact-method-label {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 30, ../sass/components/_training.scss */
  .node--type-career-stage .accordion-header h2, .node--type-career-stage .accordion-header .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-career-stage .accordion-header h1, .node--type-career-stage .accordion-header .contact-method-label {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 30, ../sass/components/_training.scss */
  .node--type-career-stage .accordion-header h2, .node--type-career-stage .accordion-header .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-career-stage .accordion-header h1, .node--type-career-stage .accordion-header .contact-method-label {
    font-size: 1rem;
  }
}
/* line 38, ../sass/components/_training.scss */
.node--type-career-stage .contact-method-label {
  font-size: 2.875rem;
}
@media all and (min-width: 1440px) {
  /* line 38, ../sass/components/_training.scss */
  .node--type-career-stage .contact-method-label {
    font-size: 2.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 38, ../sass/components/_training.scss */
  .node--type-career-stage .contact-method-label {
    font-size: 2.375rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 38, ../sass/components/_training.scss */
  .node--type-career-stage .contact-method-label {
    font-size: 2.375rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 38, ../sass/components/_training.scss */
  .node--type-career-stage .contact-method-label {
    font-size: 2.125rem;
  }
}

/* line 42, ../sass/components/_training.scss */
.training-opportunity-card {
  background-color: #f4f4f4;
  padding: 1em;
}
/* line 48, ../sass/components/_training.scss */
.training-opportunity-card .field--name-field-associated-people > .field__item {
  margin-right: 1em;
  margin-bottom: 1em;
}
@media all and (min-width: 1100px) {
  /* line 48, ../sass/components/_training.scss */
  .training-opportunity-card .field--name-field-associated-people > .field__item {
    width: 30%;
    max-width: 30%;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 48, ../sass/components/_training.scss */
  .training-opportunity-card .field--name-field-associated-people > .field__item {
    width: 45%;
    max-width: 45%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 48, ../sass/components/_training.scss */
  .training-opportunity-card .field--name-field-associated-people > .field__item {
    width: auto;
    max-width: auto;
  }
}
/* line 64, ../sass/components/_training.scss */
.training-opportunity-card .field--name-field-associated-people > .field__item:last-child {
  margin-right: 0;
  margin-bottom: 0;
}

/* line 69, ../sass/components/_training.scss */
.opportunity-codes {
  margin-top: 1em;
  margin-bottom: 1em;
}

/* line 73, ../sass/components/_training.scss */
.activity-code, .diversity-code {
  display: inline-block;
}

/* line 76, ../sass/components/_training.scss */
.activity-code {
  background-color: #fff;
  border: 2px solid #d7d7d7;
  padding: 0 0.5em;
  margin-right: 0.5em;
  margin-bottom: 0.5em;
}

/* line 84, ../sass/components/_training.scss */
.diversity-code {
  text-transform: uppercase;
  font-size: 0.875rem;
  background-color: #d7d7d7;
  border-radius: 4px;
  padding: 0.4em 1.3em;
}

/* line 91, ../sass/components/_training.scss */
.tcd-featured-opportunity-container {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 95, ../sass/components/_training.scss */
  .field--name-field-featured-training-opportun {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
  }
}

/* line 102, ../sass/components/_training.scss */
.field--name-field-featured-training-opportun > .field__item {
  background-color: #fff;
  margin-right: 1em;
  margin-bottom: 1em;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
@media all and (min-width: 1100px) {
  /* line 102, ../sass/components/_training.scss */
  .field--name-field-featured-training-opportun > .field__item {
    max-width: 32.25%;
    min-width: 32.25%;
    flex-basis: 32.25%;
    margin-right: 1em;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 102, ../sass/components/_training.scss */
  .field--name-field-featured-training-opportun > .field__item {
    width: 100%;
    max-width: auto;
  }
}

/* line 118, ../sass/components/_training.scss */
.field--name-field-featured-training-opportun > .field__item:last-child {
  margin-right: 0;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 118, ../sass/components/_training.scss */
  .field--name-field-featured-training-opportun > .field__item:last-child {
    margin-bottom: 0;
  }
}

/* line 124, ../sass/components/_training.scss */
.training-opportunity-small-card {
  background-color: #fff;
  padding: 1em 2em 1em 2em;
}
/* line 129, ../sass/components/_training.scss */
.training-opportunity-small-card a:focus, .training-opportunity-small-card a:active {
  outline: #bf0d2e 3px dotted;
}

@media all and (min-width: 1100px) {
  /* line 134, ../sass/components/_training.scss */
  .tcd-career-stage-container {
    width: 1152px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 134, ../sass/components/_training.scss */
  .tcd-career-stage-container {
    width: auto;
  }
}

/* line 144, ../sass/components/_training.scss */
.field--name-field-career-stages {
  margin-top: 1em;
}
@media all and (min-width: 1100px) {
  /* line 144, ../sass/components/_training.scss */
  .field--name-field-career-stages {
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 144, ../sass/components/_training.scss */
  .field--name-field-career-stages {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
  }
}

/* line 154, ../sass/components/_training.scss */
.field--name-field-career-stages > .field__item {
  margin-bottom: 1em;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
@media all and (min-width: 1100px) {
  /* line 154, ../sass/components/_training.scss */
  .field--name-field-career-stages > .field__item {
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 154, ../sass/components/_training.scss */
  .field--name-field-career-stages > .field__item {
    width: 100%;
    padding: 1em 0 1em 2em;
  }
}
@media all and (min-width: 1100px) {
  /* line 166, ../sass/components/_training.scss */
  .field--name-field-career-stages > .field__item .flex-content {
    width: 130px;
    display: inline-flex;
  }
}

/* line 173, ../sass/components/_training.scss */
.field--name-field-career-stages > .field__item:nth-child(1) {
  background-color: #d7e7f4;
}
@media all and (min-width: 1100px) {
  /* line 173, ../sass/components/_training.scss */
  .field--name-field-career-stages > .field__item:nth-child(1) {
    background-image: url("../images/chevron-highschool.png");
    background-size: 233px 147px;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    content: " ";
    height: 147px;
    display: flex;
    width: 233px;
  }
}
@media all and (min-width: 1100px) and (min-width: 768px) and (max-width: 1099px) {
  /* line 173, ../sass/components/_training.scss */
  .field--name-field-career-stages > .field__item:nth-child(1) {
    background-size: 233px 147px;
    height: 147px;
  }
}
@media all and (min-width: 1100px) and (min-width: 0em) and (max-width: 767px) {
  /* line 173, ../sass/components/_training.scss */
  .field--name-field-career-stages > .field__item:nth-child(1) {
    background-size: 233px 147px;
    height: 147px;
  }
}

/* line 180, ../sass/components/_training.scss */
.field--name-field-career-stages > .field__item:nth-child(1) a, .field--name-field-career-stages > .field__item:nth-child(1) a:link {
  color: #222;
}
/* line 183, ../sass/components/_training.scss */
.field--name-field-career-stages > .field__item:nth-child(1) a:visited {
  color: #6f57B5;
}

/* line 187, ../sass/components/_training.scss */
.field--name-field-career-stages > .field__item:nth-child(2) {
  background-color: #B4CDE1;
}
@media all and (min-width: 1100px) {
  /* line 187, ../sass/components/_training.scss */
  .field--name-field-career-stages > .field__item:nth-child(2) {
    background-image: url("../images/chevron-postbac.png");
    background-size: 189px 147px;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    content: " ";
    height: 147px;
    display: flex;
    width: 189px;
  }
}
@media all and (min-width: 1100px) and (min-width: 768px) and (max-width: 1099px) {
  /* line 187, ../sass/components/_training.scss */
  .field--name-field-career-stages > .field__item:nth-child(2) {
    background-size: 189px 147px;
    height: 147px;
  }
}
@media all and (min-width: 1100px) and (min-width: 0em) and (max-width: 767px) {
  /* line 187, ../sass/components/_training.scss */
  .field--name-field-career-stages > .field__item:nth-child(2) {
    background-size: 189px 147px;
    height: 147px;
  }
}

/* line 194, ../sass/components/_training.scss */
.field--name-field-career-stages > .field__item:nth-child(2) a, .field--name-field-career-stages > .field__item:nth-child(2) a:link {
  color: #222;
}
/* line 197, ../sass/components/_training.scss */
.field--name-field-career-stages > .field__item:nth-child(2) a:visited {
  color: #6f57B5;
}

/* line 201, ../sass/components/_training.scss */
.field--name-field-career-stages > .field__item:nth-child(3) {
  background-color: #4C759A;
}
@media all and (min-width: 1100px) {
  /* line 201, ../sass/components/_training.scss */
  .field--name-field-career-stages > .field__item:nth-child(3) {
    background-image: url("../images/chevron-graduate.png");
    background-size: 189px 147px;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    content: " ";
    height: 147px;
    display: flex;
    width: 189px;
  }
}
@media all and (min-width: 1100px) and (min-width: 768px) and (max-width: 1099px) {
  /* line 201, ../sass/components/_training.scss */
  .field--name-field-career-stages > .field__item:nth-child(3) {
    background-size: 189px 147px;
    height: 147px;
  }
}
@media all and (min-width: 1100px) and (min-width: 0em) and (max-width: 767px) {
  /* line 201, ../sass/components/_training.scss */
  .field--name-field-career-stages > .field__item:nth-child(3) {
    background-size: 189px 147px;
    height: 147px;
  }
}

/* line 208, ../sass/components/_training.scss */
.field--name-field-career-stages > .field__item:nth-child(3) a, .field--name-field-career-stages > .field__item:nth-child(3) a:link {
  color: #fff;
}
/* line 211, ../sass/components/_training.scss */
.field--name-field-career-stages > .field__item:nth-child(3) a:visited {
  color: #D7E7F4;
}

/* line 215, ../sass/components/_training.scss */
.field--name-field-career-stages > .field__item:nth-child(4) {
  background-color: #3E607E;
}
@media all and (min-width: 1100px) {
  /* line 215, ../sass/components/_training.scss */
  .field--name-field-career-stages > .field__item:nth-child(4) {
    background-image: url("../images/chevron-postdoctoral.png");
    background-size: 190px 147px;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    content: " ";
    height: 147px;
    display: flex;
    width: 190px;
  }
}
@media all and (min-width: 1100px) and (min-width: 768px) and (max-width: 1099px) {
  /* line 215, ../sass/components/_training.scss */
  .field--name-field-career-stages > .field__item:nth-child(4) {
    background-size: 190px 147px;
    height: 147px;
  }
}
@media all and (min-width: 1100px) and (min-width: 0em) and (max-width: 767px) {
  /* line 215, ../sass/components/_training.scss */
  .field--name-field-career-stages > .field__item:nth-child(4) {
    background-size: 190px 147px;
    height: 147px;
  }
}

/* line 222, ../sass/components/_training.scss */
.field--name-field-career-stages > .field__item:nth-child(4) a, .field--name-field-career-stages > .field__item:nth-child(4) a:link {
  color: #fff;
}
/* line 225, ../sass/components/_training.scss */
.field--name-field-career-stages > .field__item:nth-child(4) a:visited {
  color: #D7E7F4;
}

/* line 229, ../sass/components/_training.scss */
.field--name-field-career-stages > .field__item:nth-child(5) {
  background-color: #25557F;
}
@media all and (min-width: 1100px) {
  /* line 229, ../sass/components/_training.scss */
  .field--name-field-career-stages > .field__item:nth-child(5) {
    background-image: url("../images/chevron-earlycareer.png");
    background-size: 189px 147px;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    content: " ";
    height: 147px;
    display: flex;
    width: 189px;
  }
}
@media all and (min-width: 1100px) and (min-width: 768px) and (max-width: 1099px) {
  /* line 229, ../sass/components/_training.scss */
  .field--name-field-career-stages > .field__item:nth-child(5) {
    background-size: 189px 147px;
    height: 147px;
  }
}
@media all and (min-width: 1100px) and (min-width: 0em) and (max-width: 767px) {
  /* line 229, ../sass/components/_training.scss */
  .field--name-field-career-stages > .field__item:nth-child(5) {
    background-size: 189px 147px;
    height: 147px;
  }
}

/* line 236, ../sass/components/_training.scss */
.field--name-field-career-stages > .field__item:nth-child(5) a, .field--name-field-career-stages > .field__item:nth-child(5) a:link {
  color: #fff;
}
/* line 239, ../sass/components/_training.scss */
.field--name-field-career-stages > .field__item:nth-child(5) a:visited {
  color: #D7E7F4;
}
/* line 242, ../sass/components/_training.scss */
.field--name-field-career-stages > .field__item:nth-child(5) a:focus {
  outline: 3px dotted #fff;
}

/* line 246, ../sass/components/_training.scss */
.field--name-field-career-stages > .field__item:nth-child(6) {
  background-color: #183852;
}
@media all and (min-width: 1100px) {
  /* line 246, ../sass/components/_training.scss */
  .field--name-field-career-stages > .field__item:nth-child(6) {
    background-image: url("../images/chevron-established.png");
    background-size: 172px 147px;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    content: " ";
    height: 147px;
    display: flex;
    width: 172px;
  }
}
@media all and (min-width: 1100px) and (min-width: 768px) and (max-width: 1099px) {
  /* line 246, ../sass/components/_training.scss */
  .field--name-field-career-stages > .field__item:nth-child(6) {
    background-size: 172px 147px;
    height: 147px;
  }
}
@media all and (min-width: 1100px) and (min-width: 0em) and (max-width: 767px) {
  /* line 246, ../sass/components/_training.scss */
  .field--name-field-career-stages > .field__item:nth-child(6) {
    background-size: 172px 147px;
    height: 147px;
  }
}

/* line 253, ../sass/components/_training.scss */
.field--name-field-career-stages > .field__item:nth-child(6) a, .field--name-field-career-stages > .field__item:nth-child(6) a:link {
  color: #fff;
}
/* line 256, ../sass/components/_training.scss */
.field--name-field-career-stages > .field__item:nth-child(6) a:visited {
  color: #D7E7F4;
}
/* line 259, ../sass/components/_training.scss */
.field--name-field-career-stages > .field__item:nth-child(6) a:focus {
  outline: 3px dotted #fff;
}

/* line 266, ../sass/components/_training.scss */
.field--name-field-workforce-development-card {
  padding-top: 1em;
  padding-bottom: 2em;
}

@media all and (min-width: 768px) {
  /* line 271, ../sass/components/_training.scss */
  .field--name-field-workforce-development-card > .field__item {
    width: 50%;
    max-width: 50%;
  }
}

@media all and (min-width: 768px) {
  /* line 277, ../sass/components/_training.scss */
  .field--name-field-workforce-development-card > .field__item:first-child {
    width: 50%;
    max-width: 50%;
    border-right: solid 1px #979797;
    padding-right: 2em;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 277, ../sass/components/_training.scss */
  .field--name-field-workforce-development-card > .field__item:first-child {
    border-bottom: solid 1px #979797;
    padding-bottom: 2em;
  }
}

@media all and (min-width: 768px) {
  /* line 289, ../sass/components/_training.scss */
  .field--name-field-workforce-development-card > .field__item:last-child {
    padding-left: 2em;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 289, ../sass/components/_training.scss */
  .field--name-field-workforce-development-card > .field__item:last-child {
    padding-top: 2em;
  }
}

/* line 299, ../sass/components/_training.scss */
.standard-title-text-link-card {
  height: 100%;
  display: inline;
}
/* line 302, ../sass/components/_training.scss */
.standard-title-text-link-card li.field__item {
  list-style: none;
}
/* line 304, ../sass/components/_training.scss */
.standard-title-text-link-card li.field__item a:focus {
  margin-left: 4px;
}

/* line 315, ../sass/components/_training.scss */
.whiteEventIcons .eventdatesLocationType .eventLocation .map-icon {
  background-position: center;
}

/* line 329, ../sass/components/_training.scss */
.tcd-events-container .eventdatesLocationType .eventLocation .map-icon {
  background-position: center;
}

@media all and (min-width: 768px) {
  /* line 338, ../sass/components/_training.scss */
  .tcd-news-container .sfa-teaser-container .flexItemImageHalf {
    -webkit-box-ordinal-group: 2;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
}
@media all and (min-width: 768px) {
  /* line 343, ../sass/components/_training.scss */
  .tcd-news-container .sfa-teaser-container .flexItemText.flexItemTextHalf {
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 349, ../sass/components/_training.scss */
  .tcd-news-container .sfa-teaser-container .bodytext, .tcd-news-container .sfa-teaser-container .darkGrayBodyText, .tcd-news-container .sfa-teaser-container .foa-expiration-date {
    display: none;
  }
}

/* line 358, ../sass/components/_training.scss */
.node--type-training-opportunity h1 {
  margin-top: 0;
}

/* line 2, ../sass/components/_executive_biography.scss */
.node--type-executive-biography .media-nhlbi-video {
  padding-top: 1em;
}
/* line 5, ../sass/components/_executive_biography.scss */
.node--type-executive-biography #director-in-the-press-container {
  padding-bottom: 1em;
}
/* line 7, ../sass/components/_executive_biography.scss */
.node--type-executive-biography #director-in-the-press-container .readMoreLink {
  margin-top: 1em;
  margin-bottom: 1em;
}
/* line 12, ../sass/components/_executive_biography.scss */
.node--type-executive-biography .node--type-news-mention {
  margin-top: 1em;
  padding-bottom: 0.5em;
  border-bottom: 1px #979797 solid;
  overflow: visible;
}
/* line 17, ../sass/components/_executive_biography.scss */
.node--type-executive-biography .node--type-news-mention .posttitlethumb, .node--type-executive-biography .node--type-news-mention .blue-posttitlethumb, .node--type-executive-biography .node--type-news-mention .objective-list-container .objective-side-text, .objective-list-container .node--type-executive-biography .node--type-news-mention .objective-side-text {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
/* line 21, ../sass/components/_executive_biography.scss */
.node--type-executive-biography .node--type-news-mention .flexItemText {
  padding-left: 0;
  padding-top: 0.8rem;
}
/* line 26, ../sass/components/_executive_biography.scss */
.node--type-executive-biography .general-accordion.ui-accordion,
.node--type-executive-biography .primary-accordion.ui-accordion,
.node--type-executive-biography .secondary-accordion.ui-accordion {
  border: none;
}
/* line 30, ../sass/components/_executive_biography.scss */
.node--type-executive-biography .general-accordion.ui-accordion .accordion-header.ui-accordion-header,
.node--type-executive-biography .general-accordion.ui-accordion .grayaccordionheading.ui-accordion-header,
.node--type-executive-biography .general-accordion.ui-accordion h3.flataccordionheading h3.ui-accordion-header.graysubaccordionheading,
h3.flataccordionheading .node--type-executive-biography .general-accordion.ui-accordion h3.ui-accordion-header.graysubaccordionheading,
.node--type-executive-biography .general-accordion.ui-accordion .flataccordionheading.field--name-field-social-phrase-group-title h3.ui-accordion-header.graysubaccordionheading,
.flataccordionheading.field--name-field-social-phrase-group-title .node--type-executive-biography .general-accordion.ui-accordion h3.ui-accordion-header.graysubaccordionheading,
.node--type-executive-biography .general-accordion.ui-accordion .flataccordionheading.field--name-field-image-gallery-title h3.ui-accordion-header.graysubaccordionheading,
.flataccordionheading.field--name-field-image-gallery-title .node--type-executive-biography .general-accordion.ui-accordion h3.ui-accordion-header.graysubaccordionheading,
.node--type-executive-biography .general-accordion.ui-accordion h3.flataccordionheading .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title,
h3.flataccordionheading .node--type-executive-biography .general-accordion.ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title,
.node--type-executive-biography .general-accordion.ui-accordion .flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title,
.flataccordionheading.field--name-field-social-phrase-group-title .node--type-executive-biography .general-accordion.ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title,
.node--type-executive-biography .general-accordion.ui-accordion .flataccordionheading.field--name-field-image-gallery-title .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title,
.flataccordionheading.field--name-field-image-gallery-title .node--type-executive-biography .general-accordion.ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title,
.node--type-executive-biography .general-accordion.ui-accordion h3.flataccordionheading .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title,
h3.flataccordionheading .node--type-executive-biography .general-accordion.ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title,
.node--type-executive-biography .general-accordion.ui-accordion .flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title,
.flataccordionheading.field--name-field-social-phrase-group-title .node--type-executive-biography .general-accordion.ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title,
.node--type-executive-biography .general-accordion.ui-accordion .flataccordionheading.field--name-field-image-gallery-title .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title,
.flataccordionheading.field--name-field-image-gallery-title .node--type-executive-biography .general-accordion.ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title,
.node--type-executive-biography .general-accordion.ui-accordion h3.ui-accordion-header.graysubSecondHeader,
.node--type-executive-biography .general-accordion.ui-accordion .ui-accordion-header.graysubSecondHeader.field--name-field-social-phrase-group-title,
.node--type-executive-biography .general-accordion.ui-accordion .ui-accordion-header.graysubSecondHeader.field--name-field-image-gallery-title,
.node--type-executive-biography .general-accordion.ui-accordion h3.ui-accordion-header.graysubThirdHeader,
.node--type-executive-biography .general-accordion.ui-accordion .ui-accordion-header.graysubThirdHeader.field--name-field-social-phrase-group-title,
.node--type-executive-biography .general-accordion.ui-accordion .ui-accordion-header.graysubThirdHeader.field--name-field-image-gallery-title,
.node--type-executive-biography .general-accordion.ui-accordion h3.ui-accordion-header.flatHeader,
.node--type-executive-biography .general-accordion.ui-accordion h3.ui-accordion-header.accordion-header-secondary,
.node--type-executive-biography .general-accordion.ui-accordion .ui-accordion-header.accordion-header-secondary.field--name-field-social-phrase-group-title,
.node--type-executive-biography .general-accordion.ui-accordion .ui-accordion-header.accordion-header-secondary.field--name-field-image-gallery-title,
.node--type-executive-biography .general-accordion.ui-accordion .ui-accordion-header.flatHeader.field--name-field-social-phrase-group-title,
.node--type-executive-biography .general-accordion.ui-accordion div.ui-accordion-header.field--name-field-social-phrase-group-title.flatPlainUnderlinedHeader,
.node--type-executive-biography .general-accordion.ui-accordion div.ui-accordion-header.field--name-field-social-phrase-group-title.flatPlainHeader,
.node--type-executive-biography .general-accordion.ui-accordion div.ui-accordion-header.field--name-field-social-phrase-group-title.flatPlainHeaderWhite,
.node--type-executive-biography .general-accordion.ui-accordion .ui-accordion-header.flatHeader.field--name-field-image-gallery-title,
.node--type-executive-biography .general-accordion.ui-accordion div.ui-accordion-header.field--name-field-image-gallery-title.flatPlainUnderlinedHeader,
.node--type-executive-biography .general-accordion.ui-accordion div.ui-accordion-header.field--name-field-image-gallery-title.flatPlainHeader,
.node--type-executive-biography .general-accordion.ui-accordion div.ui-accordion-header.field--name-field-image-gallery-title.flatPlainHeaderWhite,
.node--type-executive-biography .general-accordion.ui-accordion .ui-accordion-header.accordion-header,
.node--type-executive-biography .general-accordion.ui-accordion .ui-accordion-header.field--name-field-session-subtitle,
.node--type-executive-biography .general-accordion.ui-accordion .accordion-header-secondary.ui-accordion-header,
.node--type-executive-biography .primary-accordion.ui-accordion .accordion-header.ui-accordion-header,
.node--type-executive-biography .primary-accordion.ui-accordion .grayaccordionheading.ui-accordion-header,
.node--type-executive-biography .primary-accordion.ui-accordion h3.flataccordionheading h3.ui-accordion-header.graysubaccordionheading,
h3.flataccordionheading .node--type-executive-biography .primary-accordion.ui-accordion h3.ui-accordion-header.graysubaccordionheading,
.node--type-executive-biography .primary-accordion.ui-accordion .flataccordionheading.field--name-field-social-phrase-group-title h3.ui-accordion-header.graysubaccordionheading,
.flataccordionheading.field--name-field-social-phrase-group-title .node--type-executive-biography .primary-accordion.ui-accordion h3.ui-accordion-header.graysubaccordionheading,
.node--type-executive-biography .primary-accordion.ui-accordion .flataccordionheading.field--name-field-image-gallery-title h3.ui-accordion-header.graysubaccordionheading,
.flataccordionheading.field--name-field-image-gallery-title .node--type-executive-biography .primary-accordion.ui-accordion h3.ui-accordion-header.graysubaccordionheading,
.node--type-executive-biography .primary-accordion.ui-accordion h3.flataccordionheading .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title,
h3.flataccordionheading .node--type-executive-biography .primary-accordion.ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title,
.node--type-executive-biography .primary-accordion.ui-accordion .flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title,
.flataccordionheading.field--name-field-social-phrase-group-title .node--type-executive-biography .primary-accordion.ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title,
.node--type-executive-biography .primary-accordion.ui-accordion .flataccordionheading.field--name-field-image-gallery-title .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title,
.flataccordionheading.field--name-field-image-gallery-title .node--type-executive-biography .primary-accordion.ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title,
.node--type-executive-biography .primary-accordion.ui-accordion h3.flataccordionheading .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title,
h3.flataccordionheading .node--type-executive-biography .primary-accordion.ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title,
.node--type-executive-biography .primary-accordion.ui-accordion .flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title,
.flataccordionheading.field--name-field-social-phrase-group-title .node--type-executive-biography .primary-accordion.ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title,
.node--type-executive-biography .primary-accordion.ui-accordion .flataccordionheading.field--name-field-image-gallery-title .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title,
.flataccordionheading.field--name-field-image-gallery-title .node--type-executive-biography .primary-accordion.ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title,
.node--type-executive-biography .primary-accordion.ui-accordion h3.ui-accordion-header.graysubSecondHeader,
.node--type-executive-biography .primary-accordion.ui-accordion .ui-accordion-header.graysubSecondHeader.field--name-field-social-phrase-group-title,
.node--type-executive-biography .primary-accordion.ui-accordion .ui-accordion-header.graysubSecondHeader.field--name-field-image-gallery-title,
.node--type-executive-biography .primary-accordion.ui-accordion h3.ui-accordion-header.graysubThirdHeader,
.node--type-executive-biography .primary-accordion.ui-accordion .ui-accordion-header.graysubThirdHeader.field--name-field-social-phrase-group-title,
.node--type-executive-biography .primary-accordion.ui-accordion .ui-accordion-header.graysubThirdHeader.field--name-field-image-gallery-title,
.node--type-executive-biography .primary-accordion.ui-accordion h3.ui-accordion-header.flatHeader,
.node--type-executive-biography .primary-accordion.ui-accordion h3.ui-accordion-header.accordion-header-secondary,
.node--type-executive-biography .primary-accordion.ui-accordion .ui-accordion-header.accordion-header-secondary.field--name-field-social-phrase-group-title,
.node--type-executive-biography .primary-accordion.ui-accordion .ui-accordion-header.accordion-header-secondary.field--name-field-image-gallery-title,
.node--type-executive-biography .primary-accordion.ui-accordion .ui-accordion-header.flatHeader.field--name-field-social-phrase-group-title,
.node--type-executive-biography .primary-accordion.ui-accordion div.ui-accordion-header.field--name-field-social-phrase-group-title.flatPlainUnderlinedHeader,
.node--type-executive-biography .primary-accordion.ui-accordion div.ui-accordion-header.field--name-field-social-phrase-group-title.flatPlainHeader,
.node--type-executive-biography .primary-accordion.ui-accordion div.ui-accordion-header.field--name-field-social-phrase-group-title.flatPlainHeaderWhite,
.node--type-executive-biography .primary-accordion.ui-accordion .ui-accordion-header.flatHeader.field--name-field-image-gallery-title,
.node--type-executive-biography .primary-accordion.ui-accordion div.ui-accordion-header.field--name-field-image-gallery-title.flatPlainUnderlinedHeader,
.node--type-executive-biography .primary-accordion.ui-accordion div.ui-accordion-header.field--name-field-image-gallery-title.flatPlainHeader,
.node--type-executive-biography .primary-accordion.ui-accordion div.ui-accordion-header.field--name-field-image-gallery-title.flatPlainHeaderWhite,
.node--type-executive-biography .primary-accordion.ui-accordion .ui-accordion-header.accordion-header,
.node--type-executive-biography .primary-accordion.ui-accordion .ui-accordion-header.field--name-field-session-subtitle,
.node--type-executive-biography .primary-accordion.ui-accordion .accordion-header-secondary.ui-accordion-header,
.node--type-executive-biography .secondary-accordion.ui-accordion .accordion-header.ui-accordion-header,
.node--type-executive-biography .secondary-accordion.ui-accordion .grayaccordionheading.ui-accordion-header,
.node--type-executive-biography .secondary-accordion.ui-accordion h3.flataccordionheading h3.ui-accordion-header.graysubaccordionheading,
h3.flataccordionheading .node--type-executive-biography .secondary-accordion.ui-accordion h3.ui-accordion-header.graysubaccordionheading,
.node--type-executive-biography .secondary-accordion.ui-accordion .flataccordionheading.field--name-field-social-phrase-group-title h3.ui-accordion-header.graysubaccordionheading,
.flataccordionheading.field--name-field-social-phrase-group-title .node--type-executive-biography .secondary-accordion.ui-accordion h3.ui-accordion-header.graysubaccordionheading,
.node--type-executive-biography .secondary-accordion.ui-accordion .flataccordionheading.field--name-field-image-gallery-title h3.ui-accordion-header.graysubaccordionheading,
.flataccordionheading.field--name-field-image-gallery-title .node--type-executive-biography .secondary-accordion.ui-accordion h3.ui-accordion-header.graysubaccordionheading,
.node--type-executive-biography .secondary-accordion.ui-accordion h3.flataccordionheading .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title,
h3.flataccordionheading .node--type-executive-biography .secondary-accordion.ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title,
.node--type-executive-biography .secondary-accordion.ui-accordion .flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title,
.flataccordionheading.field--name-field-social-phrase-group-title .node--type-executive-biography .secondary-accordion.ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title,
.node--type-executive-biography .secondary-accordion.ui-accordion .flataccordionheading.field--name-field-image-gallery-title .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title,
.flataccordionheading.field--name-field-image-gallery-title .node--type-executive-biography .secondary-accordion.ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-social-phrase-group-title,
.node--type-executive-biography .secondary-accordion.ui-accordion h3.flataccordionheading .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title,
h3.flataccordionheading .node--type-executive-biography .secondary-accordion.ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title,
.node--type-executive-biography .secondary-accordion.ui-accordion .flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title,
.flataccordionheading.field--name-field-social-phrase-group-title .node--type-executive-biography .secondary-accordion.ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title,
.node--type-executive-biography .secondary-accordion.ui-accordion .flataccordionheading.field--name-field-image-gallery-title .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title,
.flataccordionheading.field--name-field-image-gallery-title .node--type-executive-biography .secondary-accordion.ui-accordion .ui-accordion-header.graysubaccordionheading.field--name-field-image-gallery-title,
.node--type-executive-biography .secondary-accordion.ui-accordion h3.ui-accordion-header.graysubSecondHeader,
.node--type-executive-biography .secondary-accordion.ui-accordion .ui-accordion-header.graysubSecondHeader.field--name-field-social-phrase-group-title,
.node--type-executive-biography .secondary-accordion.ui-accordion .ui-accordion-header.graysubSecondHeader.field--name-field-image-gallery-title,
.node--type-executive-biography .secondary-accordion.ui-accordion h3.ui-accordion-header.graysubThirdHeader,
.node--type-executive-biography .secondary-accordion.ui-accordion .ui-accordion-header.graysubThirdHeader.field--name-field-social-phrase-group-title,
.node--type-executive-biography .secondary-accordion.ui-accordion .ui-accordion-header.graysubThirdHeader.field--name-field-image-gallery-title,
.node--type-executive-biography .secondary-accordion.ui-accordion h3.ui-accordion-header.flatHeader,
.node--type-executive-biography .secondary-accordion.ui-accordion h3.ui-accordion-header.accordion-header-secondary,
.node--type-executive-biography .secondary-accordion.ui-accordion .ui-accordion-header.accordion-header-secondary.field--name-field-social-phrase-group-title,
.node--type-executive-biography .secondary-accordion.ui-accordion .ui-accordion-header.accordion-header-secondary.field--name-field-image-gallery-title,
.node--type-executive-biography .secondary-accordion.ui-accordion .ui-accordion-header.flatHeader.field--name-field-social-phrase-group-title,
.node--type-executive-biography .secondary-accordion.ui-accordion div.ui-accordion-header.field--name-field-social-phrase-group-title.flatPlainUnderlinedHeader,
.node--type-executive-biography .secondary-accordion.ui-accordion div.ui-accordion-header.field--name-field-social-phrase-group-title.flatPlainHeader,
.node--type-executive-biography .secondary-accordion.ui-accordion div.ui-accordion-header.field--name-field-social-phrase-group-title.flatPlainHeaderWhite,
.node--type-executive-biography .secondary-accordion.ui-accordion .ui-accordion-header.flatHeader.field--name-field-image-gallery-title,
.node--type-executive-biography .secondary-accordion.ui-accordion div.ui-accordion-header.field--name-field-image-gallery-title.flatPlainUnderlinedHeader,
.node--type-executive-biography .secondary-accordion.ui-accordion div.ui-accordion-header.field--name-field-image-gallery-title.flatPlainHeader,
.node--type-executive-biography .secondary-accordion.ui-accordion div.ui-accordion-header.field--name-field-image-gallery-title.flatPlainHeaderWhite,
.node--type-executive-biography .secondary-accordion.ui-accordion .ui-accordion-header.accordion-header,
.node--type-executive-biography .secondary-accordion.ui-accordion .ui-accordion-header.field--name-field-session-subtitle,
.node--type-executive-biography .secondary-accordion.ui-accordion .accordion-header-secondary.ui-accordion-header {
  padding-left: 0;
}
/* line 36, ../sass/components/_executive_biography.scss */
.node--type-executive-biography .general-accordion.ui-accordion .ui-accordion-content.ui-widget-content,
.node--type-executive-biography .primary-accordion.ui-accordion .ui-accordion-content.ui-widget-content,
.node--type-executive-biography .secondary-accordion.ui-accordion .ui-accordion-content.ui-widget-content {
  border: none;
}
/* line 39, ../sass/components/_executive_biography.scss */
.node--type-executive-biography .general-accordion.ui-accordion h2, .node--type-executive-biography .general-accordion.ui-accordion .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-executive-biography .general-accordion.ui-accordion h1, .node--type-executive-biography .general-accordion.ui-accordion .contact-method-label,
.node--type-executive-biography .primary-accordion.ui-accordion h2,
.node--type-executive-biography .primary-accordion.ui-accordion .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-executive-biography .primary-accordion.ui-accordion h1,
.node--type-executive-biography .primary-accordion.ui-accordion .contact-method-label,
.node--type-executive-biography .secondary-accordion.ui-accordion h2,
.node--type-executive-biography .secondary-accordion.ui-accordion .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-executive-biography .secondary-accordion.ui-accordion h1,
.node--type-executive-biography .secondary-accordion.ui-accordion .contact-method-label {
  margin: 0;
}
/* line 43, ../sass/components/_executive_biography.scss */
.node--type-executive-biography .ui-accordion .accordion-header.ui-accordion-header.ui-accordion-header-active,
.node--type-executive-biography .ui-accordion .grayaccordionheading.ui-accordion-header.ui-accordion-header-active,
.node--type-executive-biography .ui-accordion h3.flataccordionheading h3.ui-accordion-header.ui-accordion-header-active.graysubaccordionheading,
h3.flataccordionheading .node--type-executive-biography .ui-accordion h3.ui-accordion-header.ui-accordion-header-active.graysubaccordionheading,
.node--type-executive-biography .ui-accordion .flataccordionheading.field--name-field-social-phrase-group-title h3.ui-accordion-header.ui-accordion-header-active.graysubaccordionheading,
.flataccordionheading.field--name-field-social-phrase-group-title .node--type-executive-biography .ui-accordion h3.ui-accordion-header.ui-accordion-header-active.graysubaccordionheading,
.node--type-executive-biography .ui-accordion .flataccordionheading.field--name-field-image-gallery-title h3.ui-accordion-header.ui-accordion-header-active.graysubaccordionheading,
.flataccordionheading.field--name-field-image-gallery-title .node--type-executive-biography .ui-accordion h3.ui-accordion-header.ui-accordion-header-active.graysubaccordionheading,
.node--type-executive-biography .ui-accordion h3.flataccordionheading .ui-accordion-header.ui-accordion-header-active.graysubaccordionheading.field--name-field-social-phrase-group-title,
h3.flataccordionheading .node--type-executive-biography .ui-accordion .ui-accordion-header.ui-accordion-header-active.graysubaccordionheading.field--name-field-social-phrase-group-title,
.node--type-executive-biography .ui-accordion .flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion-header.ui-accordion-header-active.graysubaccordionheading.field--name-field-social-phrase-group-title,
.flataccordionheading.field--name-field-social-phrase-group-title .node--type-executive-biography .ui-accordion .ui-accordion-header.ui-accordion-header-active.graysubaccordionheading.field--name-field-social-phrase-group-title,
.node--type-executive-biography .ui-accordion .flataccordionheading.field--name-field-image-gallery-title .ui-accordion-header.ui-accordion-header-active.graysubaccordionheading.field--name-field-social-phrase-group-title,
.flataccordionheading.field--name-field-image-gallery-title .node--type-executive-biography .ui-accordion .ui-accordion-header.ui-accordion-header-active.graysubaccordionheading.field--name-field-social-phrase-group-title,
.node--type-executive-biography .ui-accordion h3.flataccordionheading .ui-accordion-header.ui-accordion-header-active.graysubaccordionheading.field--name-field-image-gallery-title,
h3.flataccordionheading .node--type-executive-biography .ui-accordion .ui-accordion-header.ui-accordion-header-active.graysubaccordionheading.field--name-field-image-gallery-title,
.node--type-executive-biography .ui-accordion .flataccordionheading.field--name-field-social-phrase-group-title .ui-accordion-header.ui-accordion-header-active.graysubaccordionheading.field--name-field-image-gallery-title,
.flataccordionheading.field--name-field-social-phrase-group-title .node--type-executive-biography .ui-accordion .ui-accordion-header.ui-accordion-header-active.graysubaccordionheading.field--name-field-image-gallery-title,
.node--type-executive-biography .ui-accordion .flataccordionheading.field--name-field-image-gallery-title .ui-accordion-header.ui-accordion-header-active.graysubaccordionheading.field--name-field-image-gallery-title,
.flataccordionheading.field--name-field-image-gallery-title .node--type-executive-biography .ui-accordion .ui-accordion-header.ui-accordion-header-active.graysubaccordionheading.field--name-field-image-gallery-title,
.node--type-executive-biography .ui-accordion h3.ui-accordion-header.ui-accordion-header-active.graysubSecondHeader,
.node--type-executive-biography .ui-accordion .ui-accordion-header.ui-accordion-header-active.graysubSecondHeader.field--name-field-social-phrase-group-title,
.node--type-executive-biography .ui-accordion .ui-accordion-header.ui-accordion-header-active.graysubSecondHeader.field--name-field-image-gallery-title,
.node--type-executive-biography .ui-accordion h3.ui-accordion-header.ui-accordion-header-active.graysubThirdHeader,
.node--type-executive-biography .ui-accordion .ui-accordion-header.ui-accordion-header-active.graysubThirdHeader.field--name-field-social-phrase-group-title,
.node--type-executive-biography .ui-accordion .ui-accordion-header.ui-accordion-header-active.graysubThirdHeader.field--name-field-image-gallery-title,
.node--type-executive-biography .ui-accordion h3.ui-accordion-header.ui-accordion-header-active.flatHeader,
.node--type-executive-biography .ui-accordion h3.ui-accordion-header.ui-accordion-header-active.accordion-header-secondary,
.node--type-executive-biography .ui-accordion .ui-accordion-header.ui-accordion-header-active.accordion-header-secondary.field--name-field-social-phrase-group-title,
.node--type-executive-biography .ui-accordion .ui-accordion-header.ui-accordion-header-active.accordion-header-secondary.field--name-field-image-gallery-title,
.node--type-executive-biography .ui-accordion .ui-accordion-header.ui-accordion-header-active.flatHeader.field--name-field-social-phrase-group-title,
.node--type-executive-biography .ui-accordion div.ui-accordion-header.ui-accordion-header-active.field--name-field-social-phrase-group-title.flatPlainUnderlinedHeader,
.node--type-executive-biography .ui-accordion div.ui-accordion-header.ui-accordion-header-active.field--name-field-social-phrase-group-title.flatPlainHeader,
.node--type-executive-biography .ui-accordion div.ui-accordion-header.ui-accordion-header-active.field--name-field-social-phrase-group-title.flatPlainHeaderWhite,
.node--type-executive-biography .ui-accordion .ui-accordion-header.ui-accordion-header-active.flatHeader.field--name-field-image-gallery-title,
.node--type-executive-biography .ui-accordion div.ui-accordion-header.ui-accordion-header-active.field--name-field-image-gallery-title.flatPlainUnderlinedHeader,
.node--type-executive-biography .ui-accordion div.ui-accordion-header.ui-accordion-header-active.field--name-field-image-gallery-title.flatPlainHeader,
.node--type-executive-biography .ui-accordion div.ui-accordion-header.ui-accordion-header-active.field--name-field-image-gallery-title.flatPlainHeaderWhite,
.node--type-executive-biography .ui-accordion .ui-accordion-header.ui-accordion-header-active.accordion-header,
.node--type-executive-biography .ui-accordion .ui-accordion-header.ui-accordion-header-active.field--name-field-session-subtitle,
.node--type-executive-biography .ui-accordion .accordion-header-secondary.ui-accordion-header.ui-accordion-header-active {
  background-color: transparent;
}
/* line 48, ../sass/components/_executive_biography.scss */
.node--type-executive-biography .topicFeatured > .view-content {
  width: auto;
}
/* line 51, ../sass/components/_executive_biography.scss */
.node--type-executive-biography .paragraph--type--intro-text {
  margin-top: 0;
}
/* line 55, ../sass/components/_executive_biography.scss */
.node--type-executive-biography article .ui-widget, .node--type-executive-biography article.node .ui-widget {
  margin: 0;
}
/* line 58, ../sass/components/_executive_biography.scss */
.node--type-executive-biography .publicationsContainer {
  background-color: #f4f4f4;
}
/* line 61, ../sass/components/_executive_biography.scss */
.node--type-executive-biography .publicationsContainer h2, .node--type-executive-biography .publicationsContainer .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-executive-biography .publicationsContainer h1, .node--type-executive-biography .publicationsContainer .contact-method-label {
  color: #222;
  padding-top: 1.5em;
}
/* line 65, ../sass/components/_executive_biography.scss */
.node--type-executive-biography .publicationsContainer .views-element-container {
  padding-top: 1em;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 65, ../sass/components/_executive_biography.scss */
  .node--type-executive-biography .publicationsContainer .views-element-container {
    padding-left: 0;
  }
}
/* line 72, ../sass/components/_executive_biography.scss */
.node--type-executive-biography .publicationsContainer .views-element-container .view-nhlbi-research-publications {
  overflow: hidden;
  width: -webkit-fill-available;
  width: -moz-fill-available;
  width: -ms-fill-available;
  width: -o-fill-available;
  width: fill-available;
  width: -moz-available;
  width: available;
}
/* line 78, ../sass/components/_executive_biography.scss */
.node--type-executive-biography .publicationsContainer .views-element-container .view-nhlbi-research-publications h3 a, .node--type-executive-biography .publicationsContainer .views-element-container .view-nhlbi-research-publications .field--name-field-social-phrase-group-title a, .node--type-executive-biography .publicationsContainer .views-element-container .view-nhlbi-research-publications .field--name-field-image-gallery-title a {
  text-decoration: none;
  color: #3885ca;
}
/* line 82, ../sass/components/_executive_biography.scss */
.node--type-executive-biography .publicationsContainer .views-element-container .view-nhlbi-research-publications h3 a:hover, .node--type-executive-biography .publicationsContainer .views-element-container .view-nhlbi-research-publications .field--name-field-social-phrase-group-title a:hover, .node--type-executive-biography .publicationsContainer .views-element-container .view-nhlbi-research-publications .field--name-field-image-gallery-title a:hover {
  color: #144571;
}
/* line 87, ../sass/components/_executive_biography.scss */
.node--type-executive-biography .publicationsContainer .views-element-container .view-nhlbi-research-publications a.button {
  background-color: #307484;
  border-radius: 38px;
  padding: 14px 70px;
  color: #fff;
  border: 1px solid #307484;
}
/* line 94, ../sass/components/_executive_biography.scss */
.node--type-executive-biography .publicationsContainer .views-element-container .view-nhlbi-research-publications a.button:hover {
  background-color: #0F80A7;
  border-color: #0F80A7;
}

/* line 108, ../sass/components/_executive_biography.scss */
.node--type-update.node--view-mode-executive-teaser .bannerdate, .node--type-update.node--view-mode-executive-teaser .bannerdate-dark-gray {
  border-color: #fff;
}

@media all and (min-width: 768px) {
  /* line 113, ../sass/components/_executive_biography.scss */
  .node--view-mode-executive-teaser .flexItemImage, .node--view-mode-executive-teaser .flexItemImageHalf, .node--view-mode-executive-teaser .flexItemImageTenth, .node--view-mode-executive-teaser .flexItemImageFourth, .node--view-mode-executive-teaser .flexItemImageThird, .node--view-mode-executive-teaser .flexItemImageThirdHalf, .node--view-mode-executive-teaser .hero-image {
    max-width: 50%;
  }
}
/* line 118, ../sass/components/_executive_biography.scss */
.node--view-mode-executive-teaser .field--name-field-news-mention-publication {
  display: inline;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 121, ../sass/components/_executive_biography.scss */
  .node--view-mode-executive-teaser .bodytext, .node--view-mode-executive-teaser .darkGrayBodyText, .node--view-mode-executive-teaser .foa-expiration-date {
    display: none;
  }
}

/* line 130, ../sass/components/_executive_biography.scss */
.previous-directors-container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  margin-top: 0;
  padding-top: 2em;
}
/* line 137, ../sass/components/_executive_biography.scss */
.previous-directors-container .view-header, .previous-directors-container .view-footer {
  align-self: center;
}
/* line 140, ../sass/components/_executive_biography.scss */
.previous-directors-container .view-content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  background-color: #f4f4f4;
}
/* line 147, ../sass/components/_executive_biography.scss */
.previous-directors-container .views-row {
  overflow: hidden;
  border-bottom: 8px solid transparent;
}
/* line 152, ../sass/components/_executive_biography.scss */
.previous-directors-container .views-row:hover,
.previous-directors-container .views-row.active-row {
  border-bottom: 8px solid #bf0d2e;
}
/* line 158, ../sass/components/_executive_biography.scss */
.previous-directors-container .views-row.hidden, .previous-directors-container .views-row.offPage, .previous-directors-container .previousNavigation.hidden, .previous-directors-container .nextNavigation.hidden {
  display: none;
}

/* line 163, ../sass/components/_executive_biography.scss */
.previousNavigation, .nextNavigation {
  width: 19px;
  float: left;
  margin-right: 0.5em;
  background-position: center;
  margin-top: -4.5em;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 163, ../sass/components/_executive_biography.scss */
  .previousNavigation, .nextNavigation {
    margin-top: -4em;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 163, ../sass/components/_executive_biography.scss */
  .previousNavigation, .nextNavigation {
    margin-top: -3.5em;
  }
}

/* line 177, ../sass/components/_executive_biography.scss */
.previousNavigation {
  cursor: pointer;
}

/* line 181, ../sass/components/_executive_biography.scss */
.nextNavigation {
  cursor: pointer;
}

/* line 185, ../sass/components/_executive_biography.scss */
.director-short-bioCard {
  margin-right: 1.5em;
  margin-left: 1.5em;
  padding-bottom: 2.5em;
  text-align: center;
  cursor: pointer;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 185, ../sass/components/_executive_biography.scss */
  .director-short-bioCard {
    margin-right: 1em;
    margin-left: 1em;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 185, ../sass/components/_executive_biography.scss */
  .director-short-bioCard {
    margin-right: 0.6em;
    margin-left: 0.6em;
  }
}
/* line 201, ../sass/components/_executive_biography.scss */
.director-short-bioCard .directordate {
  padding-bottom: 0.5em;
}
/* line 204, ../sass/components/_executive_biography.scss */
.director-short-bioCard .field--name-field-starting-year, .director-short-bioCard .field--name-field-ending-year {
  display: inline;
}
/* line 207, ../sass/components/_executive_biography.scss */
.director-short-bioCard .speakername {
  padding-top: 0.5em;
}
/* line 210, ../sass/components/_executive_biography.scss */
.director-short-bioCard .speakername:hover, .director-short-bioCard .speakername.active {
  color: #bf0d2e;
}

/* line 216, ../sass/components/_executive_biography.scss */
.director-short-bioCard:hover .speakername,
.director-short-bioCard.active .speakername {
  color: #bf0d2e;
}

/* line 221, ../sass/components/_executive_biography.scss */
.director-short-text-bioCard.hidden {
  display: none;
}

/* line 225, ../sass/components/_executive_biography.scss */
.previous-directors-text-container {
  padding-top: 0.5em;
  padding-bottom: 1em;
}

/* line 229, ../sass/components/_executive_biography.scss */
.twitterlink {
  padding-left: 20px;
  padding-top: 1em;
  height: 18px;
  color: #222 !important;
}

/* line 11, ../sass/components/_individual_contact.scss */
.node--type-individual-contact .field--name-field-contact-methods,
.node--type-division.node--view-mode-full .field--name-field-contact-methods,
.node--type-division.node--view-mode-subscribe .field--name-field-contact-methods,
.node--type-branch.node--view-mode-full .field--name-field-contact-methods,
.node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods,
.node--type-general.node--view-mode-full .field--name-field-contact-methods,
.node--type-general.node--view-mode-subscribe .field--name-field-contact-methods,
.node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods,
.node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods {
  margin-top: 1em;
}
/* line 15, ../sass/components/_individual_contact.scss */
.node--type-individual-contact .field--name-field-contact-methods > .field__item,
.node--type-division.node--view-mode-full .field--name-field-contact-methods > .field__item,
.node--type-division.node--view-mode-subscribe .field--name-field-contact-methods > .field__item,
.node--type-branch.node--view-mode-full .field--name-field-contact-methods > .field__item,
.node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods > .field__item,
.node--type-general.node--view-mode-full .field--name-field-contact-methods > .field__item,
.node--type-general.node--view-mode-subscribe .field--name-field-contact-methods > .field__item,
.node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods > .field__item,
.node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods > .field__item {
  background-color: #fff;
}
@media all and (min-width: 1100px) {
  /* line 15, ../sass/components/_individual_contact.scss */
  .node--type-individual-contact .field--name-field-contact-methods > .field__item,
  .node--type-division.node--view-mode-full .field--name-field-contact-methods > .field__item,
  .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods > .field__item,
  .node--type-branch.node--view-mode-full .field--name-field-contact-methods > .field__item,
  .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods > .field__item,
  .node--type-general.node--view-mode-full .field--name-field-contact-methods > .field__item,
  .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods > .field__item,
  .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods > .field__item,
  .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods > .field__item {
    width: 25%;
    padding: 1em 2em 1.5em 2em;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 15, ../sass/components/_individual_contact.scss */
  .node--type-individual-contact .field--name-field-contact-methods > .field__item,
  .node--type-division.node--view-mode-full .field--name-field-contact-methods > .field__item,
  .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods > .field__item,
  .node--type-branch.node--view-mode-full .field--name-field-contact-methods > .field__item,
  .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods > .field__item,
  .node--type-general.node--view-mode-full .field--name-field-contact-methods > .field__item,
  .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods > .field__item,
  .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods > .field__item,
  .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods > .field__item {
    width: -webkit-fill-available;
    width: -moz-fill-available;
    width: -ms-fill-available;
    width: -o-fill-available;
    width: fill-available;
    width: -moz-available;
    width: available;
    padding: 1em 2em 1.5em 2em;
    margin-right: 0;
  }
}
/* line 28, ../sass/components/_individual_contact.scss */
.node--type-individual-contact .field--name-field-contact-methods > .field__item .field--name-field-card-description,
.node--type-individual-contact .field--name-field-contact-methods > .field__item .field--name-field-description,
.node--type-division.node--view-mode-full .field--name-field-contact-methods > .field__item .field--name-field-card-description,
.node--type-division.node--view-mode-full .field--name-field-contact-methods > .field__item .field--name-field-description,
.node--type-division.node--view-mode-subscribe .field--name-field-contact-methods > .field__item .field--name-field-card-description,
.node--type-division.node--view-mode-subscribe .field--name-field-contact-methods > .field__item .field--name-field-description,
.node--type-branch.node--view-mode-full .field--name-field-contact-methods > .field__item .field--name-field-card-description,
.node--type-branch.node--view-mode-full .field--name-field-contact-methods > .field__item .field--name-field-description,
.node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods > .field__item .field--name-field-card-description,
.node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods > .field__item .field--name-field-description,
.node--type-general.node--view-mode-full .field--name-field-contact-methods > .field__item .field--name-field-card-description,
.node--type-general.node--view-mode-full .field--name-field-contact-methods > .field__item .field--name-field-description,
.node--type-general.node--view-mode-subscribe .field--name-field-contact-methods > .field__item .field--name-field-card-description,
.node--type-general.node--view-mode-subscribe .field--name-field-contact-methods > .field__item .field--name-field-description,
.node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods > .field__item .field--name-field-card-description,
.node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods > .field__item .field--name-field-description,
.node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods > .field__item .field--name-field-card-description,
.node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods > .field__item .field--name-field-description {
  padding-right: 1em;
  padding-left: 1em;
  background-color: #f1f7fb;
}
/* line 35, ../sass/components/_individual_contact.scss */
.node--type-individual-contact .field--name-field-contact-methods > .field__item:last-child,
.node--type-division.node--view-mode-full .field--name-field-contact-methods > .field__item:last-child,
.node--type-division.node--view-mode-subscribe .field--name-field-contact-methods > .field__item:last-child,
.node--type-branch.node--view-mode-full .field--name-field-contact-methods > .field__item:last-child,
.node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods > .field__item:last-child,
.node--type-general.node--view-mode-full .field--name-field-contact-methods > .field__item:last-child,
.node--type-general.node--view-mode-subscribe .field--name-field-contact-methods > .field__item:last-child,
.node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods > .field__item:last-child,
.node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods > .field__item:last-child {
  margin-right: 0;
}

/* line 42, ../sass/components/_individual_contact.scss */
.node--type-branch.node--view-mode-full .field--name-field-introduction h3 > a, .node--type-branch.node--view-mode-full .field--name-field-introduction .smaller-titled-cards .field--name-field-social-phrase-group-title > a, .node--type-branch.node--view-mode-full .field--name-field-introduction .smaller-titled-cards .field--name-field-image-gallery-title > a, .node--type-branch.node--view-mode-full .field--name-field-introduction .field--name-field-social-phrase-group-title > a, .node--type-branch.node--view-mode-full .field--name-field-introduction .field--name-field-image-gallery-title > a {
  color: #0051a8;
}
/* line 45, ../sass/components/_individual_contact.scss */
.node--type-branch.node--view-mode-full .field--name-field-introduction a:visited {
  color: #6f57B5 !important;
}

/* line 50, ../sass/components/_individual_contact.scss */
.contact-method-card > div {
  margin-top: 1em;
}

/* line 53, ../sass/components/_individual_contact.scss */
.contact-method-label {
  display: block;
  margin-top: 0;
  padding-bottom: 1em;
  padding-left: 45px;
  height: auto;
}

/* line 62, ../sass/components/_individual_contact.scss */
.news-and-events-titleblock {
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
}

/* line 70, ../sass/components/_individual_contact.scss */
.paragraph--type--contact-method.paragraph--view-mode--featured-card .contact-method-icon-fax, .paragraph--type--contact-method.paragraph--view-mode--featured-card .contact-method-icon-phone, .paragraph--type--contact-method.paragraph--view-mode--featured-card .contact-method-icon-email {
  padding-bottom: 0;
}

/* line 75, ../sass/components/_individual_contact.scss */
.contact-method-phone-and-email-container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  -o-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
}
/* line 80, ../sass/components/_individual_contact.scss */
.contact-method-phone-and-email-container .contact-method-container-email {
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
}
/* line 83, ../sass/components/_individual_contact.scss */
.contact-method-phone-and-email-container .contact-method-container-phone {
  -webkit-box-ordinal-group: 2;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
  padding-left: 1.5em;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 83, ../sass/components/_individual_contact.scss */
  .contact-method-phone-and-email-container .contact-method-container-phone {
    padding-left: 0;
    padding-top: 1em;
  }
}

/* line 93, ../sass/components/_individual_contact.scss */
.contact-method-short-label {
  display: inline-block;
  width: 45px;
}

/* line 103, ../sass/components/_individual_contact.scss */
.contact-method-icon-email {
  background-position: left 25%;
  padding-bottom: 1.1em;
}

/* line 108, ../sass/components/_individual_contact.scss */
.contact-method-icon-twitter {
  background-position: left 25%;
  padding-bottom: 1.1em;
}

/* line 113, ../sass/components/_individual_contact.scss */
.contact-method-icon-postal-mail {
  height: auto;
}

/* line 117, ../sass/components/_individual_contact.scss */
.contact-method-icon-web-form {
  background-position: left 15%;
  padding-bottom: 1.1em;
}

/* line 123, ../sass/components/_individual_contact.scss */
.contact-box {
  padding-bottom: 0.5em;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 123, ../sass/components/_individual_contact.scss */
  .contact-box {
    margin-bottom: 1em;
  }
}
/* line 129, ../sass/components/_individual_contact.scss */
.contact-box .contact-brief-description {
  display: none;
}

/* line 133, ../sass/components/_individual_contact.scss */
.contact-box > .field--name-field-contact-methods {
  padding: 0.5em 0;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 133, ../sass/components/_individual_contact.scss */
  .contact-box > .field--name-field-contact-methods {
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    -o-align-items: flex-start;
    align-items: flex-start;
  }
}
/* line 140, ../sass/components/_individual_contact.scss */
.contact-box > .field--name-field-contact-methods .contact-method-container-email {
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
  margin-right: 1em;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 140, ../sass/components/_individual_contact.scss */
  .contact-box > .field--name-field-contact-methods .contact-method-container-email {
    margin-right: 0;
  }
}
/* line 147, ../sass/components/_individual_contact.scss */
.contact-box > .field--name-field-contact-methods .contact-method-short-label.contact-method-icon-phone,
.contact-box > .field--name-field-contact-methods .contact-method-short-label.contact-method-icon-fax {
  width: 30px;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 147, ../sass/components/_individual_contact.scss */
  .contact-box > .field--name-field-contact-methods .contact-method-short-label.contact-method-icon-phone,
  .contact-box > .field--name-field-contact-methods .contact-method-short-label.contact-method-icon-fax {
    width: 45px;
  }
}
/* line 154, ../sass/components/_individual_contact.scss */
.contact-box > .field--name-field-contact-methods .contact-method-container-phone {
  -webkit-box-ordinal-group: 2;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
  color: #222;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 154, ../sass/components/_individual_contact.scss */
  .contact-box > .field--name-field-contact-methods .contact-method-container-phone {
    margin-top: 1em;
    height: 20px;
  }
}

/* line 168, ../sass/components/_individual_contact.scss */
.node--type-person.node--view-mode-short-teaser,
.node--type-person.node--view-mode-list-item,
.paragraph--type--contact-method {
  overflow: visible;
}

/* line 2, ../sass/components/_committee.scss */
.node--type-committee .field--name-field-roster {
  padding-top: 1em;
}
/* line 5, ../sass/components/_committee.scss */
.node--type-committee .field--name-field-acronym {
  font-size: 1.125rem;
  margin: 0 0 11px 0;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-weight: normal;
  font-style: normal;
  text-transform: uppercase;
  font-size: 1.125rem;
  color: #222;
  font-size: 1rem;
}
@media all and (min-width: 1440px) {
  /* line 5, ../sass/components/_committee.scss */
  .node--type-committee .field--name-field-acronym {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 5, ../sass/components/_committee.scss */
  .node--type-committee .field--name-field-acronym {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 5, ../sass/components/_committee.scss */
  .node--type-committee .field--name-field-acronym {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 5, ../sass/components/_committee.scss */
  .node--type-committee .field--name-field-acronym {
    font-size: 1rem;
  }
}
@media all and (min-width: 1440px) {
  /* line 5, ../sass/components/_committee.scss */
  .node--type-committee .field--name-field-acronym {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 5, ../sass/components/_committee.scss */
  .node--type-committee .field--name-field-acronym {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 5, ../sass/components/_committee.scss */
  .node--type-committee .field--name-field-acronym {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 5, ../sass/components/_committee.scss */
  .node--type-committee .field--name-field-acronym {
    font-size: 1rem;
  }
}
/* line 13, ../sass/components/_committee.scss */
.node--type-committee .field--name-field-card-text > .field__item {
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  -o-flex: 1;
  flex: 1;
  margin-right: 20px;
  margin-bottom: 20px;
}
@media all and (min-width: 1100px) {
  /* line 13, ../sass/components/_committee.scss */
  .node--type-committee .field--name-field-card-text > .field__item {
    max-width: 27%;
    min-width: 27%;
    flex-basis: 27%;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 13, ../sass/components/_committee.scss */
  .node--type-committee .field--name-field-card-text > .field__item {
    max-width: 41%;
    min-width: 41%;
    flex-basis: 41%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 13, ../sass/components/_committee.scss */
  .node--type-committee .field--name-field-card-text > .field__item {
    max-width: none;
    min-width: inherit;
    flex-basis: auto;
  }
}
/* line 37, ../sass/components/_committee.scss */
.node--type-committee .general-accordion.ui-accordion .ui-accordion-content.ui-widget-content,
.node--type-committee .primary-accordion.ui-accordion .ui-accordion-content.ui-widget-content,
.node--type-committee .secondary-accordion.ui-accordion .ui-accordion-content.ui-widget-content {
  padding: 20px 0 0 20px;
}

/* line 7, ../sass/components/_division.scss */
.node--type-division.node--view-mode-full .rtTitleClassification .readMoreContainer a.readMoreLink, .node--type-division.node--view-mode-full .rtTitleClassification .readMoreContainer a.readLessLink,
.node--type-division.node--view-mode-subscribe .rtTitleClassification .readMoreContainer a.readMoreLink,
.node--type-division.node--view-mode-subscribe .rtTitleClassification .readMoreContainer a.readLessLink,
.node--type-branch.node--view-mode-full .rtTitleClassification .readMoreContainer a.readMoreLink,
.node--type-branch.node--view-mode-full .rtTitleClassification .readMoreContainer a.readLessLink,
.node--type-branch.node--view-mode-subscribe .rtTitleClassification .readMoreContainer a.readMoreLink,
.node--type-branch.node--view-mode-subscribe .rtTitleClassification .readMoreContainer a.readLessLink {
  margin-left: 0;
  margin-right: 0;
}
/* line 13, ../sass/components/_division.scss */
.node--type-division.node--view-mode-full .field--name-field-programs > .field__item,
.node--type-division.node--view-mode-subscribe .field--name-field-programs > .field__item,
.node--type-branch.node--view-mode-full .field--name-field-programs > .field__item,
.node--type-branch.node--view-mode-subscribe .field--name-field-programs > .field__item {
  padding-top: 1.5em;
  padding-bottom: 1.5em;
}
/* line 14, ../sass/components/_division.scss */
.node--type-division.node--view-mode-full .field--name-field-programs > .field__item h3 > a, .node--type-division.node--view-mode-full .field--name-field-programs > .field__item .smaller-titled-cards .field--name-field-social-phrase-group-title > a, .node--type-division.node--view-mode-full .field--name-field-programs > .field__item .smaller-titled-cards .field--name-field-image-gallery-title > a, .node--type-division.node--view-mode-full .field--name-field-programs > .field__item .field--name-field-social-phrase-group-title > a, .node--type-division.node--view-mode-full .field--name-field-programs > .field__item .field--name-field-image-gallery-title > a, .node--type-division.node--view-mode-full .field--name-field-programs > .field__item h3 > a:link, .node--type-division.node--view-mode-full .field--name-field-programs > .field__item .smaller-titled-cards .field--name-field-social-phrase-group-title > a:link, .node--type-division.node--view-mode-full .field--name-field-programs > .field__item .smaller-titled-cards .field--name-field-image-gallery-title > a:link, .node--type-division.node--view-mode-full .field--name-field-programs > .field__item .field--name-field-social-phrase-group-title > a:link, .node--type-division.node--view-mode-full .field--name-field-programs > .field__item .field--name-field-image-gallery-title > a:link,
.node--type-division.node--view-mode-subscribe .field--name-field-programs > .field__item h3 > a,
.node--type-division.node--view-mode-subscribe .field--name-field-programs > .field__item .smaller-titled-cards .field--name-field-social-phrase-group-title > a,
.node--type-division.node--view-mode-subscribe .field--name-field-programs > .field__item .smaller-titled-cards .field--name-field-image-gallery-title > a,
.node--type-division.node--view-mode-subscribe .field--name-field-programs > .field__item .field--name-field-social-phrase-group-title > a,
.node--type-division.node--view-mode-subscribe .field--name-field-programs > .field__item .field--name-field-image-gallery-title > a,
.node--type-division.node--view-mode-subscribe .field--name-field-programs > .field__item h3 > a:link,
.node--type-division.node--view-mode-subscribe .field--name-field-programs > .field__item .smaller-titled-cards .field--name-field-social-phrase-group-title > a:link,
.node--type-division.node--view-mode-subscribe .field--name-field-programs > .field__item .smaller-titled-cards .field--name-field-image-gallery-title > a:link,
.node--type-division.node--view-mode-subscribe .field--name-field-programs > .field__item .field--name-field-social-phrase-group-title > a:link,
.node--type-division.node--view-mode-subscribe .field--name-field-programs > .field__item .field--name-field-image-gallery-title > a:link,
.node--type-branch.node--view-mode-full .field--name-field-programs > .field__item h3 > a,
.node--type-branch.node--view-mode-full .field--name-field-programs > .field__item .smaller-titled-cards .field--name-field-social-phrase-group-title > a,
.node--type-branch.node--view-mode-full .field--name-field-programs > .field__item .smaller-titled-cards .field--name-field-image-gallery-title > a,
.node--type-branch.node--view-mode-full .field--name-field-programs > .field__item .field--name-field-social-phrase-group-title > a,
.node--type-branch.node--view-mode-full .field--name-field-programs > .field__item .field--name-field-image-gallery-title > a,
.node--type-branch.node--view-mode-full .field--name-field-programs > .field__item h3 > a:link,
.node--type-branch.node--view-mode-full .field--name-field-programs > .field__item .smaller-titled-cards .field--name-field-social-phrase-group-title > a:link,
.node--type-branch.node--view-mode-full .field--name-field-programs > .field__item .smaller-titled-cards .field--name-field-image-gallery-title > a:link,
.node--type-branch.node--view-mode-full .field--name-field-programs > .field__item .field--name-field-social-phrase-group-title > a:link,
.node--type-branch.node--view-mode-full .field--name-field-programs > .field__item .field--name-field-image-gallery-title > a:link,
.node--type-branch.node--view-mode-subscribe .field--name-field-programs > .field__item h3 > a,
.node--type-branch.node--view-mode-subscribe .field--name-field-programs > .field__item .smaller-titled-cards .field--name-field-social-phrase-group-title > a,
.node--type-branch.node--view-mode-subscribe .field--name-field-programs > .field__item .smaller-titled-cards .field--name-field-image-gallery-title > a,
.node--type-branch.node--view-mode-subscribe .field--name-field-programs > .field__item .field--name-field-social-phrase-group-title > a,
.node--type-branch.node--view-mode-subscribe .field--name-field-programs > .field__item .field--name-field-image-gallery-title > a,
.node--type-branch.node--view-mode-subscribe .field--name-field-programs > .field__item h3 > a:link,
.node--type-branch.node--view-mode-subscribe .field--name-field-programs > .field__item .smaller-titled-cards .field--name-field-social-phrase-group-title > a:link,
.node--type-branch.node--view-mode-subscribe .field--name-field-programs > .field__item .smaller-titled-cards .field--name-field-image-gallery-title > a:link,
.node--type-branch.node--view-mode-subscribe .field--name-field-programs > .field__item .field--name-field-social-phrase-group-title > a:link,
.node--type-branch.node--view-mode-subscribe .field--name-field-programs > .field__item .field--name-field-image-gallery-title > a:link {
  color: #0051a8;
  display: inline-block;
}
/* line 18, ../sass/components/_division.scss */
.node--type-division.node--view-mode-full .field--name-field-programs > .field__item h3 > a:visited, .node--type-division.node--view-mode-full .field--name-field-programs > .field__item .smaller-titled-cards .field--name-field-social-phrase-group-title > a:visited, .node--type-division.node--view-mode-full .field--name-field-programs > .field__item .smaller-titled-cards .field--name-field-image-gallery-title > a:visited, .node--type-division.node--view-mode-full .field--name-field-programs > .field__item .field--name-field-social-phrase-group-title > a:visited, .node--type-division.node--view-mode-full .field--name-field-programs > .field__item .field--name-field-image-gallery-title > a:visited,
.node--type-division.node--view-mode-subscribe .field--name-field-programs > .field__item h3 > a:visited,
.node--type-division.node--view-mode-subscribe .field--name-field-programs > .field__item .smaller-titled-cards .field--name-field-social-phrase-group-title > a:visited,
.node--type-division.node--view-mode-subscribe .field--name-field-programs > .field__item .smaller-titled-cards .field--name-field-image-gallery-title > a:visited,
.node--type-division.node--view-mode-subscribe .field--name-field-programs > .field__item .field--name-field-social-phrase-group-title > a:visited,
.node--type-division.node--view-mode-subscribe .field--name-field-programs > .field__item .field--name-field-image-gallery-title > a:visited,
.node--type-branch.node--view-mode-full .field--name-field-programs > .field__item h3 > a:visited,
.node--type-branch.node--view-mode-full .field--name-field-programs > .field__item .smaller-titled-cards .field--name-field-social-phrase-group-title > a:visited,
.node--type-branch.node--view-mode-full .field--name-field-programs > .field__item .smaller-titled-cards .field--name-field-image-gallery-title > a:visited,
.node--type-branch.node--view-mode-full .field--name-field-programs > .field__item .field--name-field-social-phrase-group-title > a:visited,
.node--type-branch.node--view-mode-full .field--name-field-programs > .field__item .field--name-field-image-gallery-title > a:visited,
.node--type-branch.node--view-mode-subscribe .field--name-field-programs > .field__item h3 > a:visited,
.node--type-branch.node--view-mode-subscribe .field--name-field-programs > .field__item .smaller-titled-cards .field--name-field-social-phrase-group-title > a:visited,
.node--type-branch.node--view-mode-subscribe .field--name-field-programs > .field__item .smaller-titled-cards .field--name-field-image-gallery-title > a:visited,
.node--type-branch.node--view-mode-subscribe .field--name-field-programs > .field__item .field--name-field-social-phrase-group-title > a:visited,
.node--type-branch.node--view-mode-subscribe .field--name-field-programs > .field__item .field--name-field-image-gallery-title > a:visited {
  color: #6f57B5;
}
/* line 24, ../sass/components/_division.scss */
.node--type-division.node--view-mode-full .field--name-field-programs > .field__item .supplemental-accordion,
.node--type-division.node--view-mode-subscribe .field--name-field-programs > .field__item .supplemental-accordion,
.node--type-branch.node--view-mode-full .field--name-field-programs > .field__item .supplemental-accordion,
.node--type-branch.node--view-mode-subscribe .field--name-field-programs > .field__item .supplemental-accordion {
  padding-bottom: 2em;
}
/* line 28, ../sass/components/_division.scss */
.node--type-division.node--view-mode-full .field--name-field-programs > .field__item:last-child,
.node--type-division.node--view-mode-subscribe .field--name-field-programs > .field__item:last-child,
.node--type-branch.node--view-mode-full .field--name-field-programs > .field__item:last-child,
.node--type-branch.node--view-mode-subscribe .field--name-field-programs > .field__item:last-child {
  border-bottom: none;
}
/* line 31, ../sass/components/_division.scss */
.node--type-division.node--view-mode-full .field--name-field-programs > .field__item > h3 > a, .node--type-division.node--view-mode-full .field--name-field-programs > .field__item > .field--name-field-social-phrase-group-title > a, .node--type-division.node--view-mode-full .field--name-field-programs > .field__item > .field--name-field-image-gallery-title > a,
.node--type-division.node--view-mode-subscribe .field--name-field-programs > .field__item > h3 > a,
.node--type-division.node--view-mode-subscribe .field--name-field-programs > .field__item > .field--name-field-social-phrase-group-title > a,
.node--type-division.node--view-mode-subscribe .field--name-field-programs > .field__item > .field--name-field-image-gallery-title > a,
.node--type-branch.node--view-mode-full .field--name-field-programs > .field__item > h3 > a,
.node--type-branch.node--view-mode-full .field--name-field-programs > .field__item > .field--name-field-social-phrase-group-title > a,
.node--type-branch.node--view-mode-full .field--name-field-programs > .field__item > .field--name-field-image-gallery-title > a,
.node--type-branch.node--view-mode-subscribe .field--name-field-programs > .field__item > h3 > a,
.node--type-branch.node--view-mode-subscribe .field--name-field-programs > .field__item > .field--name-field-social-phrase-group-title > a,
.node--type-branch.node--view-mode-subscribe .field--name-field-programs > .field__item > .field--name-field-image-gallery-title > a {
  color: #222 !important;
}
/* line 36, ../sass/components/_division.scss */
.node--type-division.node--view-mode-full .related-scientific-focus-areas-container h2, .node--type-division.node--view-mode-full .related-scientific-focus-areas-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-division.node--view-mode-full .related-scientific-focus-areas-container h1, .node--type-division.node--view-mode-full .related-scientific-focus-areas-container .contact-method-label,
.node--type-division.node--view-mode-subscribe .related-scientific-focus-areas-container h2,
.node--type-division.node--view-mode-subscribe .related-scientific-focus-areas-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-division.node--view-mode-subscribe .related-scientific-focus-areas-container h1,
.node--type-division.node--view-mode-subscribe .related-scientific-focus-areas-container .contact-method-label,
.node--type-branch.node--view-mode-full .related-scientific-focus-areas-container h2,
.node--type-branch.node--view-mode-full .related-scientific-focus-areas-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-branch.node--view-mode-full .related-scientific-focus-areas-container h1,
.node--type-branch.node--view-mode-full .related-scientific-focus-areas-container .contact-method-label,
.node--type-branch.node--view-mode-subscribe .related-scientific-focus-areas-container h2,
.node--type-branch.node--view-mode-subscribe .related-scientific-focus-areas-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-branch.node--view-mode-subscribe .related-scientific-focus-areas-container h1,
.node--type-branch.node--view-mode-subscribe .related-scientific-focus-areas-container .contact-method-label {
  padding-bottom: 0.25em;
}
/* line 40, ../sass/components/_division.scss */
.node--type-division.node--view-mode-full .related-scientific-focus-areas-container h2.blue-posttitlethumb, .node--type-division.node--view-mode-full .related-scientific-focus-areas-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.blue-posttitlethumb, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-division.node--view-mode-full .related-scientific-focus-areas-container h1.blue-posttitlethumb, .node--type-division.node--view-mode-full .related-scientific-focus-areas-container .blue-posttitlethumb.contact-method-label,
.node--type-division.node--view-mode-full .related-scientific-focus-areas-container h2.posttitlethumb,
.node--type-division.node--view-mode-full .related-scientific-focus-areas-container h2.blue-posttitlethumb,
.node--type-division.node--view-mode-full .related-scientific-focus-areas-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.blue-posttitlethumb,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-division.node--view-mode-full .related-scientific-focus-areas-container h1.blue-posttitlethumb,
.node--type-division.node--view-mode-full .related-scientific-focus-areas-container .blue-posttitlethumb.contact-method-label,
.node--type-division.node--view-mode-full .related-scientific-focus-areas-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.posttitlethumb,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-division.node--view-mode-full .related-scientific-focus-areas-container h1.posttitlethumb,
.node--type-division.node--view-mode-full .related-scientific-focus-areas-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .objective-list-container h1.objective-side-text,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .objective-list-container .node--type-division.node--view-mode-full .related-scientific-focus-areas-container h1.objective-side-text,
.node--type-division.node--view-mode-full .related-scientific-focus-areas-container .objective-list-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.objective-side-text,
.objective-list-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-division.node--view-mode-full .related-scientific-focus-areas-container h1.objective-side-text,
.node--type-division.node--view-mode-full .related-scientific-focus-areas-container .posttitlethumb.contact-method-label,
.node--type-division.node--view-mode-full .related-scientific-focus-areas-container .objective-list-container .contact-method-label.objective-side-text,
.objective-list-container .node--type-division.node--view-mode-full .related-scientific-focus-areas-container .contact-method-label.objective-side-text,
.node--type-division.node--view-mode-full .related-scientific-focus-areas-container .objective-list-container h2.objective-side-text,
.objective-list-container .node--type-division.node--view-mode-full .related-scientific-focus-areas-container h2.objective-side-text,
.node--type-division.node--view-mode-full .related-scientific-focus-areas-container h2.objective-side-text,
.node--type-division.node--view-mode-full .related-scientific-focus-areas-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.objective-side-text,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-division.node--view-mode-full .related-scientific-focus-areas-container h1.objective-side-text,
.node--type-division.node--view-mode-full .related-scientific-focus-areas-container .objective-side-text.contact-method-label,
.node--type-division.node--view-mode-full .related-scientific-focus-areas-container .posttitlethumb.contact-method-label,
.node--type-division.node--view-mode-full .related-scientific-focus-areas-container .contact-method-label.blue-posttitlethumb,
.node--type-division.node--view-mode-full .related-scientific-focus-areas-container .objective-list-container .contact-method-label.objective-side-text,
.objective-list-container .node--type-division.node--view-mode-full .related-scientific-focus-areas-container .contact-method-label.objective-side-text,
.node--type-division.node--view-mode-full .related-scientific-focus-areas-container .blue-posttitlethumb.contact-method-label,
.node--type-division.node--view-mode-full .related-scientific-focus-areas-container .objective-side-text.contact-method-label,
.node--type-division.node--view-mode-subscribe .related-scientific-focus-areas-container h2.blue-posttitlethumb,
.node--type-division.node--view-mode-subscribe .related-scientific-focus-areas-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.blue-posttitlethumb,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-division.node--view-mode-subscribe .related-scientific-focus-areas-container h1.blue-posttitlethumb,
.node--type-division.node--view-mode-subscribe .related-scientific-focus-areas-container .blue-posttitlethumb.contact-method-label,
.node--type-division.node--view-mode-subscribe .related-scientific-focus-areas-container h2.posttitlethumb,
.node--type-division.node--view-mode-subscribe .related-scientific-focus-areas-container h2.blue-posttitlethumb,
.node--type-division.node--view-mode-subscribe .related-scientific-focus-areas-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.blue-posttitlethumb,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-division.node--view-mode-subscribe .related-scientific-focus-areas-container h1.blue-posttitlethumb,
.node--type-division.node--view-mode-subscribe .related-scientific-focus-areas-container .blue-posttitlethumb.contact-method-label,
.node--type-division.node--view-mode-subscribe .related-scientific-focus-areas-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.posttitlethumb,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-division.node--view-mode-subscribe .related-scientific-focus-areas-container h1.posttitlethumb,
.node--type-division.node--view-mode-subscribe .related-scientific-focus-areas-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .objective-list-container h1.objective-side-text,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .objective-list-container .node--type-division.node--view-mode-subscribe .related-scientific-focus-areas-container h1.objective-side-text,
.node--type-division.node--view-mode-subscribe .related-scientific-focus-areas-container .objective-list-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.objective-side-text,
.objective-list-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-division.node--view-mode-subscribe .related-scientific-focus-areas-container h1.objective-side-text,
.node--type-division.node--view-mode-subscribe .related-scientific-focus-areas-container .posttitlethumb.contact-method-label,
.node--type-division.node--view-mode-subscribe .related-scientific-focus-areas-container .objective-list-container .contact-method-label.objective-side-text,
.objective-list-container .node--type-division.node--view-mode-subscribe .related-scientific-focus-areas-container .contact-method-label.objective-side-text,
.node--type-division.node--view-mode-subscribe .related-scientific-focus-areas-container .objective-list-container h2.objective-side-text,
.objective-list-container .node--type-division.node--view-mode-subscribe .related-scientific-focus-areas-container h2.objective-side-text,
.node--type-division.node--view-mode-subscribe .related-scientific-focus-areas-container h2.objective-side-text,
.node--type-division.node--view-mode-subscribe .related-scientific-focus-areas-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.objective-side-text,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-division.node--view-mode-subscribe .related-scientific-focus-areas-container h1.objective-side-text,
.node--type-division.node--view-mode-subscribe .related-scientific-focus-areas-container .objective-side-text.contact-method-label,
.node--type-division.node--view-mode-subscribe .related-scientific-focus-areas-container .posttitlethumb.contact-method-label,
.node--type-division.node--view-mode-subscribe .related-scientific-focus-areas-container .contact-method-label.blue-posttitlethumb,
.node--type-division.node--view-mode-subscribe .related-scientific-focus-areas-container .objective-list-container .contact-method-label.objective-side-text,
.objective-list-container .node--type-division.node--view-mode-subscribe .related-scientific-focus-areas-container .contact-method-label.objective-side-text,
.node--type-division.node--view-mode-subscribe .related-scientific-focus-areas-container .blue-posttitlethumb.contact-method-label,
.node--type-division.node--view-mode-subscribe .related-scientific-focus-areas-container .objective-side-text.contact-method-label,
.node--type-branch.node--view-mode-full .related-scientific-focus-areas-container h2.blue-posttitlethumb,
.node--type-branch.node--view-mode-full .related-scientific-focus-areas-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.blue-posttitlethumb,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-branch.node--view-mode-full .related-scientific-focus-areas-container h1.blue-posttitlethumb,
.node--type-branch.node--view-mode-full .related-scientific-focus-areas-container .blue-posttitlethumb.contact-method-label,
.node--type-branch.node--view-mode-full .related-scientific-focus-areas-container h2.posttitlethumb,
.node--type-branch.node--view-mode-full .related-scientific-focus-areas-container h2.blue-posttitlethumb,
.node--type-branch.node--view-mode-full .related-scientific-focus-areas-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.blue-posttitlethumb,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-branch.node--view-mode-full .related-scientific-focus-areas-container h1.blue-posttitlethumb,
.node--type-branch.node--view-mode-full .related-scientific-focus-areas-container .blue-posttitlethumb.contact-method-label,
.node--type-branch.node--view-mode-full .related-scientific-focus-areas-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.posttitlethumb,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-branch.node--view-mode-full .related-scientific-focus-areas-container h1.posttitlethumb,
.node--type-branch.node--view-mode-full .related-scientific-focus-areas-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .objective-list-container h1.objective-side-text,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .objective-list-container .node--type-branch.node--view-mode-full .related-scientific-focus-areas-container h1.objective-side-text,
.node--type-branch.node--view-mode-full .related-scientific-focus-areas-container .objective-list-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.objective-side-text,
.objective-list-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-branch.node--view-mode-full .related-scientific-focus-areas-container h1.objective-side-text,
.node--type-branch.node--view-mode-full .related-scientific-focus-areas-container .posttitlethumb.contact-method-label,
.node--type-branch.node--view-mode-full .related-scientific-focus-areas-container .objective-list-container .contact-method-label.objective-side-text,
.objective-list-container .node--type-branch.node--view-mode-full .related-scientific-focus-areas-container .contact-method-label.objective-side-text,
.node--type-branch.node--view-mode-full .related-scientific-focus-areas-container .objective-list-container h2.objective-side-text,
.objective-list-container .node--type-branch.node--view-mode-full .related-scientific-focus-areas-container h2.objective-side-text,
.node--type-branch.node--view-mode-full .related-scientific-focus-areas-container h2.objective-side-text,
.node--type-branch.node--view-mode-full .related-scientific-focus-areas-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.objective-side-text,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-branch.node--view-mode-full .related-scientific-focus-areas-container h1.objective-side-text,
.node--type-branch.node--view-mode-full .related-scientific-focus-areas-container .objective-side-text.contact-method-label,
.node--type-branch.node--view-mode-full .related-scientific-focus-areas-container .posttitlethumb.contact-method-label,
.node--type-branch.node--view-mode-full .related-scientific-focus-areas-container .contact-method-label.blue-posttitlethumb,
.node--type-branch.node--view-mode-full .related-scientific-focus-areas-container .objective-list-container .contact-method-label.objective-side-text,
.objective-list-container .node--type-branch.node--view-mode-full .related-scientific-focus-areas-container .contact-method-label.objective-side-text,
.node--type-branch.node--view-mode-full .related-scientific-focus-areas-container .blue-posttitlethumb.contact-method-label,
.node--type-branch.node--view-mode-full .related-scientific-focus-areas-container .objective-side-text.contact-method-label,
.node--type-branch.node--view-mode-subscribe .related-scientific-focus-areas-container h2.blue-posttitlethumb,
.node--type-branch.node--view-mode-subscribe .related-scientific-focus-areas-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.blue-posttitlethumb,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-branch.node--view-mode-subscribe .related-scientific-focus-areas-container h1.blue-posttitlethumb,
.node--type-branch.node--view-mode-subscribe .related-scientific-focus-areas-container .blue-posttitlethumb.contact-method-label,
.node--type-branch.node--view-mode-subscribe .related-scientific-focus-areas-container h2.posttitlethumb,
.node--type-branch.node--view-mode-subscribe .related-scientific-focus-areas-container h2.blue-posttitlethumb,
.node--type-branch.node--view-mode-subscribe .related-scientific-focus-areas-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.blue-posttitlethumb,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-branch.node--view-mode-subscribe .related-scientific-focus-areas-container h1.blue-posttitlethumb,
.node--type-branch.node--view-mode-subscribe .related-scientific-focus-areas-container .blue-posttitlethumb.contact-method-label,
.node--type-branch.node--view-mode-subscribe .related-scientific-focus-areas-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.posttitlethumb,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-branch.node--view-mode-subscribe .related-scientific-focus-areas-container h1.posttitlethumb,
.node--type-branch.node--view-mode-subscribe .related-scientific-focus-areas-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .objective-list-container h1.objective-side-text,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .objective-list-container .node--type-branch.node--view-mode-subscribe .related-scientific-focus-areas-container h1.objective-side-text,
.node--type-branch.node--view-mode-subscribe .related-scientific-focus-areas-container .objective-list-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.objective-side-text,
.objective-list-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-branch.node--view-mode-subscribe .related-scientific-focus-areas-container h1.objective-side-text,
.node--type-branch.node--view-mode-subscribe .related-scientific-focus-areas-container .posttitlethumb.contact-method-label,
.node--type-branch.node--view-mode-subscribe .related-scientific-focus-areas-container .objective-list-container .contact-method-label.objective-side-text,
.objective-list-container .node--type-branch.node--view-mode-subscribe .related-scientific-focus-areas-container .contact-method-label.objective-side-text,
.node--type-branch.node--view-mode-subscribe .related-scientific-focus-areas-container .objective-list-container h2.objective-side-text,
.objective-list-container .node--type-branch.node--view-mode-subscribe .related-scientific-focus-areas-container h2.objective-side-text,
.node--type-branch.node--view-mode-subscribe .related-scientific-focus-areas-container h2.objective-side-text,
.node--type-branch.node--view-mode-subscribe .related-scientific-focus-areas-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.objective-side-text,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-branch.node--view-mode-subscribe .related-scientific-focus-areas-container h1.objective-side-text,
.node--type-branch.node--view-mode-subscribe .related-scientific-focus-areas-container .objective-side-text.contact-method-label,
.node--type-branch.node--view-mode-subscribe .related-scientific-focus-areas-container .posttitlethumb.contact-method-label,
.node--type-branch.node--view-mode-subscribe .related-scientific-focus-areas-container .contact-method-label.blue-posttitlethumb,
.node--type-branch.node--view-mode-subscribe .related-scientific-focus-areas-container .objective-list-container .contact-method-label.objective-side-text,
.objective-list-container .node--type-branch.node--view-mode-subscribe .related-scientific-focus-areas-container .contact-method-label.objective-side-text,
.node--type-branch.node--view-mode-subscribe .related-scientific-focus-areas-container .blue-posttitlethumb.contact-method-label,
.node--type-branch.node--view-mode-subscribe .related-scientific-focus-areas-container .objective-side-text.contact-method-label {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
/* line 50, ../sass/components/_division.scss */
.node--type-division.node--view-mode-full .node--type-job.node--view-mode-teaser,
.node--type-division.node--view-mode-subscribe .node--type-job.node--view-mode-teaser,
.node--type-branch.node--view-mode-full .node--type-job.node--view-mode-teaser,
.node--type-branch.node--view-mode-subscribe .node--type-job.node--view-mode-teaser {
  border: 3px solid #d7d7d7;
  margin-bottom: 1em;
}
/* line 53, ../sass/components/_division.scss */
.node--type-division.node--view-mode-full .node--type-job.node--view-mode-teaser .flexItemText,
.node--type-division.node--view-mode-subscribe .node--type-job.node--view-mode-teaser .flexItemText,
.node--type-branch.node--view-mode-full .node--type-job.node--view-mode-teaser .flexItemText,
.node--type-branch.node--view-mode-subscribe .node--type-job.node--view-mode-teaser .flexItemText {
  padding-top: 1.5em;
}

/* line 60, ../sass/components/_division.scss */
.node--type-division .onThisPage a {
  display: inline-block;
}
/* line 65, ../sass/components/_division.scss */
.node--type-division h1 {
  margin: 0 0 0.25em;
}
/* line 68, ../sass/components/_division.scss */
.node--type-division .paragraph--type--intro-text, .node--type-division h2#jobs, .node--type-division .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1#jobs, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-division h1#jobs, .node--type-division #jobs.contact-method-label, .node--type-division .full-leadership-container h2, .node--type-division .full-leadership-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-division .full-leadership-container h1, .node--type-division .full-leadership-container .contact-method-label {
  margin-top: 0;
}
/* line 71, ../sass/components/_division.scss */
.node--type-division h2#programs, .node--type-division .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1#programs, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-division h1#programs, .node--type-division #programs.contact-method-label {
  margin: 2.5em 0 0;
}
/* line 74, ../sass/components/_division.scss */
.node--type-division #related_sfas {
  margin-top: 0;
  padding-bottom: 0.25em;
}
/* line 78, ../sass/components/_division.scss */
.node--type-division .leadership-bioCard h3, .node--type-division .leadership-bioCard .field--name-field-social-phrase-group-title, .node--type-division .leadership-bioCard .field--name-field-image-gallery-title {
  margin: 0;
}

/* line 82, ../sass/components/_division.scss */
.full-leadership-container {
  padding: 2.5em;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 82, ../sass/components/_division.scss */
  .full-leadership-container {
    padding: 1.5em;
  }
}

@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 88, ../sass/components/_division.scss */
  .leadership-container {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
  }
}
/* line 93, ../sass/components/_division.scss */
.leadership-container .leadership-director-container,
.leadership-container .leadership-deputy-director-container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-grow: 1;
  -o-flex-grow: 1;
  flex-grow: 1;
}
/* line 99, ../sass/components/_division.scss */
.leadership-container .leadership-director-container {
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
  margin-right: 2.5rem;
  padding-bottom: 0.875rem;
}
@media all and (min-width: 1100px) {
  /* line 99, ../sass/components/_division.scss */
  .leadership-container .leadership-director-container {
    min-width: 40%;
  }
}
/* line 107, ../sass/components/_division.scss */
.leadership-container .leadership-director-container .field--name-field-director {
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-grow: 1;
  -o-flex-grow: 1;
  flex-grow: 1;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  -o-align-items: stretch;
  align-items: stretch;
}
/* line 112, ../sass/components/_division.scss */
.leadership-container .leadership-deputy-director-container {
  -webkit-box-ordinal-group: 2;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  -o-align-items: stretch;
  align-items: stretch;
}
@media all and (min-width: 1100px) {
  /* line 112, ../sass/components/_division.scss */
  .leadership-container .leadership-deputy-director-container {
    border-left: 1px solid #979797;
    margin-left: 2.5rem;
    min-width: 55%;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 112, ../sass/components/_division.scss */
  .leadership-container .leadership-deputy-director-container {
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    -o-align-items: flex-start;
    align-items: flex-start;
    margin-left: 0;
    border-top: 1px solid #979797;
    padding-top: 1em;
    border-left: none;
  }
}
/* line 130, ../sass/components/_division.scss */
.leadership-container .leadership-deputy-director-container .node--view-mode-short-teaser .flexItemText {
  padding: 0;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 130, ../sass/components/_division.scss */
  .leadership-container .leadership-deputy-director-container .node--view-mode-short-teaser .flexItemText {
    padding-left: 0;
  }
}
/* line 137, ../sass/components/_division.scss */
.leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership {
  width: 100%;
  overflow: visible;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -o-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
}
@media all and (min-width: 1100px) {
  /* line 137, ../sass/components/_division.scss */
  .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership {
    margin-left: 2em;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 137, ../sass/components/_division.scss */
  .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership {
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    -o-align-items: flex-start;
    align-items: flex-start;
    margin-left: 0;
  }
}
/* line 155, ../sass/components/_division.scss */
.leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership > .field__item {
  padding-bottom: 1em;
  max-width: 33%;
  -webkit-flex-basis: 33%;
  -moz-flex-basis: 33%;
  -ms-flex-basis: 33%;
  -o-flex-basis: 33%;
  flex-basis: 33%;
}
@media all and (min-width: 1440px) {
  /* line 155, ../sass/components/_division.scss */
  .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership > .field__item {
    max-width: 33%;
    -webkit-flex-basis: 33%;
    -moz-flex-basis: 33%;
    -ms-flex-basis: 33%;
    -o-flex-basis: 33%;
    flex-basis: 33%;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 155, ../sass/components/_division.scss */
  .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership > .field__item {
    max-width: 38%;
    -webkit-flex-basis: 38%;
    -moz-flex-basis: 38%;
    -ms-flex-basis: 38%;
    -o-flex-basis: 38%;
    flex-basis: 38%;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 155, ../sass/components/_division.scss */
  .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership > .field__item {
    max-width: 100%;
    -webkit-flex-basis: 45%;
    -moz-flex-basis: 45%;
    -ms-flex-basis: 45%;
    -o-flex-basis: 45%;
    flex-basis: 45%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 155, ../sass/components/_division.scss */
  .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership > .field__item {
    max-width: none;
    -webkit-flex-basis: auto;
    -moz-flex-basis: auto;
    -ms-flex-basis: auto;
    -o-flex-basis: auto;
    flex-basis: auto;
  }
}

/* line 180, ../sass/components/_division.scss */
.branch-leadership-container {
  overflow: visible;
  padding-top: 0;
  padding-bottom: 0;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 180, ../sass/components/_division.scss */
  .branch-leadership-container {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    padding-bottom: 1em;
  }
}
/* line 189, ../sass/components/_division.scss */
.branch-leadership-container .leadership-director-container,
.branch-leadership-container .leadership-deputy-director-container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
/* line 193, ../sass/components/_division.scss */
.branch-leadership-container .leadership-director-container .node--view-mode-short-teaser .flexItemText,
.branch-leadership-container .leadership-deputy-director-container .node--view-mode-short-teaser .flexItemText {
  padding: 0;
}
/* line 199, ../sass/components/_division.scss */
.branch-leadership-container .leadership-director-container {
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
  margin-right: 2.5rem;
  padding-bottom: 0.875rem;
}
@media all and (min-width: 768px) {
  /* line 199, ../sass/components/_division.scss */
  .branch-leadership-container .leadership-director-container {
    min-width: 40%;
  }
}
/* line 207, ../sass/components/_division.scss */
.branch-leadership-container .leadership-director-container h3, .branch-leadership-container .leadership-director-container .field--name-field-social-phrase-group-title, .branch-leadership-container .leadership-director-container .field--name-field-image-gallery-title {
  margin: 0;
}
/* line 212, ../sass/components/_division.scss */
.branch-leadership-container .leadership-director-container .flexItemText h2, .branch-leadership-container .leadership-director-container .flexItemText .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .branch-leadership-container .leadership-director-container .flexItemText h1, .branch-leadership-container .leadership-director-container .flexItemText .contact-method-label {
  font-size: 1.375rem;
  margin: 0 0 11px 0;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-weight: bold;
  font-style: normal;
  color: #222;
  font-size: 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
  margin: 0;
}
@media all and (min-width: 1440px) {
  /* line 212, ../sass/components/_division.scss */
  .branch-leadership-container .leadership-director-container .flexItemText h2, .branch-leadership-container .leadership-director-container .flexItemText .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .branch-leadership-container .leadership-director-container .flexItemText h1, .branch-leadership-container .leadership-director-container .flexItemText .contact-method-label {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 212, ../sass/components/_division.scss */
  .branch-leadership-container .leadership-director-container .flexItemText h2, .branch-leadership-container .leadership-director-container .flexItemText .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .branch-leadership-container .leadership-director-container .flexItemText h1, .branch-leadership-container .leadership-director-container .flexItemText .contact-method-label {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 212, ../sass/components/_division.scss */
  .branch-leadership-container .leadership-director-container .flexItemText h2, .branch-leadership-container .leadership-director-container .flexItemText .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .branch-leadership-container .leadership-director-container .flexItemText h1, .branch-leadership-container .leadership-director-container .flexItemText .contact-method-label {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 212, ../sass/components/_division.scss */
  .branch-leadership-container .leadership-director-container .flexItemText h2, .branch-leadership-container .leadership-director-container .flexItemText .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .branch-leadership-container .leadership-director-container .flexItemText h1, .branch-leadership-container .leadership-director-container .flexItemText .contact-method-label {
    font-size: 1rem;
  }
}
@media all and (min-width: 1440px) {
  /* line 212, ../sass/components/_division.scss */
  .branch-leadership-container .leadership-director-container .flexItemText h2, .branch-leadership-container .leadership-director-container .flexItemText .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .branch-leadership-container .leadership-director-container .flexItemText h1, .branch-leadership-container .leadership-director-container .flexItemText .contact-method-label {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 212, ../sass/components/_division.scss */
  .branch-leadership-container .leadership-director-container .flexItemText h2, .branch-leadership-container .leadership-director-container .flexItemText .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .branch-leadership-container .leadership-director-container .flexItemText h1, .branch-leadership-container .leadership-director-container .flexItemText .contact-method-label {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 212, ../sass/components/_division.scss */
  .branch-leadership-container .leadership-director-container .flexItemText h2, .branch-leadership-container .leadership-director-container .flexItemText .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .branch-leadership-container .leadership-director-container .flexItemText h1, .branch-leadership-container .leadership-director-container .flexItemText .contact-method-label {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 212, ../sass/components/_division.scss */
  .branch-leadership-container .leadership-director-container .flexItemText h2, .branch-leadership-container .leadership-director-container .flexItemText .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .branch-leadership-container .leadership-director-container .flexItemText h1, .branch-leadership-container .leadership-director-container .flexItemText .contact-method-label {
    font-size: 1rem;
  }
}
/* line 218, ../sass/components/_division.scss */
.branch-leadership-container .leadership-director-container .flexItemText .contact-method-label {
  font-size: 1.375rem;
  margin: 0 0 11px 0;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-weight: bold;
  font-style: normal;
  color: #222;
  font-size: 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}
@media all and (min-width: 1440px) {
  /* line 218, ../sass/components/_division.scss */
  .branch-leadership-container .leadership-director-container .flexItemText .contact-method-label {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 218, ../sass/components/_division.scss */
  .branch-leadership-container .leadership-director-container .flexItemText .contact-method-label {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 218, ../sass/components/_division.scss */
  .branch-leadership-container .leadership-director-container .flexItemText .contact-method-label {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 218, ../sass/components/_division.scss */
  .branch-leadership-container .leadership-director-container .flexItemText .contact-method-label {
    font-size: 1rem;
  }
}
@media all and (min-width: 1440px) {
  /* line 218, ../sass/components/_division.scss */
  .branch-leadership-container .leadership-director-container .flexItemText .contact-method-label {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 218, ../sass/components/_division.scss */
  .branch-leadership-container .leadership-director-container .flexItemText .contact-method-label {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 218, ../sass/components/_division.scss */
  .branch-leadership-container .leadership-director-container .flexItemText .contact-method-label {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 218, ../sass/components/_division.scss */
  .branch-leadership-container .leadership-director-container .flexItemText .contact-method-label {
    font-size: 1rem;
  }
}
/* line 223, ../sass/components/_division.scss */
.branch-leadership-container .leadership-director-container .flexItemText .field--name-field-employment-title {
  font-size: 1.125rem;
  margin: 0 0 11px 0;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-weight: normal;
  font-style: normal;
  text-transform: uppercase;
  font-size: 1.125rem;
  font-size: 1.125rem;
  text-transform: none;
  color: #222;
}
@media all and (min-width: 1440px) {
  /* line 223, ../sass/components/_division.scss */
  .branch-leadership-container .leadership-director-container .flexItemText .field--name-field-employment-title {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 223, ../sass/components/_division.scss */
  .branch-leadership-container .leadership-director-container .flexItemText .field--name-field-employment-title {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 223, ../sass/components/_division.scss */
  .branch-leadership-container .leadership-director-container .flexItemText .field--name-field-employment-title {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 223, ../sass/components/_division.scss */
  .branch-leadership-container .leadership-director-container .flexItemText .field--name-field-employment-title {
    font-size: 1rem;
  }
}
@media all and (min-width: 1440px) {
  /* line 223, ../sass/components/_division.scss */
  .branch-leadership-container .leadership-director-container .flexItemText .field--name-field-employment-title {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 223, ../sass/components/_division.scss */
  .branch-leadership-container .leadership-director-container .flexItemText .field--name-field-employment-title {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 223, ../sass/components/_division.scss */
  .branch-leadership-container .leadership-director-container .flexItemText .field--name-field-employment-title {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 223, ../sass/components/_division.scss */
  .branch-leadership-container .leadership-director-container .flexItemText .field--name-field-employment-title {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 199, ../sass/components/_division.scss */
  .branch-leadership-container .leadership-director-container {
    margin-right: 0;
  }
}
/* line 234, ../sass/components/_division.scss */
.branch-leadership-container .leadership-deputy-director-container {
  -webkit-box-ordinal-group: 2;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  -o-align-items: stretch;
  align-items: stretch;
}
@media all and (min-width: 768px) {
  /* line 234, ../sass/components/_division.scss */
  .branch-leadership-container .leadership-deputy-director-container {
    margin-left: 2.5rem;
    border-left: 1px solid #979797;
    min-width: 50%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 234, ../sass/components/_division.scss */
  .branch-leadership-container .leadership-deputy-director-container {
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    -o-align-items: flex-start;
    align-items: flex-start;
    border-top: 1px solid #979797;
    border-left: none;
    margin-left: 0;
    padding-top: 1em;
  }
}
/* line 251, ../sass/components/_division.scss */
.branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -o-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  overflow: visible;
  width: 100%;
}
@media all and (min-width: 768px) {
  /* line 251, ../sass/components/_division.scss */
  .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership {
    margin-left: 2em;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 251, ../sass/components/_division.scss */
  .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership {
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    -o-align-items: flex-start;
    align-items: flex-start;
  }
}
/* line 265, ../sass/components/_division.scss */
.branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership > .field__item {
  padding-right: 0;
  margin-right: 1.5em;
  padding-bottom: 1em;
  max-width: 33%;
  -webkit-flex-basis: 33%;
  -moz-flex-basis: 33%;
  -ms-flex-basis: 33%;
  -o-flex-basis: 33%;
  flex-basis: 33%;
}
@media all and (min-width: 1440px) {
  /* line 265, ../sass/components/_division.scss */
  .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership > .field__item {
    max-width: 33%;
    -webkit-flex-basis: 33%;
    -moz-flex-basis: 33%;
    -ms-flex-basis: 33%;
    -o-flex-basis: 33%;
    flex-basis: 33%;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 265, ../sass/components/_division.scss */
  .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership > .field__item {
    max-width: 38%;
    -webkit-flex-basis: 38%;
    -moz-flex-basis: 38%;
    -ms-flex-basis: 38%;
    -o-flex-basis: 38%;
    flex-basis: 38%;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 265, ../sass/components/_division.scss */
  .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership > .field__item {
    max-width: 100%;
    -webkit-flex-basis: 45%;
    -moz-flex-basis: 45%;
    -ms-flex-basis: 45%;
    -o-flex-basis: 45%;
    flex-basis: 45%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 265, ../sass/components/_division.scss */
  .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership > .field__item {
    max-width: none;
    -webkit-flex-basis: auto;
    -moz-flex-basis: auto;
    -ms-flex-basis: auto;
    -o-flex-basis: auto;
    flex-basis: auto;
    margin-right: 0;
  }
}
/* line 291, ../sass/components/_division.scss */
.branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership > .field__item:last-child {
  margin-right: 0;
}

/* line 297, ../sass/components/_division.scss */
.node--type-branch h3, .node--type-branch .field--name-field-social-phrase-group-title, .node--type-branch .field--name-field-image-gallery-title {
  margin: 0 0 0.25em;
}

/* line 305, ../sass/components/_division.scss */
.node--view-mode-featured-science-instance-teaser .herobannertitle > a, .node--view-mode-featured-science-instance-teaser .herobannertitle-grey > a {
  display: block;
}

/* line 2, ../sass/components/_job.scss */
.node--type-job h1 {
  margin-bottom: 0.25em;
  margin-top: 0.25em;
}

/* line 2, ../sass/components/_general.scss */
.node--type-general h2, .node--type-general .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-general h1, .node--type-general .contact-method-label, .node--type-general h3, .node--type-general .field--name-field-social-phrase-group-title, .node--type-general .field--name-field-image-gallery-title {
  margin-top: 0;
}
/* line 5, ../sass/components/_general.scss */
.node--type-general .supplemental-accordion {
  margin-bottom: 1em;
}
/* line 9, ../sass/components/_general.scss */
.node--type-general .white-text h3, .node--type-general .white-text .field--name-field-social-phrase-group-title, .node--type-general .white-text .field--name-field-image-gallery-title {
  color: #fff;
}
/* line 14, ../sass/components/_general.scss */
.node--type-general .field--name-field-subtitle h2, .node--type-general .field--name-field-subtitle .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-general .field--name-field-subtitle h1, .node--type-general .field--name-field-subtitle .contact-method-label {
  color: #222;
}
/* line 19, ../sass/components/_general.scss */
.node--type-general .field--name-field-related-video .herobannertitle, .node--type-general .field--name-field-related-video .herobannertitle-grey {
  color: #222;
  background-color: transparent;
}
/* line 126, ../sass/_mixins.scss */
.node--type-general .field--name-field-related-video .herobannertitle a, .node--type-general .field--name-field-related-video .herobannertitle-grey a, .node--type-general .field--name-field-related-video .herobannertitle a:link, .node--type-general .field--name-field-related-video .herobannertitle-grey a:link {
  color: #222;
  text-decoration: underline;
}
/* line 136, ../sass/_mixins.scss */
.node--type-general .field--name-field-related-video .herobannertitle a:visited, .node--type-general .field--name-field-related-video .herobannertitle-grey a:visited {
  color: #6f57B5;
}
/* line 145, ../sass/_mixins.scss */
.node--type-general .field--name-field-related-video .herobannertitle a:hover, .node--type-general .field--name-field-related-video .herobannertitle-grey a:hover {
  font-weight: bold;
}
/* line 154, ../sass/_mixins.scss */
.node--type-general .field--name-field-related-video .herobannertitle h1, .node--type-general .field--name-field-related-video .herobannertitle-grey h1, .node--type-general .field--name-field-related-video .herobannertitle .photocredit, .node--type-general .field--name-field-related-video .herobannertitle-grey .photocredit {
  color: #222;
}
/* line 1886, ../sass/_mixins.scss */
.node--type-general .field--name-field-related-video .herobannertitle a, .node--type-general .field--name-field-related-video .herobannertitle-grey a {
  color: #222;
}
/* line 1889, ../sass/_mixins.scss */
.node--type-general .field--name-field-related-video .herobannertitle a:link, .node--type-general .field--name-field-related-video .herobannertitle-grey a:link {
  color: #222;
}
/* line 1897, ../sass/_mixins.scss */
.node--type-general .field--name-field-related-video .herobannertitle a:visited, .node--type-general .field--name-field-related-video .herobannertitle-grey a:visited {
  color: #6f57B5;
}
/* line 25, ../sass/components/_general.scss */
.node--type-general .field--name-field-general-publications-rlt {
  width: 100%;
}
/* line 29, ../sass/components/_general.scss */
.node--type-general .field--name-field-related-publications, .node--type-general .field--name-field-general-publications-rlt {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 1em;
  margin-top: 1em;
}
/* line 35, ../sass/components/_general.scss */
.node--type-general .field--name-field-general-publications-rlt > .field__item, .node--type-general .field--name-field-related-publications > .field__item {
  margin-right: 1em;
  margin-bottom: 1em;
  padding: 1.5em;
  border: 1px #d7d7d7 solid;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-shrink: 0;
  -o-flex-shrink: 0;
  flex-shrink: 0;
}
@media all and (min-width: 1100px) {
  /* line 35, ../sass/components/_general.scss */
  .node--type-general .field--name-field-general-publications-rlt > .field__item, .node--type-general .field--name-field-related-publications > .field__item {
    max-width: 18.5%;
    flex-basis: 18.5%;
    min-width: 18.5%;
    width: 18.5%;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 35, ../sass/components/_general.scss */
  .node--type-general .field--name-field-general-publications-rlt > .field__item, .node--type-general .field--name-field-related-publications > .field__item {
    max-width: 40%;
    flex-basis: 40%;
    min-width: 40%;
    width: 40%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 35, ../sass/components/_general.scss */
  .node--type-general .field--name-field-general-publications-rlt > .field__item, .node--type-general .field--name-field-related-publications > .field__item {
    max-width: none;
    flex-basis: auto;
  }
}
/* line 58, ../sass/components/_general.scss */
.node--type-general .field--name-field-general-publications-rlt > .field__item .nhlbi-publication-short-teaser-wrapper > a, .node--type-general .field--name-field-related-publications > .field__item .nhlbi-publication-short-teaser-wrapper > a {
  display: inline-flex;
}
@media all and (min-width: 1100px) {
  /* line 61, ../sass/components/_general.scss */
  .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser, .node--type-general .field--name-field-related-publications > .field__item .standard-teaser {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 61, ../sass/components/_general.scss */
  .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser, .node--type-general .field--name-field-related-publications > .field__item .standard-teaser {
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
  }
}
/* line 69, ../sass/components/_general.scss */
.node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImage, .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageHalf, .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageTenth, .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageFourth, .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageThird, .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageThirdHalf, .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .hero-image, .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImage, .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageHalf, .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageTenth, .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageFourth, .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageThird, .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageThirdHalf, .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .hero-image {
  min-width: auto;
}
@media all and (min-width: 1100px) {
  /* line 69, ../sass/components/_general.scss */
  .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImage, .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageHalf, .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageTenth, .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageFourth, .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageThird, .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageThirdHalf, .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .hero-image, .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImage, .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageHalf, .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageTenth, .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageFourth, .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageThird, .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageThirdHalf, .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .hero-image {
    max-width: 66%;
    min-width: 66%;
    width: 66%;
    margin-right: auto;
    margin-left: auto;
    flex-grow: 0;
    flex-shrink: 0;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 69, ../sass/components/_general.scss */
  .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImage, .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageHalf, .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageTenth, .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageFourth, .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageThird, .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageThirdHalf, .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .hero-image, .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImage, .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageHalf, .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageTenth, .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageFourth, .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageThird, .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageThirdHalf, .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .hero-image {
    max-width: 33%;
    min-width: 33%;
    width: 33%;
    flex-grow: 0;
    flex-shrink: 0;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 69, ../sass/components/_general.scss */
  .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImage, .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageHalf, .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageTenth, .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageFourth, .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageThird, .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemImageThirdHalf, .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .hero-image, .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImage, .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageHalf, .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageTenth, .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageFourth, .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageThird, .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemImageThirdHalf, .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .hero-image {
    max-width: 20%;
    min-width: 20%;
    width: 20%;
    flex-grow: 0;
    flex-shrink: 0;
  }
}
@media all and (min-width: 1100px) {
  /* line 98, ../sass/components/_general.scss */
  .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemText, .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemText {
    padding: 1em 0;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 98, ../sass/components/_general.scss */
  .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser .flexItemText, .node--type-general .field--name-field-related-publications > .field__item .standard-teaser .flexItemText {
    padding: 0 0 0 1em;
  }
}
@media all and (min-width: 1100px) {
  /* line 108, ../sass/components/_general.scss */
  .node--type-general .field--name-field-general-publications-rlt > .field__item:nth-child(4), .node--type-general .field--name-field-related-publications {
    margin-right: 0;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 113, ../sass/components/_general.scss */
  .node--type-general .field--name-field-general-publications-rlt > .field__item:nth-child(2), .node--type-general .field--name-field-related-publications > .field__item:nth-child(2) {
    margin-right: 0;
  }
}
/* line 119, ../sass/components/_general.scss */
.node--type-general .general-header-container {
  overflow: visible;
}

/* line 123, ../sass/components/_general.scss */
.node--type-general.node--view-mode-full,
.node--type-general.node--view-mode-subscribe {
  color: #222;
}

/* line 128, ../sass/components/_general.scss */
.general-header-container .flexItemText.flexTextWithoutImage {
  padding-bottom: 1.5em;
}
/* line 131, ../sass/components/_general.scss */
.general-header-container h1 {
  margin-top: 0.5em;
}

@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 137, ../sass/components/_general.scss */
  .ext-icon {
    padding: 6px 12px 6px 12px;
    margin-left: 8px;
  }
}
/* line 2, ../sass/components/_objective.scss */
.node--type-objective .pager__item a.button, .node--type-objective .blueRoundButton a.button, .node--type-objective .redRoundButton a.button, .node--type-objective .standard-more-link a.button, .node--type-objective .news-and-events--landing .more-link a.button, .news-and-events--landing .node--type-objective .more-link a.button, .node--type-objective .view-more-link a.button {
  background-color: #850920;
  border: 1px solid #fff;
}
/* line 7, ../sass/components/_objective.scss */
.node--type-objective .pager__item a.button:hover, .node--type-objective .blueRoundButton a.button:hover, .node--type-objective .redRoundButton a.button:hover, .node--type-objective .standard-more-link a.button:hover, .node--type-objective .news-and-events--landing .more-link a.button:hover, .news-and-events--landing .node--type-objective .more-link a.button:hover, .node--type-objective .view-more-link a.button:hover {
  background-color: #bf0d2e;
  border-color: #bf0d2e;
}

/* line 14, ../sass/components/_objective.scss */
.objective-page-title {
  height: auto;
  margin: 1.5em 0;
  min-height: 62px;
  padding-left: 82px;
  padding-top: 0.25em;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 14, ../sass/components/_objective.scss */
  .objective-page-title {
    min-height: 35px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 14, ../sass/components/_objective.scss */
  .objective-page-title {
    padding-left: 45px;
  }
}

/* line 32, ../sass/components/_objective.scss */
.cc-cq-category-label {
  color: #222;
  padding-bottom: 0.8em;
}

/* line 36, ../sass/components/_objective.scss */
.node--type-cc-or-cq.node--view-mode-teaser,
.node--type-cc-or-cq.node--view-mode-short-teaser {
  margin: 0.5em 0;
}
/* line 40, ../sass/components/_objective.scss */
.node--type-cc-or-cq.node--view-mode-teaser .flexItemText,
.node--type-cc-or-cq.node--view-mode-short-teaser .flexItemText {
  padding: 1em 3em;
  background-color: #fff;
}

/* line 46, ../sass/components/_objective.scss */
.node--type-cc-or-cq .herobannertitle, .node--type-cc-or-cq .herobannertitle-grey {
  margin-bottom: 1.5em;
}

/* line 50, ../sass/components/_objective.scss */
.objective-text-container {
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  -o-align-items: flex-start;
  align-items: flex-start;
}
/* line 53, ../sass/components/_objective.scss */
.objective-text-container .objective-introduction {
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
}
@media all and (min-width: 1100px) {
  /* line 53, ../sass/components/_objective.scss */
  .objective-text-container .objective-introduction {
    max-width: 45%;
    min-width: 45%;
    width: 45%;
    padding-right: 4em;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 53, ../sass/components/_objective.scss */
  .objective-text-container .objective-introduction {
    max-width: 42%;
    min-width: 42%;
    width: 42%;
    padding-right: 1em;
  }
}
/* line 68, ../sass/components/_objective.scss */
.objective-text-container .objective-future-goals {
  background-color: #fff;
  padding: 2em 3em;
  border-radius: 20px;
  -webkit-box-ordinal-group: 2;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
}
@media all and (min-width: 768px) {
  /* line 68, ../sass/components/_objective.scss */
  .objective-text-container .objective-future-goals {
    max-width: 35%;
    min-width: 35%;
    width: 35%;
    margin-left: 1em;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 68, ../sass/components/_objective.scss */
  .objective-text-container .objective-future-goals {
    margin-top: 1em;
  }
}

/* line 84, ../sass/components/_objective.scss */
.field--name-field-future-goals-title {
  font-size: 1.125rem;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  margin: 0 0 11px 0;
  font-weight: bold;
  font-style: normal;
  color: #222;
  font-size: 1rem;
  font-size: 1rem;
}
@media all and (min-width: 1440px) {
  /* line 84, ../sass/components/_objective.scss */
  .field--name-field-future-goals-title {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 84, ../sass/components/_objective.scss */
  .field--name-field-future-goals-title {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 84, ../sass/components/_objective.scss */
  .field--name-field-future-goals-title {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 84, ../sass/components/_objective.scss */
  .field--name-field-future-goals-title {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1440px) {
  /* line 84, ../sass/components/_objective.scss */
  .field--name-field-future-goals-title {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 84, ../sass/components/_objective.scss */
  .field--name-field-future-goals-title {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 84, ../sass/components/_objective.scss */
  .field--name-field-future-goals-title {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 84, ../sass/components/_objective.scss */
  .field--name-field-future-goals-title {
    font-size: 0.875rem;
  }
}

/* line 89, ../sass/components/_objective.scss */
.objective-list-wrapper h2, .objective-list-wrapper .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .objective-list-wrapper h1, .objective-list-wrapper .contact-method-label {
  color: #222;
}

/* line 93, ../sass/components/_objective.scss */
.objective-list-wrapper > .objective-list-container > ol.objective-list > li.objective-list-item.active:before {
  color: #fff;
}

/* line 97, ../sass/components/_objective.scss */
.objective-list-container {
  counter-reset: item;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
}
/* line 101, ../sass/components/_objective.scss */
.objective-list-container ol.objective-list {
  list-style: none;
  padding-left: 0;
  max-width: 70%;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 101, ../sass/components/_objective.scss */
  .objective-list-container ol.objective-list {
    max-width: 100%;
  }
}
/* line 109, ../sass/components/_objective.scss */
.objective-list-container ol.objective-list li {
  counter-increment: item;
  margin-bottom: 2em;
  display: inline-flex;
  position: relative;
  width: 100%;
  padding-left: 60px;
  box-sizing: border-box;
}
/* line 120, ../sass/components/_objective.scss */
.objective-list-container ol.objective-list li.objective-list-item.inactive > span a {
  color: #222;
}
/* line 123, ../sass/components/_objective.scss */
.objective-list-container ol.objective-list li.objective-list-item.inactive > span a:visited {
  color: #6f57B5;
}
/* line 127, ../sass/components/_objective.scss */
.objective-list-container ol.objective-list li.objective-list-item.inactive:before {
  background: transparent;
  border: solid #979797 1px;
  color: #222;
}
/* line 132, ../sass/components/_objective.scss */
.objective-list-container ol.objective-list li.objective-list-item:before {
  margin-right: 2em;
  content: counter(item);
  border-radius: 100%;
  width: 35px;
  height: 35px;
  text-align: center;
  display: inline-table;
  font-weight: normal;
  position: absolute;
  left: 0;
}
/* line 145, ../sass/components/_objective.scss */
.objective-list-container ol.objective-list li.objective-list-item.active > span {
  color: #0051a8;
  font-weight: bold;
}
/* line 149, ../sass/components/_objective.scss */
.objective-list-container ol.objective-list li.objective-list-item.active {
  color: #fff;
}
/* line 152, ../sass/components/_objective.scss */
.objective-list-container ol.objective-list li.objective-list-item.active:before {
  background: #1a568c;
  border: solid #1a568c 1px;
  color: #fff !important;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 158, ../sass/components/_objective.scss */
  .objective-list-container .objective-list-image-wrapper {
    display: none;
  }
}
/* line 163, ../sass/components/_objective.scss */
.objective-list-container .objective-list-image, .objective-list-container .objective-list-image-line {
  padding-left: 253px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 163, ../sass/components/_objective.scss */
  .objective-list-container .objective-list-image, .objective-list-container .objective-list-image-line {
    padding-left: 184px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 163, ../sass/components/_objective.scss */
  .objective-list-container .objective-list-image, .objective-list-container .objective-list-image-line {
    display: none;
  }
}
/* line 177, ../sass/components/_objective.scss */
.objective-list-container .objective-side-text {
  width: 253px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 177, ../sass/components/_objective.scss */
  .objective-list-container .objective-side-text {
    width: 184px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 177, ../sass/components/_objective.scss */
  .objective-list-container .objective-side-text {
    display: none;
  }
}

/* line 188, ../sass/components/_objective.scss */
.cc-cq-related-objective {
  padding-top: 1em;
}

/* line 191, ../sass/components/_objective.scss */
.field--name-field-goal-card {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  -o-align-items: stretch;
  align-items: stretch;
  -webkit-align-content: space-between;
  -moz-align-content: space-between;
  -ms-align-content: space-between;
  -o-align-content: space-between;
  align-content: space-between;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -o-justify-content: flex-start;
  justify-content: flex-start;
}

/* line 198, ../sass/components/_objective.scss */
.field--name-field-goal-card > .field__item {
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-grow: 1;
  -o-flex-grow: 1;
  flex-grow: 1;
  width: 45%;
  margin-right: 1em;
  margin-bottom: 1em;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 198, ../sass/components/_objective.scss */
  .field--name-field-goal-card > .field__item {
    width: auto;
    margin-right: 0;
  }
}

@media all and (min-width: 768px) {
  /* line 208, ../sass/components/_objective.scss */
  .field--name-field-goal-card > .field__item:nth-child(2n) {
    margin-right: 0;
  }
}

/* line 213, ../sass/components/_objective.scss */
.strategic-goal-card {
  background-color: #fff;
  padding: 1em;
  height: 100%;
  border-top: solid #f4f4f4 1em;
}

/* line 219, ../sass/components/_objective.scss */
h3.strategic-goal-card-title, .strategic-goal-card-title.field--name-field-social-phrase-group-title, .strategic-goal-card-title.field--name-field-image-gallery-title {
  font-size: 1.125rem;
  margin: 0 0 11px 0;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-weight: normal;
  font-style: normal;
  text-transform: uppercase;
  font-size: 1.125rem;
  font-size: 1.25rem;
  font-family: "Merriweather", serif !important;
  text-align: center;
  text-transform: none;
  width: -webkit-fill-available;
  width: -moz-fill-available;
  width: -ms-fill-available;
  width: -o-fill-available;
  width: fill-available;
  width: -moz-available;
  width: available;
}
@media all and (min-width: 1440px) {
  /* line 219, ../sass/components/_objective.scss */
  h3.strategic-goal-card-title, .strategic-goal-card-title.field--name-field-social-phrase-group-title, .strategic-goal-card-title.field--name-field-image-gallery-title {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 219, ../sass/components/_objective.scss */
  h3.strategic-goal-card-title, .strategic-goal-card-title.field--name-field-social-phrase-group-title, .strategic-goal-card-title.field--name-field-image-gallery-title {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 219, ../sass/components/_objective.scss */
  h3.strategic-goal-card-title, .strategic-goal-card-title.field--name-field-social-phrase-group-title, .strategic-goal-card-title.field--name-field-image-gallery-title {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 219, ../sass/components/_objective.scss */
  h3.strategic-goal-card-title, .strategic-goal-card-title.field--name-field-social-phrase-group-title, .strategic-goal-card-title.field--name-field-image-gallery-title {
    font-size: 1rem;
  }
}
@media all and (min-width: 1440px) {
  /* line 219, ../sass/components/_objective.scss */
  h3.strategic-goal-card-title, .strategic-goal-card-title.field--name-field-social-phrase-group-title, .strategic-goal-card-title.field--name-field-image-gallery-title {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 219, ../sass/components/_objective.scss */
  h3.strategic-goal-card-title, .strategic-goal-card-title.field--name-field-social-phrase-group-title, .strategic-goal-card-title.field--name-field-image-gallery-title {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 219, ../sass/components/_objective.scss */
  h3.strategic-goal-card-title, .strategic-goal-card-title.field--name-field-social-phrase-group-title, .strategic-goal-card-title.field--name-field-image-gallery-title {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 219, ../sass/components/_objective.scss */
  h3.strategic-goal-card-title, .strategic-goal-card-title.field--name-field-social-phrase-group-title, .strategic-goal-card-title.field--name-field-image-gallery-title {
    font-size: 1rem;
  }
}
/* line 227, ../sass/components/_objective.scss */
h3.strategic-goal-card-title:hover, .strategic-goal-card-title.field--name-field-social-phrase-group-title:hover, .strategic-goal-card-title.field--name-field-image-gallery-title:hover {
  color: #fff;
}

/* line 231, ../sass/components/_objective.scss */
.strategic-goal-card-title-red {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 8px;
  clear: both;
  margin: 1em auto;
  padding: 0.8em 3em;
  color: #fff;
  background-color: #C5203E;
}
/* line 126, ../sass/_mixins.scss */
.strategic-goal-card-title-red a, .strategic-goal-card-title-red a:link {
  color: #fff;
  text-decoration: underline;
}
/* line 132, ../sass/_mixins.scss */
.strategic-goal-card-title-red a:visited {
  color: #D7E7F4;
}
/* line 145, ../sass/_mixins.scss */
.strategic-goal-card-title-red a:hover {
  font-weight: bold;
}
/* line 154, ../sass/_mixins.scss */
.strategic-goal-card-title-red h1, .strategic-goal-card-title-red .photocredit {
  color: #fff;
}
/* line 1495, ../sass/_mixins.scss */
.strategic-goal-card-title-red:hover {
  background-color: #C5203E;
  text-decoration: none;
}

/* line 235, ../sass/components/_objective.scss */
.strategic-goal-card-title-green {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 8px;
  clear: both;
  margin: 1em auto;
  padding: 0.8em 3em;
  color: #fff;
  background-color: #006F7E;
}
/* line 126, ../sass/_mixins.scss */
.strategic-goal-card-title-green a, .strategic-goal-card-title-green a:link {
  color: #fff;
  text-decoration: underline;
}
/* line 132, ../sass/_mixins.scss */
.strategic-goal-card-title-green a:visited {
  color: #D7E7F4;
}
/* line 145, ../sass/_mixins.scss */
.strategic-goal-card-title-green a:hover {
  font-weight: bold;
}
/* line 154, ../sass/_mixins.scss */
.strategic-goal-card-title-green h1, .strategic-goal-card-title-green .photocredit {
  color: #fff;
}
/* line 1495, ../sass/_mixins.scss */
.strategic-goal-card-title-green:hover {
  background-color: #006F7E;
  text-decoration: none;
}

/* line 239, ../sass/components/_objective.scss */
.strategic-goal-card-title-orange {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 8px;
  clear: both;
  margin: 1em auto;
  padding: 0.8em 3em;
  color: #fff;
  background-color: #C35507;
}
/* line 126, ../sass/_mixins.scss */
.strategic-goal-card-title-orange a, .strategic-goal-card-title-orange a:link {
  color: #fff;
  text-decoration: underline;
}
/* line 132, ../sass/_mixins.scss */
.strategic-goal-card-title-orange a:visited {
  color: #D7E7F4;
}
/* line 145, ../sass/_mixins.scss */
.strategic-goal-card-title-orange a:hover {
  font-weight: bold;
}
/* line 154, ../sass/_mixins.scss */
.strategic-goal-card-title-orange h1, .strategic-goal-card-title-orange .photocredit {
  color: #fff;
}
/* line 1495, ../sass/_mixins.scss */
.strategic-goal-card-title-orange:hover {
  background-color: #C35507;
  text-decoration: none;
}

/* line 242, ../sass/components/_objective.scss */
.strategic-goal-card-title-blue {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 8px;
  clear: both;
  margin: 1em auto;
  padding: 0.8em 3em;
  color: #fff;
  background-color: #1E2F53;
}
/* line 126, ../sass/_mixins.scss */
.strategic-goal-card-title-blue a, .strategic-goal-card-title-blue a:link {
  color: #fff;
  text-decoration: underline;
}
/* line 132, ../sass/_mixins.scss */
.strategic-goal-card-title-blue a:visited {
  color: #D7E7F4;
}
/* line 145, ../sass/_mixins.scss */
.strategic-goal-card-title-blue a:hover {
  font-weight: bold;
}
/* line 154, ../sass/_mixins.scss */
.strategic-goal-card-title-blue h1, .strategic-goal-card-title-blue .photocredit {
  color: #fff;
}
/* line 1495, ../sass/_mixins.scss */
.strategic-goal-card-title-blue:hover {
  background-color: #1E2F53;
  text-decoration: none;
}

/* line 249, ../sass/components/_objective.scss */
ul.colored-list {
  list-style: none;
  padding-left: 0;
}
/* line 252, ../sass/components/_objective.scss */
ul.colored-list li.colored-list-item {
  margin-bottom: 1em;
  display: flex;
}
/* line 257, ../sass/components/_objective.scss */
ul.colored-list li.colored-list-item a {
  color: #222;
}
/* line 261, ../sass/components/_objective.scss */
ul.colored-list li.colored-list-item:before {
  margin-right: 0.8em;
  content: ' ';
  border-radius: 100%;
  width: 30px;
  height: 30px;
  text-align: center;
  display: inline-table;
}
/* line 270, ../sass/components/_objective.scss */
ul.colored-list li.colored-list-item.colored-list-item-red:before {
  background-color: #C5203E;
  border: solid #C5203E 1px;
}
/* line 274, ../sass/components/_objective.scss */
ul.colored-list li.colored-list-item.colored-list-item-orange:before {
  background-color: #C35507;
  border: solid #C35507 1px;
}
/* line 278, ../sass/components/_objective.scss */
ul.colored-list li.colored-list-item.colored-list-item-green:before {
  background-color: #006F7E;
  border: solid #006F7E 1px;
}
/* line 282, ../sass/components/_objective.scss */
ul.colored-list li.colored-list-item.colored-list-item-blue:before {
  background-color: #1E2F53;
  border: solid #1E2F53 1px;
}

/* line 287, ../sass/components/_objective.scss */
.strategic-vision-landing-goals-wrapper {
  overflow: visible;
}
@media all and (min-width: 768px) {
  /* line 287, ../sass/components/_objective.scss */
  .strategic-vision-landing-goals-wrapper {
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
  }
}
/* line 293, ../sass/components/_objective.scss */
.strategic-vision-landing-goals-wrapper .strategic-vision-goals-left {
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
  width: 30%;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 293, ../sass/components/_objective.scss */
  .strategic-vision-landing-goals-wrapper .strategic-vision-goals-left {
    width: 25%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 293, ../sass/components/_objective.scss */
  .strategic-vision-landing-goals-wrapper .strategic-vision-goals-left {
    -webkit-box-ordinal-group: 2;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
    width: 75%;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 1em;
  }
}
/* line 307, ../sass/components/_objective.scss */
.strategic-vision-landing-goals-wrapper .strategic-vision-goals-center {
  -webkit-box-ordinal-group: 2;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
  width: 35%;
  min-width: 35%;
  margin-top: -4em;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 307, ../sass/components/_objective.scss */
  .strategic-vision-landing-goals-wrapper .strategic-vision-goals-center {
    margin-top: -2em;
    width: 35%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 307, ../sass/components/_objective.scss */
  .strategic-vision-landing-goals-wrapper .strategic-vision-goals-center {
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
    background-position: center;
    margin-bottom: 1em;
    margin-top: 0;
    width: auto;
  }
}
/* line 325, ../sass/components/_objective.scss */
.strategic-vision-landing-goals-wrapper .strategic-vision-goals-right {
  -webkit-box-ordinal-group: 3;
  -moz-box-ordinal-group: 3;
  -ms-flex-order: 3;
  -webkit-order: 3;
  order: 3;
  width: 28%;
  min-width: 28%;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 325, ../sass/components/_objective.scss */
  .strategic-vision-landing-goals-wrapper .strategic-vision-goals-right {
    width: 75%;
    margin-right: auto;
    margin-left: auto;
  }
}

/* line 3, ../sass/components/_principle_investigator.scss */
.node--type-principal-investigator .paragraph--type--intro-text {
  margin-top: 0;
}
/* line 7, ../sass/components/_principle_investigator.scss */
.node--type-principal-investigator h1, .node--type-principal-investigator .upperCaseHFour {
  display: block;
  position: relative;
  text-align: center;
  clear: both;
  width: 100%;
}
/* line 11, ../sass/components/_principle_investigator.scss */
.node--type-principal-investigator h1 {
  margin: 0.5em 0 0.2em 0;
}
/* line 15, ../sass/components/_principle_investigator.scss */
.node--type-principal-investigator .content-container {
  margin-top: 0;
  padding-top: 0;
}
/* line 19, ../sass/components/_principle_investigator.scss */
.node--type-principal-investigator .pi-content-section {
  padding: 1em;
}
/* line 21, ../sass/components/_principle_investigator.scss */
.node--type-principal-investigator .pi-content-section > h2, .node--type-principal-investigator .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .pi-content-section > h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-principal-investigator .pi-content-section > h1, .node--type-principal-investigator .pi-content-section > .contact-method-label {
  line-height: 1.25;
}
/* line 25, ../sass/components/_principle_investigator.scss */
.node--type-principal-investigator .pi-content-section .ui-accordion-header:focus > .field--name-field-panel-title {
  outline: none;
}
/* line 30, ../sass/components/_principle_investigator.scss */
.node--type-principal-investigator .pi-content-section:last-child {
  padding-bottom: 2em;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 37, ../sass/components/_principle_investigator.scss */
  .node--type-principal-investigator .striped-container-wrapper {
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
  }
}
/* line 42, ../sass/components/_principle_investigator.scss */
.node--type-principal-investigator .striped-container-wrapper .striped-column-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-grow: 1;
  -o-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
}
/* line 47, ../sass/components/_principle_investigator.scss */
.node--type-principal-investigator .striped-container-wrapper .primary-blue, .node--type-principal-investigator .striped-container-wrapper .light-gray {
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-grow: 1;
  -o-flex-grow: 1;
  flex-grow: 1;
}
/* line 50, ../sass/components/_principle_investigator.scss */
.node--type-principal-investigator .striped-container-wrapper .primary-blue {
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
  background-color: #1a568c;
}
/* line 54, ../sass/components/_principle_investigator.scss */
.node--type-principal-investigator .striped-container-wrapper .light-gray {
  -webkit-box-ordinal-group: 2;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
  background-color: #f2f2f2;
}
/* line 59, ../sass/components/_principle_investigator.scss */
.node--type-principal-investigator .striped-container-wrapper .column-left {
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  -o-flex: 1;
  flex: 1;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 59, ../sass/components/_principle_investigator.scss */
  .node--type-principal-investigator .striped-container-wrapper .column-left {
    display: none;
    width: 0;
  }
}
/* line 67, ../sass/components/_principle_investigator.scss */
.node--type-principal-investigator .striped-container-wrapper .column-right {
  -webkit-box-ordinal-group: 3;
  -moz-box-ordinal-group: 3;
  -ms-flex-order: 3;
  -webkit-order: 3;
  order: 3;
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  -o-flex: 1;
  flex: 1;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 67, ../sass/components/_principle_investigator.scss */
  .node--type-principal-investigator .striped-container-wrapper .column-right {
    display: none;
    width: 0;
  }
}
/* line 75, ../sass/components/_principle_investigator.scss */
.node--type-principal-investigator .striped-container-wrapper .contact-wrapper-center {
  -webkit-box-ordinal-group: 2;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
  -webkit-flex: 8;
  -moz-flex: 8;
  -ms-flex: 8;
  -o-flex: 8;
  flex: 8;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
}
/* line 83, ../sass/components/_principle_investigator.scss */
.node--type-principal-investigator .striped-container {
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  -o-flex: 1;
  flex: 1;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 83, ../sass/components/_principle_investigator.scss */
  .node--type-principal-investigator .striped-container {
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
  }
}
/* line 89, ../sass/components/_principle_investigator.scss */
.node--type-principal-investigator .striped-container .striped-column {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-grow: 1;
  -o-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
}
/* line 94, ../sass/components/_principle_investigator.scss */
.node--type-principal-investigator .striped-container .primary-blue, .node--type-principal-investigator .striped-container .light-gray {
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-grow: 1;
  -o-flex-grow: 1;
  flex-grow: 1;
}
/* line 97, ../sass/components/_principle_investigator.scss */
.node--type-principal-investigator .striped-container .primary-blue {
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
  background-color: #1a568c;
}
/* line 101, ../sass/components/_principle_investigator.scss */
.node--type-principal-investigator .striped-container .light-gray {
  -webkit-box-ordinal-group: 2;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
  background-color: #f2f2f2;
}
/* line 106, ../sass/components/_principle_investigator.scss */
.node--type-principal-investigator .striped-container .column-left {
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
  -webkit-flex: 0.5;
  -moz-flex: 0.5;
  -ms-flex: 0.5;
  -o-flex: 0.5;
  flex: 0.5;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 106, ../sass/components/_principle_investigator.scss */
  .node--type-principal-investigator .striped-container .column-left {
    display: none;
    width: 0;
  }
}
/* line 114, ../sass/components/_principle_investigator.scss */
.node--type-principal-investigator .striped-container .column-right {
  -webkit-box-ordinal-group: 3;
  -moz-box-ordinal-group: 3;
  -ms-flex-order: 3;
  -webkit-order: 3;
  order: 3;
  -webkit-flex: 0.5;
  -moz-flex: 0.5;
  -ms-flex: 0.5;
  -o-flex: 0.5;
  flex: 0.5;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 114, ../sass/components/_principle_investigator.scss */
  .node--type-principal-investigator .striped-container .column-right {
    display: none;
    width: 0;
  }
}
/* line 122, ../sass/components/_principle_investigator.scss */
.node--type-principal-investigator .striped-container .contact-wrapper {
  -webkit-box-ordinal-group: 2;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
  -webkit-flex: 9;
  -moz-flex: 9;
  -ms-flex: 9;
  -o-flex: 9;
  flex: 9;
  max-width: 1440px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
}
/* line 131, ../sass/components/_principle_investigator.scss */
.node--type-principal-investigator .pi-contact-container {
  padding: 1.5em 1.5em 0 1.5em;
  background-color: #fff;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  width: 100%;
}
/* line 136, ../sass/components/_principle_investigator.scss */
.node--type-principal-investigator .pi-contact-container .field--name-field-contact-information {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  width: 100%;
}
/* line 141, ../sass/components/_principle_investigator.scss */
.node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -o-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  -o-align-items: stretch;
  align-items: stretch;
  width: 100%;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 141, ../sass/components/_principle_investigator.scss */
  .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
  }
}
/* line 153, ../sass/components/_principle_investigator.scss */
.node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-member-skills,
.node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-member-honors,
.node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-member-education,
.node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-address,
.node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-phone-number,
.node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-fax-number,
.node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-email,
.node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-member-profile-url {
  margin-bottom: 1.5em;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -o-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  -o-align-items: stretch;
  align-items: stretch;
}
@media all and (min-width: 1100px) {
  /* line 153, ../sass/components/_principle_investigator.scss */
  .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-member-skills,
  .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-member-honors,
  .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-member-education,
  .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-address,
  .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-phone-number,
  .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-fax-number,
  .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-email,
  .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-member-profile-url {
    width: 33%;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 153, ../sass/components/_principle_investigator.scss */
  .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-member-skills,
  .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-member-honors,
  .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-member-education,
  .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-address,
  .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-phone-number,
  .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-fax-number,
  .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-email,
  .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-member-profile-url {
    width: 50%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 153, ../sass/components/_principle_investigator.scss */
  .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-member-skills,
  .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-member-honors,
  .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-member-education,
  .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-address,
  .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-phone-number,
  .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-fax-number,
  .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-email,
  .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-member-profile-url {
    width: 20em;
  }
}
/* line 178, ../sass/components/_principle_investigator.scss */
.node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-member-skills .labIcon,
.node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-member-honors .labIcon,
.node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-member-education .labIcon,
.node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-address .labIcon,
.node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-phone-number .labIcon,
.node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-fax-number .labIcon,
.node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-email .labIcon,
.node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-member-profile-url .labIcon {
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
  width: 46px;
  margin-right: 1.5em;
  background-position: center;
}
/* line 188, ../sass/components/_principle_investigator.scss */
.node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-member-skills .labText,
.node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-member-honors .labText,
.node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-member-education .labText,
.node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-address .labText,
.node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-phone-number .labText,
.node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-fax-number .labText,
.node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-email .labText,
.node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-member-profile-url .labText {
  -webkit-box-ordinal-group: 2;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
}
/* line 192, ../sass/components/_principle_investigator.scss */
.node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-member-skills .field__item,
.node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-member-honors .field__item,
.node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-member-education .field__item,
.node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-address .field__item,
.node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-phone-number .field__item,
.node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-fax-number .field__item,
.node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-email .field__item,
.node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-member-profile-url .field__item {
  display: inline;
}
/* line 215, ../sass/components/_principle_investigator.scss */
.node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-address p.address {
  font-size: 1em;
  margin: 0;
}
@media all and (min-width: 1440px) {
  /* line 215, ../sass/components/_principle_investigator.scss */
  .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-address p.address {
    font-size: 1em;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 215, ../sass/components/_principle_investigator.scss */
  .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-address p.address {
    font-size: 1em;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 215, ../sass/components/_principle_investigator.scss */
  .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-address p.address {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 215, ../sass/components/_principle_investigator.scss */
  .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-address p.address {
    font-size: 0.86rem;
  }
}
/* line 243, ../sass/components/_principle_investigator.scss */
.node--type-principal-investigator .views-element-container > .view-nhlbi-research-update,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news {
  background-color: #1a568c;
  color: #fff;
  background-color: #1a568c;
  display: block;
}
/* line 126, ../sass/_mixins.scss */
.node--type-principal-investigator .views-element-container > .view-nhlbi-research-update a, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update a:link,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news a,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news a:link {
  color: #fff;
  text-decoration: underline;
}
/* line 132, ../sass/_mixins.scss */
.node--type-principal-investigator .views-element-container > .view-nhlbi-research-update a:visited,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news a:visited {
  color: #D7E7F4;
}
/* line 145, ../sass/_mixins.scss */
.node--type-principal-investigator .views-element-container > .view-nhlbi-research-update a:hover,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news a:hover {
  font-weight: bold;
}
/* line 154, ../sass/_mixins.scss */
.node--type-principal-investigator .views-element-container > .view-nhlbi-research-update h1, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .photocredit,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news h1,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .photocredit {
  color: #fff;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 252, ../sass/components/_principle_investigator.scss */
  .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .flexItemText.flexItemTextHalf a.viewalllink, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .promoted-content-container .flexItemText.flexItemTextHalf .field--name-field-url > a, .promoted-content-container .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .flexItemText.flexItemTextHalf .field--name-field-url > a, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .flexItemText.flexItemTextHalf .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .flexItemText.flexItemTextHalf a, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .flexItemText.flexItemTextHalf .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .flexItemText.flexItemTextHalf a, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .flexItemText.flexItemTextHalf .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .flexItemText.flexItemTextHalf a, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .flexItemText.flexItemTextHalf .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .flexItemText.flexItemTextHalf .field--name-field-url > a,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .flexItemText.flexItemTextHalf a.viewalllink,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .promoted-content-container .flexItemText.flexItemTextHalf .field--name-field-url > a,
  .promoted-content-container .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .flexItemText.flexItemTextHalf .field--name-field-url > a,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .flexItemText.flexItemTextHalf .contact-nhlbi--landing .field--name-field-directions-link a,
  .contact-nhlbi--landing .field--name-field-directions-link .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .flexItemText.flexItemTextHalf a,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .flexItemText.flexItemTextHalf .isi-job-opportunities--landing .field--name-field-vacancies-link a,
  .isi-job-opportunities--landing .field--name-field-vacancies-link .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .flexItemText.flexItemTextHalf a,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a,
  .field--name-field-promotional-card > .field__item .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .flexItemText.flexItemTextHalf .fixedDarkBluePane .field--name-field-traveling-and-security a,
  .fixedDarkBluePane .field--name-field-traveling-and-security .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .flexItemText.flexItemTextHalf a,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .flexItemText.flexItemTextHalf .field--name-field-community-card .field--name-field-url > a,
  .field--name-field-community-card .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .flexItemText.flexItemTextHalf .field--name-field-url > a {
    display: none;
  }
}
/* line 267, ../sass/components/_principle_investigator.scss */
.node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImage, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImageHalf, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImageTenth, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImageFourth, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImageThird, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImageThirdHalf, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .hero-image,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemImage,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemImageHalf,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemImageTenth,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemImageFourth,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemImageThird,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemImageThirdHalf,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .hero-image {
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
}
@media all and (min-width: 768px) {
  /* line 267, ../sass/components/_principle_investigator.scss */
  .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImage, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImageHalf, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImageTenth, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImageFourth, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImageThird, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemImageThirdHalf, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .hero-image,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemImage,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemImageHalf,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemImageTenth,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemImageFourth,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemImageThird,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemImageThirdHalf,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .hero-image {
    max-width: 50%;
  }
}
/* line 273, ../sass/components/_principle_investigator.scss */
.node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemText,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemText {
  -webkit-box-ordinal-group: 2;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 276, ../sass/components/_principle_investigator.scss */
  .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .bodytext, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .darkGrayBodyText, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .foa-expiration-date,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .bodytext,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .darkGrayBodyText,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .foa-expiration-date {
    display: none;
  }
}
/* line 286, ../sass/components/_principle_investigator.scss */
.node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events {
  background-color: #102d66;
  display: block;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 292, ../sass/components/_principle_investigator.scss */
  .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .flexItemText.flexItemTextHalf a.viewalllink, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .promoted-content-container .flexItemText.flexItemTextHalf .field--name-field-url > a, .promoted-content-container .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .flexItemText.flexItemTextHalf .field--name-field-url > a, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .flexItemText.flexItemTextHalf .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .flexItemText.flexItemTextHalf a, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .flexItemText.flexItemTextHalf .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .flexItemText.flexItemTextHalf a, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .flexItemText.flexItemTextHalf .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .flexItemText.flexItemTextHalf a, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .flexItemText.flexItemTextHalf .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .flexItemText.flexItemTextHalf .field--name-field-url > a {
    display: none;
  }
}
/* line 301, ../sass/components/_principle_investigator.scss */
.node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser {
  color: #fff;
  background-color: transparent;
}
/* line 126, ../sass/_mixins.scss */
.node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser a, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser a:link {
  color: #fff;
  text-decoration: underline;
}
/* line 132, ../sass/_mixins.scss */
.node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser a:visited {
  color: #D7E7F4;
}
/* line 145, ../sass/_mixins.scss */
.node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser a:hover {
  font-weight: bold;
}
/* line 154, ../sass/_mixins.scss */
.node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser h1, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .photocredit {
  color: #fff;
}
/* line 305, ../sass/components/_principle_investigator.scss */
.node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemText {
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
}
/* line 307, ../sass/components/_principle_investigator.scss */
.node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemText .eventdatesLocationType {
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 305, ../sass/components/_principle_investigator.scss */
  .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemText {
    -webkit-box-ordinal-group: 2;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
    padding: 0.875rem;
    min-width: 90%;
  }
}
/* line 316, ../sass/components/_principle_investigator.scss */
.node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImage, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageHalf, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageTenth, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageFourth, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageThird, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageThirdHalf, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .hero-image {
  -webkit-box-ordinal-group: 2;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
  margin: 0;
}
@media all and (min-width: 768px) {
  /* line 316, ../sass/components/_principle_investigator.scss */
  .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImage, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageHalf, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageTenth, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageFourth, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageThird, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageThirdHalf, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .hero-image {
    max-width: 50%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 316, ../sass/components/_principle_investigator.scss */
  .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImage, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageHalf, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageTenth, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageFourth, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageThird, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemImageThirdHalf, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .hero-image {
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
}
/* line 326, ../sass/components/_principle_investigator.scss */
.node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser a:active, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser a:focus {
  outline-color: #fff !important;
}
/* line 334, ../sass/components/_principle_investigator.scss */
.node--type-principal-investigator .accordion-header-secondary h2, .node--type-principal-investigator .accordion-header-secondary .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-principal-investigator .accordion-header-secondary h1, .node--type-principal-investigator .accordion-header-secondary .contact-method-label {
  margin: 0 0 0 0;
  line-height: 1.5;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 334, ../sass/components/_principle_investigator.scss */
  .node--type-principal-investigator .accordion-header-secondary h2, .node--type-principal-investigator .accordion-header-secondary .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-principal-investigator .accordion-header-secondary h1, .node--type-principal-investigator .accordion-header-secondary .contact-method-label {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 334, ../sass/components/_principle_investigator.scss */
  .node--type-principal-investigator .accordion-header-secondary h2, .node--type-principal-investigator .accordion-header-secondary .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-principal-investigator .accordion-header-secondary h1, .node--type-principal-investigator .accordion-header-secondary .contact-method-label {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 1100px) {
  /* line 334, ../sass/components/_principle_investigator.scss */
  .node--type-principal-investigator .accordion-header-secondary h2, .node--type-principal-investigator .accordion-header-secondary .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-principal-investigator .accordion-header-secondary h1, .node--type-principal-investigator .accordion-header-secondary .contact-method-label {
    font-size: 1.5rem;
  }
}
/* line 339, ../sass/components/_principle_investigator.scss */
.node--type-principal-investigator .publicationsContainer {
  background-color: #f4f4f4;
}
/* line 342, ../sass/components/_principle_investigator.scss */
.node--type-principal-investigator .publicationsContainer h2, .node--type-principal-investigator .publicationsContainer .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-principal-investigator .publicationsContainer h1, .node--type-principal-investigator .publicationsContainer .contact-method-label {
  color: #222;
  padding-top: 1.5em;
}
/* line 346, ../sass/components/_principle_investigator.scss */
.node--type-principal-investigator .publicationsContainer .views-element-container {
  padding-top: 1em;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 346, ../sass/components/_principle_investigator.scss */
  .node--type-principal-investigator .publicationsContainer .views-element-container {
    padding-left: 0;
  }
}
/* line 353, ../sass/components/_principle_investigator.scss */
.node--type-principal-investigator .publicationsContainer .views-element-container .view-nhlbi-research-publications {
  overflow: hidden;
  width: -webkit-fill-available;
  width: -moz-fill-available;
  width: -ms-fill-available;
  width: -o-fill-available;
  width: fill-available;
  width: -moz-available;
  width: available;
}
/* line 359, ../sass/components/_principle_investigator.scss */
.node--type-principal-investigator .publicationsContainer .views-element-container .view-nhlbi-research-publications h3 a, .node--type-principal-investigator .publicationsContainer .views-element-container .view-nhlbi-research-publications .field--name-field-social-phrase-group-title a, .node--type-principal-investigator .publicationsContainer .views-element-container .view-nhlbi-research-publications .field--name-field-image-gallery-title a {
  text-decoration: none;
  color: #3885ca;
}
/* line 363, ../sass/components/_principle_investigator.scss */
.node--type-principal-investigator .publicationsContainer .views-element-container .view-nhlbi-research-publications h3 a:hover, .node--type-principal-investigator .publicationsContainer .views-element-container .view-nhlbi-research-publications .field--name-field-social-phrase-group-title a:hover, .node--type-principal-investigator .publicationsContainer .views-element-container .view-nhlbi-research-publications .field--name-field-image-gallery-title a:hover {
  color: #144571;
}
/* line 368, ../sass/components/_principle_investigator.scss */
.node--type-principal-investigator .publicationsContainer .views-element-container .view-nhlbi-research-publications a.button {
  background-color: #307484;
  border-radius: 38px;
  padding: 14px 70px;
  color: #fff;
  border: 1px solid #307484;
}
/* line 375, ../sass/components/_principle_investigator.scss */
.node--type-principal-investigator .publicationsContainer .views-element-container .view-nhlbi-research-publications a.button:hover {
  background-color: #0F80A7;
  border-color: #0F80A7;
}

/* line 386, ../sass/components/_principle_investigator.scss */
.field--name-field-introduction > h1 {
  color: #222;
  text-align: left;
  background-color: #f2f2f2;
}

/* line 394, ../sass/components/_principle_investigator.scss */
.field--name-field-awards {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  padding: 1em 0;
}

/* line 400, ../sass/components/_principle_investigator.scss */
.field--name-field-awards > .field__item {
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-grow: 1;
  -o-flex-grow: 1;
  flex-grow: 1;
  border: 3px solid #d7e7f4;
  margin: 0 0 1em 0;
  padding: 2em;
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-grow: 1;
  -o-flex-grow: 1;
  flex-grow: 1;
  max-width: 27.5%;
  min-width: 27.5%;
  flex-basis: 27.5%;
  /*
  width: auto;
  max-width: 26%;
  @include bp-desktop-mid {
    max-width: 26%;
  }
  @include bp-desktop-constrained {
    max-width: 23%;
  }
  @include bp-tablet {
    max-width: 38%;
  }
  @include bp-phone {
    max-width: 85%;
  }
  */
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 400, ../sass/components/_principle_investigator.scss */
  .field--name-field-awards > .field__item {
    max-width: 27%;
    min-width: 27%;
    flex-basis: 27%;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 400, ../sass/components/_principle_investigator.scss */
  .field--name-field-awards > .field__item {
    max-width: 39%;
    min-width: 39%;
    flex-basis: 39%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 400, ../sass/components/_principle_investigator.scss */
  .field--name-field-awards > .field__item {
    max-width: none;
    min-width: auto;
    flex-basis: auto;
    width: auto;
    margin-right: 0;
  }
}

/* line 444, ../sass/components/_principle_investigator.scss */
.paragraph--type--award {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  -o-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-wrap: no-wrap;
  -moz-flex-wrap: no-wrap;
  -ms-flex-wrap: no-wrap;
  -o-flex-wrap: no-wrap;
  flex-wrap: no-wrap;
}
/* line 450, ../sass/components/_principle_investigator.scss */
.paragraph--type--award .awards-icon-positioned {
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
  width: 38px;
  min-width: 38px;
  padding-right: 1em;
}
/* line 457, ../sass/components/_principle_investigator.scss */
.paragraph--type--award .awardText {
  -webkit-box-ordinal-group: 2;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
}
/* line 459, ../sass/components/_principle_investigator.scss */
.paragraph--type--award .awardText .field--name-field-organization {
  padding-top: 1.2em;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 459, ../sass/components/_principle_investigator.scss */
  .paragraph--type--award .awardText .field--name-field-organization {
    padding-top: 1em;
  }
}

/* line 7, ../sass/components/_events.scss */
.node--type-events.node--view-mode-full .herobannertitle, .node--type-events.node--view-mode-full .herobannertitle-grey,
.node--type-events.node--view-mode-subscribe .herobannertitle,
.node--type-events.node--view-mode-subscribe .herobannertitle-grey {
  color: #222;
}
/* line 9, ../sass/components/_events.scss */
.node--type-events.node--view-mode-full .herobannertitle a, .node--type-events.node--view-mode-full .herobannertitle-grey a,
.node--type-events.node--view-mode-subscribe .herobannertitle a,
.node--type-events.node--view-mode-subscribe .herobannertitle-grey a {
  color: #222;
}
/* line 13, ../sass/components/_events.scss */
.node--type-events.node--view-mode-full .herobannertitle-grey,
.node--type-events.node--view-mode-subscribe .herobannertitle-grey {
  margin-bottom: 0.25em;
}
/* line 16, ../sass/components/_events.scss */
.node--type-events.node--view-mode-full .greyBottom,
.node--type-events.node--view-mode-subscribe .greyBottom {
  margin-bottom: 0;
}
/* line 20, ../sass/components/_events.scss */
.node--type-events.node--view-mode-full .readMoreContainer h2, .node--type-events.node--view-mode-full .readMoreContainer .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-events.node--view-mode-full .readMoreContainer h1, .node--type-events.node--view-mode-full .readMoreContainer .contact-method-label,
.node--type-events.node--view-mode-subscribe .readMoreContainer h2,
.node--type-events.node--view-mode-subscribe .readMoreContainer .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-events.node--view-mode-subscribe .readMoreContainer h1,
.node--type-events.node--view-mode-subscribe .readMoreContainer .contact-method-label {
  margin: 0;
}
/* line 24, ../sass/components/_events.scss */
.node--type-events.node--view-mode-full .fixedDarkBluePane,
.node--type-events.node--view-mode-subscribe .fixedDarkBluePane {
  padding-left: 0;
  border: none;
}
/* line 28, ../sass/components/_events.scss */
.node--type-events.node--view-mode-full .outerHeader,
.node--type-events.node--view-mode-subscribe .outerHeader {
  display: none;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 28, ../sass/components/_events.scss */
  .node--type-events.node--view-mode-full .outerHeader,
  .node--type-events.node--view-mode-subscribe .outerHeader {
    display: block;
    padding-bottom: 1em;
  }
}
/* line 36, ../sass/components/_events.scss */
.node--type-events.node--view-mode-full .field--name-field-related-video .outerHeader,
.node--type-events.node--view-mode-subscribe .field--name-field-related-video .outerHeader {
  display: block;
  padding-bottom: 1em;
}
/* line 41, ../sass/components/_events.scss */
.node--type-events.node--view-mode-full .secondary-accordion h2, .node--type-events.node--view-mode-full .secondary-accordion .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-events.node--view-mode-full .secondary-accordion h1, .node--type-events.node--view-mode-full .secondary-accordion .contact-method-label,
.node--type-events.node--view-mode-subscribe .secondary-accordion h2,
.node--type-events.node--view-mode-subscribe .secondary-accordion .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-events.node--view-mode-subscribe .secondary-accordion h1,
.node--type-events.node--view-mode-subscribe .secondary-accordion .contact-method-label {
  margin: 0 0 0 0;
  font-size: 1.25rem;
}
@media all and (min-width: 1440px) {
  /* line 41, ../sass/components/_events.scss */
  .node--type-events.node--view-mode-full .secondary-accordion h2, .node--type-events.node--view-mode-full .secondary-accordion .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-events.node--view-mode-full .secondary-accordion h1, .node--type-events.node--view-mode-full .secondary-accordion .contact-method-label,
  .node--type-events.node--view-mode-subscribe .secondary-accordion h2,
  .node--type-events.node--view-mode-subscribe .secondary-accordion .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1,
  .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-events.node--view-mode-subscribe .secondary-accordion h1,
  .node--type-events.node--view-mode-subscribe .secondary-accordion .contact-method-label {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 41, ../sass/components/_events.scss */
  .node--type-events.node--view-mode-full .secondary-accordion h2, .node--type-events.node--view-mode-full .secondary-accordion .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-events.node--view-mode-full .secondary-accordion h1, .node--type-events.node--view-mode-full .secondary-accordion .contact-method-label,
  .node--type-events.node--view-mode-subscribe .secondary-accordion h2,
  .node--type-events.node--view-mode-subscribe .secondary-accordion .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1,
  .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-events.node--view-mode-subscribe .secondary-accordion h1,
  .node--type-events.node--view-mode-subscribe .secondary-accordion .contact-method-label {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 41, ../sass/components/_events.scss */
  .node--type-events.node--view-mode-full .secondary-accordion h2, .node--type-events.node--view-mode-full .secondary-accordion .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-events.node--view-mode-full .secondary-accordion h1, .node--type-events.node--view-mode-full .secondary-accordion .contact-method-label,
  .node--type-events.node--view-mode-subscribe .secondary-accordion h2,
  .node--type-events.node--view-mode-subscribe .secondary-accordion .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1,
  .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-events.node--view-mode-subscribe .secondary-accordion h1,
  .node--type-events.node--view-mode-subscribe .secondary-accordion .contact-method-label {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 41, ../sass/components/_events.scss */
  .node--type-events.node--view-mode-full .secondary-accordion h2, .node--type-events.node--view-mode-full .secondary-accordion .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-events.node--view-mode-full .secondary-accordion h1, .node--type-events.node--view-mode-full .secondary-accordion .contact-method-label,
  .node--type-events.node--view-mode-subscribe .secondary-accordion h2,
  .node--type-events.node--view-mode-subscribe .secondary-accordion .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1,
  .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-events.node--view-mode-subscribe .secondary-accordion h1,
  .node--type-events.node--view-mode-subscribe .secondary-accordion .contact-method-label {
    font-size: 1rem;
  }
}

/* line 46, ../sass/components/_events.scss */
.hero-image {
  float: left;
  margin: 0 1.5em 1em 0;
}

/* line 52, ../sass/components/_events.scss */
.registerSocialContainer {
  clear: both;
  overflow: visible;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 52, ../sass/components/_events.scss */
  .registerSocialContainer {
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
  }
}
/* line 59, ../sass/components/_events.scss */
.registerSocialContainer .social_media_header {
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
  min-width: 33%;
  flex-basis: 33%;
  margin: 0 1.5em 1em 0;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 59, ../sass/components/_events.scss */
  .registerSocialContainer .social_media_header {
    -webkit-box-ordinal-group: 2;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
    width: auto;
    min-width: auto;
    flex-basis: auto;
  }
}
/* line 71, ../sass/components/_events.scss */
.registerSocialContainer .blueRoundButton, .registerSocialContainer .redRoundButton, .registerSocialContainer .standard-more-link, .registerSocialContainer .news-and-events--landing .more-link, .news-and-events--landing .registerSocialContainer .more-link, .registerSocialContainer .view-more-link {
  -webkit-box-ordinal-group: 2;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
}
@media all and (min-width: 1100px) {
  /* line 71, ../sass/components/_events.scss */
  .registerSocialContainer .blueRoundButton, .registerSocialContainer .redRoundButton, .registerSocialContainer .standard-more-link, .registerSocialContainer .news-and-events--landing .more-link, .news-and-events--landing .registerSocialContainer .more-link, .registerSocialContainer .view-more-link {
    display: none;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 71, ../sass/components/_events.scss */
  .registerSocialContainer .blueRoundButton, .registerSocialContainer .redRoundButton, .registerSocialContainer .standard-more-link, .registerSocialContainer .news-and-events--landing .more-link, .news-and-events--landing .registerSocialContainer .more-link, .registerSocialContainer .view-more-link {
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
}

/* line 81, ../sass/components/_events.scss */
.registerButton {
  display: inline-block;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 81, ../sass/components/_events.scss */
  .registerButton {
    display: none;
  }
}

/* line 88, ../sass/components/_events.scss */
.eventdatesLocationType {
  font-size: 0.875rem;
  overflow: hidden;
  padding-bottom: 1.5em;
}
@media all and (min-width: 1440px) {
  /* line 88, ../sass/components/_events.scss */
  .eventdatesLocationType {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 88, ../sass/components/_events.scss */
  .eventdatesLocationType {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 88, ../sass/components/_events.scss */
  .eventdatesLocationType {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 88, ../sass/components/_events.scss */
  .eventdatesLocationType {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 88, ../sass/components/_events.scss */
  .eventdatesLocationType {
    clear: both;
  }
}
/* line 97, ../sass/components/_events.scss */
.eventdatesLocationType .eventDates,
.eventdatesLocationType .eventType {
  height: 40px;
}
/* line 104, ../sass/components/_events.scss */
.eventdatesLocationType .eventDates,
.eventdatesLocationType .eventLocation,
.eventdatesLocationType .eventType {
  margin: 1em 1em 0 0;
  word-wrap: break-word;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 104, ../sass/components/_events.scss */
  .eventdatesLocationType .eventDates,
  .eventdatesLocationType .eventLocation,
  .eventdatesLocationType .eventType {
    -webkit-flex-grow: 1;
    -moz-flex-grow: 1;
    -ms-flex-grow: 1;
    -o-flex-grow: 1;
    flex-grow: 1;
  }
}
/* line 113, ../sass/components/_events.scss */
.eventdatesLocationType .eventDates .field--name-field-start-date,
.eventdatesLocationType .eventDates .field--name-field-end-date,
.eventdatesLocationType .eventLocation .field--name-field-start-date,
.eventdatesLocationType .eventLocation .field--name-field-end-date,
.eventdatesLocationType .eventType .field--name-field-start-date,
.eventdatesLocationType .eventType .field--name-field-end-date {
  display: inline-block;
  vertical-align: middle;
}
/* line 118, ../sass/components/_events.scss */
.eventdatesLocationType .eventDates .field--name-field-location,
.eventdatesLocationType .eventDates .field--name-field-event-type,
.eventdatesLocationType .eventDates .startEndDate,
.eventdatesLocationType .eventLocation .field--name-field-location,
.eventdatesLocationType .eventLocation .field--name-field-event-type,
.eventdatesLocationType .eventLocation .startEndDate,
.eventdatesLocationType .eventType .field--name-field-location,
.eventdatesLocationType .eventType .field--name-field-event-type,
.eventdatesLocationType .eventType .startEndDate {
  display: table-cell;
  vertical-align: middle;
  padding-left: 0.25em;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 104, ../sass/components/_events.scss */
  .eventdatesLocationType .eventDates,
  .eventdatesLocationType .eventLocation,
  .eventdatesLocationType .eventType {
    float: none;
    display: block;
    margin: 1em 0 0 0;
  }
}
/* line 131, ../sass/components/_events.scss */
.eventdatesLocationType .eventDates {
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
}
/* line 136, ../sass/components/_events.scss */
.eventdatesLocationType .eventLocation {
  -webkit-box-ordinal-group: 2;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
}
/* line 139, ../sass/components/_events.scss */
.eventdatesLocationType .eventType {
  -webkit-box-ordinal-group: 3;
  -moz-box-ordinal-group: 3;
  -ms-flex-order: 3;
  -webkit-order: 3;
  order: 3;
}

/* line 144, ../sass/components/_events.scss */
.agenda-date-title {
  font-size: 1.125rem;
  color: #222;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 0.375em;
  padding-bottom: 0.375em;
  margin: 2px 0 0 0;
  min-height: 0;
  border-radius: 0;
  border-bottom: 1px solid #a5a5a5;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  background: none;
  margin-right: 0.875rem;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 144, ../sass/components/_events.scss */
  .agenda-date-title {
    font-size: 0.875rem;
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 144, ../sass/components/_events.scss */
  .agenda-date-title {
    font-size: 0.875rem;
  }
}

/* line 170, ../sass/components/_events.scss */
.agenda-session-item-nobody-title {
  padding-left: 20px;
  padding-right: 20px;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 170, ../sass/components/_events.scss */
  .agenda-session-item-nobody-title {
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }
}

/* line 179, ../sass/components/_events.scss */
.field--name-field-agenda h3, .field--name-field-agenda .field--name-field-social-phrase-group-title, .field--name-field-agenda .field--name-field-image-gallery-title {
  margin: 0;
}
/* line 183, ../sass/components/_events.scss */
.field--name-field-agenda .ui-accordion-header:focus h3, .field--name-field-agenda .ui-accordion-header:focus .field--name-field-social-phrase-group-title, .field--name-field-agenda .ui-accordion-header:focus .field--name-field-image-gallery-title {
  outline: none !important;
}

/* line 190, ../sass/components/_events.scss */
.field--name-field-session-date {
  color: #222;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  margin: 0 0 0 0;
  font-size: 1.25rem;
  font-weight: normal;
}
@media all and (min-width: 1440px) {
  /* line 190, ../sass/components/_events.scss */
  .field--name-field-session-date {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 190, ../sass/components/_events.scss */
  .field--name-field-session-date {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 190, ../sass/components/_events.scss */
  .field--name-field-session-date {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 190, ../sass/components/_events.scss */
  .field--name-field-session-date {
    font-size: 1rem;
  }
}

/* line 198, ../sass/components/_events.scss */
.agenda-session-item-nobody-title .field--name-field-time {
  font-size: 1.125rem;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 198, ../sass/components/_events.scss */
  .agenda-session-item-nobody-title .field--name-field-time {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 198, ../sass/components/_events.scss */
  .agenda-session-item-nobody-title .field--name-field-time {
    font-size: 0.875rem;
  }
}
/* line 208, ../sass/components/_events.scss */
.agenda-session-item-nobody-title .field--name-field-session-title {
  font-size: 1.125rem;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 208, ../sass/components/_events.scss */
  .agenda-session-item-nobody-title .field--name-field-session-title {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 208, ../sass/components/_events.scss */
  .agenda-session-item-nobody-title .field--name-field-session-title {
    font-size: 0.875rem;
  }
}

/* line 224, ../sass/components/_events.scss */
.field--name-field-event-publications .field__item,
.field--name-field-related-reading .field__item {
  margin-top: 0.8em;
}

@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 230, ../sass/components/_events.scss */
  .field--name-field-video, .field--name-field-related-video {
    display: block;
    padding-bottom: 1em;
  }
}
/* line 236, ../sass/components/_events.scss */
.field--name-field-video .flexItemText, .field--name-field-related-video .flexItemText {
  padding-top: 0;
}
/* line 238, ../sass/components/_events.scss */
.field--name-field-video .flexItemText .innerHeader, .field--name-field-related-video .flexItemText .innerHeader {
  display: none;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 236, ../sass/components/_events.scss */
  .field--name-field-video .flexItemText, .field--name-field-related-video .flexItemText {
    padding-top: 1em;
  }
}

/* line 252, ../sass/components/_events.scss */
.other-speakers {
  clear: both;
  display: block;
  margin-top: 1em;
}
/* line 256, ../sass/components/_events.scss */
.other-speakers .speakerCard {
  margin-bottom: 1em;
}

/* line 261, ../sass/components/_events.scss */
.field--name-field-time, .field--name-field-session-title {
  display: inline;
}

/* line 264, ../sass/components/_events.scss */
.field--name-field-session-subtitle {
  color: #222;
}

/* line 275, ../sass/components/_events.scss */
#map {
  border: #fff solid 0.5em;
  margin: 0 1em 1em 0;
  width: 50%;
  height: 339px;
}
@media all and (min-width: 1440px) {
  /* line 275, ../sass/components/_events.scss */
  #map {
    height: 339px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 275, ../sass/components/_events.scss */
  #map {
    height: 254px;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 275, ../sass/components/_events.scss */
  #map {
    height: 189px;
    margin-top: 1em;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 275, ../sass/components/_events.scss */
  #map {
    width: 95%;
  }
}

/* line 296, ../sass/components/_events.scss */
.fixedDarkBluePane .travelling-and-security {
  float: none;
  clear: both;
  margin: 1em auto;
}
/* line 302, ../sass/components/_events.scss */
.fixedDarkBluePane .field--name-field-traveling-and-security a {
  line-height: inherit;
}

@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 310, ../sass/components/_events.scss */
  .list-title-block {
    margin-left: 1.1em;
  }
}

/* line 317, ../sass/components/_events.scss */
.field--name-field-partners ol, .field--name-field-partners ul {
  padding-left: 0;
  margin-top: 0;
}
/* line 321, ../sass/components/_events.scss */
.field--name-field-partners ul {
  list-style-type: none;
}
/* line 323, ../sass/components/_events.scss */
.field--name-field-partners ul li {
  margin-bottom: 0.5em;
}

/* line 330, ../sass/components/_events.scss */
.maintainedBy {
  margin: 2em 0 2.5em 0;
}
/* line 332, ../sass/components/_events.scss */
.maintainedBy .field--name-field-maintained-by {
  display: inline;
}

/* line 340, ../sass/components/_events.scss */
.eventLocation .map-icon {
  width: 47px;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 343, ../sass/components/_events.scss */
  .eventLocation .map-icon {
    width: 47px;
    background-position: 15% center;
  }
}

/* line 350, ../sass/components/_events.scss */
.event-type-icon {
  width: 67px;
}

/* line 356, ../sass/components/_events.scss */
.node--type-events.node--view-mode-full .locationMap .mapLocation-container,
.node--type-events.node--view-mode-subscribe .locationMap .mapLocation-container {
  padding-top: 0;
  padding-left: 1em;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 356, ../sass/components/_events.scss */
  .node--type-events.node--view-mode-full .locationMap .mapLocation-container,
  .node--type-events.node--view-mode-subscribe .locationMap .mapLocation-container {
    padding-top: 1em;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 356, ../sass/components/_events.scss */
  .node--type-events.node--view-mode-full .locationMap .mapLocation-container,
  .node--type-events.node--view-mode-subscribe .locationMap .mapLocation-container {
    padding-top: 1em;
  }
}
/* line 365, ../sass/components/_events.scss */
.node--type-events.node--view-mode-full .locationMap .mapLocation-container .mapLocation,
.node--type-events.node--view-mode-subscribe .locationMap .mapLocation-container .mapLocation {
  padding-left: 40px;
}
/* line 368, ../sass/components/_events.scss */
.node--type-events.node--view-mode-full .locationMap .mapLocation-container .mapLocation h3, .node--type-events.node--view-mode-full .locationMap .mapLocation-container .mapLocation .field--name-field-social-phrase-group-title, .node--type-events.node--view-mode-full .locationMap .mapLocation-container .mapLocation .field--name-field-image-gallery-title,
.node--type-events.node--view-mode-subscribe .locationMap .mapLocation-container .mapLocation h3,
.node--type-events.node--view-mode-subscribe .locationMap .mapLocation-container .mapLocation .field--name-field-social-phrase-group-title,
.node--type-events.node--view-mode-subscribe .locationMap .mapLocation-container .mapLocation .field--name-field-image-gallery-title {
  color: #fff;
}

/* line 377, ../sass/components/_events.scss */
.eventCalendarIcon {
  position: relative;
  background-position: left center;
  width: 47px;
}

/* line 385, ../sass/components/_events.scss */
.news-article-container {
  color: #fff;
  background-color: transparent;
}
/* line 126, ../sass/_mixins.scss */
.news-article-container a, .news-article-container a:link {
  color: #fff;
  text-decoration: underline;
}
/* line 132, ../sass/_mixins.scss */
.news-article-container a:visited {
  color: #D7E7F4;
}
/* line 145, ../sass/_mixins.scss */
.news-article-container a:hover {
  font-weight: bold;
}
/* line 154, ../sass/_mixins.scss */
.news-article-container h1, .news-article-container .photocredit {
  color: #fff;
}
/* line 388, ../sass/components/_events.scss */
.news-article-container .flexItemText {
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 391, ../sass/components/_events.scss */
  .news-article-container .flexItemText hr, .news-article-container .flexItemText .bodytext, .news-article-container .flexItemText .darkGrayBodyText, .news-article-container .flexItemText .foa-expiration-date {
    display: none;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 388, ../sass/components/_events.scss */
  .news-article-container .flexItemText {
    -webkit-box-ordinal-group: 2;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
}
/* line 399, ../sass/components/_events.scss */
.news-article-container .flexItemImage, .news-article-container .flexItemImageHalf, .news-article-container .flexItemImageTenth, .news-article-container .flexItemImageFourth, .news-article-container .flexItemImageThird, .news-article-container .flexItemImageThirdHalf, .news-article-container .hero-image {
  -webkit-box-ordinal-group: 2;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 399, ../sass/components/_events.scss */
  .news-article-container .flexItemImage, .news-article-container .flexItemImageHalf, .news-article-container .flexItemImageTenth, .news-article-container .flexItemImageFourth, .news-article-container .flexItemImageThird, .news-article-container .flexItemImageThirdHalf, .news-article-container .hero-image {
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
}

/* line 406, ../sass/components/_events.scss */
.node--type-speaker.node--view-mode-short-teaser {
  margin-bottom: 1em;
}

/* line 411, ../sass/components/_events.scss */
.node--type-events h1 {
  margin-top: 0;
}
/* line 414, ../sass/components/_events.scss */
.node--type-events.node--view-mode-featured-teaser {
  overflow: visible;
}

/* line 419, ../sass/components/_events.scss */
.scientific-focus-area-events--landing .primaryRedBackground, .scientific-focus-area-events--landing .transparentBackground, .scientific-focus-area-events--landing .transparentBackground .flexcontainer, .scientific-focus-area-events--landing .transparentBackground .related-ht-ser-container, .scientific-focus-area-events--landing .transparentBackground .field--name-field-sfa-card, .scientific-focus-area-events--landing .transparentBackground .field--name-field-speaker,
.scientific-focus-area-events--landing .transparentBackground .field--name-field-executives, .scientific-focus-area-events--landing .transparentBackground .standard-card-field, .scientific-focus-area-events--landing .transparentBackground .field--name-field-advisory-committees, .scientific-focus-area-events--landing .transparentBackground .contact-nhlbi-titleblock, .scientific-focus-area-events--landing .transparentBackground .field--name-field-contact-cards, .scientific-focus-area-events--landing .transparentBackground .field--name-field-employment-opportunity-car, .scientific-focus-area-events--landing .transparentBackground .all-grants-foa-container,
.scientific-focus-area-events--landing .transparentBackground .field--name-field-program-officers,
.scientific-focus-area-events--landing .transparentBackground .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content,
.scientific-focus-area-events--landing .transparentBackground .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content, .scientific-focus-area-events--landing .transparentBackground .node--type-individual-contact .field--name-field-contact-methods, .node--type-individual-contact .scientific-focus-area-events--landing .transparentBackground .field--name-field-contact-methods,
.scientific-focus-area-events--landing .transparentBackground .node--type-division.node--view-mode-full .field--name-field-contact-methods,
.node--type-division.node--view-mode-full .scientific-focus-area-events--landing .transparentBackground .field--name-field-contact-methods,
.scientific-focus-area-events--landing .transparentBackground .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods,
.node--type-division.node--view-mode-subscribe .scientific-focus-area-events--landing .transparentBackground .field--name-field-contact-methods,
.scientific-focus-area-events--landing .transparentBackground .node--type-branch.node--view-mode-full .field--name-field-contact-methods,
.node--type-branch.node--view-mode-full .scientific-focus-area-events--landing .transparentBackground .field--name-field-contact-methods,
.scientific-focus-area-events--landing .transparentBackground .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods,
.node--type-branch.node--view-mode-subscribe .scientific-focus-area-events--landing .transparentBackground .field--name-field-contact-methods,
.scientific-focus-area-events--landing .transparentBackground .node--type-general.node--view-mode-full .field--name-field-contact-methods,
.node--type-general.node--view-mode-full .scientific-focus-area-events--landing .transparentBackground .field--name-field-contact-methods,
.scientific-focus-area-events--landing .transparentBackground .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods,
.node--type-general.node--view-mode-subscribe .scientific-focus-area-events--landing .transparentBackground .field--name-field-contact-methods,
.scientific-focus-area-events--landing .transparentBackground .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods,
.node--type-health-education-initiative.node--view-mode-full .scientific-focus-area-events--landing .transparentBackground .field--name-field-contact-methods,
.scientific-focus-area-events--landing .transparentBackground .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods,
.node--type-health-education-initiative.node--view-mode-subscribe .scientific-focus-area-events--landing .transparentBackground .field--name-field-contact-methods, .scientific-focus-area-events--landing .transparentBackground .node--type-committee .field--name-field-card-text, .node--type-committee .scientific-focus-area-events--landing .transparentBackground .field--name-field-card-text, .scientific-focus-area-events--landing .transparentBackground .news-and-events--landing .landing-social, .news-and-events--landing .scientific-focus-area-events--landing .transparentBackground .landing-social, .scientific-focus-area-events--landing .transparentBackground .field--name-field-sfa-cards, .scientific-focus-area-events--landing .transparentBackground .locationMap.contact-location-map-container, .scientific-focus-area-events--landing .transparentBackground .locationMap, .scientific-focus-area-events--landing .transparentBackground .grants-and-training-card-wrapper, .scientific-focus-area-events--landing .transparentBackground .about-nhlbi-division-card-wrapper, .scientific-focus-area-events--landing .transparentBackground .hei-tools-icon-card-wrapper, .scientific-focus-area-events--landing .transparentBackground .field--name-field-grants-and-training-card, .scientific-focus-area-events--landing .transparentBackground .field--name-field-division-card, .scientific-focus-area-events--landing .transparentBackground .field--name-field-tool-icon-card, .scientific-focus-area-events--landing .transparentBackground .field--name-field-promotional-card, .scientific-focus-area-events--landing .transparentBackground .field--name-field-sv-promotional-cards, .scientific-focus-area-events--landing .transparentBackground .field--name-field-about-nhlbi-promotional-ca, .scientific-focus-area-events--landing .transparentBackground .strategic-vision-titleblock, .scientific-focus-area-events--landing .transparentBackground .ppg-titleblock-wrapper, .scientific-focus-area-events--landing .transparentBackground .ppg-guidelines-card-wrapper, .scientific-focus-area-events--landing .transparentBackground .field--name-field-human-subject-cards, .scientific-focus-area-events--landing .transparentBackground .field--name-field-section-card, .scientific-focus-area-events--landing .transparentBackground .field--name-field-highlight-card, .scientific-focus-area-events--landing .transparentBackground .health-topic-teaser-container, .scientific-focus-area-events--landing .transparentBackground .about-nhlbi-our-mission-wrapper, .scientific-focus-area-events--landing .transparentBackground .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard, .about-nhlbi-our-mission-wrapper .scientific-focus-area-events--landing .transparentBackground .field--name-field-leadership > .director-bioCard, .scientific-focus-area-events--landing .transparentBackground .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ, .nhlbi-publications-and-resources--landing .scientific-focus-area-events--landing .transparentBackground .field--name-field-health-consumer-nhlbi-publ,
.scientific-focus-area-events--landing .transparentBackground .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi,
.nhlbi-publications-and-resources--landing .scientific-focus-area-events--landing .transparentBackground .field--name-field-health-professionals-nhlbi, .scientific-focus-area-events--landing .transparentBackground .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .scientific-focus-area-events--landing .transparentBackground .standard-teaser,
.scientific-focus-area-events--landing .transparentBackground .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .scientific-focus-area-events--landing .transparentBackground .standard-teaser, .scientific-focus-area-events--landing .transparentBackground .publicationsBlock.view-nhlbi-publications > .view-content,
.scientific-focus-area-events--landing .transparentBackground .field--name-field-related-publications, .scientific-focus-area-events--landing .transparentBackground .healthEducationBlock .standard-teaser, .healthEducationBlock .scientific-focus-area-events--landing .transparentBackground .standard-teaser, .scientific-focus-area-events--landing .transparentBackground .systematicEvidenceReviewsBlock .view-content, .systematicEvidenceReviewsBlock .scientific-focus-area-events--landing .transparentBackground .view-content,
.scientific-focus-area-events--landing .transparentBackground .clinicalPracticeGuidelinesBlock .view-content,
.clinicalPracticeGuidelinesBlock .scientific-focus-area-events--landing .transparentBackground .view-content,
.scientific-focus-area-events--landing .transparentBackground .publicationsAndFactSheetsBlock .view-content,
.publicationsAndFactSheetsBlock .scientific-focus-area-events--landing .transparentBackground .view-content, .scientific-focus-area-events--landing .transparentBackground .rtFlexContainer, .scientific-focus-area-events--landing .transparentBackground .node--type-research-topic .field--name-field-science-supplemental-page, .node--type-research-topic .scientific-focus-area-events--landing .transparentBackground .field--name-field-science-supplemental-page, .scientific-focus-area-events--landing .transparentBackground .node--type-research-topic .researchTopicPublications, .node--type-research-topic .scientific-focus-area-events--landing .transparentBackground .researchTopicPublications, .scientific-focus-area-events--landing .transparentBackground .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard, .node--type-research-topic .field--name-field-content > .field__item .scientific-focus-area-events--landing .transparentBackground article.listTeaserCard, .scientific-focus-area-events--landing .transparentBackground .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser, .node--type-research-topic .field--name-field-content > .field__item .scientific-focus-area-events--landing .transparentBackground article.standard-teaser,
.scientific-focus-area-events--landing .transparentBackground .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard,
.node--type-research-topic .field--name-field-content > .field__item .scientific-focus-area-events--landing .transparentBackground article.newsEventsCard, .scientific-focus-area-events--landing .transparentBackground .esi-feature-card, .scientific-focus-area-events--landing .transparentBackground .featured-science-instance-teaser-container, .scientific-focus-area-events--landing .transparentBackground .sfa-teaser-container, .scientific-focus-area-events--landing .transparentBackground .training-opportunity-card .field--name-field-associated-people, .training-opportunity-card .scientific-focus-area-events--landing .transparentBackground .field--name-field-associated-people, .scientific-focus-area-events--landing .transparentBackground .field--name-field-featured-training-opportun, .scientific-focus-area-events--landing .transparentBackground .field--name-field-career-stages, .scientific-focus-area-events--landing .transparentBackground .field--name-field-workforce-development-card, .scientific-focus-area-events--landing .transparentBackground .node--type-update.node--view-mode-executive-teaser, .scientific-focus-area-events--landing .transparentBackground .news-and-events-titleblock, .scientific-focus-area-events--landing .transparentBackground .contact-box > .field--name-field-contact-methods, .scientific-focus-area-events--landing .transparentBackground .leadership-container, .scientific-focus-area-events--landing .transparentBackground .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership, .leadership-container .leadership-deputy-director-container .scientific-focus-area-events--landing .transparentBackground .field--name-field-additional-leadership, .scientific-focus-area-events--landing .transparentBackground .branch-leadership-container, .scientific-focus-area-events--landing .transparentBackground .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership, .branch-leadership-container .leadership-deputy-director-container .scientific-focus-area-events--landing .transparentBackground .field--name-field-additional-leadership, .scientific-focus-area-events--landing .transparentBackground .node--type-general .field--name-field-related-publications, .node--type-general .scientific-focus-area-events--landing .transparentBackground .field--name-field-related-publications, .scientific-focus-area-events--landing .transparentBackground .node--type-general .field--name-field-general-publications-rlt, .node--type-general .scientific-focus-area-events--landing .transparentBackground .field--name-field-general-publications-rlt, .scientific-focus-area-events--landing .transparentBackground .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser, .node--type-general .field--name-field-general-publications-rlt > .field__item .scientific-focus-area-events--landing .transparentBackground .standard-teaser, .scientific-focus-area-events--landing .transparentBackground .node--type-general .field--name-field-related-publications > .field__item .standard-teaser, .node--type-general .field--name-field-related-publications > .field__item .scientific-focus-area-events--landing .transparentBackground .standard-teaser, .scientific-focus-area-events--landing .transparentBackground .objective-text-container, .scientific-focus-area-events--landing .transparentBackground .objective-list-container, .scientific-focus-area-events--landing .transparentBackground .field--name-field-goal-card, .scientific-focus-area-events--landing .transparentBackground .strategic-vision-landing-goals-wrapper, .scientific-focus-area-events--landing .transparentBackground .node--type-principal-investigator .striped-container-wrapper, .node--type-principal-investigator .scientific-focus-area-events--landing .transparentBackground .striped-container-wrapper, .scientific-focus-area-events--landing .transparentBackground .node--type-principal-investigator .striped-container, .node--type-principal-investigator .scientific-focus-area-events--landing .transparentBackground .striped-container, .scientific-focus-area-events--landing .transparentBackground .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .scientific-focus-area-events--landing .transparentBackground article,
.scientific-focus-area-events--landing .transparentBackground .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .scientific-focus-area-events--landing .transparentBackground article, .scientific-focus-area-events--landing .transparentBackground .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .scientific-focus-area-events--landing .transparentBackground .standard-teaser.node--view-mode-short-teaser, .scientific-focus-area-events--landing .transparentBackground .field--name-field-awards, .scientific-focus-area-events--landing .transparentBackground .registerSocialContainer, .scientific-focus-area-events--landing .transparentBackground .eventdatesLocationType, .scientific-focus-area-events--landing .transparentBackground .news-article-container, .scientific-focus-area-events--landing .transparentBackground .node--type-feature-article.node--view-mode-press-release-teaser,
.scientific-focus-area-events--landing .transparentBackground .node--type-press-release.node--view-mode-press-release-teaser,
.scientific-focus-area-events--landing .transparentBackground .node--type-events.node--view-mode-press-release-teaser,
.scientific-focus-area-events--landing .transparentBackground .node--type-feature-article.node--view-mode-hp-press-release-teaser,
.scientific-focus-area-events--landing .transparentBackground .node--type-press-release.node--view-mode-hp-press-release-teaser,
.scientific-focus-area-events--landing .transparentBackground .node--type-events.node--view-mode-hp-press-release-teaser,
.scientific-focus-area-events--landing .transparentBackground .node--type-news-mention.node--view-mode-hp-press-release-teaser, .scientific-focus-area-events--landing .transparentBackground .news-header-container, .scientific-focus-area-events--landing .transparentBackground .contacts-container .field--name-field-contacts, .contacts-container .scientific-focus-area-events--landing .transparentBackground .field--name-field-contacts, .scientific-focus-area-events--landing .transparentBackground .publicationsBox .field--name-field-related-publications, .publicationsBox .scientific-focus-area-events--landing .transparentBackground .field--name-field-related-publications, .scientific-focus-area-events--landing .transparentBackground .field--name-field-primary-featured-item, .scientific-focus-area-events--landing .transparentBackground .field--name-field-additional-featured-items, .scientific-focus-area-events--landing .transparentBackground .homepage-health-topics-container, .scientific-focus-area-events--landing .transparentBackground .homepage-mission-areas-container, .scientific-focus-area-events--landing .transparentBackground .homepage-location-container, .scientific-focus-area-events--landing .transparentBackground .field--name-field-alumni, .scientific-focus-area-events--landing .transparentBackground .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container, .node--type-nhlbi-publication.node--view-mode-full .scientific-focus-area-events--landing .transparentBackground .nhlbi-publication-details-container,
.scientific-focus-area-events--landing .transparentBackground .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container,
.node--type-nhlbi-publication.node--view-mode-subscribe .scientific-focus-area-events--landing .transparentBackground .nhlbi-publication-details-container, .scientific-focus-area-events--landing .transparentBackground .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications, .node--type-nhlbi-publication.node--view-mode-full .scientific-focus-area-events--landing .transparentBackground .field--name-field-related-nhlbi-publications,
.scientific-focus-area-events--landing .transparentBackground .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications,
.node--type-nhlbi-publication.node--view-mode-subscribe .scientific-focus-area-events--landing .transparentBackground .field--name-field-related-nhlbi-publications, .scientific-focus-area-events--landing .transparentBackground .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .scientific-focus-area-events--landing .transparentBackground .standard-teaser,
.scientific-focus-area-events--landing .transparentBackground .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .scientific-focus-area-events--landing .transparentBackground .standard-teaser {
  overflow: visible;
}

/* line 425, ../sass/components/_events.scss */
.division-events--landing .primaryRedBackground {
  overflow: visible;
}

/* line 430, ../sass/components/_events.scss */
.field--name-field-related-divisions {
  margin-bottom: 1.25em;
}

/* line 1, ../sass/components/_news.scss */
.field--name-field-article-type {
  display: inline-block;
}

/* line 6, ../sass/components/_news.scss */
.node--type-feature-article .field--name-field-related-news .field__item {
  margin-bottom: .625rem;
}
/* line 10, ../sass/components/_news.scss */
.node--type-feature-article h1 {
  margin-top: 0;
}

/* line 14, ../sass/components/_news.scss */
.related-ht-press-container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  padding-bottom: 4rem;
  padding-top: 1em;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 14, ../sass/components/_news.scss */
  .related-ht-press-container {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
  }
}
/* line 22, ../sass/components/_news.scss */
.related-ht-press-container .card {
  background-color: #f4f4f4;
  width: 45%;
  min-height: 5rem;
  margin: 0.5rem 0.875rem 0 0;
  padding: 2rem;
  overflow: auto;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 22, ../sass/components/_news.scss */
  .related-ht-press-container .card {
    width: 85%;
  }
}
/* line 32, ../sass/components/_news.scss */
.related-ht-press-container .card .posttitlethumb, .related-ht-press-container .card .blue-posttitlethumb, .related-ht-press-container .card .objective-list-container .objective-side-text, .objective-list-container .related-ht-press-container .card .objective-side-text {
  padding-bottom: 0.4em;
  color: #222;
}

/* line 41, ../sass/components/_news.scss */
.node--type-research-topic .related-ht-press-container {
  padding-bottom: 1em;
  background-color: #f4f4f4;
}
/* line 44, ../sass/components/_news.scss */
.node--type-research-topic .related-ht-press-container .card {
  width: 100%;
  margin: 0;
}

/* line 55, ../sass/components/_news.scss */
.node--type-feature-article.node--view-mode-full p,
.node--type-feature-article.node--view-mode-subscribe p,
.node--type-press-release.node--view-mode-full p,
.node--type-press-release.node--view-mode-subscribe p {
  color: #222;
}
/* line 58, ../sass/components/_news.scss */
.node--type-feature-article.node--view-mode-full .herobannertitle, .node--type-feature-article.node--view-mode-full .herobannertitle-grey,
.node--type-feature-article.node--view-mode-subscribe .herobannertitle,
.node--type-feature-article.node--view-mode-subscribe .herobannertitle-grey,
.node--type-press-release.node--view-mode-full .herobannertitle,
.node--type-press-release.node--view-mode-full .herobannertitle-grey,
.node--type-press-release.node--view-mode-subscribe .herobannertitle,
.node--type-press-release.node--view-mode-subscribe .herobannertitle-grey {
  color: #222;
}
/* line 60, ../sass/components/_news.scss */
.node--type-feature-article.node--view-mode-full .herobannertitle a, .node--type-feature-article.node--view-mode-full .herobannertitle-grey a,
.node--type-feature-article.node--view-mode-subscribe .herobannertitle a,
.node--type-feature-article.node--view-mode-subscribe .herobannertitle-grey a,
.node--type-press-release.node--view-mode-full .herobannertitle a,
.node--type-press-release.node--view-mode-full .herobannertitle-grey a,
.node--type-press-release.node--view-mode-subscribe .herobannertitle a,
.node--type-press-release.node--view-mode-subscribe .herobannertitle-grey a {
  color: #222;
}
/* line 64, ../sass/components/_news.scss */
.node--type-feature-article.node--view-mode-full hr,
.node--type-feature-article.node--view-mode-subscribe hr,
.node--type-press-release.node--view-mode-full hr,
.node--type-press-release.node--view-mode-subscribe hr {
  clear: both;
}
/* line 67, ../sass/components/_news.scss */
.node--type-feature-article.node--view-mode-full .upperCaseHFour,
.node--type-feature-article.node--view-mode-subscribe .upperCaseHFour,
.node--type-press-release.node--view-mode-full .upperCaseHFour,
.node--type-press-release.node--view-mode-subscribe .upperCaseHFour {
  color: #222;
}
/* line 70, ../sass/components/_news.scss */
.node--type-feature-article.node--view-mode-full .upperCaseHFour, .node--type-feature-article.node--view-mode-full .blackstandardsubhead, .node--type-feature-article.node--view-mode-full .whitesubhead,
.node--type-feature-article.node--view-mode-subscribe .upperCaseHFour,
.node--type-feature-article.node--view-mode-subscribe .blackstandardsubhead,
.node--type-feature-article.node--view-mode-subscribe .whitesubhead,
.node--type-press-release.node--view-mode-full .upperCaseHFour,
.node--type-press-release.node--view-mode-full .blackstandardsubhead,
.node--type-press-release.node--view-mode-full .whitesubhead,
.node--type-press-release.node--view-mode-subscribe .upperCaseHFour,
.node--type-press-release.node--view-mode-subscribe .blackstandardsubhead,
.node--type-press-release.node--view-mode-subscribe .whitesubhead {
  padding-top: 0.5em;
}
/* line 75, ../sass/components/_news.scss */
.node--type-feature-article.node--view-mode-full .press-contact-top .upperCaseHFour,
.node--type-feature-article.node--view-mode-subscribe .press-contact-top .upperCaseHFour,
.node--type-press-release.node--view-mode-full .press-contact-top .upperCaseHFour,
.node--type-press-release.node--view-mode-subscribe .press-contact-top .upperCaseHFour {
  padding-left: 0;
}
/* line 78, ../sass/components/_news.scss */
.node--type-feature-article.node--view-mode-full .press-contact-top .upperCaseHFour.lightBlueBottom,
.node--type-feature-article.node--view-mode-subscribe .press-contact-top .upperCaseHFour.lightBlueBottom,
.node--type-press-release.node--view-mode-full .press-contact-top .upperCaseHFour.lightBlueBottom,
.node--type-press-release.node--view-mode-subscribe .press-contact-top .upperCaseHFour.lightBlueBottom {
  width: 100%;
}
/* line 83, ../sass/components/_news.scss */
.node--type-feature-article.node--view-mode-full .hidden.readMore,
.node--type-feature-article.node--view-mode-subscribe .hidden.readMore,
.node--type-press-release.node--view-mode-full .hidden.readMore,
.node--type-press-release.node--view-mode-subscribe .hidden.readMore {
  display: none;
}
/* line 94, ../sass/components/_news.scss */
.node--type-feature-article.node--view-mode-full .field--name-field-video .outerHeader,
.node--type-feature-article.node--view-mode-full .field--name-field-related-video .outerHeader,
.node--type-feature-article.node--view-mode-subscribe .field--name-field-video .outerHeader,
.node--type-feature-article.node--view-mode-subscribe .field--name-field-related-video .outerHeader,
.node--type-press-release.node--view-mode-full .field--name-field-video .outerHeader,
.node--type-press-release.node--view-mode-full .field--name-field-related-video .outerHeader,
.node--type-press-release.node--view-mode-subscribe .field--name-field-video .outerHeader,
.node--type-press-release.node--view-mode-subscribe .field--name-field-related-video .outerHeader {
  padding-left: 0;
}
/* line 98, ../sass/components/_news.scss */
.node--type-feature-article.node--view-mode-full .field--name-field-video .herobannertitle, .node--type-feature-article.node--view-mode-full .field--name-field-video .herobannertitle-grey,
.node--type-feature-article.node--view-mode-full .field--name-field-related-video .herobannertitle,
.node--type-feature-article.node--view-mode-full .field--name-field-related-video .herobannertitle-grey,
.node--type-feature-article.node--view-mode-subscribe .field--name-field-video .herobannertitle,
.node--type-feature-article.node--view-mode-subscribe .field--name-field-video .herobannertitle-grey,
.node--type-feature-article.node--view-mode-subscribe .field--name-field-related-video .herobannertitle,
.node--type-feature-article.node--view-mode-subscribe .field--name-field-related-video .herobannertitle-grey,
.node--type-press-release.node--view-mode-full .field--name-field-video .herobannertitle,
.node--type-press-release.node--view-mode-full .field--name-field-video .herobannertitle-grey,
.node--type-press-release.node--view-mode-full .field--name-field-related-video .herobannertitle,
.node--type-press-release.node--view-mode-full .field--name-field-related-video .herobannertitle-grey,
.node--type-press-release.node--view-mode-subscribe .field--name-field-video .herobannertitle,
.node--type-press-release.node--view-mode-subscribe .field--name-field-video .herobannertitle-grey,
.node--type-press-release.node--view-mode-subscribe .field--name-field-related-video .herobannertitle,
.node--type-press-release.node--view-mode-subscribe .field--name-field-related-video .herobannertitle-grey {
  color: #222;
  background-color: transparent;
}
/* line 126, ../sass/_mixins.scss */
.node--type-feature-article.node--view-mode-full .field--name-field-video .herobannertitle a, .node--type-feature-article.node--view-mode-full .field--name-field-video .herobannertitle-grey a, .node--type-feature-article.node--view-mode-full .field--name-field-video .herobannertitle a:link, .node--type-feature-article.node--view-mode-full .field--name-field-video .herobannertitle-grey a:link,
.node--type-feature-article.node--view-mode-full .field--name-field-related-video .herobannertitle a,
.node--type-feature-article.node--view-mode-full .field--name-field-related-video .herobannertitle-grey a,
.node--type-feature-article.node--view-mode-full .field--name-field-related-video .herobannertitle a:link,
.node--type-feature-article.node--view-mode-full .field--name-field-related-video .herobannertitle-grey a:link,
.node--type-feature-article.node--view-mode-subscribe .field--name-field-video .herobannertitle a,
.node--type-feature-article.node--view-mode-subscribe .field--name-field-video .herobannertitle-grey a,
.node--type-feature-article.node--view-mode-subscribe .field--name-field-video .herobannertitle a:link,
.node--type-feature-article.node--view-mode-subscribe .field--name-field-video .herobannertitle-grey a:link,
.node--type-feature-article.node--view-mode-subscribe .field--name-field-related-video .herobannertitle a,
.node--type-feature-article.node--view-mode-subscribe .field--name-field-related-video .herobannertitle-grey a,
.node--type-feature-article.node--view-mode-subscribe .field--name-field-related-video .herobannertitle a:link,
.node--type-feature-article.node--view-mode-subscribe .field--name-field-related-video .herobannertitle-grey a:link,
.node--type-press-release.node--view-mode-full .field--name-field-video .herobannertitle a,
.node--type-press-release.node--view-mode-full .field--name-field-video .herobannertitle-grey a,
.node--type-press-release.node--view-mode-full .field--name-field-video .herobannertitle a:link,
.node--type-press-release.node--view-mode-full .field--name-field-video .herobannertitle-grey a:link,
.node--type-press-release.node--view-mode-full .field--name-field-related-video .herobannertitle a,
.node--type-press-release.node--view-mode-full .field--name-field-related-video .herobannertitle-grey a,
.node--type-press-release.node--view-mode-full .field--name-field-related-video .herobannertitle a:link,
.node--type-press-release.node--view-mode-full .field--name-field-related-video .herobannertitle-grey a:link,
.node--type-press-release.node--view-mode-subscribe .field--name-field-video .herobannertitle a,
.node--type-press-release.node--view-mode-subscribe .field--name-field-video .herobannertitle-grey a,
.node--type-press-release.node--view-mode-subscribe .field--name-field-video .herobannertitle a:link,
.node--type-press-release.node--view-mode-subscribe .field--name-field-video .herobannertitle-grey a:link,
.node--type-press-release.node--view-mode-subscribe .field--name-field-related-video .herobannertitle a,
.node--type-press-release.node--view-mode-subscribe .field--name-field-related-video .herobannertitle-grey a,
.node--type-press-release.node--view-mode-subscribe .field--name-field-related-video .herobannertitle a:link,
.node--type-press-release.node--view-mode-subscribe .field--name-field-related-video .herobannertitle-grey a:link {
  color: #222;
  text-decoration: underline;
}
/* line 136, ../sass/_mixins.scss */
.node--type-feature-article.node--view-mode-full .field--name-field-video .herobannertitle a:visited, .node--type-feature-article.node--view-mode-full .field--name-field-video .herobannertitle-grey a:visited,
.node--type-feature-article.node--view-mode-full .field--name-field-related-video .herobannertitle a:visited,
.node--type-feature-article.node--view-mode-full .field--name-field-related-video .herobannertitle-grey a:visited,
.node--type-feature-article.node--view-mode-subscribe .field--name-field-video .herobannertitle a:visited,
.node--type-feature-article.node--view-mode-subscribe .field--name-field-video .herobannertitle-grey a:visited,
.node--type-feature-article.node--view-mode-subscribe .field--name-field-related-video .herobannertitle a:visited,
.node--type-feature-article.node--view-mode-subscribe .field--name-field-related-video .herobannertitle-grey a:visited,
.node--type-press-release.node--view-mode-full .field--name-field-video .herobannertitle a:visited,
.node--type-press-release.node--view-mode-full .field--name-field-video .herobannertitle-grey a:visited,
.node--type-press-release.node--view-mode-full .field--name-field-related-video .herobannertitle a:visited,
.node--type-press-release.node--view-mode-full .field--name-field-related-video .herobannertitle-grey a:visited,
.node--type-press-release.node--view-mode-subscribe .field--name-field-video .herobannertitle a:visited,
.node--type-press-release.node--view-mode-subscribe .field--name-field-video .herobannertitle-grey a:visited,
.node--type-press-release.node--view-mode-subscribe .field--name-field-related-video .herobannertitle a:visited,
.node--type-press-release.node--view-mode-subscribe .field--name-field-related-video .herobannertitle-grey a:visited {
  color: #6f57B5;
}
/* line 145, ../sass/_mixins.scss */
.node--type-feature-article.node--view-mode-full .field--name-field-video .herobannertitle a:hover, .node--type-feature-article.node--view-mode-full .field--name-field-video .herobannertitle-grey a:hover,
.node--type-feature-article.node--view-mode-full .field--name-field-related-video .herobannertitle a:hover,
.node--type-feature-article.node--view-mode-full .field--name-field-related-video .herobannertitle-grey a:hover,
.node--type-feature-article.node--view-mode-subscribe .field--name-field-video .herobannertitle a:hover,
.node--type-feature-article.node--view-mode-subscribe .field--name-field-video .herobannertitle-grey a:hover,
.node--type-feature-article.node--view-mode-subscribe .field--name-field-related-video .herobannertitle a:hover,
.node--type-feature-article.node--view-mode-subscribe .field--name-field-related-video .herobannertitle-grey a:hover,
.node--type-press-release.node--view-mode-full .field--name-field-video .herobannertitle a:hover,
.node--type-press-release.node--view-mode-full .field--name-field-video .herobannertitle-grey a:hover,
.node--type-press-release.node--view-mode-full .field--name-field-related-video .herobannertitle a:hover,
.node--type-press-release.node--view-mode-full .field--name-field-related-video .herobannertitle-grey a:hover,
.node--type-press-release.node--view-mode-subscribe .field--name-field-video .herobannertitle a:hover,
.node--type-press-release.node--view-mode-subscribe .field--name-field-video .herobannertitle-grey a:hover,
.node--type-press-release.node--view-mode-subscribe .field--name-field-related-video .herobannertitle a:hover,
.node--type-press-release.node--view-mode-subscribe .field--name-field-related-video .herobannertitle-grey a:hover {
  font-weight: bold;
}
/* line 154, ../sass/_mixins.scss */
.node--type-feature-article.node--view-mode-full .field--name-field-video .herobannertitle h1, .node--type-feature-article.node--view-mode-full .field--name-field-video .herobannertitle-grey h1, .node--type-feature-article.node--view-mode-full .field--name-field-video .herobannertitle .photocredit, .node--type-feature-article.node--view-mode-full .field--name-field-video .herobannertitle-grey .photocredit,
.node--type-feature-article.node--view-mode-full .field--name-field-related-video .herobannertitle h1,
.node--type-feature-article.node--view-mode-full .field--name-field-related-video .herobannertitle-grey h1,
.node--type-feature-article.node--view-mode-full .field--name-field-related-video .herobannertitle .photocredit,
.node--type-feature-article.node--view-mode-full .field--name-field-related-video .herobannertitle-grey .photocredit,
.node--type-feature-article.node--view-mode-subscribe .field--name-field-video .herobannertitle h1,
.node--type-feature-article.node--view-mode-subscribe .field--name-field-video .herobannertitle-grey h1,
.node--type-feature-article.node--view-mode-subscribe .field--name-field-video .herobannertitle .photocredit,
.node--type-feature-article.node--view-mode-subscribe .field--name-field-video .herobannertitle-grey .photocredit,
.node--type-feature-article.node--view-mode-subscribe .field--name-field-related-video .herobannertitle h1,
.node--type-feature-article.node--view-mode-subscribe .field--name-field-related-video .herobannertitle-grey h1,
.node--type-feature-article.node--view-mode-subscribe .field--name-field-related-video .herobannertitle .photocredit,
.node--type-feature-article.node--view-mode-subscribe .field--name-field-related-video .herobannertitle-grey .photocredit,
.node--type-press-release.node--view-mode-full .field--name-field-video .herobannertitle h1,
.node--type-press-release.node--view-mode-full .field--name-field-video .herobannertitle-grey h1,
.node--type-press-release.node--view-mode-full .field--name-field-video .herobannertitle .photocredit,
.node--type-press-release.node--view-mode-full .field--name-field-video .herobannertitle-grey .photocredit,
.node--type-press-release.node--view-mode-full .field--name-field-related-video .herobannertitle h1,
.node--type-press-release.node--view-mode-full .field--name-field-related-video .herobannertitle-grey h1,
.node--type-press-release.node--view-mode-full .field--name-field-related-video .herobannertitle .photocredit,
.node--type-press-release.node--view-mode-full .field--name-field-related-video .herobannertitle-grey .photocredit,
.node--type-press-release.node--view-mode-subscribe .field--name-field-video .herobannertitle h1,
.node--type-press-release.node--view-mode-subscribe .field--name-field-video .herobannertitle-grey h1,
.node--type-press-release.node--view-mode-subscribe .field--name-field-video .herobannertitle .photocredit,
.node--type-press-release.node--view-mode-subscribe .field--name-field-video .herobannertitle-grey .photocredit,
.node--type-press-release.node--view-mode-subscribe .field--name-field-related-video .herobannertitle h1,
.node--type-press-release.node--view-mode-subscribe .field--name-field-related-video .herobannertitle-grey h1,
.node--type-press-release.node--view-mode-subscribe .field--name-field-related-video .herobannertitle .photocredit,
.node--type-press-release.node--view-mode-subscribe .field--name-field-related-video .herobannertitle-grey .photocredit {
  color: #222;
}
@media all and (min-width: 1100px) {
  /* line 102, ../sass/components/_news.scss */
  .node--type-feature-article.node--view-mode-full .field--name-field-video .flexItemText,
  .node--type-feature-article.node--view-mode-full .field--name-field-related-video .flexItemText,
  .node--type-feature-article.node--view-mode-subscribe .field--name-field-video .flexItemText,
  .node--type-feature-article.node--view-mode-subscribe .field--name-field-related-video .flexItemText,
  .node--type-press-release.node--view-mode-full .field--name-field-video .flexItemText,
  .node--type-press-release.node--view-mode-full .field--name-field-related-video .flexItemText,
  .node--type-press-release.node--view-mode-subscribe .field--name-field-video .flexItemText,
  .node--type-press-release.node--view-mode-subscribe .field--name-field-related-video .flexItemText {
    padding-left: 3.5rem;
  }
}

/* line 109, ../sass/components/_news.scss */
.node--type-news-mention .herobannertitle-grey,
.node--type-press-release .herobannertitle-grey {
  margin-bottom: 0.25em;
}

/* line 113, ../sass/components/_news.scss */
.node--type-feature-article.node--view-mode-press-release-teaser,
.node--type-press-release.node--view-mode-press-release-teaser,
.node--type-events.node--view-mode-press-release-teaser,
.node--type-feature-article.node--view-mode-hp-press-release-teaser,
.node--type-press-release.node--view-mode-hp-press-release-teaser,
.node--type-events.node--view-mode-hp-press-release-teaser,
.node--type-news-mention.node--view-mode-hp-press-release-teaser {
  margin-bottom: 1em;
  background-color: #fff;
}
@media all and (min-width: 768px) {
  /* line 124, ../sass/components/_news.scss */
  .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText,
  .node--type-press-release.node--view-mode-press-release-teaser .flexItemText,
  .node--type-events.node--view-mode-press-release-teaser .flexItemText,
  .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText,
  .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText,
  .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText,
  .node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText {
    padding-top: 0;
  }
}
/* line 128, ../sass/components/_news.scss */
.node--type-feature-article.node--view-mode-press-release-teaser .flexItemText .herobannertitle, .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText .herobannertitle-grey,
.node--type-press-release.node--view-mode-press-release-teaser .flexItemText .herobannertitle,
.node--type-press-release.node--view-mode-press-release-teaser .flexItemText .herobannertitle-grey,
.node--type-events.node--view-mode-press-release-teaser .flexItemText .herobannertitle,
.node--type-events.node--view-mode-press-release-teaser .flexItemText .herobannertitle-grey,
.node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle,
.node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey,
.node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle,
.node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey,
.node--type-events.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle,
.node--type-events.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey,
.node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle,
.node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey {
  color: #222;
  background-color: transparent;
}
/* line 126, ../sass/_mixins.scss */
.node--type-feature-article.node--view-mode-press-release-teaser .flexItemText .herobannertitle a, .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText .herobannertitle-grey a, .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText .herobannertitle a:link, .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText .herobannertitle-grey a:link,
.node--type-press-release.node--view-mode-press-release-teaser .flexItemText .herobannertitle a,
.node--type-press-release.node--view-mode-press-release-teaser .flexItemText .herobannertitle-grey a,
.node--type-press-release.node--view-mode-press-release-teaser .flexItemText .herobannertitle a:link,
.node--type-press-release.node--view-mode-press-release-teaser .flexItemText .herobannertitle-grey a:link,
.node--type-events.node--view-mode-press-release-teaser .flexItemText .herobannertitle a,
.node--type-events.node--view-mode-press-release-teaser .flexItemText .herobannertitle-grey a,
.node--type-events.node--view-mode-press-release-teaser .flexItemText .herobannertitle a:link,
.node--type-events.node--view-mode-press-release-teaser .flexItemText .herobannertitle-grey a:link,
.node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle a,
.node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey a,
.node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle a:link,
.node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey a:link,
.node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle a,
.node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey a,
.node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle a:link,
.node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey a:link,
.node--type-events.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle a,
.node--type-events.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey a,
.node--type-events.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle a:link,
.node--type-events.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey a:link,
.node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle a,
.node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey a,
.node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle a:link,
.node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey a:link {
  color: #222;
  text-decoration: underline;
}
/* line 136, ../sass/_mixins.scss */
.node--type-feature-article.node--view-mode-press-release-teaser .flexItemText .herobannertitle a:visited, .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText .herobannertitle-grey a:visited,
.node--type-press-release.node--view-mode-press-release-teaser .flexItemText .herobannertitle a:visited,
.node--type-press-release.node--view-mode-press-release-teaser .flexItemText .herobannertitle-grey a:visited,
.node--type-events.node--view-mode-press-release-teaser .flexItemText .herobannertitle a:visited,
.node--type-events.node--view-mode-press-release-teaser .flexItemText .herobannertitle-grey a:visited,
.node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle a:visited,
.node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey a:visited,
.node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle a:visited,
.node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey a:visited,
.node--type-events.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle a:visited,
.node--type-events.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey a:visited,
.node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle a:visited,
.node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey a:visited {
  color: #6f57B5;
}
/* line 145, ../sass/_mixins.scss */
.node--type-feature-article.node--view-mode-press-release-teaser .flexItemText .herobannertitle a:hover, .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText .herobannertitle-grey a:hover,
.node--type-press-release.node--view-mode-press-release-teaser .flexItemText .herobannertitle a:hover,
.node--type-press-release.node--view-mode-press-release-teaser .flexItemText .herobannertitle-grey a:hover,
.node--type-events.node--view-mode-press-release-teaser .flexItemText .herobannertitle a:hover,
.node--type-events.node--view-mode-press-release-teaser .flexItemText .herobannertitle-grey a:hover,
.node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle a:hover,
.node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey a:hover,
.node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle a:hover,
.node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey a:hover,
.node--type-events.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle a:hover,
.node--type-events.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey a:hover,
.node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle a:hover,
.node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey a:hover {
  font-weight: bold;
}
/* line 154, ../sass/_mixins.scss */
.node--type-feature-article.node--view-mode-press-release-teaser .flexItemText .herobannertitle h1, .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText .herobannertitle-grey h1, .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText .herobannertitle .photocredit, .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText .herobannertitle-grey .photocredit,
.node--type-press-release.node--view-mode-press-release-teaser .flexItemText .herobannertitle h1,
.node--type-press-release.node--view-mode-press-release-teaser .flexItemText .herobannertitle-grey h1,
.node--type-press-release.node--view-mode-press-release-teaser .flexItemText .herobannertitle .photocredit,
.node--type-press-release.node--view-mode-press-release-teaser .flexItemText .herobannertitle-grey .photocredit,
.node--type-events.node--view-mode-press-release-teaser .flexItemText .herobannertitle h1,
.node--type-events.node--view-mode-press-release-teaser .flexItemText .herobannertitle-grey h1,
.node--type-events.node--view-mode-press-release-teaser .flexItemText .herobannertitle .photocredit,
.node--type-events.node--view-mode-press-release-teaser .flexItemText .herobannertitle-grey .photocredit,
.node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle h1,
.node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey h1,
.node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle .photocredit,
.node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey .photocredit,
.node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle h1,
.node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey h1,
.node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle .photocredit,
.node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey .photocredit,
.node--type-events.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle h1,
.node--type-events.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey h1,
.node--type-events.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle .photocredit,
.node--type-events.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey .photocredit,
.node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle h1,
.node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey h1,
.node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle .photocredit,
.node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey .photocredit {
  color: #222;
}

/* line 134, ../sass/components/_news.scss */
.node--type-feature-article.node--view-mode-press-release-teaser,
.node--type-press-release.node--view-mode-press-release-teaser,
.node--type-feature-article.node--view-mode-hp-press-release-teaser,
.node--type-press-release.node--view-mode-hp-press-release-teaser,
.node--type-events.node--view-mode-hp-press-release-teaser,
.node--type-news-mention.node--view-mode-hp-press-release-teaser {
  padding: 1em;
}

/* line 143, ../sass/components/_news.scss */
.node--type-events.node--view-mode-press-release-teaser,
.node--type-events.node--view-mode-hp-press-release-teaser,
.media-nhlbi-video.view-mode-press-release-teaser {
  padding: 1em 1em 1em 0;
}

@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 149, ../sass/components/_news.scss */
  .field--name-field-boilerplate-footer {
    padding-bottom: 1em;
  }
}

/* line 157, ../sass/components/_news.scss */
article.node .general-accordion.ui-accordion,
article.node .primary-accordion.ui-accordion,
article.node .secondary-accordion.ui-accordion {
  padding-bottom: 1em;
  padding-top: 1em;
}
/* line 164, ../sass/components/_news.scss */
article.node .standard.general-accordion.ui-accordion,
article.node .standard.primary-accordion.ui-accordion,
article.node .standard.secondary-accordion.ui-accordion {
  padding: 0;
}

/* line 172, ../sass/components/_news.scss */
.node--type-press-release .secondary-accordion.ui-accordion h2, .node--type-press-release .secondary-accordion.ui-accordion .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-press-release .secondary-accordion.ui-accordion h1, .node--type-press-release .secondary-accordion.ui-accordion .contact-method-label {
  margin: 0 0 0 0;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 172, ../sass/components/_news.scss */
  .node--type-press-release .secondary-accordion.ui-accordion h2, .node--type-press-release .secondary-accordion.ui-accordion .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-press-release .secondary-accordion.ui-accordion h1, .node--type-press-release .secondary-accordion.ui-accordion .contact-method-label {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 172, ../sass/components/_news.scss */
  .node--type-press-release .secondary-accordion.ui-accordion h2, .node--type-press-release .secondary-accordion.ui-accordion .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-press-release .secondary-accordion.ui-accordion h1, .node--type-press-release .secondary-accordion.ui-accordion .contact-method-label {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 1100px) {
  /* line 172, ../sass/components/_news.scss */
  .node--type-press-release .secondary-accordion.ui-accordion h2, .node--type-press-release .secondary-accordion.ui-accordion .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-press-release .secondary-accordion.ui-accordion h1, .node--type-press-release .secondary-accordion.ui-accordion .contact-method-label {
    font-size: 1.5rem;
  }
}

/* line 178, ../sass/components/_news.scss */
.contact-and-content-container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  -o-align-items: flex-start;
  align-items: flex-start;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
}
/* line 183, ../sass/components/_news.scss */
.contact-and-content-container .expanding-content-container {
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
}
/* line 186, ../sass/components/_news.scss */
.contact-and-content-container .press-contact-top {
  -webkit-box-ordinal-group: 2;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
  margin: 1em 0 1em 1em;
}
@media all and (min-width: 768px) {
  /* line 186, ../sass/components/_news.scss */
  .contact-and-content-container .press-contact-top {
    max-width: 33%;
    min-width: 33%;
    flex-basis: 33%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 186, ../sass/components/_news.scss */
  .contact-and-content-container .press-contact-top {
    display: none;
    max-width: none;
    flex-basis: auto;
  }
}
/* line 200, ../sass/components/_news.scss */
.contact-and-content-container .press-contact-top-border-container {
  border: 3px #d7e7f4 solid;
}
/* line 203, ../sass/components/_news.scss */
.contact-and-content-container .press-contact-top-inner-container {
  padding: 1.5em;
  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  /* line 178, ../sass/components/_news.scss */
  .contact-and-content-container {
    max-width: 100%;
    display: -ms-inline-grid;
    display: grid;
    -ms-grid-columns: 1fr 295px;
    grid-template-columns: 1fr 295px;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
  }
}
@media all and (-ms-high-contrast: none) and (min-width: 0em) and (max-width: 767px) {
  /* line 178, ../sass/components/_news.scss */
  .contact-and-content-container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  /* line 231, ../sass/components/_news.scss */
  .contact-and-content-container .expanding-content-container {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row: 1;
    grid-row-start: 1;
    -ms-grid-row-align: start;
    display: inline-block;
    float: left;
  }
  /* line 239, ../sass/components/_news.scss */
  .contact-and-content-container .expanding-content-container .field--name-field-additional-introduction {
    max-width: 100%;
  }
  /* line 243, ../sass/components/_news.scss */
  .contact-and-content-container .press-contact-top {
    -ms-grid-column: 2;
    grid-column-start: 2;
    -ms-grid-row: 1;
    grid-row-start: 1;
    -ms-grid-row-align: start;
    display: inline-block;
    overflow: hidden;
    max-width: none;
    min-width: none;
    flex-basis: none;
  }
}
@media all and (-ms-high-contrast: none) and (min-width: 0em) and (max-width: 767px) {
  /* line 243, ../sass/components/_news.scss */
  .contact-and-content-container .press-contact-top {
    display: none;
    width: 0;
  }
}

/* line 262, ../sass/components/_news.scss */
.press-release-boilerplate-footer {
  font-style: italic;
  clear: both;
}

/* line 268, ../sass/components/_news.scss */
.news-header-container {
  overflow: visible;
}
@media all and (min-width: 768px) {
  /* line 268, ../sass/components/_news.scss */
  .news-header-container {
    -webkit-align-items: space-between;
    -moz-align-items: space-between;
    -ms-align-items: space-between;
    -o-align-items: space-between;
    align-items: space-between;
  }
}
/* line 274, ../sass/components/_news.scss */
.news-header-container .flexItemImageThird, .news-header-container .flexItemImageThirdHalf, .news-header-container .hero-image {
  overflow: visible;
}
@media all and (min-width: 768px) {
  /* line 274, ../sass/components/_news.scss */
  .news-header-container .flexItemImageThird, .news-header-container .flexItemImageThirdHalf, .news-header-container .hero-image {
    -webkit-box-ordinal-group: 2;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
}
@media all and (min-width: 768px) {
  /* line 280, ../sass/components/_news.scss */
  .news-header-container .flexItemText {
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
    padding: 0 1em 0 0;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 280, ../sass/components/_news.scss */
  .news-header-container .flexItemText {
    padding: 1em 0 0 0;
  }
}
/* line 292, ../sass/components/_news.scss */
.news-header-container .field--name-field-topic {
  padding-top: 1em;
}
/* line 294, ../sass/components/_news.scss */
.news-header-container .field--name-field-topic .field__item {
  display: inline;
}
/* line 300, ../sass/components/_news.scss */
.news-header-container .alternate-language .social_media_header,
.news-header-container .social-desktop-and-tablet .social_media_header {
  white-space: nowrap;
  float: right;
}
/* line 304, ../sass/components/_news.scss */
.news-header-container .alternate-language .social_media_header li:last-child a,
.news-header-container .social-desktop-and-tablet .social_media_header li:last-child a {
  padding-right: 0;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 298, ../sass/components/_news.scss */
  .news-header-container .alternate-language,
  .news-header-container .social-desktop-and-tablet {
    display: none;
  }
}
/* line 314, ../sass/components/_news.scss */
.news-header-container .alternate-language-and-social-phone {
  display: none;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 314, ../sass/components/_news.scss */
  .news-header-container .alternate-language-and-social-phone {
    -webkit-box-ordinal-group: 3;
    -moz-box-ordinal-group: 3;
    -ms-flex-order: 3;
    -webkit-order: 3;
    order: 3;
    display: block;
  }
}

/* line 323, ../sass/components/_news.scss */
.contacts-container {
  border: 3px #d7e7f4 solid;
  padding: 1.5em;
}
/* line 326, ../sass/components/_news.scss */
.contacts-container h2, .contacts-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .contacts-container h1, .contacts-container .contact-method-label {
  padding-bottom: 0.25em;
  margin: 0;
}
/* line 331, ../sass/components/_news.scss */
.contacts-container .contact-info {
  padding-bottom: 1em;
}
/* line 334, ../sass/components/_news.scss */
.contacts-container .field--name-field-contacts {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 334, ../sass/components/_news.scss */
  .contacts-container .field--name-field-contacts {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    -ms-column-count: 2;
    -o-column-count: 2;
    column-count: 2;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 334, ../sass/components/_news.scss */
  .contacts-container .field--name-field-contacts {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    -ms-column-count: 1;
    -o-column-count: 1;
    column-count: 1;
  }
}
/* line 343, ../sass/components/_news.scss */
.contacts-container .field--name-field-contacts h4 {
  color: #222;
}
/* line 348, ../sass/components/_news.scss */
.contacts-container .field--name-field-contacts > .field__item {
  width: 30%;
  margin: 1em 1.5em 1em 0;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 348, ../sass/components/_news.scss */
  .contacts-container .field--name-field-contacts > .field__item {
    width: 45%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 348, ../sass/components/_news.scss */
  .contacts-container .field--name-field-contacts > .field__item {
    width: auto;
  }
}

/* line 359, ../sass/components/_news.scss */
.contact-card {
  margin: 1em 1.5em 1em 0;
  height: 100%;
}
/* line 362, ../sass/components/_news.scss */
.contact-card .contact-mail, .contact-card .contact-number {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -o-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  margin-bottom: 1em;
}
/* line 368, ../sass/components/_news.scss */
.contact-card .contact-mail .contact-icon, .contact-card .contact-number .contact-icon {
  width: 36px;
  background-position: center;
}
/* line 372, ../sass/components/_news.scss */
.contact-card .contact-mail .contact-text, .contact-card .contact-number .contact-text {
  padding-left: 1em;
}

/* line 388, ../sass/components/_news.scss */
.flatcontainer {
  padding-bottom: 1em;
}
/* line 390, ../sass/components/_news.scss */
.flatcontainer .field--name-field-related-health-topics,
.flatcontainer .field--name-field-additional-support {
  padding-left: 1em;
}
/* line 394, ../sass/components/_news.scss */
.flatcontainer .field--name-field-related-publications {
  padding: 0;
}
/* line 397, ../sass/components/_news.scss */
.flatcontainer .field--name-field-related-health-education {
  padding-left: 1em;
  padding-bottom: 1em;
}
/* line 402, ../sass/components/_news.scss */
.flatcontainer .field--name-field-related-health-education .healthEductionContainer {
  padding: 1em;
}
/* line 406, ../sass/components/_news.scss */
.flatcontainer .field--name-field-related-health-education > .field__item {
  margin-bottom: 1em;
}

/* line 411, ../sass/components/_news.scss */
.publicationsBox .field--name-field-related-publications {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -o-justify-content: flex-start;
  justify-content: flex-start;
  padding-bottom: 1em;
}
@media all and (min-width: 1100px) {
  /* line 411, ../sass/components/_news.scss */
  .publicationsBox .field--name-field-related-publications {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    -ms-column-count: 3;
    -o-column-count: 3;
    column-count: 3;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 411, ../sass/components/_news.scss */
  .publicationsBox .field--name-field-related-publications {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    -ms-column-count: 2;
    -o-column-count: 2;
    column-count: 2;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 411, ../sass/components/_news.scss */
  .publicationsBox .field--name-field-related-publications {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    -ms-column-count: 1;
    -o-column-count: 1;
    column-count: 1;
  }
}
/* line 426, ../sass/components/_news.scss */
.publicationsBox .field--name-field-related-publications > .field__item {
  border: 2px solid #d7d7d7;
  background-color: #fff;
  margin: 0 1em 1em 0;
  width: 30%;
}
/* line 431, ../sass/components/_news.scss */
.publicationsBox .field--name-field-related-publications > .field__item .publicationCard {
  height: 100%;
  display: inline-flex;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 426, ../sass/components/_news.scss */
  .publicationsBox .field--name-field-related-publications > .field__item {
    width: 45%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 426, ../sass/components/_news.scss */
  .publicationsBox .field--name-field-related-publications > .field__item {
    width: auto;
    margin-right: 0;
    -webkit-flex-grow: 1;
    -moz-flex-grow: 1;
    -ms-flex-grow: 1;
    -o-flex-grow: 1;
    flex-grow: 1;
  }
}

/* line 447, ../sass/components/_news.scss */
.node--type-news-mention.node--view-mode-teaser .field--name-field-summary {
  margin-top: 1em;
}

/* line 452, ../sass/components/_news.scss */
.node--type-news-mention.node--view-mode-full,
.node--type-news-mention.node--view-mode-subscribe {
  padding-bottom: 1em;
}
/* line 455, ../sass/components/_news.scss */
.node--type-news-mention.node--view-mode-full .title-banner.flexcontainer, .node--type-news-mention.node--view-mode-full .title-banner.related-ht-ser-container, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-sfa-card, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-speaker,
.node--type-news-mention.node--view-mode-full .title-banner.field--name-field-executives, .node--type-news-mention.node--view-mode-full .title-banner.standard-card-field, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-advisory-committees, .node--type-news-mention.node--view-mode-full .title-banner.contact-nhlbi-titleblock, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-cards, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-employment-opportunity-car, .node--type-news-mention.node--view-mode-full .title-banner.all-grants-foa-container,
.node--type-news-mention.node--view-mode-full .title-banner.field--name-field-program-officers,
.node--type-news-mention.node--view-mode-full .view-id-nhlbi_grants_foa.view-display-id-block_2 > .title-banner.view-content,
.node--type-news-mention.node--view-mode-full .view-id-nhlbi_grants_foa.view-display-id-block_3 > .title-banner.view-content, .node--type-news-mention.node--view-mode-full .node--type-individual-contact .title-banner.field--name-field-contact-methods, .node--type-individual-contact .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods,
.node--type-news-mention.node--view-mode-full .node--type-division.node--view-mode-full .title-banner.field--name-field-contact-methods,
.node--type-division.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods,
.node--type-news-mention.node--view-mode-full .node--type-division.node--view-mode-subscribe .title-banner.field--name-field-contact-methods,
.node--type-division.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods,
.node--type-news-mention.node--view-mode-full .node--type-branch.node--view-mode-full .title-banner.field--name-field-contact-methods,
.node--type-branch.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods,
.node--type-news-mention.node--view-mode-full .node--type-branch.node--view-mode-subscribe .title-banner.field--name-field-contact-methods,
.node--type-branch.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods,
.node--type-news-mention.node--view-mode-full .node--type-general.node--view-mode-full .title-banner.field--name-field-contact-methods,
.node--type-general.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods,
.node--type-news-mention.node--view-mode-full .node--type-general.node--view-mode-subscribe .title-banner.field--name-field-contact-methods,
.node--type-general.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods,
.node--type-news-mention.node--view-mode-full .node--type-health-education-initiative.node--view-mode-full .title-banner.field--name-field-contact-methods,
.node--type-health-education-initiative.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods,
.node--type-news-mention.node--view-mode-full .node--type-health-education-initiative.node--view-mode-subscribe .title-banner.field--name-field-contact-methods,
.node--type-health-education-initiative.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods, .node--type-news-mention.node--view-mode-full .node--type-committee .title-banner.field--name-field-card-text, .node--type-committee .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-card-text, .node--type-news-mention.node--view-mode-full .news-and-events--landing .title-banner.landing-social, .news-and-events--landing .node--type-news-mention.node--view-mode-full .title-banner.landing-social, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-sfa-cards, .node--type-news-mention.node--view-mode-full .title-banner.locationMap.contact-location-map-container, .node--type-news-mention.node--view-mode-full .title-banner.locationMap, .node--type-news-mention.node--view-mode-full .title-banner.grants-and-training-card-wrapper, .node--type-news-mention.node--view-mode-full .title-banner.about-nhlbi-division-card-wrapper, .node--type-news-mention.node--view-mode-full .title-banner.hei-tools-icon-card-wrapper, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-grants-and-training-card, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-division-card, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-tool-icon-card, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-promotional-card, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-sv-promotional-cards, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-about-nhlbi-promotional-ca, .node--type-news-mention.node--view-mode-full .title-banner.strategic-vision-titleblock, .node--type-news-mention.node--view-mode-full .title-banner.ppg-titleblock-wrapper, .node--type-news-mention.node--view-mode-full .title-banner.ppg-guidelines-card-wrapper, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-human-subject-cards, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-section-card, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-highlight-card, .node--type-news-mention.node--view-mode-full .title-banner.health-topic-teaser-container, .node--type-news-mention.node--view-mode-full .title-banner.about-nhlbi-our-mission-wrapper, .node--type-news-mention.node--view-mode-full .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .title-banner.director-bioCard, .about-nhlbi-our-mission-wrapper .node--type-news-mention.node--view-mode-full .field--name-field-leadership > .title-banner.director-bioCard, .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-consumer-nhlbi-publ, .nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-health-consumer-nhlbi-publ,
.node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-professionals-nhlbi,
.nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-health-professionals-nhlbi, .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .title-banner.standard-teaser, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser,
.node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .title-banner.standard-teaser,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser, .node--type-news-mention.node--view-mode-full .publicationsBlock.view-nhlbi-publications > .title-banner.view-content,
.node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-publications, .node--type-news-mention.node--view-mode-full .healthEducationBlock .title-banner.standard-teaser, .healthEducationBlock .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser, .node--type-news-mention.node--view-mode-full .systematicEvidenceReviewsBlock .title-banner.view-content, .systematicEvidenceReviewsBlock .node--type-news-mention.node--view-mode-full .title-banner.view-content,
.node--type-news-mention.node--view-mode-full .clinicalPracticeGuidelinesBlock .title-banner.view-content,
.clinicalPracticeGuidelinesBlock .node--type-news-mention.node--view-mode-full .title-banner.view-content,
.node--type-news-mention.node--view-mode-full .publicationsAndFactSheetsBlock .title-banner.view-content,
.publicationsAndFactSheetsBlock .node--type-news-mention.node--view-mode-full .title-banner.view-content, .node--type-news-mention.node--view-mode-full .title-banner.rtFlexContainer, .node--type-news-mention.node--view-mode-full .node--type-research-topic .title-banner.field--name-field-science-supplemental-page, .node--type-research-topic .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-science-supplemental-page, .node--type-news-mention.node--view-mode-full .node--type-research-topic .title-banner.researchTopicPublications, .node--type-research-topic .node--type-news-mention.node--view-mode-full .title-banner.researchTopicPublications, .node--type-news-mention.node--view-mode-full .node--type-research-topic .field--name-field-content > .field__item article.title-banner.listTeaserCard, .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-full article.title-banner.listTeaserCard, .node--type-news-mention.node--view-mode-full .node--type-research-topic .field--name-field-content > .field__item article.title-banner.standard-teaser, .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-full article.title-banner.standard-teaser,
.node--type-news-mention.node--view-mode-full .node--type-research-topic .field--name-field-content > .field__item article.title-banner.newsEventsCard,
.node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-full article.title-banner.newsEventsCard, .node--type-news-mention.node--view-mode-full .title-banner.esi-feature-card, .node--type-news-mention.node--view-mode-full .title-banner.featured-science-instance-teaser-container, .node--type-news-mention.node--view-mode-full .title-banner.sfa-teaser-container, .node--type-news-mention.node--view-mode-full .training-opportunity-card .title-banner.field--name-field-associated-people, .training-opportunity-card .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-associated-people, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-featured-training-opportun, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-career-stages, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-workforce-development-card, .node--type-news-mention.node--view-mode-full .title-banner.node--type-update.node--view-mode-executive-teaser, .node--type-news-mention.node--view-mode-full .title-banner.news-and-events-titleblock, .node--type-news-mention.node--view-mode-full .contact-box > .title-banner.field--name-field-contact-methods, .node--type-news-mention.node--view-mode-full .title-banner.leadership-container, .node--type-news-mention.node--view-mode-full .leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership, .leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-additional-leadership, .node--type-news-mention.node--view-mode-full .title-banner.branch-leadership-container, .node--type-news-mention.node--view-mode-full .branch-leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership, .branch-leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-additional-leadership, .node--type-news-mention.node--view-mode-full .node--type-general .title-banner.field--name-field-related-publications, .node--type-general .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-publications, .node--type-news-mention.node--view-mode-full .node--type-general .title-banner.field--name-field-general-publications-rlt, .node--type-general .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-general-publications-rlt, .node--type-news-mention.node--view-mode-full .node--type-general .field--name-field-general-publications-rlt > .field__item .title-banner.standard-teaser, .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser, .node--type-news-mention.node--view-mode-full .node--type-general .field--name-field-related-publications > .field__item .title-banner.standard-teaser, .node--type-general .field--name-field-related-publications > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser, .node--type-news-mention.node--view-mode-full .title-banner.objective-text-container, .node--type-news-mention.node--view-mode-full .title-banner.objective-list-container, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-goal-card, .node--type-news-mention.node--view-mode-full .title-banner.strategic-vision-landing-goals-wrapper, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .title-banner.striped-container-wrapper, .node--type-principal-investigator .node--type-news-mention.node--view-mode-full .title-banner.striped-container-wrapper, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .title-banner.striped-container, .node--type-principal-investigator .node--type-news-mention.node--view-mode-full .title-banner.striped-container, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article.title-banner, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-news-mention.node--view-mode-full article.title-banner,
.node--type-news-mention.node--view-mode-full .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article.title-banner,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-news-mention.node--view-mode-full article.title-banner, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .title-banner.standard-teaser.node--view-mode-short-teaser, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser.node--view-mode-short-teaser, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-awards, .node--type-news-mention.node--view-mode-full .title-banner.registerSocialContainer, .node--type-news-mention.node--view-mode-full .title-banner.eventdatesLocationType, .node--type-news-mention.node--view-mode-full .title-banner.news-article-container, .node--type-news-mention.node--view-mode-full .title-banner.node--type-feature-article.node--view-mode-press-release-teaser,
.node--type-news-mention.node--view-mode-full .title-banner.node--type-press-release.node--view-mode-press-release-teaser,
.node--type-news-mention.node--view-mode-full .title-banner.node--type-events.node--view-mode-press-release-teaser,
.node--type-news-mention.node--view-mode-full .title-banner.node--type-feature-article.node--view-mode-hp-press-release-teaser,
.node--type-news-mention.node--view-mode-full .title-banner.node--type-press-release.node--view-mode-hp-press-release-teaser,
.node--type-news-mention.node--view-mode-full .title-banner.node--type-events.node--view-mode-hp-press-release-teaser,
.node--type-news-mention.node--view-mode-full .title-banner.node--type-news-mention.node--view-mode-hp-press-release-teaser, .node--type-news-mention.node--view-mode-full .title-banner.news-header-container, .node--type-news-mention.node--view-mode-full .contacts-container .title-banner.field--name-field-contacts, .contacts-container .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contacts, .node--type-news-mention.node--view-mode-full .publicationsBox .title-banner.field--name-field-related-publications, .publicationsBox .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-publications, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-primary-featured-item, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-additional-featured-items, .node--type-news-mention.node--view-mode-full .title-banner.homepage-health-topics-container, .node--type-news-mention.node--view-mode-full .title-banner.homepage-mission-areas-container, .node--type-news-mention.node--view-mode-full .title-banner.homepage-location-container, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-alumni, .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-full .title-banner.nhlbi-publication-details-container, .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.nhlbi-publication-details-container,
.node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.nhlbi-publication-details-container, .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications, .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications,
.node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications, .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser,
.node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser,
.node--type-news-mention.node--view-mode-subscribe .title-banner.flexcontainer,
.node--type-news-mention.node--view-mode-subscribe .title-banner.related-ht-ser-container,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-sfa-card,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-speaker,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-executives,
.node--type-news-mention.node--view-mode-subscribe .title-banner.standard-card-field,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-advisory-committees,
.node--type-news-mention.node--view-mode-subscribe .title-banner.contact-nhlbi-titleblock,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-cards,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-employment-opportunity-car,
.node--type-news-mention.node--view-mode-subscribe .title-banner.all-grants-foa-container,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-program-officers,
.node--type-news-mention.node--view-mode-subscribe .view-id-nhlbi_grants_foa.view-display-id-block_2 > .title-banner.view-content,
.node--type-news-mention.node--view-mode-subscribe .view-id-nhlbi_grants_foa.view-display-id-block_3 > .title-banner.view-content,
.node--type-news-mention.node--view-mode-subscribe .node--type-individual-contact .title-banner.field--name-field-contact-methods,
.node--type-individual-contact .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods,
.node--type-news-mention.node--view-mode-subscribe .node--type-division.node--view-mode-full .title-banner.field--name-field-contact-methods,
.node--type-division.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods,
.node--type-news-mention.node--view-mode-subscribe .node--type-division.node--view-mode-subscribe .title-banner.field--name-field-contact-methods,
.node--type-division.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods,
.node--type-news-mention.node--view-mode-subscribe .node--type-branch.node--view-mode-full .title-banner.field--name-field-contact-methods,
.node--type-branch.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods,
.node--type-news-mention.node--view-mode-subscribe .node--type-branch.node--view-mode-subscribe .title-banner.field--name-field-contact-methods,
.node--type-branch.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods,
.node--type-news-mention.node--view-mode-subscribe .node--type-general.node--view-mode-full .title-banner.field--name-field-contact-methods,
.node--type-general.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods,
.node--type-news-mention.node--view-mode-subscribe .node--type-general.node--view-mode-subscribe .title-banner.field--name-field-contact-methods,
.node--type-general.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods,
.node--type-news-mention.node--view-mode-subscribe .node--type-health-education-initiative.node--view-mode-full .title-banner.field--name-field-contact-methods,
.node--type-health-education-initiative.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods,
.node--type-news-mention.node--view-mode-subscribe .node--type-health-education-initiative.node--view-mode-subscribe .title-banner.field--name-field-contact-methods,
.node--type-health-education-initiative.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods,
.node--type-news-mention.node--view-mode-subscribe .node--type-committee .title-banner.field--name-field-card-text,
.node--type-committee .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-card-text,
.node--type-news-mention.node--view-mode-subscribe .news-and-events--landing .title-banner.landing-social,
.news-and-events--landing .node--type-news-mention.node--view-mode-subscribe .title-banner.landing-social,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-sfa-cards,
.node--type-news-mention.node--view-mode-subscribe .title-banner.locationMap.contact-location-map-container,
.node--type-news-mention.node--view-mode-subscribe .title-banner.locationMap,
.node--type-news-mention.node--view-mode-subscribe .title-banner.grants-and-training-card-wrapper,
.node--type-news-mention.node--view-mode-subscribe .title-banner.about-nhlbi-division-card-wrapper,
.node--type-news-mention.node--view-mode-subscribe .title-banner.hei-tools-icon-card-wrapper,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-grants-and-training-card,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-division-card,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-tool-icon-card,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-promotional-card,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-sv-promotional-cards,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-about-nhlbi-promotional-ca,
.node--type-news-mention.node--view-mode-subscribe .title-banner.strategic-vision-titleblock,
.node--type-news-mention.node--view-mode-subscribe .title-banner.ppg-titleblock-wrapper,
.node--type-news-mention.node--view-mode-subscribe .title-banner.ppg-guidelines-card-wrapper,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-human-subject-cards,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-section-card,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-highlight-card,
.node--type-news-mention.node--view-mode-subscribe .title-banner.health-topic-teaser-container,
.node--type-news-mention.node--view-mode-subscribe .title-banner.about-nhlbi-our-mission-wrapper,
.node--type-news-mention.node--view-mode-subscribe .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .title-banner.director-bioCard,
.about-nhlbi-our-mission-wrapper .node--type-news-mention.node--view-mode-subscribe .field--name-field-leadership > .title-banner.director-bioCard,
.node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-consumer-nhlbi-publ,
.nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-health-consumer-nhlbi-publ,
.node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-professionals-nhlbi,
.nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-health-professionals-nhlbi,
.node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .title-banner.standard-teaser,
.nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser,
.node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .title-banner.standard-teaser,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser,
.node--type-news-mention.node--view-mode-subscribe .publicationsBlock.view-nhlbi-publications > .title-banner.view-content,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-publications,
.node--type-news-mention.node--view-mode-subscribe .healthEducationBlock .title-banner.standard-teaser,
.healthEducationBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser,
.node--type-news-mention.node--view-mode-subscribe .systematicEvidenceReviewsBlock .title-banner.view-content,
.systematicEvidenceReviewsBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.view-content,
.node--type-news-mention.node--view-mode-subscribe .clinicalPracticeGuidelinesBlock .title-banner.view-content,
.clinicalPracticeGuidelinesBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.view-content,
.node--type-news-mention.node--view-mode-subscribe .publicationsAndFactSheetsBlock .title-banner.view-content,
.publicationsAndFactSheetsBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.view-content,
.node--type-news-mention.node--view-mode-subscribe .title-banner.rtFlexContainer,
.node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .title-banner.field--name-field-science-supplemental-page,
.node--type-research-topic .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-science-supplemental-page,
.node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .title-banner.researchTopicPublications,
.node--type-research-topic .node--type-news-mention.node--view-mode-subscribe .title-banner.researchTopicPublications,
.node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .field--name-field-content > .field__item article.title-banner.listTeaserCard,
.node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner.listTeaserCard,
.node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .field--name-field-content > .field__item article.title-banner.standard-teaser,
.node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner.standard-teaser,
.node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .field--name-field-content > .field__item article.title-banner.newsEventsCard,
.node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner.newsEventsCard,
.node--type-news-mention.node--view-mode-subscribe .title-banner.esi-feature-card,
.node--type-news-mention.node--view-mode-subscribe .title-banner.featured-science-instance-teaser-container,
.node--type-news-mention.node--view-mode-subscribe .title-banner.sfa-teaser-container,
.node--type-news-mention.node--view-mode-subscribe .training-opportunity-card .title-banner.field--name-field-associated-people,
.training-opportunity-card .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-associated-people,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-featured-training-opportun,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-career-stages,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-workforce-development-card,
.node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-update.node--view-mode-executive-teaser,
.node--type-news-mention.node--view-mode-subscribe .title-banner.news-and-events-titleblock,
.node--type-news-mention.node--view-mode-subscribe .contact-box > .title-banner.field--name-field-contact-methods,
.node--type-news-mention.node--view-mode-subscribe .title-banner.leadership-container,
.node--type-news-mention.node--view-mode-subscribe .leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership,
.leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-additional-leadership,
.node--type-news-mention.node--view-mode-subscribe .title-banner.branch-leadership-container,
.node--type-news-mention.node--view-mode-subscribe .branch-leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership,
.branch-leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-additional-leadership,
.node--type-news-mention.node--view-mode-subscribe .node--type-general .title-banner.field--name-field-related-publications,
.node--type-general .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-publications,
.node--type-news-mention.node--view-mode-subscribe .node--type-general .title-banner.field--name-field-general-publications-rlt,
.node--type-general .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-general-publications-rlt,
.node--type-news-mention.node--view-mode-subscribe .node--type-general .field--name-field-general-publications-rlt > .field__item .title-banner.standard-teaser,
.node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser,
.node--type-news-mention.node--view-mode-subscribe .node--type-general .field--name-field-related-publications > .field__item .title-banner.standard-teaser,
.node--type-general .field--name-field-related-publications > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser,
.node--type-news-mention.node--view-mode-subscribe .title-banner.objective-text-container,
.node--type-news-mention.node--view-mode-subscribe .title-banner.objective-list-container,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-goal-card,
.node--type-news-mention.node--view-mode-subscribe .title-banner.strategic-vision-landing-goals-wrapper,
.node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .title-banner.striped-container-wrapper,
.node--type-principal-investigator .node--type-news-mention.node--view-mode-subscribe .title-banner.striped-container-wrapper,
.node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .title-banner.striped-container,
.node--type-principal-investigator .node--type-news-mention.node--view-mode-subscribe .title-banner.striped-container,
.node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article.title-banner,
.node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-news-mention.node--view-mode-subscribe article.title-banner,
.node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article.title-banner,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-news-mention.node--view-mode-subscribe article.title-banner,
.node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .title-banner.standard-teaser.node--view-mode-short-teaser,
.node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser.node--view-mode-short-teaser,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-awards,
.node--type-news-mention.node--view-mode-subscribe .title-banner.registerSocialContainer,
.node--type-news-mention.node--view-mode-subscribe .title-banner.eventdatesLocationType,
.node--type-news-mention.node--view-mode-subscribe .title-banner.news-article-container,
.node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-feature-article.node--view-mode-press-release-teaser,
.node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-press-release.node--view-mode-press-release-teaser,
.node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-events.node--view-mode-press-release-teaser,
.node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-feature-article.node--view-mode-hp-press-release-teaser,
.node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-press-release.node--view-mode-hp-press-release-teaser,
.node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-events.node--view-mode-hp-press-release-teaser,
.node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-news-mention.node--view-mode-hp-press-release-teaser,
.node--type-news-mention.node--view-mode-subscribe .title-banner.news-header-container,
.node--type-news-mention.node--view-mode-subscribe .contacts-container .title-banner.field--name-field-contacts,
.contacts-container .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contacts,
.node--type-news-mention.node--view-mode-subscribe .publicationsBox .title-banner.field--name-field-related-publications,
.publicationsBox .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-publications,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-primary-featured-item,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-additional-featured-items,
.node--type-news-mention.node--view-mode-subscribe .title-banner.homepage-health-topics-container,
.node--type-news-mention.node--view-mode-subscribe .title-banner.homepage-mission-areas-container,
.node--type-news-mention.node--view-mode-subscribe .title-banner.homepage-location-container,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-alumni,
.node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-full .title-banner.nhlbi-publication-details-container,
.node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container,
.node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container,
.node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications,
.node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications,
.node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications,
.node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser,
.node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser,
.node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser {
  padding-bottom: 2em;
}
/* line 459, ../sass/components/_news.scss */
.node--type-news-mention.node--view-mode-full .title-banner.flexcontainer .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.related-ht-ser-container .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-sfa-card .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-speaker .flexItemText,
.node--type-news-mention.node--view-mode-full .title-banner.field--name-field-executives .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.standard-card-field .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-advisory-committees .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.contact-nhlbi-titleblock .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-cards .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-employment-opportunity-car .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.all-grants-foa-container .flexItemText,
.node--type-news-mention.node--view-mode-full .title-banner.field--name-field-program-officers .flexItemText,
.node--type-news-mention.node--view-mode-full .view-id-nhlbi_grants_foa.view-display-id-block_2 > .title-banner.view-content .flexItemText,
.node--type-news-mention.node--view-mode-full .view-id-nhlbi_grants_foa.view-display-id-block_3 > .title-banner.view-content .flexItemText, .node--type-news-mention.node--view-mode-full .node--type-individual-contact .title-banner.field--name-field-contact-methods .flexItemText, .node--type-individual-contact .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemText,
.node--type-news-mention.node--view-mode-full .node--type-division.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemText,
.node--type-division.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemText,
.node--type-news-mention.node--view-mode-full .node--type-division.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemText,
.node--type-division.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemText,
.node--type-news-mention.node--view-mode-full .node--type-branch.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemText,
.node--type-branch.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemText,
.node--type-news-mention.node--view-mode-full .node--type-branch.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemText,
.node--type-branch.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemText,
.node--type-news-mention.node--view-mode-full .node--type-general.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemText,
.node--type-general.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemText,
.node--type-news-mention.node--view-mode-full .node--type-general.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemText,
.node--type-general.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemText,
.node--type-news-mention.node--view-mode-full .node--type-health-education-initiative.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemText,
.node--type-health-education-initiative.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemText,
.node--type-news-mention.node--view-mode-full .node--type-health-education-initiative.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemText,
.node--type-health-education-initiative.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemText, .node--type-news-mention.node--view-mode-full .node--type-committee .title-banner.field--name-field-card-text .flexItemText, .node--type-committee .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-card-text .flexItemText, .node--type-news-mention.node--view-mode-full .news-and-events--landing .title-banner.landing-social .flexItemText, .news-and-events--landing .node--type-news-mention.node--view-mode-full .title-banner.landing-social .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-sfa-cards .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.locationMap.contact-location-map-container .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.locationMap .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.grants-and-training-card-wrapper .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.about-nhlbi-division-card-wrapper .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.hei-tools-icon-card-wrapper .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-grants-and-training-card .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-division-card .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-tool-icon-card .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-promotional-card .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-sv-promotional-cards .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-about-nhlbi-promotional-ca .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.strategic-vision-titleblock .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.ppg-titleblock-wrapper .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.ppg-guidelines-card-wrapper .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-human-subject-cards .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-section-card .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-highlight-card .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.health-topic-teaser-container .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.about-nhlbi-our-mission-wrapper .flexItemText, .node--type-news-mention.node--view-mode-full .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .title-banner.director-bioCard .flexItemText, .about-nhlbi-our-mission-wrapper .node--type-news-mention.node--view-mode-full .field--name-field-leadership > .title-banner.director-bioCard .flexItemText, .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-consumer-nhlbi-publ .flexItemText, .nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-health-consumer-nhlbi-publ .flexItemText,
.node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-professionals-nhlbi .flexItemText,
.nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-health-professionals-nhlbi .flexItemText, .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .title-banner.standard-teaser .flexItemText, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemText,
.node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .title-banner.standard-teaser .flexItemText,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemText, .node--type-news-mention.node--view-mode-full .publicationsBlock.view-nhlbi-publications > .title-banner.view-content .flexItemText,
.node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-publications .flexItemText, .node--type-news-mention.node--view-mode-full .healthEducationBlock .title-banner.standard-teaser .flexItemText, .healthEducationBlock .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemText, .node--type-news-mention.node--view-mode-full .systematicEvidenceReviewsBlock .title-banner.view-content .flexItemText, .systematicEvidenceReviewsBlock .node--type-news-mention.node--view-mode-full .title-banner.view-content .flexItemText,
.node--type-news-mention.node--view-mode-full .clinicalPracticeGuidelinesBlock .title-banner.view-content .flexItemText,
.clinicalPracticeGuidelinesBlock .node--type-news-mention.node--view-mode-full .title-banner.view-content .flexItemText,
.node--type-news-mention.node--view-mode-full .publicationsAndFactSheetsBlock .title-banner.view-content .flexItemText,
.publicationsAndFactSheetsBlock .node--type-news-mention.node--view-mode-full .title-banner.view-content .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.rtFlexContainer .flexItemText, .node--type-news-mention.node--view-mode-full .node--type-research-topic .title-banner.field--name-field-science-supplemental-page .flexItemText, .node--type-research-topic .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-science-supplemental-page .flexItemText, .node--type-news-mention.node--view-mode-full .node--type-research-topic .title-banner.researchTopicPublications .flexItemText, .node--type-research-topic .node--type-news-mention.node--view-mode-full .title-banner.researchTopicPublications .flexItemText, .node--type-news-mention.node--view-mode-full .node--type-research-topic .field--name-field-content > .field__item article.title-banner.listTeaserCard .flexItemText, .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-full article.title-banner.listTeaserCard .flexItemText, .node--type-news-mention.node--view-mode-full .node--type-research-topic .field--name-field-content > .field__item article.title-banner.standard-teaser .flexItemText, .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-full article.title-banner.standard-teaser .flexItemText,
.node--type-news-mention.node--view-mode-full .node--type-research-topic .field--name-field-content > .field__item article.title-banner.newsEventsCard .flexItemText,
.node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-full article.title-banner.newsEventsCard .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.esi-feature-card .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.featured-science-instance-teaser-container .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.sfa-teaser-container .flexItemText, .node--type-news-mention.node--view-mode-full .training-opportunity-card .title-banner.field--name-field-associated-people .flexItemText, .training-opportunity-card .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-associated-people .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-featured-training-opportun .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-career-stages .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-workforce-development-card .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.node--type-update.node--view-mode-executive-teaser .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.news-and-events-titleblock .flexItemText, .node--type-news-mention.node--view-mode-full .contact-box > .title-banner.field--name-field-contact-methods .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.leadership-container .flexItemText, .node--type-news-mention.node--view-mode-full .leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .flexItemText, .leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-additional-leadership .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.branch-leadership-container .flexItemText, .node--type-news-mention.node--view-mode-full .branch-leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .flexItemText, .branch-leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-additional-leadership .flexItemText, .node--type-news-mention.node--view-mode-full .node--type-general .title-banner.field--name-field-related-publications .flexItemText, .node--type-general .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-publications .flexItemText, .node--type-news-mention.node--view-mode-full .node--type-general .title-banner.field--name-field-general-publications-rlt .flexItemText, .node--type-general .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-general-publications-rlt .flexItemText, .node--type-news-mention.node--view-mode-full .node--type-general .field--name-field-general-publications-rlt > .field__item .title-banner.standard-teaser .flexItemText, .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemText, .node--type-news-mention.node--view-mode-full .node--type-general .field--name-field-related-publications > .field__item .title-banner.standard-teaser .flexItemText, .node--type-general .field--name-field-related-publications > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.objective-text-container .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.objective-list-container .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-goal-card .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.strategic-vision-landing-goals-wrapper .flexItemText, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .title-banner.striped-container-wrapper .flexItemText, .node--type-principal-investigator .node--type-news-mention.node--view-mode-full .title-banner.striped-container-wrapper .flexItemText, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .title-banner.striped-container .flexItemText, .node--type-principal-investigator .node--type-news-mention.node--view-mode-full .title-banner.striped-container .flexItemText, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article.title-banner .flexItemText, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-news-mention.node--view-mode-full article.title-banner .flexItemText,
.node--type-news-mention.node--view-mode-full .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article.title-banner .flexItemText,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-news-mention.node--view-mode-full article.title-banner .flexItemText, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .title-banner.standard-teaser.node--view-mode-short-teaser .flexItemText, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser.node--view-mode-short-teaser .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-awards .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.registerSocialContainer .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.eventdatesLocationType .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.news-article-container .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.node--type-feature-article.node--view-mode-press-release-teaser .flexItemText,
.node--type-news-mention.node--view-mode-full .title-banner.node--type-press-release.node--view-mode-press-release-teaser .flexItemText,
.node--type-news-mention.node--view-mode-full .title-banner.node--type-events.node--view-mode-press-release-teaser .flexItemText,
.node--type-news-mention.node--view-mode-full .title-banner.node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText,
.node--type-news-mention.node--view-mode-full .title-banner.node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText,
.node--type-news-mention.node--view-mode-full .title-banner.node--type-events.node--view-mode-hp-press-release-teaser .flexItemText,
.node--type-news-mention.node--view-mode-full .title-banner.node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.news-header-container .flexItemText, .node--type-news-mention.node--view-mode-full .contacts-container .title-banner.field--name-field-contacts .flexItemText, .contacts-container .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contacts .flexItemText, .node--type-news-mention.node--view-mode-full .publicationsBox .title-banner.field--name-field-related-publications .flexItemText, .publicationsBox .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-publications .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-primary-featured-item .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-additional-featured-items .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.homepage-health-topics-container .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.homepage-mission-areas-container .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.homepage-location-container .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-alumni .flexItemText, .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-full .title-banner.nhlbi-publication-details-container .flexItemText, .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.nhlbi-publication-details-container .flexItemText,
.node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .flexItemText,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.nhlbi-publication-details-container .flexItemText, .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .flexItemText, .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .flexItemText,
.node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .flexItemText,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .flexItemText, .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .flexItemText, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemText,
.node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .flexItemText,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .title-banner.flexcontainer .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .title-banner.related-ht-ser-container .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-sfa-card .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-speaker .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-executives .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .title-banner.standard-card-field .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-advisory-committees .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .title-banner.contact-nhlbi-titleblock .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-cards .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-employment-opportunity-car .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .title-banner.all-grants-foa-container .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-program-officers .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .view-id-nhlbi_grants_foa.view-display-id-block_2 > .title-banner.view-content .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .view-id-nhlbi_grants_foa.view-display-id-block_3 > .title-banner.view-content .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .node--type-individual-contact .title-banner.field--name-field-contact-methods .flexItemText,
.node--type-individual-contact .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .node--type-division.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemText,
.node--type-division.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .node--type-division.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemText,
.node--type-division.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .node--type-branch.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemText,
.node--type-branch.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .node--type-branch.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemText,
.node--type-branch.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .node--type-general.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemText,
.node--type-general.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .node--type-general.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemText,
.node--type-general.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .node--type-health-education-initiative.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemText,
.node--type-health-education-initiative.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .node--type-health-education-initiative.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemText,
.node--type-health-education-initiative.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .node--type-committee .title-banner.field--name-field-card-text .flexItemText,
.node--type-committee .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-card-text .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .news-and-events--landing .title-banner.landing-social .flexItemText,
.news-and-events--landing .node--type-news-mention.node--view-mode-subscribe .title-banner.landing-social .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-sfa-cards .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .title-banner.locationMap.contact-location-map-container .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .title-banner.locationMap .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .title-banner.grants-and-training-card-wrapper .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .title-banner.about-nhlbi-division-card-wrapper .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .title-banner.hei-tools-icon-card-wrapper .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-grants-and-training-card .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-division-card .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-tool-icon-card .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-promotional-card .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-sv-promotional-cards .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-about-nhlbi-promotional-ca .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .title-banner.strategic-vision-titleblock .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .title-banner.ppg-titleblock-wrapper .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .title-banner.ppg-guidelines-card-wrapper .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-human-subject-cards .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-section-card .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-highlight-card .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .title-banner.health-topic-teaser-container .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .title-banner.about-nhlbi-our-mission-wrapper .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .title-banner.director-bioCard .flexItemText,
.about-nhlbi-our-mission-wrapper .node--type-news-mention.node--view-mode-subscribe .field--name-field-leadership > .title-banner.director-bioCard .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-consumer-nhlbi-publ .flexItemText,
.nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-health-consumer-nhlbi-publ .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-professionals-nhlbi .flexItemText,
.nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-health-professionals-nhlbi .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .title-banner.standard-teaser .flexItemText,
.nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .title-banner.standard-teaser .flexItemText,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .publicationsBlock.view-nhlbi-publications > .title-banner.view-content .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-publications .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .healthEducationBlock .title-banner.standard-teaser .flexItemText,
.healthEducationBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .systematicEvidenceReviewsBlock .title-banner.view-content .flexItemText,
.systematicEvidenceReviewsBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.view-content .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .clinicalPracticeGuidelinesBlock .title-banner.view-content .flexItemText,
.clinicalPracticeGuidelinesBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.view-content .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .publicationsAndFactSheetsBlock .title-banner.view-content .flexItemText,
.publicationsAndFactSheetsBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.view-content .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .title-banner.rtFlexContainer .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .title-banner.field--name-field-science-supplemental-page .flexItemText,
.node--type-research-topic .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-science-supplemental-page .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .title-banner.researchTopicPublications .flexItemText,
.node--type-research-topic .node--type-news-mention.node--view-mode-subscribe .title-banner.researchTopicPublications .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .field--name-field-content > .field__item article.title-banner.listTeaserCard .flexItemText,
.node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner.listTeaserCard .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .field--name-field-content > .field__item article.title-banner.standard-teaser .flexItemText,
.node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner.standard-teaser .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .field--name-field-content > .field__item article.title-banner.newsEventsCard .flexItemText,
.node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner.newsEventsCard .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .title-banner.esi-feature-card .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .title-banner.featured-science-instance-teaser-container .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .title-banner.sfa-teaser-container .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .training-opportunity-card .title-banner.field--name-field-associated-people .flexItemText,
.training-opportunity-card .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-associated-people .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-featured-training-opportun .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-career-stages .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-workforce-development-card .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-update.node--view-mode-executive-teaser .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .title-banner.news-and-events-titleblock .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .contact-box > .title-banner.field--name-field-contact-methods .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .title-banner.leadership-container .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .flexItemText,
.leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-additional-leadership .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .title-banner.branch-leadership-container .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .branch-leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .flexItemText,
.branch-leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-additional-leadership .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .node--type-general .title-banner.field--name-field-related-publications .flexItemText,
.node--type-general .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-publications .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .node--type-general .title-banner.field--name-field-general-publications-rlt .flexItemText,
.node--type-general .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-general-publications-rlt .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .node--type-general .field--name-field-general-publications-rlt > .field__item .title-banner.standard-teaser .flexItemText,
.node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .node--type-general .field--name-field-related-publications > .field__item .title-banner.standard-teaser .flexItemText,
.node--type-general .field--name-field-related-publications > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .title-banner.objective-text-container .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .title-banner.objective-list-container .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-goal-card .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .title-banner.strategic-vision-landing-goals-wrapper .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .title-banner.striped-container-wrapper .flexItemText,
.node--type-principal-investigator .node--type-news-mention.node--view-mode-subscribe .title-banner.striped-container-wrapper .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .title-banner.striped-container .flexItemText,
.node--type-principal-investigator .node--type-news-mention.node--view-mode-subscribe .title-banner.striped-container .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article.title-banner .flexItemText,
.node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-news-mention.node--view-mode-subscribe article.title-banner .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article.title-banner .flexItemText,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-news-mention.node--view-mode-subscribe article.title-banner .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .title-banner.standard-teaser.node--view-mode-short-teaser .flexItemText,
.node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser.node--view-mode-short-teaser .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-awards .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .title-banner.registerSocialContainer .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .title-banner.eventdatesLocationType .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .title-banner.news-article-container .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-feature-article.node--view-mode-press-release-teaser .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-press-release.node--view-mode-press-release-teaser .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-events.node--view-mode-press-release-teaser .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-events.node--view-mode-hp-press-release-teaser .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .title-banner.news-header-container .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .contacts-container .title-banner.field--name-field-contacts .flexItemText,
.contacts-container .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contacts .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .publicationsBox .title-banner.field--name-field-related-publications .flexItemText,
.publicationsBox .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-publications .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-primary-featured-item .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-additional-featured-items .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .title-banner.homepage-health-topics-container .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .title-banner.homepage-mission-areas-container .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .title-banner.homepage-location-container .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-alumni .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-full .title-banner.nhlbi-publication-details-container .flexItemText,
.node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .flexItemText,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .flexItemText,
.node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .flexItemText,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .flexItemText,
.node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .flexItemText,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemText {
  padding-left: 0;
}
@media all and (min-width: 768px) {
  /* line 459, ../sass/components/_news.scss */
  .node--type-news-mention.node--view-mode-full .title-banner.flexcontainer .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.related-ht-ser-container .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-sfa-card .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-speaker .flexItemText,
  .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-executives .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.standard-card-field .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-advisory-committees .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.contact-nhlbi-titleblock .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-cards .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-employment-opportunity-car .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.all-grants-foa-container .flexItemText,
  .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-program-officers .flexItemText,
  .node--type-news-mention.node--view-mode-full .view-id-nhlbi_grants_foa.view-display-id-block_2 > .title-banner.view-content .flexItemText,
  .node--type-news-mention.node--view-mode-full .view-id-nhlbi_grants_foa.view-display-id-block_3 > .title-banner.view-content .flexItemText, .node--type-news-mention.node--view-mode-full .node--type-individual-contact .title-banner.field--name-field-contact-methods .flexItemText, .node--type-individual-contact .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-news-mention.node--view-mode-full .node--type-division.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-division.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-news-mention.node--view-mode-full .node--type-division.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-division.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-news-mention.node--view-mode-full .node--type-branch.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-branch.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-news-mention.node--view-mode-full .node--type-branch.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-branch.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-news-mention.node--view-mode-full .node--type-general.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-general.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-news-mention.node--view-mode-full .node--type-general.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-general.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-news-mention.node--view-mode-full .node--type-health-education-initiative.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-health-education-initiative.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-news-mention.node--view-mode-full .node--type-health-education-initiative.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemText, .node--type-news-mention.node--view-mode-full .node--type-committee .title-banner.field--name-field-card-text .flexItemText, .node--type-committee .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-card-text .flexItemText, .node--type-news-mention.node--view-mode-full .news-and-events--landing .title-banner.landing-social .flexItemText, .news-and-events--landing .node--type-news-mention.node--view-mode-full .title-banner.landing-social .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-sfa-cards .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.locationMap.contact-location-map-container .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.locationMap .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.grants-and-training-card-wrapper .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.about-nhlbi-division-card-wrapper .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.hei-tools-icon-card-wrapper .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-grants-and-training-card .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-division-card .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-tool-icon-card .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-promotional-card .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-sv-promotional-cards .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-about-nhlbi-promotional-ca .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.strategic-vision-titleblock .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.ppg-titleblock-wrapper .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.ppg-guidelines-card-wrapper .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-human-subject-cards .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-section-card .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-highlight-card .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.health-topic-teaser-container .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.about-nhlbi-our-mission-wrapper .flexItemText, .node--type-news-mention.node--view-mode-full .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .title-banner.director-bioCard .flexItemText, .about-nhlbi-our-mission-wrapper .node--type-news-mention.node--view-mode-full .field--name-field-leadership > .title-banner.director-bioCard .flexItemText, .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-consumer-nhlbi-publ .flexItemText, .nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-health-consumer-nhlbi-publ .flexItemText,
  .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-professionals-nhlbi .flexItemText,
  .nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-health-professionals-nhlbi .flexItemText, .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .title-banner.standard-teaser .flexItemText, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemText,
  .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .title-banner.standard-teaser .flexItemText,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemText, .node--type-news-mention.node--view-mode-full .publicationsBlock.view-nhlbi-publications > .title-banner.view-content .flexItemText,
  .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-publications .flexItemText, .node--type-news-mention.node--view-mode-full .healthEducationBlock .title-banner.standard-teaser .flexItemText, .healthEducationBlock .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemText, .node--type-news-mention.node--view-mode-full .systematicEvidenceReviewsBlock .title-banner.view-content .flexItemText, .systematicEvidenceReviewsBlock .node--type-news-mention.node--view-mode-full .title-banner.view-content .flexItemText,
  .node--type-news-mention.node--view-mode-full .clinicalPracticeGuidelinesBlock .title-banner.view-content .flexItemText,
  .clinicalPracticeGuidelinesBlock .node--type-news-mention.node--view-mode-full .title-banner.view-content .flexItemText,
  .node--type-news-mention.node--view-mode-full .publicationsAndFactSheetsBlock .title-banner.view-content .flexItemText,
  .publicationsAndFactSheetsBlock .node--type-news-mention.node--view-mode-full .title-banner.view-content .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.rtFlexContainer .flexItemText, .node--type-news-mention.node--view-mode-full .node--type-research-topic .title-banner.field--name-field-science-supplemental-page .flexItemText, .node--type-research-topic .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-science-supplemental-page .flexItemText, .node--type-news-mention.node--view-mode-full .node--type-research-topic .title-banner.researchTopicPublications .flexItemText, .node--type-research-topic .node--type-news-mention.node--view-mode-full .title-banner.researchTopicPublications .flexItemText, .node--type-news-mention.node--view-mode-full .node--type-research-topic .field--name-field-content > .field__item article.title-banner.listTeaserCard .flexItemText, .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-full article.title-banner.listTeaserCard .flexItemText, .node--type-news-mention.node--view-mode-full .node--type-research-topic .field--name-field-content > .field__item article.title-banner.standard-teaser .flexItemText, .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-full article.title-banner.standard-teaser .flexItemText,
  .node--type-news-mention.node--view-mode-full .node--type-research-topic .field--name-field-content > .field__item article.title-banner.newsEventsCard .flexItemText,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-full article.title-banner.newsEventsCard .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.esi-feature-card .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.featured-science-instance-teaser-container .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.sfa-teaser-container .flexItemText, .node--type-news-mention.node--view-mode-full .training-opportunity-card .title-banner.field--name-field-associated-people .flexItemText, .training-opportunity-card .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-associated-people .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-featured-training-opportun .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-career-stages .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-workforce-development-card .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.node--type-update.node--view-mode-executive-teaser .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.news-and-events-titleblock .flexItemText, .node--type-news-mention.node--view-mode-full .contact-box > .title-banner.field--name-field-contact-methods .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.leadership-container .flexItemText, .node--type-news-mention.node--view-mode-full .leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .flexItemText, .leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-additional-leadership .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.branch-leadership-container .flexItemText, .node--type-news-mention.node--view-mode-full .branch-leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .flexItemText, .branch-leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-additional-leadership .flexItemText, .node--type-news-mention.node--view-mode-full .node--type-general .title-banner.field--name-field-related-publications .flexItemText, .node--type-general .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-publications .flexItemText, .node--type-news-mention.node--view-mode-full .node--type-general .title-banner.field--name-field-general-publications-rlt .flexItemText, .node--type-general .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-general-publications-rlt .flexItemText, .node--type-news-mention.node--view-mode-full .node--type-general .field--name-field-general-publications-rlt > .field__item .title-banner.standard-teaser .flexItemText, .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemText, .node--type-news-mention.node--view-mode-full .node--type-general .field--name-field-related-publications > .field__item .title-banner.standard-teaser .flexItemText, .node--type-general .field--name-field-related-publications > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.objective-text-container .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.objective-list-container .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-goal-card .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.strategic-vision-landing-goals-wrapper .flexItemText, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .title-banner.striped-container-wrapper .flexItemText, .node--type-principal-investigator .node--type-news-mention.node--view-mode-full .title-banner.striped-container-wrapper .flexItemText, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .title-banner.striped-container .flexItemText, .node--type-principal-investigator .node--type-news-mention.node--view-mode-full .title-banner.striped-container .flexItemText, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article.title-banner .flexItemText, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-news-mention.node--view-mode-full article.title-banner .flexItemText,
  .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article.title-banner .flexItemText,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-news-mention.node--view-mode-full article.title-banner .flexItemText, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .title-banner.standard-teaser.node--view-mode-short-teaser .flexItemText, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser.node--view-mode-short-teaser .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-awards .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.registerSocialContainer .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.eventdatesLocationType .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.news-article-container .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.node--type-feature-article.node--view-mode-press-release-teaser .flexItemText,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-press-release.node--view-mode-press-release-teaser .flexItemText,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-events.node--view-mode-press-release-teaser .flexItemText,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-events.node--view-mode-hp-press-release-teaser .flexItemText,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.news-header-container .flexItemText, .node--type-news-mention.node--view-mode-full .contacts-container .title-banner.field--name-field-contacts .flexItemText, .contacts-container .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contacts .flexItemText, .node--type-news-mention.node--view-mode-full .publicationsBox .title-banner.field--name-field-related-publications .flexItemText, .publicationsBox .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-publications .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-primary-featured-item .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-additional-featured-items .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.homepage-health-topics-container .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.homepage-mission-areas-container .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.homepage-location-container .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-alumni .flexItemText, .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-full .title-banner.nhlbi-publication-details-container .flexItemText, .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.nhlbi-publication-details-container .flexItemText,
  .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .flexItemText,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.nhlbi-publication-details-container .flexItemText, .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .flexItemText, .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .flexItemText,
  .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .flexItemText,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .flexItemText, .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .flexItemText, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemText,
  .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .flexItemText,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.flexcontainer .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.related-ht-ser-container .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-sfa-card .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-speaker .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-executives .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-card-field .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-advisory-committees .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.contact-nhlbi-titleblock .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-cards .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-employment-opportunity-car .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.all-grants-foa-container .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-program-officers .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .view-id-nhlbi_grants_foa.view-display-id-block_2 > .title-banner.view-content .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .view-id-nhlbi_grants_foa.view-display-id-block_3 > .title-banner.view-content .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .node--type-individual-contact .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-individual-contact .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .node--type-division.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-division.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .node--type-division.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-division.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .node--type-branch.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-branch.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .node--type-branch.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-branch.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-general.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-general.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .node--type-health-education-initiative.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-health-education-initiative.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .node--type-health-education-initiative.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .node--type-committee .title-banner.field--name-field-card-text .flexItemText,
  .node--type-committee .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-card-text .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .news-and-events--landing .title-banner.landing-social .flexItemText,
  .news-and-events--landing .node--type-news-mention.node--view-mode-subscribe .title-banner.landing-social .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-sfa-cards .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.locationMap.contact-location-map-container .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.locationMap .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.grants-and-training-card-wrapper .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.about-nhlbi-division-card-wrapper .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.hei-tools-icon-card-wrapper .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-grants-and-training-card .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-division-card .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-tool-icon-card .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-promotional-card .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-sv-promotional-cards .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-about-nhlbi-promotional-ca .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.strategic-vision-titleblock .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.ppg-titleblock-wrapper .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.ppg-guidelines-card-wrapper .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-human-subject-cards .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-section-card .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-highlight-card .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.health-topic-teaser-container .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.about-nhlbi-our-mission-wrapper .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .title-banner.director-bioCard .flexItemText,
  .about-nhlbi-our-mission-wrapper .node--type-news-mention.node--view-mode-subscribe .field--name-field-leadership > .title-banner.director-bioCard .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-consumer-nhlbi-publ .flexItemText,
  .nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-health-consumer-nhlbi-publ .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-professionals-nhlbi .flexItemText,
  .nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-health-professionals-nhlbi .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .title-banner.standard-teaser .flexItemText,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .title-banner.standard-teaser .flexItemText,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .publicationsBlock.view-nhlbi-publications > .title-banner.view-content .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-publications .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .healthEducationBlock .title-banner.standard-teaser .flexItemText,
  .healthEducationBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .systematicEvidenceReviewsBlock .title-banner.view-content .flexItemText,
  .systematicEvidenceReviewsBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.view-content .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .clinicalPracticeGuidelinesBlock .title-banner.view-content .flexItemText,
  .clinicalPracticeGuidelinesBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.view-content .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .publicationsAndFactSheetsBlock .title-banner.view-content .flexItemText,
  .publicationsAndFactSheetsBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.view-content .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.rtFlexContainer .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .title-banner.field--name-field-science-supplemental-page .flexItemText,
  .node--type-research-topic .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-science-supplemental-page .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .title-banner.researchTopicPublications .flexItemText,
  .node--type-research-topic .node--type-news-mention.node--view-mode-subscribe .title-banner.researchTopicPublications .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .field--name-field-content > .field__item article.title-banner.listTeaserCard .flexItemText,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner.listTeaserCard .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .field--name-field-content > .field__item article.title-banner.standard-teaser .flexItemText,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner.standard-teaser .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .field--name-field-content > .field__item article.title-banner.newsEventsCard .flexItemText,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner.newsEventsCard .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.esi-feature-card .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.featured-science-instance-teaser-container .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.sfa-teaser-container .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .training-opportunity-card .title-banner.field--name-field-associated-people .flexItemText,
  .training-opportunity-card .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-associated-people .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-featured-training-opportun .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-career-stages .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-workforce-development-card .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-update.node--view-mode-executive-teaser .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.news-and-events-titleblock .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .contact-box > .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.leadership-container .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .flexItemText,
  .leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-additional-leadership .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.branch-leadership-container .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .branch-leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .flexItemText,
  .branch-leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-additional-leadership .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general .title-banner.field--name-field-related-publications .flexItemText,
  .node--type-general .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-publications .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general .title-banner.field--name-field-general-publications-rlt .flexItemText,
  .node--type-general .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-general-publications-rlt .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general .field--name-field-general-publications-rlt > .field__item .title-banner.standard-teaser .flexItemText,
  .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general .field--name-field-related-publications > .field__item .title-banner.standard-teaser .flexItemText,
  .node--type-general .field--name-field-related-publications > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.objective-text-container .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.objective-list-container .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-goal-card .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.strategic-vision-landing-goals-wrapper .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .title-banner.striped-container-wrapper .flexItemText,
  .node--type-principal-investigator .node--type-news-mention.node--view-mode-subscribe .title-banner.striped-container-wrapper .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .title-banner.striped-container .flexItemText,
  .node--type-principal-investigator .node--type-news-mention.node--view-mode-subscribe .title-banner.striped-container .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article.title-banner .flexItemText,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-news-mention.node--view-mode-subscribe article.title-banner .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article.title-banner .flexItemText,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-news-mention.node--view-mode-subscribe article.title-banner .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .title-banner.standard-teaser.node--view-mode-short-teaser .flexItemText,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser.node--view-mode-short-teaser .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-awards .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.registerSocialContainer .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.eventdatesLocationType .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.news-article-container .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-feature-article.node--view-mode-press-release-teaser .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-press-release.node--view-mode-press-release-teaser .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-events.node--view-mode-press-release-teaser .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-events.node--view-mode-hp-press-release-teaser .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.news-header-container .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .contacts-container .title-banner.field--name-field-contacts .flexItemText,
  .contacts-container .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contacts .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .publicationsBox .title-banner.field--name-field-related-publications .flexItemText,
  .publicationsBox .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-publications .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-primary-featured-item .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-additional-featured-items .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.homepage-health-topics-container .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.homepage-mission-areas-container .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.homepage-location-container .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-alumni .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-full .title-banner.nhlbi-publication-details-container .flexItemText,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .flexItemText,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .flexItemText,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .flexItemText,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .flexItemText,
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .flexItemText,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemText {
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
    padding-top: 0;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 459, ../sass/components/_news.scss */
  .node--type-news-mention.node--view-mode-full .title-banner.flexcontainer .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.related-ht-ser-container .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-sfa-card .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-speaker .flexItemText,
  .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-executives .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.standard-card-field .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-advisory-committees .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.contact-nhlbi-titleblock .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-cards .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-employment-opportunity-car .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.all-grants-foa-container .flexItemText,
  .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-program-officers .flexItemText,
  .node--type-news-mention.node--view-mode-full .view-id-nhlbi_grants_foa.view-display-id-block_2 > .title-banner.view-content .flexItemText,
  .node--type-news-mention.node--view-mode-full .view-id-nhlbi_grants_foa.view-display-id-block_3 > .title-banner.view-content .flexItemText, .node--type-news-mention.node--view-mode-full .node--type-individual-contact .title-banner.field--name-field-contact-methods .flexItemText, .node--type-individual-contact .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-news-mention.node--view-mode-full .node--type-division.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-division.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-news-mention.node--view-mode-full .node--type-division.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-division.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-news-mention.node--view-mode-full .node--type-branch.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-branch.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-news-mention.node--view-mode-full .node--type-branch.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-branch.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-news-mention.node--view-mode-full .node--type-general.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-general.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-news-mention.node--view-mode-full .node--type-general.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-general.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-news-mention.node--view-mode-full .node--type-health-education-initiative.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-health-education-initiative.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-news-mention.node--view-mode-full .node--type-health-education-initiative.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemText, .node--type-news-mention.node--view-mode-full .node--type-committee .title-banner.field--name-field-card-text .flexItemText, .node--type-committee .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-card-text .flexItemText, .node--type-news-mention.node--view-mode-full .news-and-events--landing .title-banner.landing-social .flexItemText, .news-and-events--landing .node--type-news-mention.node--view-mode-full .title-banner.landing-social .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-sfa-cards .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.locationMap.contact-location-map-container .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.locationMap .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.grants-and-training-card-wrapper .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.about-nhlbi-division-card-wrapper .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.hei-tools-icon-card-wrapper .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-grants-and-training-card .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-division-card .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-tool-icon-card .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-promotional-card .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-sv-promotional-cards .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-about-nhlbi-promotional-ca .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.strategic-vision-titleblock .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.ppg-titleblock-wrapper .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.ppg-guidelines-card-wrapper .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-human-subject-cards .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-section-card .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-highlight-card .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.health-topic-teaser-container .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.about-nhlbi-our-mission-wrapper .flexItemText, .node--type-news-mention.node--view-mode-full .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .title-banner.director-bioCard .flexItemText, .about-nhlbi-our-mission-wrapper .node--type-news-mention.node--view-mode-full .field--name-field-leadership > .title-banner.director-bioCard .flexItemText, .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-consumer-nhlbi-publ .flexItemText, .nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-health-consumer-nhlbi-publ .flexItemText,
  .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-professionals-nhlbi .flexItemText,
  .nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-health-professionals-nhlbi .flexItemText, .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .title-banner.standard-teaser .flexItemText, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemText,
  .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .title-banner.standard-teaser .flexItemText,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemText, .node--type-news-mention.node--view-mode-full .publicationsBlock.view-nhlbi-publications > .title-banner.view-content .flexItemText,
  .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-publications .flexItemText, .node--type-news-mention.node--view-mode-full .healthEducationBlock .title-banner.standard-teaser .flexItemText, .healthEducationBlock .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemText, .node--type-news-mention.node--view-mode-full .systematicEvidenceReviewsBlock .title-banner.view-content .flexItemText, .systematicEvidenceReviewsBlock .node--type-news-mention.node--view-mode-full .title-banner.view-content .flexItemText,
  .node--type-news-mention.node--view-mode-full .clinicalPracticeGuidelinesBlock .title-banner.view-content .flexItemText,
  .clinicalPracticeGuidelinesBlock .node--type-news-mention.node--view-mode-full .title-banner.view-content .flexItemText,
  .node--type-news-mention.node--view-mode-full .publicationsAndFactSheetsBlock .title-banner.view-content .flexItemText,
  .publicationsAndFactSheetsBlock .node--type-news-mention.node--view-mode-full .title-banner.view-content .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.rtFlexContainer .flexItemText, .node--type-news-mention.node--view-mode-full .node--type-research-topic .title-banner.field--name-field-science-supplemental-page .flexItemText, .node--type-research-topic .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-science-supplemental-page .flexItemText, .node--type-news-mention.node--view-mode-full .node--type-research-topic .title-banner.researchTopicPublications .flexItemText, .node--type-research-topic .node--type-news-mention.node--view-mode-full .title-banner.researchTopicPublications .flexItemText, .node--type-news-mention.node--view-mode-full .node--type-research-topic .field--name-field-content > .field__item article.title-banner.listTeaserCard .flexItemText, .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-full article.title-banner.listTeaserCard .flexItemText, .node--type-news-mention.node--view-mode-full .node--type-research-topic .field--name-field-content > .field__item article.title-banner.standard-teaser .flexItemText, .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-full article.title-banner.standard-teaser .flexItemText,
  .node--type-news-mention.node--view-mode-full .node--type-research-topic .field--name-field-content > .field__item article.title-banner.newsEventsCard .flexItemText,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-full article.title-banner.newsEventsCard .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.esi-feature-card .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.featured-science-instance-teaser-container .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.sfa-teaser-container .flexItemText, .node--type-news-mention.node--view-mode-full .training-opportunity-card .title-banner.field--name-field-associated-people .flexItemText, .training-opportunity-card .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-associated-people .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-featured-training-opportun .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-career-stages .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-workforce-development-card .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.node--type-update.node--view-mode-executive-teaser .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.news-and-events-titleblock .flexItemText, .node--type-news-mention.node--view-mode-full .contact-box > .title-banner.field--name-field-contact-methods .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.leadership-container .flexItemText, .node--type-news-mention.node--view-mode-full .leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .flexItemText, .leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-additional-leadership .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.branch-leadership-container .flexItemText, .node--type-news-mention.node--view-mode-full .branch-leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .flexItemText, .branch-leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-additional-leadership .flexItemText, .node--type-news-mention.node--view-mode-full .node--type-general .title-banner.field--name-field-related-publications .flexItemText, .node--type-general .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-publications .flexItemText, .node--type-news-mention.node--view-mode-full .node--type-general .title-banner.field--name-field-general-publications-rlt .flexItemText, .node--type-general .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-general-publications-rlt .flexItemText, .node--type-news-mention.node--view-mode-full .node--type-general .field--name-field-general-publications-rlt > .field__item .title-banner.standard-teaser .flexItemText, .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemText, .node--type-news-mention.node--view-mode-full .node--type-general .field--name-field-related-publications > .field__item .title-banner.standard-teaser .flexItemText, .node--type-general .field--name-field-related-publications > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.objective-text-container .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.objective-list-container .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-goal-card .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.strategic-vision-landing-goals-wrapper .flexItemText, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .title-banner.striped-container-wrapper .flexItemText, .node--type-principal-investigator .node--type-news-mention.node--view-mode-full .title-banner.striped-container-wrapper .flexItemText, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .title-banner.striped-container .flexItemText, .node--type-principal-investigator .node--type-news-mention.node--view-mode-full .title-banner.striped-container .flexItemText, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article.title-banner .flexItemText, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-news-mention.node--view-mode-full article.title-banner .flexItemText,
  .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article.title-banner .flexItemText,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-news-mention.node--view-mode-full article.title-banner .flexItemText, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .title-banner.standard-teaser.node--view-mode-short-teaser .flexItemText, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser.node--view-mode-short-teaser .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-awards .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.registerSocialContainer .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.eventdatesLocationType .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.news-article-container .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.node--type-feature-article.node--view-mode-press-release-teaser .flexItemText,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-press-release.node--view-mode-press-release-teaser .flexItemText,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-events.node--view-mode-press-release-teaser .flexItemText,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-events.node--view-mode-hp-press-release-teaser .flexItemText,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.news-header-container .flexItemText, .node--type-news-mention.node--view-mode-full .contacts-container .title-banner.field--name-field-contacts .flexItemText, .contacts-container .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contacts .flexItemText, .node--type-news-mention.node--view-mode-full .publicationsBox .title-banner.field--name-field-related-publications .flexItemText, .publicationsBox .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-publications .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-primary-featured-item .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-additional-featured-items .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.homepage-health-topics-container .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.homepage-mission-areas-container .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.homepage-location-container .flexItemText, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-alumni .flexItemText, .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-full .title-banner.nhlbi-publication-details-container .flexItemText, .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.nhlbi-publication-details-container .flexItemText,
  .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .flexItemText,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.nhlbi-publication-details-container .flexItemText, .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .flexItemText, .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .flexItemText,
  .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .flexItemText,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .flexItemText, .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .flexItemText, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemText,
  .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .flexItemText,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.flexcontainer .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.related-ht-ser-container .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-sfa-card .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-speaker .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-executives .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-card-field .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-advisory-committees .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.contact-nhlbi-titleblock .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-cards .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-employment-opportunity-car .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.all-grants-foa-container .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-program-officers .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .view-id-nhlbi_grants_foa.view-display-id-block_2 > .title-banner.view-content .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .view-id-nhlbi_grants_foa.view-display-id-block_3 > .title-banner.view-content .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .node--type-individual-contact .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-individual-contact .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .node--type-division.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-division.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .node--type-division.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-division.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .node--type-branch.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-branch.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .node--type-branch.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-branch.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-general.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-general.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .node--type-health-education-initiative.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-health-education-initiative.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .node--type-health-education-initiative.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .node--type-committee .title-banner.field--name-field-card-text .flexItemText,
  .node--type-committee .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-card-text .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .news-and-events--landing .title-banner.landing-social .flexItemText,
  .news-and-events--landing .node--type-news-mention.node--view-mode-subscribe .title-banner.landing-social .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-sfa-cards .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.locationMap.contact-location-map-container .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.locationMap .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.grants-and-training-card-wrapper .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.about-nhlbi-division-card-wrapper .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.hei-tools-icon-card-wrapper .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-grants-and-training-card .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-division-card .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-tool-icon-card .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-promotional-card .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-sv-promotional-cards .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-about-nhlbi-promotional-ca .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.strategic-vision-titleblock .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.ppg-titleblock-wrapper .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.ppg-guidelines-card-wrapper .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-human-subject-cards .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-section-card .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-highlight-card .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.health-topic-teaser-container .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.about-nhlbi-our-mission-wrapper .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .title-banner.director-bioCard .flexItemText,
  .about-nhlbi-our-mission-wrapper .node--type-news-mention.node--view-mode-subscribe .field--name-field-leadership > .title-banner.director-bioCard .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-consumer-nhlbi-publ .flexItemText,
  .nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-health-consumer-nhlbi-publ .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-professionals-nhlbi .flexItemText,
  .nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-health-professionals-nhlbi .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .title-banner.standard-teaser .flexItemText,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .title-banner.standard-teaser .flexItemText,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .publicationsBlock.view-nhlbi-publications > .title-banner.view-content .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-publications .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .healthEducationBlock .title-banner.standard-teaser .flexItemText,
  .healthEducationBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .systematicEvidenceReviewsBlock .title-banner.view-content .flexItemText,
  .systematicEvidenceReviewsBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.view-content .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .clinicalPracticeGuidelinesBlock .title-banner.view-content .flexItemText,
  .clinicalPracticeGuidelinesBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.view-content .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .publicationsAndFactSheetsBlock .title-banner.view-content .flexItemText,
  .publicationsAndFactSheetsBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.view-content .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.rtFlexContainer .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .title-banner.field--name-field-science-supplemental-page .flexItemText,
  .node--type-research-topic .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-science-supplemental-page .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .title-banner.researchTopicPublications .flexItemText,
  .node--type-research-topic .node--type-news-mention.node--view-mode-subscribe .title-banner.researchTopicPublications .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .field--name-field-content > .field__item article.title-banner.listTeaserCard .flexItemText,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner.listTeaserCard .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .field--name-field-content > .field__item article.title-banner.standard-teaser .flexItemText,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner.standard-teaser .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .field--name-field-content > .field__item article.title-banner.newsEventsCard .flexItemText,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner.newsEventsCard .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.esi-feature-card .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.featured-science-instance-teaser-container .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.sfa-teaser-container .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .training-opportunity-card .title-banner.field--name-field-associated-people .flexItemText,
  .training-opportunity-card .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-associated-people .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-featured-training-opportun .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-career-stages .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-workforce-development-card .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-update.node--view-mode-executive-teaser .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.news-and-events-titleblock .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .contact-box > .title-banner.field--name-field-contact-methods .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.leadership-container .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .flexItemText,
  .leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-additional-leadership .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.branch-leadership-container .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .branch-leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .flexItemText,
  .branch-leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-additional-leadership .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general .title-banner.field--name-field-related-publications .flexItemText,
  .node--type-general .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-publications .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general .title-banner.field--name-field-general-publications-rlt .flexItemText,
  .node--type-general .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-general-publications-rlt .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general .field--name-field-general-publications-rlt > .field__item .title-banner.standard-teaser .flexItemText,
  .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general .field--name-field-related-publications > .field__item .title-banner.standard-teaser .flexItemText,
  .node--type-general .field--name-field-related-publications > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.objective-text-container .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.objective-list-container .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-goal-card .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.strategic-vision-landing-goals-wrapper .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .title-banner.striped-container-wrapper .flexItemText,
  .node--type-principal-investigator .node--type-news-mention.node--view-mode-subscribe .title-banner.striped-container-wrapper .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .title-banner.striped-container .flexItemText,
  .node--type-principal-investigator .node--type-news-mention.node--view-mode-subscribe .title-banner.striped-container .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article.title-banner .flexItemText,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-news-mention.node--view-mode-subscribe article.title-banner .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article.title-banner .flexItemText,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-news-mention.node--view-mode-subscribe article.title-banner .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .title-banner.standard-teaser.node--view-mode-short-teaser .flexItemText,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser.node--view-mode-short-teaser .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-awards .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.registerSocialContainer .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.eventdatesLocationType .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.news-article-container .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-feature-article.node--view-mode-press-release-teaser .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-press-release.node--view-mode-press-release-teaser .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-events.node--view-mode-press-release-teaser .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-events.node--view-mode-hp-press-release-teaser .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.news-header-container .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .contacts-container .title-banner.field--name-field-contacts .flexItemText,
  .contacts-container .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contacts .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .publicationsBox .title-banner.field--name-field-related-publications .flexItemText,
  .publicationsBox .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-publications .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-primary-featured-item .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-additional-featured-items .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.homepage-health-topics-container .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.homepage-mission-areas-container .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.homepage-location-container .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-alumni .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-full .title-banner.nhlbi-publication-details-container .flexItemText,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .flexItemText,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .flexItemText,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .flexItemText,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .flexItemText,
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .flexItemText,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemText {
    -webkit-box-ordinal-group: 2;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
}
@media all and (min-width: 768px) {
  /* line 469, ../sass/components/_news.scss */
  .node--type-news-mention.node--view-mode-full .title-banner.flexcontainer .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.related-ht-ser-container .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-sfa-card .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-speaker .flexItemImage,
  .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-executives .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.standard-card-field .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-advisory-committees .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.contact-nhlbi-titleblock .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-cards .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-employment-opportunity-car .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.all-grants-foa-container .flexItemImage,
  .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-program-officers .flexItemImage,
  .node--type-news-mention.node--view-mode-full .view-id-nhlbi_grants_foa.view-display-id-block_2 > .title-banner.view-content .flexItemImage,
  .node--type-news-mention.node--view-mode-full .view-id-nhlbi_grants_foa.view-display-id-block_3 > .title-banner.view-content .flexItemImage, .node--type-news-mention.node--view-mode-full .node--type-individual-contact .title-banner.field--name-field-contact-methods .flexItemImage, .node--type-individual-contact .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-news-mention.node--view-mode-full .node--type-division.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-division.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-news-mention.node--view-mode-full .node--type-division.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-division.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-news-mention.node--view-mode-full .node--type-branch.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-branch.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-news-mention.node--view-mode-full .node--type-branch.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-branch.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-news-mention.node--view-mode-full .node--type-general.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-general.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-news-mention.node--view-mode-full .node--type-general.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-general.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-news-mention.node--view-mode-full .node--type-health-education-initiative.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-health-education-initiative.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-news-mention.node--view-mode-full .node--type-health-education-initiative.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImage, .node--type-news-mention.node--view-mode-full .node--type-committee .title-banner.field--name-field-card-text .flexItemImage, .node--type-committee .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-card-text .flexItemImage, .node--type-news-mention.node--view-mode-full .news-and-events--landing .title-banner.landing-social .flexItemImage, .news-and-events--landing .node--type-news-mention.node--view-mode-full .title-banner.landing-social .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-sfa-cards .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.locationMap.contact-location-map-container .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.locationMap .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.grants-and-training-card-wrapper .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.about-nhlbi-division-card-wrapper .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.hei-tools-icon-card-wrapper .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-grants-and-training-card .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-division-card .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-tool-icon-card .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-promotional-card .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-sv-promotional-cards .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-about-nhlbi-promotional-ca .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.strategic-vision-titleblock .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.ppg-titleblock-wrapper .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.ppg-guidelines-card-wrapper .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-human-subject-cards .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-section-card .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-highlight-card .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.health-topic-teaser-container .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.about-nhlbi-our-mission-wrapper .flexItemImage, .node--type-news-mention.node--view-mode-full .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .title-banner.director-bioCard .flexItemImage, .about-nhlbi-our-mission-wrapper .node--type-news-mention.node--view-mode-full .field--name-field-leadership > .title-banner.director-bioCard .flexItemImage, .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-consumer-nhlbi-publ .flexItemImage, .nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-health-consumer-nhlbi-publ .flexItemImage,
  .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-professionals-nhlbi .flexItemImage,
  .nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-health-professionals-nhlbi .flexItemImage, .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .title-banner.standard-teaser .flexItemImage, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImage,
  .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .title-banner.standard-teaser .flexItemImage,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImage, .node--type-news-mention.node--view-mode-full .publicationsBlock.view-nhlbi-publications > .title-banner.view-content .flexItemImage,
  .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-publications .flexItemImage, .node--type-news-mention.node--view-mode-full .healthEducationBlock .title-banner.standard-teaser .flexItemImage, .healthEducationBlock .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImage, .node--type-news-mention.node--view-mode-full .systematicEvidenceReviewsBlock .title-banner.view-content .flexItemImage, .systematicEvidenceReviewsBlock .node--type-news-mention.node--view-mode-full .title-banner.view-content .flexItemImage,
  .node--type-news-mention.node--view-mode-full .clinicalPracticeGuidelinesBlock .title-banner.view-content .flexItemImage,
  .clinicalPracticeGuidelinesBlock .node--type-news-mention.node--view-mode-full .title-banner.view-content .flexItemImage,
  .node--type-news-mention.node--view-mode-full .publicationsAndFactSheetsBlock .title-banner.view-content .flexItemImage,
  .publicationsAndFactSheetsBlock .node--type-news-mention.node--view-mode-full .title-banner.view-content .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.rtFlexContainer .flexItemImage, .node--type-news-mention.node--view-mode-full .node--type-research-topic .title-banner.field--name-field-science-supplemental-page .flexItemImage, .node--type-research-topic .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-science-supplemental-page .flexItemImage, .node--type-news-mention.node--view-mode-full .node--type-research-topic .title-banner.researchTopicPublications .flexItemImage, .node--type-research-topic .node--type-news-mention.node--view-mode-full .title-banner.researchTopicPublications .flexItemImage, .node--type-news-mention.node--view-mode-full .node--type-research-topic .field--name-field-content > .field__item article.title-banner.listTeaserCard .flexItemImage, .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-full article.title-banner.listTeaserCard .flexItemImage, .node--type-news-mention.node--view-mode-full .node--type-research-topic .field--name-field-content > .field__item article.title-banner.standard-teaser .flexItemImage, .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-full article.title-banner.standard-teaser .flexItemImage,
  .node--type-news-mention.node--view-mode-full .node--type-research-topic .field--name-field-content > .field__item article.title-banner.newsEventsCard .flexItemImage,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-full article.title-banner.newsEventsCard .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.esi-feature-card .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.featured-science-instance-teaser-container .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.sfa-teaser-container .flexItemImage, .node--type-news-mention.node--view-mode-full .training-opportunity-card .title-banner.field--name-field-associated-people .flexItemImage, .training-opportunity-card .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-associated-people .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-featured-training-opportun .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-career-stages .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-workforce-development-card .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.node--type-update.node--view-mode-executive-teaser .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.news-and-events-titleblock .flexItemImage, .node--type-news-mention.node--view-mode-full .contact-box > .title-banner.field--name-field-contact-methods .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.leadership-container .flexItemImage, .node--type-news-mention.node--view-mode-full .leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .flexItemImage, .leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-additional-leadership .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.branch-leadership-container .flexItemImage, .node--type-news-mention.node--view-mode-full .branch-leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .flexItemImage, .branch-leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-additional-leadership .flexItemImage, .node--type-news-mention.node--view-mode-full .node--type-general .title-banner.field--name-field-related-publications .flexItemImage, .node--type-general .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-publications .flexItemImage, .node--type-news-mention.node--view-mode-full .node--type-general .title-banner.field--name-field-general-publications-rlt .flexItemImage, .node--type-general .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-general-publications-rlt .flexItemImage, .node--type-news-mention.node--view-mode-full .node--type-general .field--name-field-general-publications-rlt > .field__item .title-banner.standard-teaser .flexItemImage, .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImage, .node--type-news-mention.node--view-mode-full .node--type-general .field--name-field-related-publications > .field__item .title-banner.standard-teaser .flexItemImage, .node--type-general .field--name-field-related-publications > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.objective-text-container .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.objective-list-container .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-goal-card .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.strategic-vision-landing-goals-wrapper .flexItemImage, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .title-banner.striped-container-wrapper .flexItemImage, .node--type-principal-investigator .node--type-news-mention.node--view-mode-full .title-banner.striped-container-wrapper .flexItemImage, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .title-banner.striped-container .flexItemImage, .node--type-principal-investigator .node--type-news-mention.node--view-mode-full .title-banner.striped-container .flexItemImage, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article.title-banner .flexItemImage, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-news-mention.node--view-mode-full article.title-banner .flexItemImage,
  .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article.title-banner .flexItemImage,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-news-mention.node--view-mode-full article.title-banner .flexItemImage, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .title-banner.standard-teaser.node--view-mode-short-teaser .flexItemImage, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser.node--view-mode-short-teaser .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-awards .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.registerSocialContainer .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.eventdatesLocationType .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.news-article-container .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.node--type-feature-article.node--view-mode-press-release-teaser .flexItemImage,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-press-release.node--view-mode-press-release-teaser .flexItemImage,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-events.node--view-mode-press-release-teaser .flexItemImage,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImage,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImage,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-events.node--view-mode-hp-press-release-teaser .flexItemImage,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.news-header-container .flexItemImage, .node--type-news-mention.node--view-mode-full .contacts-container .title-banner.field--name-field-contacts .flexItemImage, .contacts-container .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contacts .flexItemImage, .node--type-news-mention.node--view-mode-full .publicationsBox .title-banner.field--name-field-related-publications .flexItemImage, .publicationsBox .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-publications .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-primary-featured-item .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-additional-featured-items .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.homepage-health-topics-container .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.homepage-mission-areas-container .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.homepage-location-container .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-alumni .flexItemImage, .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-full .title-banner.nhlbi-publication-details-container .flexItemImage, .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.nhlbi-publication-details-container .flexItemImage,
  .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .flexItemImage,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.nhlbi-publication-details-container .flexItemImage, .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .flexItemImage, .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .flexItemImage,
  .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .flexItemImage,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .flexItemImage, .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .flexItemImage, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImage,
  .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .flexItemImage,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.flexcontainer .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.related-ht-ser-container .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-sfa-card .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-speaker .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-executives .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.standard-card-field .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-advisory-committees .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.contact-nhlbi-titleblock .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-cards .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-employment-opportunity-car .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.all-grants-foa-container .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-program-officers .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-full .view-id-nhlbi_grants_foa.view-display-id-block_2 > .title-banner.view-content .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-full .view-id-nhlbi_grants_foa.view-display-id-block_3 > .title-banner.view-content .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .node--type-individual-contact .title-banner.field--name-field-contact-methods .flexItemImageHalf, .node--type-individual-contact .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-full .node--type-division.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-division.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-full .node--type-division.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-division.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-full .node--type-branch.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-branch.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-full .node--type-branch.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-branch.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-full .node--type-general.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-general.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-full .node--type-general.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-general.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-full .node--type-health-education-initiative.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-health-education-initiative.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-full .node--type-health-education-initiative.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .node--type-committee .title-banner.field--name-field-card-text .flexItemImageHalf, .node--type-committee .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-card-text .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .news-and-events--landing .title-banner.landing-social .flexItemImageHalf, .news-and-events--landing .node--type-news-mention.node--view-mode-full .title-banner.landing-social .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-sfa-cards .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.locationMap.contact-location-map-container .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.locationMap .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.grants-and-training-card-wrapper .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.about-nhlbi-division-card-wrapper .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.hei-tools-icon-card-wrapper .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-grants-and-training-card .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-division-card .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-tool-icon-card .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-promotional-card .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-sv-promotional-cards .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-about-nhlbi-promotional-ca .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.strategic-vision-titleblock .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.ppg-titleblock-wrapper .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.ppg-guidelines-card-wrapper .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-human-subject-cards .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-section-card .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-highlight-card .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.health-topic-teaser-container .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.about-nhlbi-our-mission-wrapper .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .title-banner.director-bioCard .flexItemImageHalf, .about-nhlbi-our-mission-wrapper .node--type-news-mention.node--view-mode-full .field--name-field-leadership > .title-banner.director-bioCard .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-consumer-nhlbi-publ .flexItemImageHalf, .nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-health-consumer-nhlbi-publ .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-professionals-nhlbi .flexItemImageHalf,
  .nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-health-professionals-nhlbi .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .title-banner.standard-teaser .flexItemImageHalf, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .title-banner.standard-teaser .flexItemImageHalf,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .publicationsBlock.view-nhlbi-publications > .title-banner.view-content .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-publications .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .healthEducationBlock .title-banner.standard-teaser .flexItemImageHalf, .healthEducationBlock .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .systematicEvidenceReviewsBlock .title-banner.view-content .flexItemImageHalf, .systematicEvidenceReviewsBlock .node--type-news-mention.node--view-mode-full .title-banner.view-content .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-full .clinicalPracticeGuidelinesBlock .title-banner.view-content .flexItemImageHalf,
  .clinicalPracticeGuidelinesBlock .node--type-news-mention.node--view-mode-full .title-banner.view-content .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-full .publicationsAndFactSheetsBlock .title-banner.view-content .flexItemImageHalf,
  .publicationsAndFactSheetsBlock .node--type-news-mention.node--view-mode-full .title-banner.view-content .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.rtFlexContainer .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .node--type-research-topic .title-banner.field--name-field-science-supplemental-page .flexItemImageHalf, .node--type-research-topic .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-science-supplemental-page .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .node--type-research-topic .title-banner.researchTopicPublications .flexItemImageHalf, .node--type-research-topic .node--type-news-mention.node--view-mode-full .title-banner.researchTopicPublications .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .node--type-research-topic .field--name-field-content > .field__item article.title-banner.listTeaserCard .flexItemImageHalf, .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-full article.title-banner.listTeaserCard .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .node--type-research-topic .field--name-field-content > .field__item article.title-banner.standard-teaser .flexItemImageHalf, .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-full article.title-banner.standard-teaser .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-full .node--type-research-topic .field--name-field-content > .field__item article.title-banner.newsEventsCard .flexItemImageHalf,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-full article.title-banner.newsEventsCard .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.esi-feature-card .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.featured-science-instance-teaser-container .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.sfa-teaser-container .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .training-opportunity-card .title-banner.field--name-field-associated-people .flexItemImageHalf, .training-opportunity-card .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-associated-people .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-featured-training-opportun .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-career-stages .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-workforce-development-card .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.node--type-update.node--view-mode-executive-teaser .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.news-and-events-titleblock .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .contact-box > .title-banner.field--name-field-contact-methods .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.leadership-container .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .flexItemImageHalf, .leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-additional-leadership .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.branch-leadership-container .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .branch-leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .flexItemImageHalf, .branch-leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-additional-leadership .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .node--type-general .title-banner.field--name-field-related-publications .flexItemImageHalf, .node--type-general .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-publications .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .node--type-general .title-banner.field--name-field-general-publications-rlt .flexItemImageHalf, .node--type-general .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-general-publications-rlt .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .node--type-general .field--name-field-general-publications-rlt > .field__item .title-banner.standard-teaser .flexItemImageHalf, .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .node--type-general .field--name-field-related-publications > .field__item .title-banner.standard-teaser .flexItemImageHalf, .node--type-general .field--name-field-related-publications > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.objective-text-container .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.objective-list-container .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-goal-card .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.strategic-vision-landing-goals-wrapper .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .title-banner.striped-container-wrapper .flexItemImageHalf, .node--type-principal-investigator .node--type-news-mention.node--view-mode-full .title-banner.striped-container-wrapper .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .title-banner.striped-container .flexItemImageHalf, .node--type-principal-investigator .node--type-news-mention.node--view-mode-full .title-banner.striped-container .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article.title-banner .flexItemImageHalf, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-news-mention.node--view-mode-full article.title-banner .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article.title-banner .flexItemImageHalf,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-news-mention.node--view-mode-full article.title-banner .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .title-banner.standard-teaser.node--view-mode-short-teaser .flexItemImageHalf, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser.node--view-mode-short-teaser .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-awards .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.registerSocialContainer .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.eventdatesLocationType .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.news-article-container .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-press-release.node--view-mode-press-release-teaser .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-events.node--view-mode-press-release-teaser .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.news-header-container .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .contacts-container .title-banner.field--name-field-contacts .flexItemImageHalf, .contacts-container .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contacts .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .publicationsBox .title-banner.field--name-field-related-publications .flexItemImageHalf, .publicationsBox .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-publications .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-primary-featured-item .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-additional-featured-items .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.homepage-health-topics-container .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.homepage-mission-areas-container .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.homepage-location-container .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-alumni .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-full .title-banner.nhlbi-publication-details-container .flexItemImageHalf, .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.nhlbi-publication-details-container .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .flexItemImageHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.nhlbi-publication-details-container .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .flexItemImageHalf, .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .flexItemImageHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .flexItemImageHalf, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .flexItemImageHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.flexcontainer .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.related-ht-ser-container .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-sfa-card .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-speaker .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-executives .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.standard-card-field .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-advisory-committees .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.contact-nhlbi-titleblock .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-cards .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-employment-opportunity-car .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.all-grants-foa-container .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-program-officers .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-full .view-id-nhlbi_grants_foa.view-display-id-block_2 > .title-banner.view-content .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-full .view-id-nhlbi_grants_foa.view-display-id-block_3 > .title-banner.view-content .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .node--type-individual-contact .title-banner.field--name-field-contact-methods .flexItemImageTenth, .node--type-individual-contact .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-full .node--type-division.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-division.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-full .node--type-division.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-division.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-full .node--type-branch.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-branch.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-full .node--type-branch.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-branch.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-full .node--type-general.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-general.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-full .node--type-general.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-general.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-full .node--type-health-education-initiative.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-health-education-initiative.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-full .node--type-health-education-initiative.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .node--type-committee .title-banner.field--name-field-card-text .flexItemImageTenth, .node--type-committee .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-card-text .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .news-and-events--landing .title-banner.landing-social .flexItemImageTenth, .news-and-events--landing .node--type-news-mention.node--view-mode-full .title-banner.landing-social .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-sfa-cards .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.locationMap.contact-location-map-container .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.locationMap .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.grants-and-training-card-wrapper .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.about-nhlbi-division-card-wrapper .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.hei-tools-icon-card-wrapper .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-grants-and-training-card .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-division-card .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-tool-icon-card .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-promotional-card .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-sv-promotional-cards .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-about-nhlbi-promotional-ca .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.strategic-vision-titleblock .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.ppg-titleblock-wrapper .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.ppg-guidelines-card-wrapper .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-human-subject-cards .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-section-card .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-highlight-card .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.health-topic-teaser-container .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.about-nhlbi-our-mission-wrapper .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .title-banner.director-bioCard .flexItemImageTenth, .about-nhlbi-our-mission-wrapper .node--type-news-mention.node--view-mode-full .field--name-field-leadership > .title-banner.director-bioCard .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-consumer-nhlbi-publ .flexItemImageTenth, .nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-health-consumer-nhlbi-publ .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-professionals-nhlbi .flexItemImageTenth,
  .nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-health-professionals-nhlbi .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .title-banner.standard-teaser .flexItemImageTenth, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .title-banner.standard-teaser .flexItemImageTenth,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .publicationsBlock.view-nhlbi-publications > .title-banner.view-content .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-publications .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .healthEducationBlock .title-banner.standard-teaser .flexItemImageTenth, .healthEducationBlock .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .systematicEvidenceReviewsBlock .title-banner.view-content .flexItemImageTenth, .systematicEvidenceReviewsBlock .node--type-news-mention.node--view-mode-full .title-banner.view-content .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-full .clinicalPracticeGuidelinesBlock .title-banner.view-content .flexItemImageTenth,
  .clinicalPracticeGuidelinesBlock .node--type-news-mention.node--view-mode-full .title-banner.view-content .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-full .publicationsAndFactSheetsBlock .title-banner.view-content .flexItemImageTenth,
  .publicationsAndFactSheetsBlock .node--type-news-mention.node--view-mode-full .title-banner.view-content .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.rtFlexContainer .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .node--type-research-topic .title-banner.field--name-field-science-supplemental-page .flexItemImageTenth, .node--type-research-topic .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-science-supplemental-page .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .node--type-research-topic .title-banner.researchTopicPublications .flexItemImageTenth, .node--type-research-topic .node--type-news-mention.node--view-mode-full .title-banner.researchTopicPublications .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .node--type-research-topic .field--name-field-content > .field__item article.title-banner.listTeaserCard .flexItemImageTenth, .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-full article.title-banner.listTeaserCard .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .node--type-research-topic .field--name-field-content > .field__item article.title-banner.standard-teaser .flexItemImageTenth, .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-full article.title-banner.standard-teaser .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-full .node--type-research-topic .field--name-field-content > .field__item article.title-banner.newsEventsCard .flexItemImageTenth,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-full article.title-banner.newsEventsCard .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.esi-feature-card .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.featured-science-instance-teaser-container .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.sfa-teaser-container .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .training-opportunity-card .title-banner.field--name-field-associated-people .flexItemImageTenth, .training-opportunity-card .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-associated-people .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-featured-training-opportun .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-career-stages .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-workforce-development-card .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.node--type-update.node--view-mode-executive-teaser .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.news-and-events-titleblock .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .contact-box > .title-banner.field--name-field-contact-methods .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.leadership-container .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .flexItemImageTenth, .leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-additional-leadership .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.branch-leadership-container .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .branch-leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .flexItemImageTenth, .branch-leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-additional-leadership .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .node--type-general .title-banner.field--name-field-related-publications .flexItemImageTenth, .node--type-general .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-publications .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .node--type-general .title-banner.field--name-field-general-publications-rlt .flexItemImageTenth, .node--type-general .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-general-publications-rlt .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .node--type-general .field--name-field-general-publications-rlt > .field__item .title-banner.standard-teaser .flexItemImageTenth, .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .node--type-general .field--name-field-related-publications > .field__item .title-banner.standard-teaser .flexItemImageTenth, .node--type-general .field--name-field-related-publications > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.objective-text-container .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.objective-list-container .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-goal-card .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.strategic-vision-landing-goals-wrapper .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .title-banner.striped-container-wrapper .flexItemImageTenth, .node--type-principal-investigator .node--type-news-mention.node--view-mode-full .title-banner.striped-container-wrapper .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .title-banner.striped-container .flexItemImageTenth, .node--type-principal-investigator .node--type-news-mention.node--view-mode-full .title-banner.striped-container .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article.title-banner .flexItemImageTenth, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-news-mention.node--view-mode-full article.title-banner .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article.title-banner .flexItemImageTenth,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-news-mention.node--view-mode-full article.title-banner .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .title-banner.standard-teaser.node--view-mode-short-teaser .flexItemImageTenth, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser.node--view-mode-short-teaser .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-awards .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.registerSocialContainer .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.eventdatesLocationType .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.news-article-container .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-press-release.node--view-mode-press-release-teaser .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-events.node--view-mode-press-release-teaser .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.news-header-container .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .contacts-container .title-banner.field--name-field-contacts .flexItemImageTenth, .contacts-container .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contacts .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .publicationsBox .title-banner.field--name-field-related-publications .flexItemImageTenth, .publicationsBox .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-publications .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-primary-featured-item .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-additional-featured-items .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.homepage-health-topics-container .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.homepage-mission-areas-container .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.homepage-location-container .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-alumni .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-full .title-banner.nhlbi-publication-details-container .flexItemImageTenth, .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.nhlbi-publication-details-container .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .flexItemImageTenth,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.nhlbi-publication-details-container .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .flexItemImageTenth, .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .flexItemImageTenth,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .flexItemImageTenth, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .flexItemImageTenth,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.flexcontainer .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.related-ht-ser-container .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-sfa-card .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-speaker .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-executives .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.standard-card-field .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-advisory-committees .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.contact-nhlbi-titleblock .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-cards .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-employment-opportunity-car .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.all-grants-foa-container .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-program-officers .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-full .view-id-nhlbi_grants_foa.view-display-id-block_2 > .title-banner.view-content .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-full .view-id-nhlbi_grants_foa.view-display-id-block_3 > .title-banner.view-content .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .node--type-individual-contact .title-banner.field--name-field-contact-methods .flexItemImageFourth, .node--type-individual-contact .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-full .node--type-division.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-division.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-full .node--type-division.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-division.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-full .node--type-branch.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-branch.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-full .node--type-branch.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-branch.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-full .node--type-general.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-general.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-full .node--type-general.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-general.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-full .node--type-health-education-initiative.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-health-education-initiative.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-full .node--type-health-education-initiative.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .node--type-committee .title-banner.field--name-field-card-text .flexItemImageFourth, .node--type-committee .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-card-text .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .news-and-events--landing .title-banner.landing-social .flexItemImageFourth, .news-and-events--landing .node--type-news-mention.node--view-mode-full .title-banner.landing-social .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-sfa-cards .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.locationMap.contact-location-map-container .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.locationMap .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.grants-and-training-card-wrapper .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.about-nhlbi-division-card-wrapper .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.hei-tools-icon-card-wrapper .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-grants-and-training-card .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-division-card .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-tool-icon-card .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-promotional-card .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-sv-promotional-cards .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-about-nhlbi-promotional-ca .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.strategic-vision-titleblock .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.ppg-titleblock-wrapper .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.ppg-guidelines-card-wrapper .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-human-subject-cards .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-section-card .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-highlight-card .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.health-topic-teaser-container .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.about-nhlbi-our-mission-wrapper .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .title-banner.director-bioCard .flexItemImageFourth, .about-nhlbi-our-mission-wrapper .node--type-news-mention.node--view-mode-full .field--name-field-leadership > .title-banner.director-bioCard .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-consumer-nhlbi-publ .flexItemImageFourth, .nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-health-consumer-nhlbi-publ .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-professionals-nhlbi .flexItemImageFourth,
  .nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-health-professionals-nhlbi .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .title-banner.standard-teaser .flexItemImageFourth, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .title-banner.standard-teaser .flexItemImageFourth,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .publicationsBlock.view-nhlbi-publications > .title-banner.view-content .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-publications .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .healthEducationBlock .title-banner.standard-teaser .flexItemImageFourth, .healthEducationBlock .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .systematicEvidenceReviewsBlock .title-banner.view-content .flexItemImageFourth, .systematicEvidenceReviewsBlock .node--type-news-mention.node--view-mode-full .title-banner.view-content .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-full .clinicalPracticeGuidelinesBlock .title-banner.view-content .flexItemImageFourth,
  .clinicalPracticeGuidelinesBlock .node--type-news-mention.node--view-mode-full .title-banner.view-content .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-full .publicationsAndFactSheetsBlock .title-banner.view-content .flexItemImageFourth,
  .publicationsAndFactSheetsBlock .node--type-news-mention.node--view-mode-full .title-banner.view-content .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.rtFlexContainer .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .node--type-research-topic .title-banner.field--name-field-science-supplemental-page .flexItemImageFourth, .node--type-research-topic .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-science-supplemental-page .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .node--type-research-topic .title-banner.researchTopicPublications .flexItemImageFourth, .node--type-research-topic .node--type-news-mention.node--view-mode-full .title-banner.researchTopicPublications .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .node--type-research-topic .field--name-field-content > .field__item article.title-banner.listTeaserCard .flexItemImageFourth, .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-full article.title-banner.listTeaserCard .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .node--type-research-topic .field--name-field-content > .field__item article.title-banner.standard-teaser .flexItemImageFourth, .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-full article.title-banner.standard-teaser .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-full .node--type-research-topic .field--name-field-content > .field__item article.title-banner.newsEventsCard .flexItemImageFourth,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-full article.title-banner.newsEventsCard .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.esi-feature-card .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.featured-science-instance-teaser-container .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.sfa-teaser-container .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .training-opportunity-card .title-banner.field--name-field-associated-people .flexItemImageFourth, .training-opportunity-card .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-associated-people .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-featured-training-opportun .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-career-stages .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-workforce-development-card .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.node--type-update.node--view-mode-executive-teaser .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.news-and-events-titleblock .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .contact-box > .title-banner.field--name-field-contact-methods .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.leadership-container .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .flexItemImageFourth, .leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-additional-leadership .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.branch-leadership-container .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .branch-leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .flexItemImageFourth, .branch-leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-additional-leadership .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .node--type-general .title-banner.field--name-field-related-publications .flexItemImageFourth, .node--type-general .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-publications .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .node--type-general .title-banner.field--name-field-general-publications-rlt .flexItemImageFourth, .node--type-general .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-general-publications-rlt .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .node--type-general .field--name-field-general-publications-rlt > .field__item .title-banner.standard-teaser .flexItemImageFourth, .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .node--type-general .field--name-field-related-publications > .field__item .title-banner.standard-teaser .flexItemImageFourth, .node--type-general .field--name-field-related-publications > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.objective-text-container .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.objective-list-container .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-goal-card .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.strategic-vision-landing-goals-wrapper .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .title-banner.striped-container-wrapper .flexItemImageFourth, .node--type-principal-investigator .node--type-news-mention.node--view-mode-full .title-banner.striped-container-wrapper .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .title-banner.striped-container .flexItemImageFourth, .node--type-principal-investigator .node--type-news-mention.node--view-mode-full .title-banner.striped-container .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article.title-banner .flexItemImageFourth, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-news-mention.node--view-mode-full article.title-banner .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article.title-banner .flexItemImageFourth,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-news-mention.node--view-mode-full article.title-banner .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .title-banner.standard-teaser.node--view-mode-short-teaser .flexItemImageFourth, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser.node--view-mode-short-teaser .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-awards .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.registerSocialContainer .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.eventdatesLocationType .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.news-article-container .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-press-release.node--view-mode-press-release-teaser .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-events.node--view-mode-press-release-teaser .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.news-header-container .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .contacts-container .title-banner.field--name-field-contacts .flexItemImageFourth, .contacts-container .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contacts .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .publicationsBox .title-banner.field--name-field-related-publications .flexItemImageFourth, .publicationsBox .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-publications .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-primary-featured-item .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-additional-featured-items .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.homepage-health-topics-container .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.homepage-mission-areas-container .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.homepage-location-container .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-alumni .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-full .title-banner.nhlbi-publication-details-container .flexItemImageFourth, .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.nhlbi-publication-details-container .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .flexItemImageFourth,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.nhlbi-publication-details-container .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .flexItemImageFourth, .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .flexItemImageFourth,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .flexItemImageFourth, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .flexItemImageFourth,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.flexcontainer .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.related-ht-ser-container .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-sfa-card .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-speaker .flexItemImageThird,
  .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-executives .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.standard-card-field .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-advisory-committees .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.contact-nhlbi-titleblock .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-cards .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-employment-opportunity-car .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.all-grants-foa-container .flexItemImageThird,
  .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-program-officers .flexItemImageThird,
  .node--type-news-mention.node--view-mode-full .view-id-nhlbi_grants_foa.view-display-id-block_2 > .title-banner.view-content .flexItemImageThird,
  .node--type-news-mention.node--view-mode-full .view-id-nhlbi_grants_foa.view-display-id-block_3 > .title-banner.view-content .flexItemImageThird, .node--type-news-mention.node--view-mode-full .node--type-individual-contact .title-banner.field--name-field-contact-methods .flexItemImageThird, .node--type-individual-contact .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-news-mention.node--view-mode-full .node--type-division.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-division.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-news-mention.node--view-mode-full .node--type-division.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-division.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-news-mention.node--view-mode-full .node--type-branch.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-branch.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-news-mention.node--view-mode-full .node--type-branch.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-branch.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-news-mention.node--view-mode-full .node--type-general.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-general.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-news-mention.node--view-mode-full .node--type-general.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-general.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-news-mention.node--view-mode-full .node--type-health-education-initiative.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-health-education-initiative.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-news-mention.node--view-mode-full .node--type-health-education-initiative.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThird, .node--type-news-mention.node--view-mode-full .node--type-committee .title-banner.field--name-field-card-text .flexItemImageThird, .node--type-committee .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-card-text .flexItemImageThird, .node--type-news-mention.node--view-mode-full .news-and-events--landing .title-banner.landing-social .flexItemImageThird, .news-and-events--landing .node--type-news-mention.node--view-mode-full .title-banner.landing-social .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-sfa-cards .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.locationMap.contact-location-map-container .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.locationMap .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.grants-and-training-card-wrapper .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.about-nhlbi-division-card-wrapper .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.hei-tools-icon-card-wrapper .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-grants-and-training-card .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-division-card .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-tool-icon-card .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-promotional-card .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-sv-promotional-cards .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-about-nhlbi-promotional-ca .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.strategic-vision-titleblock .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.ppg-titleblock-wrapper .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.ppg-guidelines-card-wrapper .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-human-subject-cards .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-section-card .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-highlight-card .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.health-topic-teaser-container .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.about-nhlbi-our-mission-wrapper .flexItemImageThird, .node--type-news-mention.node--view-mode-full .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .title-banner.director-bioCard .flexItemImageThird, .about-nhlbi-our-mission-wrapper .node--type-news-mention.node--view-mode-full .field--name-field-leadership > .title-banner.director-bioCard .flexItemImageThird, .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-consumer-nhlbi-publ .flexItemImageThird, .nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-health-consumer-nhlbi-publ .flexItemImageThird,
  .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-professionals-nhlbi .flexItemImageThird,
  .nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-health-professionals-nhlbi .flexItemImageThird, .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .title-banner.standard-teaser .flexItemImageThird, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageThird,
  .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .title-banner.standard-teaser .flexItemImageThird,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageThird, .node--type-news-mention.node--view-mode-full .publicationsBlock.view-nhlbi-publications > .title-banner.view-content .flexItemImageThird,
  .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-publications .flexItemImageThird, .node--type-news-mention.node--view-mode-full .healthEducationBlock .title-banner.standard-teaser .flexItemImageThird, .healthEducationBlock .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageThird, .node--type-news-mention.node--view-mode-full .systematicEvidenceReviewsBlock .title-banner.view-content .flexItemImageThird, .systematicEvidenceReviewsBlock .node--type-news-mention.node--view-mode-full .title-banner.view-content .flexItemImageThird,
  .node--type-news-mention.node--view-mode-full .clinicalPracticeGuidelinesBlock .title-banner.view-content .flexItemImageThird,
  .clinicalPracticeGuidelinesBlock .node--type-news-mention.node--view-mode-full .title-banner.view-content .flexItemImageThird,
  .node--type-news-mention.node--view-mode-full .publicationsAndFactSheetsBlock .title-banner.view-content .flexItemImageThird,
  .publicationsAndFactSheetsBlock .node--type-news-mention.node--view-mode-full .title-banner.view-content .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.rtFlexContainer .flexItemImageThird, .node--type-news-mention.node--view-mode-full .node--type-research-topic .title-banner.field--name-field-science-supplemental-page .flexItemImageThird, .node--type-research-topic .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-science-supplemental-page .flexItemImageThird, .node--type-news-mention.node--view-mode-full .node--type-research-topic .title-banner.researchTopicPublications .flexItemImageThird, .node--type-research-topic .node--type-news-mention.node--view-mode-full .title-banner.researchTopicPublications .flexItemImageThird, .node--type-news-mention.node--view-mode-full .node--type-research-topic .field--name-field-content > .field__item article.title-banner.listTeaserCard .flexItemImageThird, .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-full article.title-banner.listTeaserCard .flexItemImageThird, .node--type-news-mention.node--view-mode-full .node--type-research-topic .field--name-field-content > .field__item article.title-banner.standard-teaser .flexItemImageThird, .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-full article.title-banner.standard-teaser .flexItemImageThird,
  .node--type-news-mention.node--view-mode-full .node--type-research-topic .field--name-field-content > .field__item article.title-banner.newsEventsCard .flexItemImageThird,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-full article.title-banner.newsEventsCard .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.esi-feature-card .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.featured-science-instance-teaser-container .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.sfa-teaser-container .flexItemImageThird, .node--type-news-mention.node--view-mode-full .training-opportunity-card .title-banner.field--name-field-associated-people .flexItemImageThird, .training-opportunity-card .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-associated-people .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-featured-training-opportun .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-career-stages .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-workforce-development-card .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.node--type-update.node--view-mode-executive-teaser .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.news-and-events-titleblock .flexItemImageThird, .node--type-news-mention.node--view-mode-full .contact-box > .title-banner.field--name-field-contact-methods .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.leadership-container .flexItemImageThird, .node--type-news-mention.node--view-mode-full .leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .flexItemImageThird, .leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-additional-leadership .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.branch-leadership-container .flexItemImageThird, .node--type-news-mention.node--view-mode-full .branch-leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .flexItemImageThird, .branch-leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-additional-leadership .flexItemImageThird, .node--type-news-mention.node--view-mode-full .node--type-general .title-banner.field--name-field-related-publications .flexItemImageThird, .node--type-general .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-publications .flexItemImageThird, .node--type-news-mention.node--view-mode-full .node--type-general .title-banner.field--name-field-general-publications-rlt .flexItemImageThird, .node--type-general .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-general-publications-rlt .flexItemImageThird, .node--type-news-mention.node--view-mode-full .node--type-general .field--name-field-general-publications-rlt > .field__item .title-banner.standard-teaser .flexItemImageThird, .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageThird, .node--type-news-mention.node--view-mode-full .node--type-general .field--name-field-related-publications > .field__item .title-banner.standard-teaser .flexItemImageThird, .node--type-general .field--name-field-related-publications > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.objective-text-container .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.objective-list-container .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-goal-card .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.strategic-vision-landing-goals-wrapper .flexItemImageThird, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .title-banner.striped-container-wrapper .flexItemImageThird, .node--type-principal-investigator .node--type-news-mention.node--view-mode-full .title-banner.striped-container-wrapper .flexItemImageThird, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .title-banner.striped-container .flexItemImageThird, .node--type-principal-investigator .node--type-news-mention.node--view-mode-full .title-banner.striped-container .flexItemImageThird, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article.title-banner .flexItemImageThird, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-news-mention.node--view-mode-full article.title-banner .flexItemImageThird,
  .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article.title-banner .flexItemImageThird,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-news-mention.node--view-mode-full article.title-banner .flexItemImageThird, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .title-banner.standard-teaser.node--view-mode-short-teaser .flexItemImageThird, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser.node--view-mode-short-teaser .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-awards .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.registerSocialContainer .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.eventdatesLocationType .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.news-article-container .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageThird,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-press-release.node--view-mode-press-release-teaser .flexItemImageThird,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-events.node--view-mode-press-release-teaser .flexItemImageThird,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageThird,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageThird,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageThird,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.news-header-container .flexItemImageThird, .node--type-news-mention.node--view-mode-full .contacts-container .title-banner.field--name-field-contacts .flexItemImageThird, .contacts-container .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contacts .flexItemImageThird, .node--type-news-mention.node--view-mode-full .publicationsBox .title-banner.field--name-field-related-publications .flexItemImageThird, .publicationsBox .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-publications .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-primary-featured-item .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-additional-featured-items .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.homepage-health-topics-container .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.homepage-mission-areas-container .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.homepage-location-container .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-alumni .flexItemImageThird, .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-full .title-banner.nhlbi-publication-details-container .flexItemImageThird, .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.nhlbi-publication-details-container .flexItemImageThird,
  .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .flexItemImageThird,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.nhlbi-publication-details-container .flexItemImageThird, .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .flexItemImageThird, .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .flexItemImageThird,
  .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .flexItemImageThird,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .flexItemImageThird, .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .flexItemImageThird, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageThird,
  .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .flexItemImageThird,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.flexcontainer .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.related-ht-ser-container .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-sfa-card .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-speaker .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-executives .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.standard-card-field .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-advisory-committees .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.contact-nhlbi-titleblock .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-cards .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-employment-opportunity-car .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.all-grants-foa-container .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-program-officers .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-full .view-id-nhlbi_grants_foa.view-display-id-block_2 > .title-banner.view-content .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-full .view-id-nhlbi_grants_foa.view-display-id-block_3 > .title-banner.view-content .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .node--type-individual-contact .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf, .node--type-individual-contact .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-full .node--type-division.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-division.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-full .node--type-division.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-division.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-full .node--type-branch.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-branch.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-full .node--type-branch.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-branch.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-full .node--type-general.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-general.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-full .node--type-general.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-general.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-full .node--type-health-education-initiative.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-health-education-initiative.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-full .node--type-health-education-initiative.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .node--type-committee .title-banner.field--name-field-card-text .flexItemImageThirdHalf, .node--type-committee .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-card-text .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .news-and-events--landing .title-banner.landing-social .flexItemImageThirdHalf, .news-and-events--landing .node--type-news-mention.node--view-mode-full .title-banner.landing-social .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-sfa-cards .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.locationMap.contact-location-map-container .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.locationMap .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.grants-and-training-card-wrapper .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.about-nhlbi-division-card-wrapper .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.hei-tools-icon-card-wrapper .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-grants-and-training-card .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-division-card .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-tool-icon-card .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-promotional-card .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-sv-promotional-cards .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-about-nhlbi-promotional-ca .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.strategic-vision-titleblock .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.ppg-titleblock-wrapper .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.ppg-guidelines-card-wrapper .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-human-subject-cards .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-section-card .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-highlight-card .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.health-topic-teaser-container .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.about-nhlbi-our-mission-wrapper .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .title-banner.director-bioCard .flexItemImageThirdHalf, .about-nhlbi-our-mission-wrapper .node--type-news-mention.node--view-mode-full .field--name-field-leadership > .title-banner.director-bioCard .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-consumer-nhlbi-publ .flexItemImageThirdHalf, .nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-health-consumer-nhlbi-publ .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-professionals-nhlbi .flexItemImageThirdHalf,
  .nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-health-professionals-nhlbi .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .title-banner.standard-teaser .flexItemImageThirdHalf, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .title-banner.standard-teaser .flexItemImageThirdHalf,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .publicationsBlock.view-nhlbi-publications > .title-banner.view-content .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-publications .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .healthEducationBlock .title-banner.standard-teaser .flexItemImageThirdHalf, .healthEducationBlock .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .systematicEvidenceReviewsBlock .title-banner.view-content .flexItemImageThirdHalf, .systematicEvidenceReviewsBlock .node--type-news-mention.node--view-mode-full .title-banner.view-content .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-full .clinicalPracticeGuidelinesBlock .title-banner.view-content .flexItemImageThirdHalf,
  .clinicalPracticeGuidelinesBlock .node--type-news-mention.node--view-mode-full .title-banner.view-content .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-full .publicationsAndFactSheetsBlock .title-banner.view-content .flexItemImageThirdHalf,
  .publicationsAndFactSheetsBlock .node--type-news-mention.node--view-mode-full .title-banner.view-content .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.rtFlexContainer .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .node--type-research-topic .title-banner.field--name-field-science-supplemental-page .flexItemImageThirdHalf, .node--type-research-topic .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-science-supplemental-page .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .node--type-research-topic .title-banner.researchTopicPublications .flexItemImageThirdHalf, .node--type-research-topic .node--type-news-mention.node--view-mode-full .title-banner.researchTopicPublications .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .node--type-research-topic .field--name-field-content > .field__item article.title-banner.listTeaserCard .flexItemImageThirdHalf, .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-full article.title-banner.listTeaserCard .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .node--type-research-topic .field--name-field-content > .field__item article.title-banner.standard-teaser .flexItemImageThirdHalf, .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-full article.title-banner.standard-teaser .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-full .node--type-research-topic .field--name-field-content > .field__item article.title-banner.newsEventsCard .flexItemImageThirdHalf,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-full article.title-banner.newsEventsCard .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.esi-feature-card .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.featured-science-instance-teaser-container .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.sfa-teaser-container .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .training-opportunity-card .title-banner.field--name-field-associated-people .flexItemImageThirdHalf, .training-opportunity-card .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-associated-people .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-featured-training-opportun .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-career-stages .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-workforce-development-card .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.node--type-update.node--view-mode-executive-teaser .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.news-and-events-titleblock .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .contact-box > .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.leadership-container .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .flexItemImageThirdHalf, .leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-additional-leadership .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.branch-leadership-container .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .branch-leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .flexItemImageThirdHalf, .branch-leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-additional-leadership .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .node--type-general .title-banner.field--name-field-related-publications .flexItemImageThirdHalf, .node--type-general .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-publications .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .node--type-general .title-banner.field--name-field-general-publications-rlt .flexItemImageThirdHalf, .node--type-general .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-general-publications-rlt .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .node--type-general .field--name-field-general-publications-rlt > .field__item .title-banner.standard-teaser .flexItemImageThirdHalf, .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .node--type-general .field--name-field-related-publications > .field__item .title-banner.standard-teaser .flexItemImageThirdHalf, .node--type-general .field--name-field-related-publications > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.objective-text-container .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.objective-list-container .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-goal-card .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.strategic-vision-landing-goals-wrapper .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .title-banner.striped-container-wrapper .flexItemImageThirdHalf, .node--type-principal-investigator .node--type-news-mention.node--view-mode-full .title-banner.striped-container-wrapper .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .title-banner.striped-container .flexItemImageThirdHalf, .node--type-principal-investigator .node--type-news-mention.node--view-mode-full .title-banner.striped-container .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article.title-banner .flexItemImageThirdHalf, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-news-mention.node--view-mode-full article.title-banner .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article.title-banner .flexItemImageThirdHalf,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-news-mention.node--view-mode-full article.title-banner .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .title-banner.standard-teaser.node--view-mode-short-teaser .flexItemImageThirdHalf, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser.node--view-mode-short-teaser .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-awards .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.registerSocialContainer .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.eventdatesLocationType .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.news-article-container .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-press-release.node--view-mode-press-release-teaser .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-events.node--view-mode-press-release-teaser .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.news-header-container .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .contacts-container .title-banner.field--name-field-contacts .flexItemImageThirdHalf, .contacts-container .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contacts .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .publicationsBox .title-banner.field--name-field-related-publications .flexItemImageThirdHalf, .publicationsBox .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-publications .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-primary-featured-item .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-additional-featured-items .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.homepage-health-topics-container .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.homepage-mission-areas-container .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.homepage-location-container .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-alumni .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-full .title-banner.nhlbi-publication-details-container .flexItemImageThirdHalf, .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.nhlbi-publication-details-container .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .flexItemImageThirdHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.nhlbi-publication-details-container .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .flexItemImageThirdHalf, .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .flexItemImageThirdHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .flexItemImageThirdHalf, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .flexItemImageThirdHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.flexcontainer .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.related-ht-ser-container .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-sfa-card .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-speaker .hero-image,
  .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-executives .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.standard-card-field .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-advisory-committees .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.contact-nhlbi-titleblock .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-cards .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-employment-opportunity-car .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.all-grants-foa-container .hero-image,
  .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-program-officers .hero-image,
  .node--type-news-mention.node--view-mode-full .view-id-nhlbi_grants_foa.view-display-id-block_2 > .title-banner.view-content .hero-image,
  .node--type-news-mention.node--view-mode-full .view-id-nhlbi_grants_foa.view-display-id-block_3 > .title-banner.view-content .hero-image, .node--type-news-mention.node--view-mode-full .node--type-individual-contact .title-banner.field--name-field-contact-methods .hero-image, .node--type-individual-contact .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-news-mention.node--view-mode-full .node--type-division.node--view-mode-full .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-division.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-news-mention.node--view-mode-full .node--type-division.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-division.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-news-mention.node--view-mode-full .node--type-branch.node--view-mode-full .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-branch.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-news-mention.node--view-mode-full .node--type-branch.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-branch.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-news-mention.node--view-mode-full .node--type-general.node--view-mode-full .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-general.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-news-mention.node--view-mode-full .node--type-general.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-general.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-news-mention.node--view-mode-full .node--type-health-education-initiative.node--view-mode-full .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-health-education-initiative.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-news-mention.node--view-mode-full .node--type-health-education-initiative.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .hero-image, .node--type-news-mention.node--view-mode-full .node--type-committee .title-banner.field--name-field-card-text .hero-image, .node--type-committee .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-card-text .hero-image, .node--type-news-mention.node--view-mode-full .news-and-events--landing .title-banner.landing-social .hero-image, .news-and-events--landing .node--type-news-mention.node--view-mode-full .title-banner.landing-social .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-sfa-cards .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.locationMap.contact-location-map-container .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.locationMap .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.grants-and-training-card-wrapper .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.about-nhlbi-division-card-wrapper .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.hei-tools-icon-card-wrapper .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-grants-and-training-card .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-division-card .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-tool-icon-card .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-promotional-card .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-sv-promotional-cards .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-about-nhlbi-promotional-ca .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.strategic-vision-titleblock .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.ppg-titleblock-wrapper .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.ppg-guidelines-card-wrapper .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-human-subject-cards .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-section-card .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-highlight-card .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.health-topic-teaser-container .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.about-nhlbi-our-mission-wrapper .hero-image, .node--type-news-mention.node--view-mode-full .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .title-banner.director-bioCard .hero-image, .about-nhlbi-our-mission-wrapper .node--type-news-mention.node--view-mode-full .field--name-field-leadership > .title-banner.director-bioCard .hero-image, .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-consumer-nhlbi-publ .hero-image, .nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-health-consumer-nhlbi-publ .hero-image,
  .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-professionals-nhlbi .hero-image,
  .nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-health-professionals-nhlbi .hero-image, .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .title-banner.standard-teaser .hero-image, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .hero-image,
  .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .title-banner.standard-teaser .hero-image,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .hero-image, .node--type-news-mention.node--view-mode-full .publicationsBlock.view-nhlbi-publications > .title-banner.view-content .hero-image,
  .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-publications .hero-image, .node--type-news-mention.node--view-mode-full .healthEducationBlock .title-banner.standard-teaser .hero-image, .healthEducationBlock .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .hero-image, .node--type-news-mention.node--view-mode-full .systematicEvidenceReviewsBlock .title-banner.view-content .hero-image, .systematicEvidenceReviewsBlock .node--type-news-mention.node--view-mode-full .title-banner.view-content .hero-image,
  .node--type-news-mention.node--view-mode-full .clinicalPracticeGuidelinesBlock .title-banner.view-content .hero-image,
  .clinicalPracticeGuidelinesBlock .node--type-news-mention.node--view-mode-full .title-banner.view-content .hero-image,
  .node--type-news-mention.node--view-mode-full .publicationsAndFactSheetsBlock .title-banner.view-content .hero-image,
  .publicationsAndFactSheetsBlock .node--type-news-mention.node--view-mode-full .title-banner.view-content .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.rtFlexContainer .hero-image, .node--type-news-mention.node--view-mode-full .node--type-research-topic .title-banner.field--name-field-science-supplemental-page .hero-image, .node--type-research-topic .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-science-supplemental-page .hero-image, .node--type-news-mention.node--view-mode-full .node--type-research-topic .title-banner.researchTopicPublications .hero-image, .node--type-research-topic .node--type-news-mention.node--view-mode-full .title-banner.researchTopicPublications .hero-image, .node--type-news-mention.node--view-mode-full .node--type-research-topic .field--name-field-content > .field__item article.title-banner.listTeaserCard .hero-image, .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-full article.title-banner.listTeaserCard .hero-image, .node--type-news-mention.node--view-mode-full .node--type-research-topic .field--name-field-content > .field__item article.title-banner.standard-teaser .hero-image, .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-full article.title-banner.standard-teaser .hero-image,
  .node--type-news-mention.node--view-mode-full .node--type-research-topic .field--name-field-content > .field__item article.title-banner.newsEventsCard .hero-image,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-full article.title-banner.newsEventsCard .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.esi-feature-card .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.featured-science-instance-teaser-container .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.sfa-teaser-container .hero-image, .node--type-news-mention.node--view-mode-full .training-opportunity-card .title-banner.field--name-field-associated-people .hero-image, .training-opportunity-card .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-associated-people .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-featured-training-opportun .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-career-stages .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-workforce-development-card .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.node--type-update.node--view-mode-executive-teaser .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.news-and-events-titleblock .hero-image, .node--type-news-mention.node--view-mode-full .contact-box > .title-banner.field--name-field-contact-methods .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.leadership-container .hero-image, .node--type-news-mention.node--view-mode-full .leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .hero-image, .leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-additional-leadership .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.branch-leadership-container .hero-image, .node--type-news-mention.node--view-mode-full .branch-leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .hero-image, .branch-leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-additional-leadership .hero-image, .node--type-news-mention.node--view-mode-full .node--type-general .title-banner.field--name-field-related-publications .hero-image, .node--type-general .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-publications .hero-image, .node--type-news-mention.node--view-mode-full .node--type-general .title-banner.field--name-field-general-publications-rlt .hero-image, .node--type-general .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-general-publications-rlt .hero-image, .node--type-news-mention.node--view-mode-full .node--type-general .field--name-field-general-publications-rlt > .field__item .title-banner.standard-teaser .hero-image, .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .hero-image, .node--type-news-mention.node--view-mode-full .node--type-general .field--name-field-related-publications > .field__item .title-banner.standard-teaser .hero-image, .node--type-general .field--name-field-related-publications > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.objective-text-container .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.objective-list-container .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-goal-card .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.strategic-vision-landing-goals-wrapper .hero-image, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .title-banner.striped-container-wrapper .hero-image, .node--type-principal-investigator .node--type-news-mention.node--view-mode-full .title-banner.striped-container-wrapper .hero-image, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .title-banner.striped-container .hero-image, .node--type-principal-investigator .node--type-news-mention.node--view-mode-full .title-banner.striped-container .hero-image, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article.title-banner .hero-image, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-news-mention.node--view-mode-full article.title-banner .hero-image,
  .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article.title-banner .hero-image,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-news-mention.node--view-mode-full article.title-banner .hero-image, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .title-banner.standard-teaser.node--view-mode-short-teaser .hero-image, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser.node--view-mode-short-teaser .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-awards .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.registerSocialContainer .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.eventdatesLocationType .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.news-article-container .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.node--type-feature-article.node--view-mode-press-release-teaser .hero-image,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-press-release.node--view-mode-press-release-teaser .hero-image,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-events.node--view-mode-press-release-teaser .hero-image,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-feature-article.node--view-mode-hp-press-release-teaser .hero-image,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-press-release.node--view-mode-hp-press-release-teaser .hero-image,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-events.node--view-mode-hp-press-release-teaser .hero-image,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-news-mention.node--view-mode-hp-press-release-teaser .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.news-header-container .hero-image, .node--type-news-mention.node--view-mode-full .contacts-container .title-banner.field--name-field-contacts .hero-image, .contacts-container .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contacts .hero-image, .node--type-news-mention.node--view-mode-full .publicationsBox .title-banner.field--name-field-related-publications .hero-image, .publicationsBox .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-publications .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-primary-featured-item .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-additional-featured-items .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.homepage-health-topics-container .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.homepage-mission-areas-container .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.homepage-location-container .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-alumni .hero-image, .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-full .title-banner.nhlbi-publication-details-container .hero-image, .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.nhlbi-publication-details-container .hero-image,
  .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .hero-image,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.nhlbi-publication-details-container .hero-image, .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .hero-image, .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .hero-image,
  .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .hero-image,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .hero-image, .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .hero-image, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .hero-image,
  .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .hero-image,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.flexcontainer .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.related-ht-ser-container .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-sfa-card .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-speaker .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-executives .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-card-field .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-advisory-committees .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.contact-nhlbi-titleblock .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-cards .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-employment-opportunity-car .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.all-grants-foa-container .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-program-officers .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .view-id-nhlbi_grants_foa.view-display-id-block_2 > .title-banner.view-content .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .view-id-nhlbi_grants_foa.view-display-id-block_3 > .title-banner.view-content .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .node--type-individual-contact .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-individual-contact .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .node--type-division.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-division.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .node--type-division.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-division.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .node--type-branch.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-branch.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .node--type-branch.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-branch.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-general.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-general.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .node--type-health-education-initiative.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-health-education-initiative.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .node--type-health-education-initiative.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .node--type-committee .title-banner.field--name-field-card-text .flexItemImage,
  .node--type-committee .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-card-text .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .news-and-events--landing .title-banner.landing-social .flexItemImage,
  .news-and-events--landing .node--type-news-mention.node--view-mode-subscribe .title-banner.landing-social .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-sfa-cards .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.locationMap.contact-location-map-container .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.locationMap .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.grants-and-training-card-wrapper .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.about-nhlbi-division-card-wrapper .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.hei-tools-icon-card-wrapper .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-grants-and-training-card .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-division-card .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-tool-icon-card .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-promotional-card .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-sv-promotional-cards .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-about-nhlbi-promotional-ca .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.strategic-vision-titleblock .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.ppg-titleblock-wrapper .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.ppg-guidelines-card-wrapper .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-human-subject-cards .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-section-card .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-highlight-card .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.health-topic-teaser-container .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.about-nhlbi-our-mission-wrapper .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .title-banner.director-bioCard .flexItemImage,
  .about-nhlbi-our-mission-wrapper .node--type-news-mention.node--view-mode-subscribe .field--name-field-leadership > .title-banner.director-bioCard .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-consumer-nhlbi-publ .flexItemImage,
  .nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-health-consumer-nhlbi-publ .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-professionals-nhlbi .flexItemImage,
  .nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-health-professionals-nhlbi .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .title-banner.standard-teaser .flexItemImage,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .title-banner.standard-teaser .flexItemImage,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .publicationsBlock.view-nhlbi-publications > .title-banner.view-content .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-publications .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .healthEducationBlock .title-banner.standard-teaser .flexItemImage,
  .healthEducationBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .systematicEvidenceReviewsBlock .title-banner.view-content .flexItemImage,
  .systematicEvidenceReviewsBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.view-content .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .clinicalPracticeGuidelinesBlock .title-banner.view-content .flexItemImage,
  .clinicalPracticeGuidelinesBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.view-content .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .publicationsAndFactSheetsBlock .title-banner.view-content .flexItemImage,
  .publicationsAndFactSheetsBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.view-content .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.rtFlexContainer .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .title-banner.field--name-field-science-supplemental-page .flexItemImage,
  .node--type-research-topic .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-science-supplemental-page .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .title-banner.researchTopicPublications .flexItemImage,
  .node--type-research-topic .node--type-news-mention.node--view-mode-subscribe .title-banner.researchTopicPublications .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .field--name-field-content > .field__item article.title-banner.listTeaserCard .flexItemImage,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner.listTeaserCard .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .field--name-field-content > .field__item article.title-banner.standard-teaser .flexItemImage,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner.standard-teaser .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .field--name-field-content > .field__item article.title-banner.newsEventsCard .flexItemImage,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner.newsEventsCard .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.esi-feature-card .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.featured-science-instance-teaser-container .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.sfa-teaser-container .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .training-opportunity-card .title-banner.field--name-field-associated-people .flexItemImage,
  .training-opportunity-card .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-associated-people .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-featured-training-opportun .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-career-stages .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-workforce-development-card .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-update.node--view-mode-executive-teaser .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.news-and-events-titleblock .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .contact-box > .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.leadership-container .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .flexItemImage,
  .leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-additional-leadership .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.branch-leadership-container .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .branch-leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .flexItemImage,
  .branch-leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-additional-leadership .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general .title-banner.field--name-field-related-publications .flexItemImage,
  .node--type-general .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-publications .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general .title-banner.field--name-field-general-publications-rlt .flexItemImage,
  .node--type-general .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-general-publications-rlt .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general .field--name-field-general-publications-rlt > .field__item .title-banner.standard-teaser .flexItemImage,
  .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general .field--name-field-related-publications > .field__item .title-banner.standard-teaser .flexItemImage,
  .node--type-general .field--name-field-related-publications > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.objective-text-container .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.objective-list-container .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-goal-card .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.strategic-vision-landing-goals-wrapper .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .title-banner.striped-container-wrapper .flexItemImage,
  .node--type-principal-investigator .node--type-news-mention.node--view-mode-subscribe .title-banner.striped-container-wrapper .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .title-banner.striped-container .flexItemImage,
  .node--type-principal-investigator .node--type-news-mention.node--view-mode-subscribe .title-banner.striped-container .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article.title-banner .flexItemImage,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-news-mention.node--view-mode-subscribe article.title-banner .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article.title-banner .flexItemImage,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-news-mention.node--view-mode-subscribe article.title-banner .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .title-banner.standard-teaser.node--view-mode-short-teaser .flexItemImage,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser.node--view-mode-short-teaser .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-awards .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.registerSocialContainer .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.eventdatesLocationType .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.news-article-container .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-feature-article.node--view-mode-press-release-teaser .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-press-release.node--view-mode-press-release-teaser .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-events.node--view-mode-press-release-teaser .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-events.node--view-mode-hp-press-release-teaser .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.news-header-container .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .contacts-container .title-banner.field--name-field-contacts .flexItemImage,
  .contacts-container .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contacts .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .publicationsBox .title-banner.field--name-field-related-publications .flexItemImage,
  .publicationsBox .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-publications .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-primary-featured-item .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-additional-featured-items .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.homepage-health-topics-container .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.homepage-mission-areas-container .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.homepage-location-container .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-alumni .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-full .title-banner.nhlbi-publication-details-container .flexItemImage,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .flexItemImage,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .flexItemImage,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .flexItemImage,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .flexItemImage,
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .flexItemImage,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.flexcontainer .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.related-ht-ser-container .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-sfa-card .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-speaker .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-executives .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-card-field .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-advisory-committees .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.contact-nhlbi-titleblock .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-cards .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-employment-opportunity-car .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.all-grants-foa-container .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-program-officers .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .view-id-nhlbi_grants_foa.view-display-id-block_2 > .title-banner.view-content .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .view-id-nhlbi_grants_foa.view-display-id-block_3 > .title-banner.view-content .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-individual-contact .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-individual-contact .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-division.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-division.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-division.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-division.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-branch.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-branch.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-branch.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-branch.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-general.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-general.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-health-education-initiative.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-health-education-initiative.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-health-education-initiative.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-committee .title-banner.field--name-field-card-text .flexItemImageHalf,
  .node--type-committee .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-card-text .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .news-and-events--landing .title-banner.landing-social .flexItemImageHalf,
  .news-and-events--landing .node--type-news-mention.node--view-mode-subscribe .title-banner.landing-social .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-sfa-cards .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.locationMap.contact-location-map-container .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.locationMap .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.grants-and-training-card-wrapper .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.about-nhlbi-division-card-wrapper .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.hei-tools-icon-card-wrapper .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-grants-and-training-card .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-division-card .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-tool-icon-card .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-promotional-card .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-sv-promotional-cards .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-about-nhlbi-promotional-ca .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.strategic-vision-titleblock .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.ppg-titleblock-wrapper .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.ppg-guidelines-card-wrapper .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-human-subject-cards .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-section-card .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-highlight-card .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.health-topic-teaser-container .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.about-nhlbi-our-mission-wrapper .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .title-banner.director-bioCard .flexItemImageHalf,
  .about-nhlbi-our-mission-wrapper .node--type-news-mention.node--view-mode-subscribe .field--name-field-leadership > .title-banner.director-bioCard .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-consumer-nhlbi-publ .flexItemImageHalf,
  .nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-health-consumer-nhlbi-publ .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-professionals-nhlbi .flexItemImageHalf,
  .nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-health-professionals-nhlbi .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .title-banner.standard-teaser .flexItemImageHalf,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .title-banner.standard-teaser .flexItemImageHalf,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .publicationsBlock.view-nhlbi-publications > .title-banner.view-content .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-publications .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .healthEducationBlock .title-banner.standard-teaser .flexItemImageHalf,
  .healthEducationBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .systematicEvidenceReviewsBlock .title-banner.view-content .flexItemImageHalf,
  .systematicEvidenceReviewsBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.view-content .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .clinicalPracticeGuidelinesBlock .title-banner.view-content .flexItemImageHalf,
  .clinicalPracticeGuidelinesBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.view-content .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .publicationsAndFactSheetsBlock .title-banner.view-content .flexItemImageHalf,
  .publicationsAndFactSheetsBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.view-content .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.rtFlexContainer .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .title-banner.field--name-field-science-supplemental-page .flexItemImageHalf,
  .node--type-research-topic .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-science-supplemental-page .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .title-banner.researchTopicPublications .flexItemImageHalf,
  .node--type-research-topic .node--type-news-mention.node--view-mode-subscribe .title-banner.researchTopicPublications .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .field--name-field-content > .field__item article.title-banner.listTeaserCard .flexItemImageHalf,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner.listTeaserCard .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .field--name-field-content > .field__item article.title-banner.standard-teaser .flexItemImageHalf,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner.standard-teaser .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .field--name-field-content > .field__item article.title-banner.newsEventsCard .flexItemImageHalf,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner.newsEventsCard .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.esi-feature-card .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.featured-science-instance-teaser-container .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.sfa-teaser-container .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .training-opportunity-card .title-banner.field--name-field-associated-people .flexItemImageHalf,
  .training-opportunity-card .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-associated-people .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-featured-training-opportun .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-career-stages .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-workforce-development-card .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-update.node--view-mode-executive-teaser .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.news-and-events-titleblock .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .contact-box > .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.leadership-container .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .flexItemImageHalf,
  .leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-additional-leadership .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.branch-leadership-container .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .branch-leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .flexItemImageHalf,
  .branch-leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-additional-leadership .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general .title-banner.field--name-field-related-publications .flexItemImageHalf,
  .node--type-general .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-publications .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general .title-banner.field--name-field-general-publications-rlt .flexItemImageHalf,
  .node--type-general .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-general-publications-rlt .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general .field--name-field-general-publications-rlt > .field__item .title-banner.standard-teaser .flexItemImageHalf,
  .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general .field--name-field-related-publications > .field__item .title-banner.standard-teaser .flexItemImageHalf,
  .node--type-general .field--name-field-related-publications > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.objective-text-container .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.objective-list-container .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-goal-card .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.strategic-vision-landing-goals-wrapper .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .title-banner.striped-container-wrapper .flexItemImageHalf,
  .node--type-principal-investigator .node--type-news-mention.node--view-mode-subscribe .title-banner.striped-container-wrapper .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .title-banner.striped-container .flexItemImageHalf,
  .node--type-principal-investigator .node--type-news-mention.node--view-mode-subscribe .title-banner.striped-container .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article.title-banner .flexItemImageHalf,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-news-mention.node--view-mode-subscribe article.title-banner .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article.title-banner .flexItemImageHalf,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-news-mention.node--view-mode-subscribe article.title-banner .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .title-banner.standard-teaser.node--view-mode-short-teaser .flexItemImageHalf,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser.node--view-mode-short-teaser .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-awards .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.registerSocialContainer .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.eventdatesLocationType .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.news-article-container .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-press-release.node--view-mode-press-release-teaser .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-events.node--view-mode-press-release-teaser .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.news-header-container .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .contacts-container .title-banner.field--name-field-contacts .flexItemImageHalf,
  .contacts-container .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contacts .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .publicationsBox .title-banner.field--name-field-related-publications .flexItemImageHalf,
  .publicationsBox .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-publications .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-primary-featured-item .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-additional-featured-items .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.homepage-health-topics-container .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.homepage-mission-areas-container .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.homepage-location-container .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-alumni .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-full .title-banner.nhlbi-publication-details-container .flexItemImageHalf,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .flexItemImageHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .flexItemImageHalf,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .flexItemImageHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .flexItemImageHalf,
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .flexItemImageHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.flexcontainer .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.related-ht-ser-container .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-sfa-card .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-speaker .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-executives .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-card-field .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-advisory-committees .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.contact-nhlbi-titleblock .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-cards .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-employment-opportunity-car .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.all-grants-foa-container .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-program-officers .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .view-id-nhlbi_grants_foa.view-display-id-block_2 > .title-banner.view-content .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .view-id-nhlbi_grants_foa.view-display-id-block_3 > .title-banner.view-content .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-individual-contact .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-individual-contact .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-division.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-division.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-division.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-division.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-branch.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-branch.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-branch.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-branch.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-general.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-general.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-health-education-initiative.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-health-education-initiative.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-health-education-initiative.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-committee .title-banner.field--name-field-card-text .flexItemImageTenth,
  .node--type-committee .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-card-text .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .news-and-events--landing .title-banner.landing-social .flexItemImageTenth,
  .news-and-events--landing .node--type-news-mention.node--view-mode-subscribe .title-banner.landing-social .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-sfa-cards .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.locationMap.contact-location-map-container .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.locationMap .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.grants-and-training-card-wrapper .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.about-nhlbi-division-card-wrapper .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.hei-tools-icon-card-wrapper .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-grants-and-training-card .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-division-card .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-tool-icon-card .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-promotional-card .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-sv-promotional-cards .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-about-nhlbi-promotional-ca .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.strategic-vision-titleblock .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.ppg-titleblock-wrapper .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.ppg-guidelines-card-wrapper .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-human-subject-cards .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-section-card .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-highlight-card .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.health-topic-teaser-container .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.about-nhlbi-our-mission-wrapper .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .title-banner.director-bioCard .flexItemImageTenth,
  .about-nhlbi-our-mission-wrapper .node--type-news-mention.node--view-mode-subscribe .field--name-field-leadership > .title-banner.director-bioCard .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-consumer-nhlbi-publ .flexItemImageTenth,
  .nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-health-consumer-nhlbi-publ .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-professionals-nhlbi .flexItemImageTenth,
  .nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-health-professionals-nhlbi .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .title-banner.standard-teaser .flexItemImageTenth,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .title-banner.standard-teaser .flexItemImageTenth,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .publicationsBlock.view-nhlbi-publications > .title-banner.view-content .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-publications .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .healthEducationBlock .title-banner.standard-teaser .flexItemImageTenth,
  .healthEducationBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .systematicEvidenceReviewsBlock .title-banner.view-content .flexItemImageTenth,
  .systematicEvidenceReviewsBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.view-content .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .clinicalPracticeGuidelinesBlock .title-banner.view-content .flexItemImageTenth,
  .clinicalPracticeGuidelinesBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.view-content .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .publicationsAndFactSheetsBlock .title-banner.view-content .flexItemImageTenth,
  .publicationsAndFactSheetsBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.view-content .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.rtFlexContainer .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .title-banner.field--name-field-science-supplemental-page .flexItemImageTenth,
  .node--type-research-topic .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-science-supplemental-page .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .title-banner.researchTopicPublications .flexItemImageTenth,
  .node--type-research-topic .node--type-news-mention.node--view-mode-subscribe .title-banner.researchTopicPublications .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .field--name-field-content > .field__item article.title-banner.listTeaserCard .flexItemImageTenth,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner.listTeaserCard .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .field--name-field-content > .field__item article.title-banner.standard-teaser .flexItemImageTenth,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner.standard-teaser .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .field--name-field-content > .field__item article.title-banner.newsEventsCard .flexItemImageTenth,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner.newsEventsCard .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.esi-feature-card .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.featured-science-instance-teaser-container .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.sfa-teaser-container .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .training-opportunity-card .title-banner.field--name-field-associated-people .flexItemImageTenth,
  .training-opportunity-card .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-associated-people .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-featured-training-opportun .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-career-stages .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-workforce-development-card .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-update.node--view-mode-executive-teaser .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.news-and-events-titleblock .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .contact-box > .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.leadership-container .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .flexItemImageTenth,
  .leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-additional-leadership .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.branch-leadership-container .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .branch-leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .flexItemImageTenth,
  .branch-leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-additional-leadership .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general .title-banner.field--name-field-related-publications .flexItemImageTenth,
  .node--type-general .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-publications .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general .title-banner.field--name-field-general-publications-rlt .flexItemImageTenth,
  .node--type-general .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-general-publications-rlt .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general .field--name-field-general-publications-rlt > .field__item .title-banner.standard-teaser .flexItemImageTenth,
  .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general .field--name-field-related-publications > .field__item .title-banner.standard-teaser .flexItemImageTenth,
  .node--type-general .field--name-field-related-publications > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.objective-text-container .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.objective-list-container .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-goal-card .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.strategic-vision-landing-goals-wrapper .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .title-banner.striped-container-wrapper .flexItemImageTenth,
  .node--type-principal-investigator .node--type-news-mention.node--view-mode-subscribe .title-banner.striped-container-wrapper .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .title-banner.striped-container .flexItemImageTenth,
  .node--type-principal-investigator .node--type-news-mention.node--view-mode-subscribe .title-banner.striped-container .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article.title-banner .flexItemImageTenth,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-news-mention.node--view-mode-subscribe article.title-banner .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article.title-banner .flexItemImageTenth,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-news-mention.node--view-mode-subscribe article.title-banner .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .title-banner.standard-teaser.node--view-mode-short-teaser .flexItemImageTenth,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser.node--view-mode-short-teaser .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-awards .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.registerSocialContainer .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.eventdatesLocationType .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.news-article-container .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-press-release.node--view-mode-press-release-teaser .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-events.node--view-mode-press-release-teaser .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.news-header-container .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .contacts-container .title-banner.field--name-field-contacts .flexItemImageTenth,
  .contacts-container .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contacts .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .publicationsBox .title-banner.field--name-field-related-publications .flexItemImageTenth,
  .publicationsBox .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-publications .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-primary-featured-item .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-additional-featured-items .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.homepage-health-topics-container .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.homepage-mission-areas-container .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.homepage-location-container .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-alumni .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-full .title-banner.nhlbi-publication-details-container .flexItemImageTenth,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .flexItemImageTenth,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .flexItemImageTenth,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .flexItemImageTenth,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .flexItemImageTenth,
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .flexItemImageTenth,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.flexcontainer .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.related-ht-ser-container .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-sfa-card .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-speaker .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-executives .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-card-field .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-advisory-committees .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.contact-nhlbi-titleblock .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-cards .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-employment-opportunity-car .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.all-grants-foa-container .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-program-officers .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .view-id-nhlbi_grants_foa.view-display-id-block_2 > .title-banner.view-content .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .view-id-nhlbi_grants_foa.view-display-id-block_3 > .title-banner.view-content .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-individual-contact .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-individual-contact .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-division.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-division.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-division.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-division.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-branch.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-branch.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-branch.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-branch.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-general.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-general.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-health-education-initiative.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-health-education-initiative.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-health-education-initiative.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-committee .title-banner.field--name-field-card-text .flexItemImageFourth,
  .node--type-committee .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-card-text .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .news-and-events--landing .title-banner.landing-social .flexItemImageFourth,
  .news-and-events--landing .node--type-news-mention.node--view-mode-subscribe .title-banner.landing-social .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-sfa-cards .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.locationMap.contact-location-map-container .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.locationMap .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.grants-and-training-card-wrapper .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.about-nhlbi-division-card-wrapper .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.hei-tools-icon-card-wrapper .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-grants-and-training-card .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-division-card .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-tool-icon-card .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-promotional-card .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-sv-promotional-cards .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-about-nhlbi-promotional-ca .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.strategic-vision-titleblock .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.ppg-titleblock-wrapper .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.ppg-guidelines-card-wrapper .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-human-subject-cards .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-section-card .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-highlight-card .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.health-topic-teaser-container .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.about-nhlbi-our-mission-wrapper .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .title-banner.director-bioCard .flexItemImageFourth,
  .about-nhlbi-our-mission-wrapper .node--type-news-mention.node--view-mode-subscribe .field--name-field-leadership > .title-banner.director-bioCard .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-consumer-nhlbi-publ .flexItemImageFourth,
  .nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-health-consumer-nhlbi-publ .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-professionals-nhlbi .flexItemImageFourth,
  .nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-health-professionals-nhlbi .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .title-banner.standard-teaser .flexItemImageFourth,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .title-banner.standard-teaser .flexItemImageFourth,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .publicationsBlock.view-nhlbi-publications > .title-banner.view-content .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-publications .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .healthEducationBlock .title-banner.standard-teaser .flexItemImageFourth,
  .healthEducationBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .systematicEvidenceReviewsBlock .title-banner.view-content .flexItemImageFourth,
  .systematicEvidenceReviewsBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.view-content .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .clinicalPracticeGuidelinesBlock .title-banner.view-content .flexItemImageFourth,
  .clinicalPracticeGuidelinesBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.view-content .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .publicationsAndFactSheetsBlock .title-banner.view-content .flexItemImageFourth,
  .publicationsAndFactSheetsBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.view-content .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.rtFlexContainer .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .title-banner.field--name-field-science-supplemental-page .flexItemImageFourth,
  .node--type-research-topic .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-science-supplemental-page .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .title-banner.researchTopicPublications .flexItemImageFourth,
  .node--type-research-topic .node--type-news-mention.node--view-mode-subscribe .title-banner.researchTopicPublications .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .field--name-field-content > .field__item article.title-banner.listTeaserCard .flexItemImageFourth,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner.listTeaserCard .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .field--name-field-content > .field__item article.title-banner.standard-teaser .flexItemImageFourth,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner.standard-teaser .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .field--name-field-content > .field__item article.title-banner.newsEventsCard .flexItemImageFourth,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner.newsEventsCard .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.esi-feature-card .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.featured-science-instance-teaser-container .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.sfa-teaser-container .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .training-opportunity-card .title-banner.field--name-field-associated-people .flexItemImageFourth,
  .training-opportunity-card .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-associated-people .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-featured-training-opportun .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-career-stages .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-workforce-development-card .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-update.node--view-mode-executive-teaser .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.news-and-events-titleblock .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .contact-box > .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.leadership-container .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .flexItemImageFourth,
  .leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-additional-leadership .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.branch-leadership-container .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .branch-leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .flexItemImageFourth,
  .branch-leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-additional-leadership .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general .title-banner.field--name-field-related-publications .flexItemImageFourth,
  .node--type-general .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-publications .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general .title-banner.field--name-field-general-publications-rlt .flexItemImageFourth,
  .node--type-general .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-general-publications-rlt .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general .field--name-field-general-publications-rlt > .field__item .title-banner.standard-teaser .flexItemImageFourth,
  .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general .field--name-field-related-publications > .field__item .title-banner.standard-teaser .flexItemImageFourth,
  .node--type-general .field--name-field-related-publications > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.objective-text-container .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.objective-list-container .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-goal-card .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.strategic-vision-landing-goals-wrapper .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .title-banner.striped-container-wrapper .flexItemImageFourth,
  .node--type-principal-investigator .node--type-news-mention.node--view-mode-subscribe .title-banner.striped-container-wrapper .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .title-banner.striped-container .flexItemImageFourth,
  .node--type-principal-investigator .node--type-news-mention.node--view-mode-subscribe .title-banner.striped-container .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article.title-banner .flexItemImageFourth,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-news-mention.node--view-mode-subscribe article.title-banner .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article.title-banner .flexItemImageFourth,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-news-mention.node--view-mode-subscribe article.title-banner .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .title-banner.standard-teaser.node--view-mode-short-teaser .flexItemImageFourth,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser.node--view-mode-short-teaser .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-awards .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.registerSocialContainer .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.eventdatesLocationType .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.news-article-container .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-press-release.node--view-mode-press-release-teaser .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-events.node--view-mode-press-release-teaser .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.news-header-container .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .contacts-container .title-banner.field--name-field-contacts .flexItemImageFourth,
  .contacts-container .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contacts .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .publicationsBox .title-banner.field--name-field-related-publications .flexItemImageFourth,
  .publicationsBox .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-publications .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-primary-featured-item .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-additional-featured-items .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.homepage-health-topics-container .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.homepage-mission-areas-container .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.homepage-location-container .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-alumni .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-full .title-banner.nhlbi-publication-details-container .flexItemImageFourth,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .flexItemImageFourth,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .flexItemImageFourth,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .flexItemImageFourth,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .flexItemImageFourth,
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .flexItemImageFourth,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.flexcontainer .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.related-ht-ser-container .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-sfa-card .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-speaker .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-executives .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-card-field .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-advisory-committees .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.contact-nhlbi-titleblock .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-cards .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-employment-opportunity-car .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.all-grants-foa-container .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-program-officers .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .view-id-nhlbi_grants_foa.view-display-id-block_2 > .title-banner.view-content .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .view-id-nhlbi_grants_foa.view-display-id-block_3 > .title-banner.view-content .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .node--type-individual-contact .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-individual-contact .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .node--type-division.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-division.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .node--type-division.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-division.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .node--type-branch.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-branch.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .node--type-branch.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-branch.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-general.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-general.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .node--type-health-education-initiative.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-health-education-initiative.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .node--type-health-education-initiative.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .node--type-committee .title-banner.field--name-field-card-text .flexItemImageThird,
  .node--type-committee .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-card-text .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .news-and-events--landing .title-banner.landing-social .flexItemImageThird,
  .news-and-events--landing .node--type-news-mention.node--view-mode-subscribe .title-banner.landing-social .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-sfa-cards .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.locationMap.contact-location-map-container .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.locationMap .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.grants-and-training-card-wrapper .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.about-nhlbi-division-card-wrapper .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.hei-tools-icon-card-wrapper .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-grants-and-training-card .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-division-card .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-tool-icon-card .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-promotional-card .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-sv-promotional-cards .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-about-nhlbi-promotional-ca .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.strategic-vision-titleblock .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.ppg-titleblock-wrapper .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.ppg-guidelines-card-wrapper .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-human-subject-cards .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-section-card .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-highlight-card .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.health-topic-teaser-container .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.about-nhlbi-our-mission-wrapper .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .title-banner.director-bioCard .flexItemImageThird,
  .about-nhlbi-our-mission-wrapper .node--type-news-mention.node--view-mode-subscribe .field--name-field-leadership > .title-banner.director-bioCard .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-consumer-nhlbi-publ .flexItemImageThird,
  .nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-health-consumer-nhlbi-publ .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-professionals-nhlbi .flexItemImageThird,
  .nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-health-professionals-nhlbi .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .title-banner.standard-teaser .flexItemImageThird,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .title-banner.standard-teaser .flexItemImageThird,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .publicationsBlock.view-nhlbi-publications > .title-banner.view-content .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-publications .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .healthEducationBlock .title-banner.standard-teaser .flexItemImageThird,
  .healthEducationBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .systematicEvidenceReviewsBlock .title-banner.view-content .flexItemImageThird,
  .systematicEvidenceReviewsBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.view-content .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .clinicalPracticeGuidelinesBlock .title-banner.view-content .flexItemImageThird,
  .clinicalPracticeGuidelinesBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.view-content .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .publicationsAndFactSheetsBlock .title-banner.view-content .flexItemImageThird,
  .publicationsAndFactSheetsBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.view-content .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.rtFlexContainer .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .title-banner.field--name-field-science-supplemental-page .flexItemImageThird,
  .node--type-research-topic .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-science-supplemental-page .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .title-banner.researchTopicPublications .flexItemImageThird,
  .node--type-research-topic .node--type-news-mention.node--view-mode-subscribe .title-banner.researchTopicPublications .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .field--name-field-content > .field__item article.title-banner.listTeaserCard .flexItemImageThird,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner.listTeaserCard .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .field--name-field-content > .field__item article.title-banner.standard-teaser .flexItemImageThird,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner.standard-teaser .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .field--name-field-content > .field__item article.title-banner.newsEventsCard .flexItemImageThird,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner.newsEventsCard .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.esi-feature-card .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.featured-science-instance-teaser-container .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.sfa-teaser-container .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .training-opportunity-card .title-banner.field--name-field-associated-people .flexItemImageThird,
  .training-opportunity-card .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-associated-people .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-featured-training-opportun .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-career-stages .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-workforce-development-card .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-update.node--view-mode-executive-teaser .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.news-and-events-titleblock .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .contact-box > .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.leadership-container .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .flexItemImageThird,
  .leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-additional-leadership .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.branch-leadership-container .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .branch-leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .flexItemImageThird,
  .branch-leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-additional-leadership .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general .title-banner.field--name-field-related-publications .flexItemImageThird,
  .node--type-general .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-publications .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general .title-banner.field--name-field-general-publications-rlt .flexItemImageThird,
  .node--type-general .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-general-publications-rlt .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general .field--name-field-general-publications-rlt > .field__item .title-banner.standard-teaser .flexItemImageThird,
  .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general .field--name-field-related-publications > .field__item .title-banner.standard-teaser .flexItemImageThird,
  .node--type-general .field--name-field-related-publications > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.objective-text-container .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.objective-list-container .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-goal-card .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.strategic-vision-landing-goals-wrapper .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .title-banner.striped-container-wrapper .flexItemImageThird,
  .node--type-principal-investigator .node--type-news-mention.node--view-mode-subscribe .title-banner.striped-container-wrapper .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .title-banner.striped-container .flexItemImageThird,
  .node--type-principal-investigator .node--type-news-mention.node--view-mode-subscribe .title-banner.striped-container .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article.title-banner .flexItemImageThird,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-news-mention.node--view-mode-subscribe article.title-banner .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article.title-banner .flexItemImageThird,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-news-mention.node--view-mode-subscribe article.title-banner .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .title-banner.standard-teaser.node--view-mode-short-teaser .flexItemImageThird,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser.node--view-mode-short-teaser .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-awards .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.registerSocialContainer .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.eventdatesLocationType .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.news-article-container .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-press-release.node--view-mode-press-release-teaser .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-events.node--view-mode-press-release-teaser .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.news-header-container .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .contacts-container .title-banner.field--name-field-contacts .flexItemImageThird,
  .contacts-container .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contacts .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .publicationsBox .title-banner.field--name-field-related-publications .flexItemImageThird,
  .publicationsBox .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-publications .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-primary-featured-item .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-additional-featured-items .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.homepage-health-topics-container .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.homepage-mission-areas-container .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.homepage-location-container .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-alumni .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-full .title-banner.nhlbi-publication-details-container .flexItemImageThird,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .flexItemImageThird,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .flexItemImageThird,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .flexItemImageThird,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .flexItemImageThird,
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .flexItemImageThird,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.flexcontainer .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.related-ht-ser-container .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-sfa-card .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-speaker .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-executives .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-card-field .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-advisory-committees .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.contact-nhlbi-titleblock .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-cards .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-employment-opportunity-car .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.all-grants-foa-container .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-program-officers .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .view-id-nhlbi_grants_foa.view-display-id-block_2 > .title-banner.view-content .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .view-id-nhlbi_grants_foa.view-display-id-block_3 > .title-banner.view-content .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-individual-contact .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-individual-contact .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-division.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-division.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-division.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-division.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-branch.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-branch.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-branch.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-branch.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-general.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-general.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-health-education-initiative.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-health-education-initiative.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-health-education-initiative.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-committee .title-banner.field--name-field-card-text .flexItemImageThirdHalf,
  .node--type-committee .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-card-text .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .news-and-events--landing .title-banner.landing-social .flexItemImageThirdHalf,
  .news-and-events--landing .node--type-news-mention.node--view-mode-subscribe .title-banner.landing-social .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-sfa-cards .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.locationMap.contact-location-map-container .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.locationMap .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.grants-and-training-card-wrapper .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.about-nhlbi-division-card-wrapper .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.hei-tools-icon-card-wrapper .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-grants-and-training-card .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-division-card .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-tool-icon-card .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-promotional-card .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-sv-promotional-cards .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-about-nhlbi-promotional-ca .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.strategic-vision-titleblock .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.ppg-titleblock-wrapper .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.ppg-guidelines-card-wrapper .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-human-subject-cards .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-section-card .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-highlight-card .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.health-topic-teaser-container .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.about-nhlbi-our-mission-wrapper .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .title-banner.director-bioCard .flexItemImageThirdHalf,
  .about-nhlbi-our-mission-wrapper .node--type-news-mention.node--view-mode-subscribe .field--name-field-leadership > .title-banner.director-bioCard .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-consumer-nhlbi-publ .flexItemImageThirdHalf,
  .nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-health-consumer-nhlbi-publ .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-professionals-nhlbi .flexItemImageThirdHalf,
  .nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-health-professionals-nhlbi .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .title-banner.standard-teaser .flexItemImageThirdHalf,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .title-banner.standard-teaser .flexItemImageThirdHalf,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .publicationsBlock.view-nhlbi-publications > .title-banner.view-content .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-publications .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .healthEducationBlock .title-banner.standard-teaser .flexItemImageThirdHalf,
  .healthEducationBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .systematicEvidenceReviewsBlock .title-banner.view-content .flexItemImageThirdHalf,
  .systematicEvidenceReviewsBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.view-content .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .clinicalPracticeGuidelinesBlock .title-banner.view-content .flexItemImageThirdHalf,
  .clinicalPracticeGuidelinesBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.view-content .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .publicationsAndFactSheetsBlock .title-banner.view-content .flexItemImageThirdHalf,
  .publicationsAndFactSheetsBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.view-content .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.rtFlexContainer .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .title-banner.field--name-field-science-supplemental-page .flexItemImageThirdHalf,
  .node--type-research-topic .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-science-supplemental-page .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .title-banner.researchTopicPublications .flexItemImageThirdHalf,
  .node--type-research-topic .node--type-news-mention.node--view-mode-subscribe .title-banner.researchTopicPublications .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .field--name-field-content > .field__item article.title-banner.listTeaserCard .flexItemImageThirdHalf,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner.listTeaserCard .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .field--name-field-content > .field__item article.title-banner.standard-teaser .flexItemImageThirdHalf,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner.standard-teaser .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .field--name-field-content > .field__item article.title-banner.newsEventsCard .flexItemImageThirdHalf,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner.newsEventsCard .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.esi-feature-card .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.featured-science-instance-teaser-container .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.sfa-teaser-container .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .training-opportunity-card .title-banner.field--name-field-associated-people .flexItemImageThirdHalf,
  .training-opportunity-card .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-associated-people .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-featured-training-opportun .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-career-stages .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-workforce-development-card .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-update.node--view-mode-executive-teaser .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.news-and-events-titleblock .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .contact-box > .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.leadership-container .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .flexItemImageThirdHalf,
  .leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-additional-leadership .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.branch-leadership-container .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .branch-leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .flexItemImageThirdHalf,
  .branch-leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-additional-leadership .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general .title-banner.field--name-field-related-publications .flexItemImageThirdHalf,
  .node--type-general .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-publications .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general .title-banner.field--name-field-general-publications-rlt .flexItemImageThirdHalf,
  .node--type-general .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-general-publications-rlt .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general .field--name-field-general-publications-rlt > .field__item .title-banner.standard-teaser .flexItemImageThirdHalf,
  .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general .field--name-field-related-publications > .field__item .title-banner.standard-teaser .flexItemImageThirdHalf,
  .node--type-general .field--name-field-related-publications > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.objective-text-container .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.objective-list-container .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-goal-card .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.strategic-vision-landing-goals-wrapper .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .title-banner.striped-container-wrapper .flexItemImageThirdHalf,
  .node--type-principal-investigator .node--type-news-mention.node--view-mode-subscribe .title-banner.striped-container-wrapper .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .title-banner.striped-container .flexItemImageThirdHalf,
  .node--type-principal-investigator .node--type-news-mention.node--view-mode-subscribe .title-banner.striped-container .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article.title-banner .flexItemImageThirdHalf,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-news-mention.node--view-mode-subscribe article.title-banner .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article.title-banner .flexItemImageThirdHalf,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-news-mention.node--view-mode-subscribe article.title-banner .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .title-banner.standard-teaser.node--view-mode-short-teaser .flexItemImageThirdHalf,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser.node--view-mode-short-teaser .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-awards .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.registerSocialContainer .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.eventdatesLocationType .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.news-article-container .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-press-release.node--view-mode-press-release-teaser .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-events.node--view-mode-press-release-teaser .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.news-header-container .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .contacts-container .title-banner.field--name-field-contacts .flexItemImageThirdHalf,
  .contacts-container .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contacts .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .publicationsBox .title-banner.field--name-field-related-publications .flexItemImageThirdHalf,
  .publicationsBox .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-publications .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-primary-featured-item .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-additional-featured-items .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.homepage-health-topics-container .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.homepage-mission-areas-container .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.homepage-location-container .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-alumni .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-full .title-banner.nhlbi-publication-details-container .flexItemImageThirdHalf,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .flexItemImageThirdHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .flexItemImageThirdHalf,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .flexItemImageThirdHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .flexItemImageThirdHalf,
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .flexItemImageThirdHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.flexcontainer .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.related-ht-ser-container .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-sfa-card .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-speaker .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-executives .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-card-field .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-advisory-committees .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.contact-nhlbi-titleblock .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-cards .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-employment-opportunity-car .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.all-grants-foa-container .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-program-officers .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .view-id-nhlbi_grants_foa.view-display-id-block_2 > .title-banner.view-content .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .view-id-nhlbi_grants_foa.view-display-id-block_3 > .title-banner.view-content .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .node--type-individual-contact .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-individual-contact .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .node--type-division.node--view-mode-full .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-division.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .node--type-division.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-division.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .node--type-branch.node--view-mode-full .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-branch.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .node--type-branch.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-branch.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general.node--view-mode-full .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-general.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-general.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .node--type-health-education-initiative.node--view-mode-full .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-health-education-initiative.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .node--type-health-education-initiative.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .node--type-committee .title-banner.field--name-field-card-text .hero-image,
  .node--type-committee .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-card-text .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .news-and-events--landing .title-banner.landing-social .hero-image,
  .news-and-events--landing .node--type-news-mention.node--view-mode-subscribe .title-banner.landing-social .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-sfa-cards .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.locationMap.contact-location-map-container .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.locationMap .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.grants-and-training-card-wrapper .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.about-nhlbi-division-card-wrapper .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.hei-tools-icon-card-wrapper .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-grants-and-training-card .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-division-card .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-tool-icon-card .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-promotional-card .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-sv-promotional-cards .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-about-nhlbi-promotional-ca .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.strategic-vision-titleblock .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.ppg-titleblock-wrapper .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.ppg-guidelines-card-wrapper .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-human-subject-cards .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-section-card .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-highlight-card .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.health-topic-teaser-container .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.about-nhlbi-our-mission-wrapper .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .title-banner.director-bioCard .hero-image,
  .about-nhlbi-our-mission-wrapper .node--type-news-mention.node--view-mode-subscribe .field--name-field-leadership > .title-banner.director-bioCard .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-consumer-nhlbi-publ .hero-image,
  .nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-health-consumer-nhlbi-publ .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-professionals-nhlbi .hero-image,
  .nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-health-professionals-nhlbi .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .title-banner.standard-teaser .hero-image,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .title-banner.standard-teaser .hero-image,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .publicationsBlock.view-nhlbi-publications > .title-banner.view-content .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-publications .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .healthEducationBlock .title-banner.standard-teaser .hero-image,
  .healthEducationBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .systematicEvidenceReviewsBlock .title-banner.view-content .hero-image,
  .systematicEvidenceReviewsBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.view-content .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .clinicalPracticeGuidelinesBlock .title-banner.view-content .hero-image,
  .clinicalPracticeGuidelinesBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.view-content .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .publicationsAndFactSheetsBlock .title-banner.view-content .hero-image,
  .publicationsAndFactSheetsBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.view-content .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.rtFlexContainer .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .title-banner.field--name-field-science-supplemental-page .hero-image,
  .node--type-research-topic .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-science-supplemental-page .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .title-banner.researchTopicPublications .hero-image,
  .node--type-research-topic .node--type-news-mention.node--view-mode-subscribe .title-banner.researchTopicPublications .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .field--name-field-content > .field__item article.title-banner.listTeaserCard .hero-image,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner.listTeaserCard .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .field--name-field-content > .field__item article.title-banner.standard-teaser .hero-image,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner.standard-teaser .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .field--name-field-content > .field__item article.title-banner.newsEventsCard .hero-image,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner.newsEventsCard .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.esi-feature-card .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.featured-science-instance-teaser-container .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.sfa-teaser-container .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .training-opportunity-card .title-banner.field--name-field-associated-people .hero-image,
  .training-opportunity-card .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-associated-people .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-featured-training-opportun .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-career-stages .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-workforce-development-card .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-update.node--view-mode-executive-teaser .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.news-and-events-titleblock .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .contact-box > .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.leadership-container .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .hero-image,
  .leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-additional-leadership .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.branch-leadership-container .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .branch-leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .hero-image,
  .branch-leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-additional-leadership .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general .title-banner.field--name-field-related-publications .hero-image,
  .node--type-general .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-publications .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general .title-banner.field--name-field-general-publications-rlt .hero-image,
  .node--type-general .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-general-publications-rlt .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general .field--name-field-general-publications-rlt > .field__item .title-banner.standard-teaser .hero-image,
  .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general .field--name-field-related-publications > .field__item .title-banner.standard-teaser .hero-image,
  .node--type-general .field--name-field-related-publications > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.objective-text-container .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.objective-list-container .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-goal-card .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.strategic-vision-landing-goals-wrapper .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .title-banner.striped-container-wrapper .hero-image,
  .node--type-principal-investigator .node--type-news-mention.node--view-mode-subscribe .title-banner.striped-container-wrapper .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .title-banner.striped-container .hero-image,
  .node--type-principal-investigator .node--type-news-mention.node--view-mode-subscribe .title-banner.striped-container .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article.title-banner .hero-image,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-news-mention.node--view-mode-subscribe article.title-banner .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article.title-banner .hero-image,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-news-mention.node--view-mode-subscribe article.title-banner .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .title-banner.standard-teaser.node--view-mode-short-teaser .hero-image,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser.node--view-mode-short-teaser .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-awards .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.registerSocialContainer .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.eventdatesLocationType .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.news-article-container .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-feature-article.node--view-mode-press-release-teaser .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-press-release.node--view-mode-press-release-teaser .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-events.node--view-mode-press-release-teaser .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-feature-article.node--view-mode-hp-press-release-teaser .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-press-release.node--view-mode-hp-press-release-teaser .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-events.node--view-mode-hp-press-release-teaser .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-news-mention.node--view-mode-hp-press-release-teaser .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.news-header-container .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .contacts-container .title-banner.field--name-field-contacts .hero-image,
  .contacts-container .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contacts .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .publicationsBox .title-banner.field--name-field-related-publications .hero-image,
  .publicationsBox .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-publications .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-primary-featured-item .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-additional-featured-items .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.homepage-health-topics-container .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.homepage-mission-areas-container .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.homepage-location-container .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-alumni .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-full .title-banner.nhlbi-publication-details-container .hero-image,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .hero-image,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .hero-image,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .hero-image,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .hero-image,
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .hero-image,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .hero-image {
    -webkit-box-ordinal-group: 2;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 469, ../sass/components/_news.scss */
  .node--type-news-mention.node--view-mode-full .title-banner.flexcontainer .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.related-ht-ser-container .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-sfa-card .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-speaker .flexItemImage,
  .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-executives .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.standard-card-field .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-advisory-committees .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.contact-nhlbi-titleblock .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-cards .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-employment-opportunity-car .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.all-grants-foa-container .flexItemImage,
  .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-program-officers .flexItemImage,
  .node--type-news-mention.node--view-mode-full .view-id-nhlbi_grants_foa.view-display-id-block_2 > .title-banner.view-content .flexItemImage,
  .node--type-news-mention.node--view-mode-full .view-id-nhlbi_grants_foa.view-display-id-block_3 > .title-banner.view-content .flexItemImage, .node--type-news-mention.node--view-mode-full .node--type-individual-contact .title-banner.field--name-field-contact-methods .flexItemImage, .node--type-individual-contact .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-news-mention.node--view-mode-full .node--type-division.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-division.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-news-mention.node--view-mode-full .node--type-division.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-division.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-news-mention.node--view-mode-full .node--type-branch.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-branch.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-news-mention.node--view-mode-full .node--type-branch.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-branch.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-news-mention.node--view-mode-full .node--type-general.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-general.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-news-mention.node--view-mode-full .node--type-general.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-general.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-news-mention.node--view-mode-full .node--type-health-education-initiative.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-health-education-initiative.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-news-mention.node--view-mode-full .node--type-health-education-initiative.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImage, .node--type-news-mention.node--view-mode-full .node--type-committee .title-banner.field--name-field-card-text .flexItemImage, .node--type-committee .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-card-text .flexItemImage, .node--type-news-mention.node--view-mode-full .news-and-events--landing .title-banner.landing-social .flexItemImage, .news-and-events--landing .node--type-news-mention.node--view-mode-full .title-banner.landing-social .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-sfa-cards .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.locationMap.contact-location-map-container .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.locationMap .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.grants-and-training-card-wrapper .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.about-nhlbi-division-card-wrapper .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.hei-tools-icon-card-wrapper .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-grants-and-training-card .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-division-card .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-tool-icon-card .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-promotional-card .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-sv-promotional-cards .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-about-nhlbi-promotional-ca .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.strategic-vision-titleblock .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.ppg-titleblock-wrapper .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.ppg-guidelines-card-wrapper .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-human-subject-cards .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-section-card .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-highlight-card .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.health-topic-teaser-container .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.about-nhlbi-our-mission-wrapper .flexItemImage, .node--type-news-mention.node--view-mode-full .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .title-banner.director-bioCard .flexItemImage, .about-nhlbi-our-mission-wrapper .node--type-news-mention.node--view-mode-full .field--name-field-leadership > .title-banner.director-bioCard .flexItemImage, .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-consumer-nhlbi-publ .flexItemImage, .nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-health-consumer-nhlbi-publ .flexItemImage,
  .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-professionals-nhlbi .flexItemImage,
  .nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-health-professionals-nhlbi .flexItemImage, .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .title-banner.standard-teaser .flexItemImage, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImage,
  .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .title-banner.standard-teaser .flexItemImage,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImage, .node--type-news-mention.node--view-mode-full .publicationsBlock.view-nhlbi-publications > .title-banner.view-content .flexItemImage,
  .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-publications .flexItemImage, .node--type-news-mention.node--view-mode-full .healthEducationBlock .title-banner.standard-teaser .flexItemImage, .healthEducationBlock .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImage, .node--type-news-mention.node--view-mode-full .systematicEvidenceReviewsBlock .title-banner.view-content .flexItemImage, .systematicEvidenceReviewsBlock .node--type-news-mention.node--view-mode-full .title-banner.view-content .flexItemImage,
  .node--type-news-mention.node--view-mode-full .clinicalPracticeGuidelinesBlock .title-banner.view-content .flexItemImage,
  .clinicalPracticeGuidelinesBlock .node--type-news-mention.node--view-mode-full .title-banner.view-content .flexItemImage,
  .node--type-news-mention.node--view-mode-full .publicationsAndFactSheetsBlock .title-banner.view-content .flexItemImage,
  .publicationsAndFactSheetsBlock .node--type-news-mention.node--view-mode-full .title-banner.view-content .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.rtFlexContainer .flexItemImage, .node--type-news-mention.node--view-mode-full .node--type-research-topic .title-banner.field--name-field-science-supplemental-page .flexItemImage, .node--type-research-topic .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-science-supplemental-page .flexItemImage, .node--type-news-mention.node--view-mode-full .node--type-research-topic .title-banner.researchTopicPublications .flexItemImage, .node--type-research-topic .node--type-news-mention.node--view-mode-full .title-banner.researchTopicPublications .flexItemImage, .node--type-news-mention.node--view-mode-full .node--type-research-topic .field--name-field-content > .field__item article.title-banner.listTeaserCard .flexItemImage, .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-full article.title-banner.listTeaserCard .flexItemImage, .node--type-news-mention.node--view-mode-full .node--type-research-topic .field--name-field-content > .field__item article.title-banner.standard-teaser .flexItemImage, .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-full article.title-banner.standard-teaser .flexItemImage,
  .node--type-news-mention.node--view-mode-full .node--type-research-topic .field--name-field-content > .field__item article.title-banner.newsEventsCard .flexItemImage,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-full article.title-banner.newsEventsCard .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.esi-feature-card .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.featured-science-instance-teaser-container .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.sfa-teaser-container .flexItemImage, .node--type-news-mention.node--view-mode-full .training-opportunity-card .title-banner.field--name-field-associated-people .flexItemImage, .training-opportunity-card .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-associated-people .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-featured-training-opportun .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-career-stages .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-workforce-development-card .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.node--type-update.node--view-mode-executive-teaser .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.news-and-events-titleblock .flexItemImage, .node--type-news-mention.node--view-mode-full .contact-box > .title-banner.field--name-field-contact-methods .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.leadership-container .flexItemImage, .node--type-news-mention.node--view-mode-full .leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .flexItemImage, .leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-additional-leadership .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.branch-leadership-container .flexItemImage, .node--type-news-mention.node--view-mode-full .branch-leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .flexItemImage, .branch-leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-additional-leadership .flexItemImage, .node--type-news-mention.node--view-mode-full .node--type-general .title-banner.field--name-field-related-publications .flexItemImage, .node--type-general .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-publications .flexItemImage, .node--type-news-mention.node--view-mode-full .node--type-general .title-banner.field--name-field-general-publications-rlt .flexItemImage, .node--type-general .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-general-publications-rlt .flexItemImage, .node--type-news-mention.node--view-mode-full .node--type-general .field--name-field-general-publications-rlt > .field__item .title-banner.standard-teaser .flexItemImage, .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImage, .node--type-news-mention.node--view-mode-full .node--type-general .field--name-field-related-publications > .field__item .title-banner.standard-teaser .flexItemImage, .node--type-general .field--name-field-related-publications > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.objective-text-container .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.objective-list-container .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-goal-card .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.strategic-vision-landing-goals-wrapper .flexItemImage, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .title-banner.striped-container-wrapper .flexItemImage, .node--type-principal-investigator .node--type-news-mention.node--view-mode-full .title-banner.striped-container-wrapper .flexItemImage, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .title-banner.striped-container .flexItemImage, .node--type-principal-investigator .node--type-news-mention.node--view-mode-full .title-banner.striped-container .flexItemImage, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article.title-banner .flexItemImage, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-news-mention.node--view-mode-full article.title-banner .flexItemImage,
  .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article.title-banner .flexItemImage,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-news-mention.node--view-mode-full article.title-banner .flexItemImage, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .title-banner.standard-teaser.node--view-mode-short-teaser .flexItemImage, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser.node--view-mode-short-teaser .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-awards .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.registerSocialContainer .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.eventdatesLocationType .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.news-article-container .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.node--type-feature-article.node--view-mode-press-release-teaser .flexItemImage,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-press-release.node--view-mode-press-release-teaser .flexItemImage,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-events.node--view-mode-press-release-teaser .flexItemImage,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImage,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImage,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-events.node--view-mode-hp-press-release-teaser .flexItemImage,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.news-header-container .flexItemImage, .node--type-news-mention.node--view-mode-full .contacts-container .title-banner.field--name-field-contacts .flexItemImage, .contacts-container .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contacts .flexItemImage, .node--type-news-mention.node--view-mode-full .publicationsBox .title-banner.field--name-field-related-publications .flexItemImage, .publicationsBox .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-publications .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-primary-featured-item .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-additional-featured-items .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.homepage-health-topics-container .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.homepage-mission-areas-container .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.homepage-location-container .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-alumni .flexItemImage, .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-full .title-banner.nhlbi-publication-details-container .flexItemImage, .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.nhlbi-publication-details-container .flexItemImage,
  .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .flexItemImage,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.nhlbi-publication-details-container .flexItemImage, .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .flexItemImage, .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .flexItemImage,
  .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .flexItemImage,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .flexItemImage, .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .flexItemImage, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImage,
  .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .flexItemImage,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImage, .node--type-news-mention.node--view-mode-full .title-banner.flexcontainer .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.related-ht-ser-container .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-sfa-card .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-speaker .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-executives .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.standard-card-field .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-advisory-committees .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.contact-nhlbi-titleblock .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-cards .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-employment-opportunity-car .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.all-grants-foa-container .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-program-officers .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-full .view-id-nhlbi_grants_foa.view-display-id-block_2 > .title-banner.view-content .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-full .view-id-nhlbi_grants_foa.view-display-id-block_3 > .title-banner.view-content .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .node--type-individual-contact .title-banner.field--name-field-contact-methods .flexItemImageHalf, .node--type-individual-contact .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-full .node--type-division.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-division.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-full .node--type-division.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-division.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-full .node--type-branch.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-branch.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-full .node--type-branch.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-branch.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-full .node--type-general.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-general.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-full .node--type-general.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-general.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-full .node--type-health-education-initiative.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-health-education-initiative.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-full .node--type-health-education-initiative.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .node--type-committee .title-banner.field--name-field-card-text .flexItemImageHalf, .node--type-committee .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-card-text .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .news-and-events--landing .title-banner.landing-social .flexItemImageHalf, .news-and-events--landing .node--type-news-mention.node--view-mode-full .title-banner.landing-social .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-sfa-cards .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.locationMap.contact-location-map-container .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.locationMap .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.grants-and-training-card-wrapper .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.about-nhlbi-division-card-wrapper .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.hei-tools-icon-card-wrapper .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-grants-and-training-card .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-division-card .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-tool-icon-card .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-promotional-card .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-sv-promotional-cards .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-about-nhlbi-promotional-ca .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.strategic-vision-titleblock .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.ppg-titleblock-wrapper .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.ppg-guidelines-card-wrapper .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-human-subject-cards .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-section-card .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-highlight-card .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.health-topic-teaser-container .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.about-nhlbi-our-mission-wrapper .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .title-banner.director-bioCard .flexItemImageHalf, .about-nhlbi-our-mission-wrapper .node--type-news-mention.node--view-mode-full .field--name-field-leadership > .title-banner.director-bioCard .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-consumer-nhlbi-publ .flexItemImageHalf, .nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-health-consumer-nhlbi-publ .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-professionals-nhlbi .flexItemImageHalf,
  .nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-health-professionals-nhlbi .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .title-banner.standard-teaser .flexItemImageHalf, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .title-banner.standard-teaser .flexItemImageHalf,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .publicationsBlock.view-nhlbi-publications > .title-banner.view-content .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-publications .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .healthEducationBlock .title-banner.standard-teaser .flexItemImageHalf, .healthEducationBlock .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .systematicEvidenceReviewsBlock .title-banner.view-content .flexItemImageHalf, .systematicEvidenceReviewsBlock .node--type-news-mention.node--view-mode-full .title-banner.view-content .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-full .clinicalPracticeGuidelinesBlock .title-banner.view-content .flexItemImageHalf,
  .clinicalPracticeGuidelinesBlock .node--type-news-mention.node--view-mode-full .title-banner.view-content .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-full .publicationsAndFactSheetsBlock .title-banner.view-content .flexItemImageHalf,
  .publicationsAndFactSheetsBlock .node--type-news-mention.node--view-mode-full .title-banner.view-content .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.rtFlexContainer .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .node--type-research-topic .title-banner.field--name-field-science-supplemental-page .flexItemImageHalf, .node--type-research-topic .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-science-supplemental-page .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .node--type-research-topic .title-banner.researchTopicPublications .flexItemImageHalf, .node--type-research-topic .node--type-news-mention.node--view-mode-full .title-banner.researchTopicPublications .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .node--type-research-topic .field--name-field-content > .field__item article.title-banner.listTeaserCard .flexItemImageHalf, .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-full article.title-banner.listTeaserCard .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .node--type-research-topic .field--name-field-content > .field__item article.title-banner.standard-teaser .flexItemImageHalf, .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-full article.title-banner.standard-teaser .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-full .node--type-research-topic .field--name-field-content > .field__item article.title-banner.newsEventsCard .flexItemImageHalf,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-full article.title-banner.newsEventsCard .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.esi-feature-card .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.featured-science-instance-teaser-container .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.sfa-teaser-container .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .training-opportunity-card .title-banner.field--name-field-associated-people .flexItemImageHalf, .training-opportunity-card .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-associated-people .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-featured-training-opportun .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-career-stages .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-workforce-development-card .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.node--type-update.node--view-mode-executive-teaser .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.news-and-events-titleblock .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .contact-box > .title-banner.field--name-field-contact-methods .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.leadership-container .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .flexItemImageHalf, .leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-additional-leadership .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.branch-leadership-container .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .branch-leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .flexItemImageHalf, .branch-leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-additional-leadership .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .node--type-general .title-banner.field--name-field-related-publications .flexItemImageHalf, .node--type-general .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-publications .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .node--type-general .title-banner.field--name-field-general-publications-rlt .flexItemImageHalf, .node--type-general .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-general-publications-rlt .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .node--type-general .field--name-field-general-publications-rlt > .field__item .title-banner.standard-teaser .flexItemImageHalf, .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .node--type-general .field--name-field-related-publications > .field__item .title-banner.standard-teaser .flexItemImageHalf, .node--type-general .field--name-field-related-publications > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.objective-text-container .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.objective-list-container .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-goal-card .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.strategic-vision-landing-goals-wrapper .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .title-banner.striped-container-wrapper .flexItemImageHalf, .node--type-principal-investigator .node--type-news-mention.node--view-mode-full .title-banner.striped-container-wrapper .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .title-banner.striped-container .flexItemImageHalf, .node--type-principal-investigator .node--type-news-mention.node--view-mode-full .title-banner.striped-container .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article.title-banner .flexItemImageHalf, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-news-mention.node--view-mode-full article.title-banner .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article.title-banner .flexItemImageHalf,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-news-mention.node--view-mode-full article.title-banner .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .title-banner.standard-teaser.node--view-mode-short-teaser .flexItemImageHalf, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser.node--view-mode-short-teaser .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-awards .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.registerSocialContainer .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.eventdatesLocationType .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.news-article-container .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-press-release.node--view-mode-press-release-teaser .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-events.node--view-mode-press-release-teaser .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.news-header-container .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .contacts-container .title-banner.field--name-field-contacts .flexItemImageHalf, .contacts-container .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contacts .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .publicationsBox .title-banner.field--name-field-related-publications .flexItemImageHalf, .publicationsBox .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-publications .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-primary-featured-item .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-additional-featured-items .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.homepage-health-topics-container .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.homepage-mission-areas-container .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.homepage-location-container .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-alumni .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-full .title-banner.nhlbi-publication-details-container .flexItemImageHalf, .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.nhlbi-publication-details-container .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .flexItemImageHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.nhlbi-publication-details-container .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .flexItemImageHalf, .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .flexItemImageHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .flexItemImageHalf, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .flexItemImageHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .title-banner.flexcontainer .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.related-ht-ser-container .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-sfa-card .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-speaker .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-executives .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.standard-card-field .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-advisory-committees .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.contact-nhlbi-titleblock .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-cards .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-employment-opportunity-car .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.all-grants-foa-container .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-program-officers .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-full .view-id-nhlbi_grants_foa.view-display-id-block_2 > .title-banner.view-content .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-full .view-id-nhlbi_grants_foa.view-display-id-block_3 > .title-banner.view-content .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .node--type-individual-contact .title-banner.field--name-field-contact-methods .flexItemImageTenth, .node--type-individual-contact .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-full .node--type-division.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-division.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-full .node--type-division.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-division.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-full .node--type-branch.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-branch.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-full .node--type-branch.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-branch.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-full .node--type-general.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-general.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-full .node--type-general.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-general.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-full .node--type-health-education-initiative.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-health-education-initiative.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-full .node--type-health-education-initiative.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .node--type-committee .title-banner.field--name-field-card-text .flexItemImageTenth, .node--type-committee .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-card-text .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .news-and-events--landing .title-banner.landing-social .flexItemImageTenth, .news-and-events--landing .node--type-news-mention.node--view-mode-full .title-banner.landing-social .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-sfa-cards .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.locationMap.contact-location-map-container .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.locationMap .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.grants-and-training-card-wrapper .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.about-nhlbi-division-card-wrapper .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.hei-tools-icon-card-wrapper .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-grants-and-training-card .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-division-card .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-tool-icon-card .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-promotional-card .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-sv-promotional-cards .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-about-nhlbi-promotional-ca .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.strategic-vision-titleblock .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.ppg-titleblock-wrapper .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.ppg-guidelines-card-wrapper .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-human-subject-cards .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-section-card .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-highlight-card .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.health-topic-teaser-container .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.about-nhlbi-our-mission-wrapper .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .title-banner.director-bioCard .flexItemImageTenth, .about-nhlbi-our-mission-wrapper .node--type-news-mention.node--view-mode-full .field--name-field-leadership > .title-banner.director-bioCard .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-consumer-nhlbi-publ .flexItemImageTenth, .nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-health-consumer-nhlbi-publ .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-professionals-nhlbi .flexItemImageTenth,
  .nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-health-professionals-nhlbi .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .title-banner.standard-teaser .flexItemImageTenth, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .title-banner.standard-teaser .flexItemImageTenth,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .publicationsBlock.view-nhlbi-publications > .title-banner.view-content .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-publications .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .healthEducationBlock .title-banner.standard-teaser .flexItemImageTenth, .healthEducationBlock .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .systematicEvidenceReviewsBlock .title-banner.view-content .flexItemImageTenth, .systematicEvidenceReviewsBlock .node--type-news-mention.node--view-mode-full .title-banner.view-content .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-full .clinicalPracticeGuidelinesBlock .title-banner.view-content .flexItemImageTenth,
  .clinicalPracticeGuidelinesBlock .node--type-news-mention.node--view-mode-full .title-banner.view-content .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-full .publicationsAndFactSheetsBlock .title-banner.view-content .flexItemImageTenth,
  .publicationsAndFactSheetsBlock .node--type-news-mention.node--view-mode-full .title-banner.view-content .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.rtFlexContainer .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .node--type-research-topic .title-banner.field--name-field-science-supplemental-page .flexItemImageTenth, .node--type-research-topic .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-science-supplemental-page .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .node--type-research-topic .title-banner.researchTopicPublications .flexItemImageTenth, .node--type-research-topic .node--type-news-mention.node--view-mode-full .title-banner.researchTopicPublications .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .node--type-research-topic .field--name-field-content > .field__item article.title-banner.listTeaserCard .flexItemImageTenth, .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-full article.title-banner.listTeaserCard .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .node--type-research-topic .field--name-field-content > .field__item article.title-banner.standard-teaser .flexItemImageTenth, .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-full article.title-banner.standard-teaser .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-full .node--type-research-topic .field--name-field-content > .field__item article.title-banner.newsEventsCard .flexItemImageTenth,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-full article.title-banner.newsEventsCard .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.esi-feature-card .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.featured-science-instance-teaser-container .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.sfa-teaser-container .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .training-opportunity-card .title-banner.field--name-field-associated-people .flexItemImageTenth, .training-opportunity-card .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-associated-people .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-featured-training-opportun .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-career-stages .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-workforce-development-card .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.node--type-update.node--view-mode-executive-teaser .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.news-and-events-titleblock .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .contact-box > .title-banner.field--name-field-contact-methods .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.leadership-container .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .flexItemImageTenth, .leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-additional-leadership .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.branch-leadership-container .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .branch-leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .flexItemImageTenth, .branch-leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-additional-leadership .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .node--type-general .title-banner.field--name-field-related-publications .flexItemImageTenth, .node--type-general .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-publications .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .node--type-general .title-banner.field--name-field-general-publications-rlt .flexItemImageTenth, .node--type-general .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-general-publications-rlt .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .node--type-general .field--name-field-general-publications-rlt > .field__item .title-banner.standard-teaser .flexItemImageTenth, .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .node--type-general .field--name-field-related-publications > .field__item .title-banner.standard-teaser .flexItemImageTenth, .node--type-general .field--name-field-related-publications > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.objective-text-container .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.objective-list-container .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-goal-card .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.strategic-vision-landing-goals-wrapper .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .title-banner.striped-container-wrapper .flexItemImageTenth, .node--type-principal-investigator .node--type-news-mention.node--view-mode-full .title-banner.striped-container-wrapper .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .title-banner.striped-container .flexItemImageTenth, .node--type-principal-investigator .node--type-news-mention.node--view-mode-full .title-banner.striped-container .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article.title-banner .flexItemImageTenth, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-news-mention.node--view-mode-full article.title-banner .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article.title-banner .flexItemImageTenth,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-news-mention.node--view-mode-full article.title-banner .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .title-banner.standard-teaser.node--view-mode-short-teaser .flexItemImageTenth, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser.node--view-mode-short-teaser .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-awards .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.registerSocialContainer .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.eventdatesLocationType .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.news-article-container .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-press-release.node--view-mode-press-release-teaser .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-events.node--view-mode-press-release-teaser .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.news-header-container .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .contacts-container .title-banner.field--name-field-contacts .flexItemImageTenth, .contacts-container .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contacts .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .publicationsBox .title-banner.field--name-field-related-publications .flexItemImageTenth, .publicationsBox .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-publications .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-primary-featured-item .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-additional-featured-items .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.homepage-health-topics-container .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.homepage-mission-areas-container .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.homepage-location-container .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-alumni .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-full .title-banner.nhlbi-publication-details-container .flexItemImageTenth, .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.nhlbi-publication-details-container .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .flexItemImageTenth,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.nhlbi-publication-details-container .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .flexItemImageTenth, .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .flexItemImageTenth,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .flexItemImageTenth, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .flexItemImageTenth,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .title-banner.flexcontainer .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.related-ht-ser-container .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-sfa-card .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-speaker .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-executives .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.standard-card-field .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-advisory-committees .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.contact-nhlbi-titleblock .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-cards .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-employment-opportunity-car .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.all-grants-foa-container .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-program-officers .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-full .view-id-nhlbi_grants_foa.view-display-id-block_2 > .title-banner.view-content .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-full .view-id-nhlbi_grants_foa.view-display-id-block_3 > .title-banner.view-content .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .node--type-individual-contact .title-banner.field--name-field-contact-methods .flexItemImageFourth, .node--type-individual-contact .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-full .node--type-division.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-division.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-full .node--type-division.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-division.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-full .node--type-branch.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-branch.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-full .node--type-branch.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-branch.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-full .node--type-general.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-general.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-full .node--type-general.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-general.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-full .node--type-health-education-initiative.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-health-education-initiative.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-full .node--type-health-education-initiative.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .node--type-committee .title-banner.field--name-field-card-text .flexItemImageFourth, .node--type-committee .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-card-text .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .news-and-events--landing .title-banner.landing-social .flexItemImageFourth, .news-and-events--landing .node--type-news-mention.node--view-mode-full .title-banner.landing-social .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-sfa-cards .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.locationMap.contact-location-map-container .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.locationMap .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.grants-and-training-card-wrapper .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.about-nhlbi-division-card-wrapper .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.hei-tools-icon-card-wrapper .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-grants-and-training-card .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-division-card .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-tool-icon-card .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-promotional-card .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-sv-promotional-cards .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-about-nhlbi-promotional-ca .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.strategic-vision-titleblock .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.ppg-titleblock-wrapper .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.ppg-guidelines-card-wrapper .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-human-subject-cards .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-section-card .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-highlight-card .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.health-topic-teaser-container .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.about-nhlbi-our-mission-wrapper .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .title-banner.director-bioCard .flexItemImageFourth, .about-nhlbi-our-mission-wrapper .node--type-news-mention.node--view-mode-full .field--name-field-leadership > .title-banner.director-bioCard .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-consumer-nhlbi-publ .flexItemImageFourth, .nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-health-consumer-nhlbi-publ .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-professionals-nhlbi .flexItemImageFourth,
  .nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-health-professionals-nhlbi .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .title-banner.standard-teaser .flexItemImageFourth, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .title-banner.standard-teaser .flexItemImageFourth,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .publicationsBlock.view-nhlbi-publications > .title-banner.view-content .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-publications .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .healthEducationBlock .title-banner.standard-teaser .flexItemImageFourth, .healthEducationBlock .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .systematicEvidenceReviewsBlock .title-banner.view-content .flexItemImageFourth, .systematicEvidenceReviewsBlock .node--type-news-mention.node--view-mode-full .title-banner.view-content .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-full .clinicalPracticeGuidelinesBlock .title-banner.view-content .flexItemImageFourth,
  .clinicalPracticeGuidelinesBlock .node--type-news-mention.node--view-mode-full .title-banner.view-content .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-full .publicationsAndFactSheetsBlock .title-banner.view-content .flexItemImageFourth,
  .publicationsAndFactSheetsBlock .node--type-news-mention.node--view-mode-full .title-banner.view-content .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.rtFlexContainer .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .node--type-research-topic .title-banner.field--name-field-science-supplemental-page .flexItemImageFourth, .node--type-research-topic .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-science-supplemental-page .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .node--type-research-topic .title-banner.researchTopicPublications .flexItemImageFourth, .node--type-research-topic .node--type-news-mention.node--view-mode-full .title-banner.researchTopicPublications .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .node--type-research-topic .field--name-field-content > .field__item article.title-banner.listTeaserCard .flexItemImageFourth, .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-full article.title-banner.listTeaserCard .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .node--type-research-topic .field--name-field-content > .field__item article.title-banner.standard-teaser .flexItemImageFourth, .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-full article.title-banner.standard-teaser .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-full .node--type-research-topic .field--name-field-content > .field__item article.title-banner.newsEventsCard .flexItemImageFourth,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-full article.title-banner.newsEventsCard .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.esi-feature-card .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.featured-science-instance-teaser-container .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.sfa-teaser-container .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .training-opportunity-card .title-banner.field--name-field-associated-people .flexItemImageFourth, .training-opportunity-card .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-associated-people .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-featured-training-opportun .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-career-stages .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-workforce-development-card .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.node--type-update.node--view-mode-executive-teaser .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.news-and-events-titleblock .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .contact-box > .title-banner.field--name-field-contact-methods .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.leadership-container .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .flexItemImageFourth, .leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-additional-leadership .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.branch-leadership-container .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .branch-leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .flexItemImageFourth, .branch-leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-additional-leadership .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .node--type-general .title-banner.field--name-field-related-publications .flexItemImageFourth, .node--type-general .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-publications .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .node--type-general .title-banner.field--name-field-general-publications-rlt .flexItemImageFourth, .node--type-general .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-general-publications-rlt .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .node--type-general .field--name-field-general-publications-rlt > .field__item .title-banner.standard-teaser .flexItemImageFourth, .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .node--type-general .field--name-field-related-publications > .field__item .title-banner.standard-teaser .flexItemImageFourth, .node--type-general .field--name-field-related-publications > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.objective-text-container .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.objective-list-container .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-goal-card .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.strategic-vision-landing-goals-wrapper .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .title-banner.striped-container-wrapper .flexItemImageFourth, .node--type-principal-investigator .node--type-news-mention.node--view-mode-full .title-banner.striped-container-wrapper .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .title-banner.striped-container .flexItemImageFourth, .node--type-principal-investigator .node--type-news-mention.node--view-mode-full .title-banner.striped-container .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article.title-banner .flexItemImageFourth, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-news-mention.node--view-mode-full article.title-banner .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article.title-banner .flexItemImageFourth,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-news-mention.node--view-mode-full article.title-banner .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .title-banner.standard-teaser.node--view-mode-short-teaser .flexItemImageFourth, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser.node--view-mode-short-teaser .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-awards .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.registerSocialContainer .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.eventdatesLocationType .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.news-article-container .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-press-release.node--view-mode-press-release-teaser .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-events.node--view-mode-press-release-teaser .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.news-header-container .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .contacts-container .title-banner.field--name-field-contacts .flexItemImageFourth, .contacts-container .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contacts .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .publicationsBox .title-banner.field--name-field-related-publications .flexItemImageFourth, .publicationsBox .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-publications .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-primary-featured-item .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-additional-featured-items .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.homepage-health-topics-container .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.homepage-mission-areas-container .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.homepage-location-container .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-alumni .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-full .title-banner.nhlbi-publication-details-container .flexItemImageFourth, .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.nhlbi-publication-details-container .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .flexItemImageFourth,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.nhlbi-publication-details-container .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .flexItemImageFourth, .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .flexItemImageFourth,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .flexItemImageFourth, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .flexItemImageFourth,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageFourth, .node--type-news-mention.node--view-mode-full .title-banner.flexcontainer .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.related-ht-ser-container .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-sfa-card .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-speaker .flexItemImageThird,
  .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-executives .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.standard-card-field .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-advisory-committees .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.contact-nhlbi-titleblock .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-cards .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-employment-opportunity-car .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.all-grants-foa-container .flexItemImageThird,
  .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-program-officers .flexItemImageThird,
  .node--type-news-mention.node--view-mode-full .view-id-nhlbi_grants_foa.view-display-id-block_2 > .title-banner.view-content .flexItemImageThird,
  .node--type-news-mention.node--view-mode-full .view-id-nhlbi_grants_foa.view-display-id-block_3 > .title-banner.view-content .flexItemImageThird, .node--type-news-mention.node--view-mode-full .node--type-individual-contact .title-banner.field--name-field-contact-methods .flexItemImageThird, .node--type-individual-contact .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-news-mention.node--view-mode-full .node--type-division.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-division.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-news-mention.node--view-mode-full .node--type-division.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-division.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-news-mention.node--view-mode-full .node--type-branch.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-branch.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-news-mention.node--view-mode-full .node--type-branch.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-branch.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-news-mention.node--view-mode-full .node--type-general.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-general.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-news-mention.node--view-mode-full .node--type-general.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-general.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-news-mention.node--view-mode-full .node--type-health-education-initiative.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-health-education-initiative.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-news-mention.node--view-mode-full .node--type-health-education-initiative.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThird, .node--type-news-mention.node--view-mode-full .node--type-committee .title-banner.field--name-field-card-text .flexItemImageThird, .node--type-committee .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-card-text .flexItemImageThird, .node--type-news-mention.node--view-mode-full .news-and-events--landing .title-banner.landing-social .flexItemImageThird, .news-and-events--landing .node--type-news-mention.node--view-mode-full .title-banner.landing-social .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-sfa-cards .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.locationMap.contact-location-map-container .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.locationMap .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.grants-and-training-card-wrapper .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.about-nhlbi-division-card-wrapper .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.hei-tools-icon-card-wrapper .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-grants-and-training-card .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-division-card .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-tool-icon-card .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-promotional-card .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-sv-promotional-cards .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-about-nhlbi-promotional-ca .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.strategic-vision-titleblock .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.ppg-titleblock-wrapper .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.ppg-guidelines-card-wrapper .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-human-subject-cards .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-section-card .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-highlight-card .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.health-topic-teaser-container .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.about-nhlbi-our-mission-wrapper .flexItemImageThird, .node--type-news-mention.node--view-mode-full .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .title-banner.director-bioCard .flexItemImageThird, .about-nhlbi-our-mission-wrapper .node--type-news-mention.node--view-mode-full .field--name-field-leadership > .title-banner.director-bioCard .flexItemImageThird, .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-consumer-nhlbi-publ .flexItemImageThird, .nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-health-consumer-nhlbi-publ .flexItemImageThird,
  .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-professionals-nhlbi .flexItemImageThird,
  .nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-health-professionals-nhlbi .flexItemImageThird, .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .title-banner.standard-teaser .flexItemImageThird, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageThird,
  .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .title-banner.standard-teaser .flexItemImageThird,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageThird, .node--type-news-mention.node--view-mode-full .publicationsBlock.view-nhlbi-publications > .title-banner.view-content .flexItemImageThird,
  .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-publications .flexItemImageThird, .node--type-news-mention.node--view-mode-full .healthEducationBlock .title-banner.standard-teaser .flexItemImageThird, .healthEducationBlock .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageThird, .node--type-news-mention.node--view-mode-full .systematicEvidenceReviewsBlock .title-banner.view-content .flexItemImageThird, .systematicEvidenceReviewsBlock .node--type-news-mention.node--view-mode-full .title-banner.view-content .flexItemImageThird,
  .node--type-news-mention.node--view-mode-full .clinicalPracticeGuidelinesBlock .title-banner.view-content .flexItemImageThird,
  .clinicalPracticeGuidelinesBlock .node--type-news-mention.node--view-mode-full .title-banner.view-content .flexItemImageThird,
  .node--type-news-mention.node--view-mode-full .publicationsAndFactSheetsBlock .title-banner.view-content .flexItemImageThird,
  .publicationsAndFactSheetsBlock .node--type-news-mention.node--view-mode-full .title-banner.view-content .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.rtFlexContainer .flexItemImageThird, .node--type-news-mention.node--view-mode-full .node--type-research-topic .title-banner.field--name-field-science-supplemental-page .flexItemImageThird, .node--type-research-topic .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-science-supplemental-page .flexItemImageThird, .node--type-news-mention.node--view-mode-full .node--type-research-topic .title-banner.researchTopicPublications .flexItemImageThird, .node--type-research-topic .node--type-news-mention.node--view-mode-full .title-banner.researchTopicPublications .flexItemImageThird, .node--type-news-mention.node--view-mode-full .node--type-research-topic .field--name-field-content > .field__item article.title-banner.listTeaserCard .flexItemImageThird, .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-full article.title-banner.listTeaserCard .flexItemImageThird, .node--type-news-mention.node--view-mode-full .node--type-research-topic .field--name-field-content > .field__item article.title-banner.standard-teaser .flexItemImageThird, .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-full article.title-banner.standard-teaser .flexItemImageThird,
  .node--type-news-mention.node--view-mode-full .node--type-research-topic .field--name-field-content > .field__item article.title-banner.newsEventsCard .flexItemImageThird,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-full article.title-banner.newsEventsCard .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.esi-feature-card .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.featured-science-instance-teaser-container .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.sfa-teaser-container .flexItemImageThird, .node--type-news-mention.node--view-mode-full .training-opportunity-card .title-banner.field--name-field-associated-people .flexItemImageThird, .training-opportunity-card .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-associated-people .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-featured-training-opportun .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-career-stages .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-workforce-development-card .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.node--type-update.node--view-mode-executive-teaser .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.news-and-events-titleblock .flexItemImageThird, .node--type-news-mention.node--view-mode-full .contact-box > .title-banner.field--name-field-contact-methods .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.leadership-container .flexItemImageThird, .node--type-news-mention.node--view-mode-full .leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .flexItemImageThird, .leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-additional-leadership .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.branch-leadership-container .flexItemImageThird, .node--type-news-mention.node--view-mode-full .branch-leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .flexItemImageThird, .branch-leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-additional-leadership .flexItemImageThird, .node--type-news-mention.node--view-mode-full .node--type-general .title-banner.field--name-field-related-publications .flexItemImageThird, .node--type-general .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-publications .flexItemImageThird, .node--type-news-mention.node--view-mode-full .node--type-general .title-banner.field--name-field-general-publications-rlt .flexItemImageThird, .node--type-general .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-general-publications-rlt .flexItemImageThird, .node--type-news-mention.node--view-mode-full .node--type-general .field--name-field-general-publications-rlt > .field__item .title-banner.standard-teaser .flexItemImageThird, .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageThird, .node--type-news-mention.node--view-mode-full .node--type-general .field--name-field-related-publications > .field__item .title-banner.standard-teaser .flexItemImageThird, .node--type-general .field--name-field-related-publications > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.objective-text-container .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.objective-list-container .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-goal-card .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.strategic-vision-landing-goals-wrapper .flexItemImageThird, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .title-banner.striped-container-wrapper .flexItemImageThird, .node--type-principal-investigator .node--type-news-mention.node--view-mode-full .title-banner.striped-container-wrapper .flexItemImageThird, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .title-banner.striped-container .flexItemImageThird, .node--type-principal-investigator .node--type-news-mention.node--view-mode-full .title-banner.striped-container .flexItemImageThird, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article.title-banner .flexItemImageThird, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-news-mention.node--view-mode-full article.title-banner .flexItemImageThird,
  .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article.title-banner .flexItemImageThird,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-news-mention.node--view-mode-full article.title-banner .flexItemImageThird, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .title-banner.standard-teaser.node--view-mode-short-teaser .flexItemImageThird, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser.node--view-mode-short-teaser .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-awards .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.registerSocialContainer .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.eventdatesLocationType .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.news-article-container .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageThird,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-press-release.node--view-mode-press-release-teaser .flexItemImageThird,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-events.node--view-mode-press-release-teaser .flexItemImageThird,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageThird,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageThird,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageThird,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.news-header-container .flexItemImageThird, .node--type-news-mention.node--view-mode-full .contacts-container .title-banner.field--name-field-contacts .flexItemImageThird, .contacts-container .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contacts .flexItemImageThird, .node--type-news-mention.node--view-mode-full .publicationsBox .title-banner.field--name-field-related-publications .flexItemImageThird, .publicationsBox .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-publications .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-primary-featured-item .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-additional-featured-items .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.homepage-health-topics-container .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.homepage-mission-areas-container .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.homepage-location-container .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-alumni .flexItemImageThird, .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-full .title-banner.nhlbi-publication-details-container .flexItemImageThird, .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.nhlbi-publication-details-container .flexItemImageThird,
  .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .flexItemImageThird,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.nhlbi-publication-details-container .flexItemImageThird, .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .flexItemImageThird, .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .flexItemImageThird,
  .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .flexItemImageThird,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .flexItemImageThird, .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .flexItemImageThird, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageThird,
  .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .flexItemImageThird,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageThird, .node--type-news-mention.node--view-mode-full .title-banner.flexcontainer .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.related-ht-ser-container .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-sfa-card .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-speaker .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-executives .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.standard-card-field .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-advisory-committees .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.contact-nhlbi-titleblock .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-cards .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-employment-opportunity-car .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.all-grants-foa-container .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-program-officers .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-full .view-id-nhlbi_grants_foa.view-display-id-block_2 > .title-banner.view-content .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-full .view-id-nhlbi_grants_foa.view-display-id-block_3 > .title-banner.view-content .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .node--type-individual-contact .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf, .node--type-individual-contact .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-full .node--type-division.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-division.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-full .node--type-division.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-division.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-full .node--type-branch.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-branch.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-full .node--type-branch.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-branch.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-full .node--type-general.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-general.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-full .node--type-general.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-general.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-full .node--type-health-education-initiative.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-health-education-initiative.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-full .node--type-health-education-initiative.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .node--type-committee .title-banner.field--name-field-card-text .flexItemImageThirdHalf, .node--type-committee .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-card-text .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .news-and-events--landing .title-banner.landing-social .flexItemImageThirdHalf, .news-and-events--landing .node--type-news-mention.node--view-mode-full .title-banner.landing-social .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-sfa-cards .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.locationMap.contact-location-map-container .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.locationMap .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.grants-and-training-card-wrapper .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.about-nhlbi-division-card-wrapper .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.hei-tools-icon-card-wrapper .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-grants-and-training-card .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-division-card .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-tool-icon-card .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-promotional-card .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-sv-promotional-cards .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-about-nhlbi-promotional-ca .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.strategic-vision-titleblock .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.ppg-titleblock-wrapper .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.ppg-guidelines-card-wrapper .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-human-subject-cards .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-section-card .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-highlight-card .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.health-topic-teaser-container .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.about-nhlbi-our-mission-wrapper .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .title-banner.director-bioCard .flexItemImageThirdHalf, .about-nhlbi-our-mission-wrapper .node--type-news-mention.node--view-mode-full .field--name-field-leadership > .title-banner.director-bioCard .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-consumer-nhlbi-publ .flexItemImageThirdHalf, .nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-health-consumer-nhlbi-publ .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-professionals-nhlbi .flexItemImageThirdHalf,
  .nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-health-professionals-nhlbi .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .title-banner.standard-teaser .flexItemImageThirdHalf, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .title-banner.standard-teaser .flexItemImageThirdHalf,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .publicationsBlock.view-nhlbi-publications > .title-banner.view-content .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-publications .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .healthEducationBlock .title-banner.standard-teaser .flexItemImageThirdHalf, .healthEducationBlock .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .systematicEvidenceReviewsBlock .title-banner.view-content .flexItemImageThirdHalf, .systematicEvidenceReviewsBlock .node--type-news-mention.node--view-mode-full .title-banner.view-content .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-full .clinicalPracticeGuidelinesBlock .title-banner.view-content .flexItemImageThirdHalf,
  .clinicalPracticeGuidelinesBlock .node--type-news-mention.node--view-mode-full .title-banner.view-content .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-full .publicationsAndFactSheetsBlock .title-banner.view-content .flexItemImageThirdHalf,
  .publicationsAndFactSheetsBlock .node--type-news-mention.node--view-mode-full .title-banner.view-content .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.rtFlexContainer .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .node--type-research-topic .title-banner.field--name-field-science-supplemental-page .flexItemImageThirdHalf, .node--type-research-topic .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-science-supplemental-page .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .node--type-research-topic .title-banner.researchTopicPublications .flexItemImageThirdHalf, .node--type-research-topic .node--type-news-mention.node--view-mode-full .title-banner.researchTopicPublications .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .node--type-research-topic .field--name-field-content > .field__item article.title-banner.listTeaserCard .flexItemImageThirdHalf, .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-full article.title-banner.listTeaserCard .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .node--type-research-topic .field--name-field-content > .field__item article.title-banner.standard-teaser .flexItemImageThirdHalf, .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-full article.title-banner.standard-teaser .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-full .node--type-research-topic .field--name-field-content > .field__item article.title-banner.newsEventsCard .flexItemImageThirdHalf,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-full article.title-banner.newsEventsCard .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.esi-feature-card .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.featured-science-instance-teaser-container .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.sfa-teaser-container .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .training-opportunity-card .title-banner.field--name-field-associated-people .flexItemImageThirdHalf, .training-opportunity-card .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-associated-people .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-featured-training-opportun .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-career-stages .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-workforce-development-card .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.node--type-update.node--view-mode-executive-teaser .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.news-and-events-titleblock .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .contact-box > .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.leadership-container .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .flexItemImageThirdHalf, .leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-additional-leadership .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.branch-leadership-container .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .branch-leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .flexItemImageThirdHalf, .branch-leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-additional-leadership .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .node--type-general .title-banner.field--name-field-related-publications .flexItemImageThirdHalf, .node--type-general .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-publications .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .node--type-general .title-banner.field--name-field-general-publications-rlt .flexItemImageThirdHalf, .node--type-general .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-general-publications-rlt .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .node--type-general .field--name-field-general-publications-rlt > .field__item .title-banner.standard-teaser .flexItemImageThirdHalf, .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .node--type-general .field--name-field-related-publications > .field__item .title-banner.standard-teaser .flexItemImageThirdHalf, .node--type-general .field--name-field-related-publications > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.objective-text-container .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.objective-list-container .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-goal-card .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.strategic-vision-landing-goals-wrapper .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .title-banner.striped-container-wrapper .flexItemImageThirdHalf, .node--type-principal-investigator .node--type-news-mention.node--view-mode-full .title-banner.striped-container-wrapper .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .title-banner.striped-container .flexItemImageThirdHalf, .node--type-principal-investigator .node--type-news-mention.node--view-mode-full .title-banner.striped-container .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article.title-banner .flexItemImageThirdHalf, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-news-mention.node--view-mode-full article.title-banner .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article.title-banner .flexItemImageThirdHalf,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-news-mention.node--view-mode-full article.title-banner .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .title-banner.standard-teaser.node--view-mode-short-teaser .flexItemImageThirdHalf, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser.node--view-mode-short-teaser .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-awards .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.registerSocialContainer .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.eventdatesLocationType .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.news-article-container .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-press-release.node--view-mode-press-release-teaser .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-events.node--view-mode-press-release-teaser .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.news-header-container .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .contacts-container .title-banner.field--name-field-contacts .flexItemImageThirdHalf, .contacts-container .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contacts .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .publicationsBox .title-banner.field--name-field-related-publications .flexItemImageThirdHalf, .publicationsBox .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-publications .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-primary-featured-item .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-additional-featured-items .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.homepage-health-topics-container .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.homepage-mission-areas-container .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.homepage-location-container .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-alumni .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-full .title-banner.nhlbi-publication-details-container .flexItemImageThirdHalf, .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.nhlbi-publication-details-container .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .flexItemImageThirdHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.nhlbi-publication-details-container .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .flexItemImageThirdHalf, .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .flexItemImageThirdHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .flexItemImageThirdHalf, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .flexItemImageThirdHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .title-banner.flexcontainer .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.related-ht-ser-container .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-sfa-card .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-speaker .hero-image,
  .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-executives .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.standard-card-field .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-advisory-committees .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.contact-nhlbi-titleblock .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-cards .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-employment-opportunity-car .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.all-grants-foa-container .hero-image,
  .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-program-officers .hero-image,
  .node--type-news-mention.node--view-mode-full .view-id-nhlbi_grants_foa.view-display-id-block_2 > .title-banner.view-content .hero-image,
  .node--type-news-mention.node--view-mode-full .view-id-nhlbi_grants_foa.view-display-id-block_3 > .title-banner.view-content .hero-image, .node--type-news-mention.node--view-mode-full .node--type-individual-contact .title-banner.field--name-field-contact-methods .hero-image, .node--type-individual-contact .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-news-mention.node--view-mode-full .node--type-division.node--view-mode-full .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-division.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-news-mention.node--view-mode-full .node--type-division.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-division.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-news-mention.node--view-mode-full .node--type-branch.node--view-mode-full .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-branch.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-news-mention.node--view-mode-full .node--type-branch.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-branch.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-news-mention.node--view-mode-full .node--type-general.node--view-mode-full .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-general.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-news-mention.node--view-mode-full .node--type-general.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-general.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-news-mention.node--view-mode-full .node--type-health-education-initiative.node--view-mode-full .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-health-education-initiative.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-news-mention.node--view-mode-full .node--type-health-education-initiative.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contact-methods .hero-image, .node--type-news-mention.node--view-mode-full .node--type-committee .title-banner.field--name-field-card-text .hero-image, .node--type-committee .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-card-text .hero-image, .node--type-news-mention.node--view-mode-full .news-and-events--landing .title-banner.landing-social .hero-image, .news-and-events--landing .node--type-news-mention.node--view-mode-full .title-banner.landing-social .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-sfa-cards .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.locationMap.contact-location-map-container .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.locationMap .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.grants-and-training-card-wrapper .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.about-nhlbi-division-card-wrapper .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.hei-tools-icon-card-wrapper .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-grants-and-training-card .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-division-card .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-tool-icon-card .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-promotional-card .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-sv-promotional-cards .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-about-nhlbi-promotional-ca .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.strategic-vision-titleblock .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.ppg-titleblock-wrapper .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.ppg-guidelines-card-wrapper .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-human-subject-cards .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-section-card .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-highlight-card .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.health-topic-teaser-container .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.about-nhlbi-our-mission-wrapper .hero-image, .node--type-news-mention.node--view-mode-full .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .title-banner.director-bioCard .hero-image, .about-nhlbi-our-mission-wrapper .node--type-news-mention.node--view-mode-full .field--name-field-leadership > .title-banner.director-bioCard .hero-image, .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-consumer-nhlbi-publ .hero-image, .nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-health-consumer-nhlbi-publ .hero-image,
  .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-professionals-nhlbi .hero-image,
  .nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-health-professionals-nhlbi .hero-image, .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .title-banner.standard-teaser .hero-image, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .hero-image,
  .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .title-banner.standard-teaser .hero-image,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .hero-image, .node--type-news-mention.node--view-mode-full .publicationsBlock.view-nhlbi-publications > .title-banner.view-content .hero-image,
  .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-publications .hero-image, .node--type-news-mention.node--view-mode-full .healthEducationBlock .title-banner.standard-teaser .hero-image, .healthEducationBlock .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .hero-image, .node--type-news-mention.node--view-mode-full .systematicEvidenceReviewsBlock .title-banner.view-content .hero-image, .systematicEvidenceReviewsBlock .node--type-news-mention.node--view-mode-full .title-banner.view-content .hero-image,
  .node--type-news-mention.node--view-mode-full .clinicalPracticeGuidelinesBlock .title-banner.view-content .hero-image,
  .clinicalPracticeGuidelinesBlock .node--type-news-mention.node--view-mode-full .title-banner.view-content .hero-image,
  .node--type-news-mention.node--view-mode-full .publicationsAndFactSheetsBlock .title-banner.view-content .hero-image,
  .publicationsAndFactSheetsBlock .node--type-news-mention.node--view-mode-full .title-banner.view-content .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.rtFlexContainer .hero-image, .node--type-news-mention.node--view-mode-full .node--type-research-topic .title-banner.field--name-field-science-supplemental-page .hero-image, .node--type-research-topic .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-science-supplemental-page .hero-image, .node--type-news-mention.node--view-mode-full .node--type-research-topic .title-banner.researchTopicPublications .hero-image, .node--type-research-topic .node--type-news-mention.node--view-mode-full .title-banner.researchTopicPublications .hero-image, .node--type-news-mention.node--view-mode-full .node--type-research-topic .field--name-field-content > .field__item article.title-banner.listTeaserCard .hero-image, .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-full article.title-banner.listTeaserCard .hero-image, .node--type-news-mention.node--view-mode-full .node--type-research-topic .field--name-field-content > .field__item article.title-banner.standard-teaser .hero-image, .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-full article.title-banner.standard-teaser .hero-image,
  .node--type-news-mention.node--view-mode-full .node--type-research-topic .field--name-field-content > .field__item article.title-banner.newsEventsCard .hero-image,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-full article.title-banner.newsEventsCard .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.esi-feature-card .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.featured-science-instance-teaser-container .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.sfa-teaser-container .hero-image, .node--type-news-mention.node--view-mode-full .training-opportunity-card .title-banner.field--name-field-associated-people .hero-image, .training-opportunity-card .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-associated-people .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-featured-training-opportun .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-career-stages .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-workforce-development-card .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.node--type-update.node--view-mode-executive-teaser .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.news-and-events-titleblock .hero-image, .node--type-news-mention.node--view-mode-full .contact-box > .title-banner.field--name-field-contact-methods .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.leadership-container .hero-image, .node--type-news-mention.node--view-mode-full .leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .hero-image, .leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-additional-leadership .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.branch-leadership-container .hero-image, .node--type-news-mention.node--view-mode-full .branch-leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .hero-image, .branch-leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-additional-leadership .hero-image, .node--type-news-mention.node--view-mode-full .node--type-general .title-banner.field--name-field-related-publications .hero-image, .node--type-general .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-publications .hero-image, .node--type-news-mention.node--view-mode-full .node--type-general .title-banner.field--name-field-general-publications-rlt .hero-image, .node--type-general .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-general-publications-rlt .hero-image, .node--type-news-mention.node--view-mode-full .node--type-general .field--name-field-general-publications-rlt > .field__item .title-banner.standard-teaser .hero-image, .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .hero-image, .node--type-news-mention.node--view-mode-full .node--type-general .field--name-field-related-publications > .field__item .title-banner.standard-teaser .hero-image, .node--type-general .field--name-field-related-publications > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.objective-text-container .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.objective-list-container .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-goal-card .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.strategic-vision-landing-goals-wrapper .hero-image, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .title-banner.striped-container-wrapper .hero-image, .node--type-principal-investigator .node--type-news-mention.node--view-mode-full .title-banner.striped-container-wrapper .hero-image, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .title-banner.striped-container .hero-image, .node--type-principal-investigator .node--type-news-mention.node--view-mode-full .title-banner.striped-container .hero-image, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article.title-banner .hero-image, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-news-mention.node--view-mode-full article.title-banner .hero-image,
  .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article.title-banner .hero-image,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-news-mention.node--view-mode-full article.title-banner .hero-image, .node--type-news-mention.node--view-mode-full .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .title-banner.standard-teaser.node--view-mode-short-teaser .hero-image, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser.node--view-mode-short-teaser .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-awards .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.registerSocialContainer .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.eventdatesLocationType .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.news-article-container .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.node--type-feature-article.node--view-mode-press-release-teaser .hero-image,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-press-release.node--view-mode-press-release-teaser .hero-image,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-events.node--view-mode-press-release-teaser .hero-image,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-feature-article.node--view-mode-hp-press-release-teaser .hero-image,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-press-release.node--view-mode-hp-press-release-teaser .hero-image,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-events.node--view-mode-hp-press-release-teaser .hero-image,
  .node--type-news-mention.node--view-mode-full .title-banner.node--type-news-mention.node--view-mode-hp-press-release-teaser .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.news-header-container .hero-image, .node--type-news-mention.node--view-mode-full .contacts-container .title-banner.field--name-field-contacts .hero-image, .contacts-container .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-contacts .hero-image, .node--type-news-mention.node--view-mode-full .publicationsBox .title-banner.field--name-field-related-publications .hero-image, .publicationsBox .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-publications .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-primary-featured-item .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-additional-featured-items .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.homepage-health-topics-container .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.homepage-mission-areas-container .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.homepage-location-container .hero-image, .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-alumni .hero-image, .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-full .title-banner.nhlbi-publication-details-container .hero-image, .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.nhlbi-publication-details-container .hero-image,
  .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .hero-image,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.nhlbi-publication-details-container .hero-image, .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .hero-image, .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .hero-image,
  .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .hero-image,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .hero-image, .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .hero-image, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .hero-image,
  .node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .hero-image,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-full .title-banner.standard-teaser .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.flexcontainer .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.related-ht-ser-container .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-sfa-card .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-speaker .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-executives .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-card-field .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-advisory-committees .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.contact-nhlbi-titleblock .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-cards .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-employment-opportunity-car .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.all-grants-foa-container .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-program-officers .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .view-id-nhlbi_grants_foa.view-display-id-block_2 > .title-banner.view-content .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .view-id-nhlbi_grants_foa.view-display-id-block_3 > .title-banner.view-content .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .node--type-individual-contact .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-individual-contact .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .node--type-division.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-division.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .node--type-division.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-division.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .node--type-branch.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-branch.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .node--type-branch.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-branch.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-general.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-general.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .node--type-health-education-initiative.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-health-education-initiative.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .node--type-health-education-initiative.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .node--type-committee .title-banner.field--name-field-card-text .flexItemImage,
  .node--type-committee .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-card-text .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .news-and-events--landing .title-banner.landing-social .flexItemImage,
  .news-and-events--landing .node--type-news-mention.node--view-mode-subscribe .title-banner.landing-social .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-sfa-cards .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.locationMap.contact-location-map-container .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.locationMap .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.grants-and-training-card-wrapper .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.about-nhlbi-division-card-wrapper .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.hei-tools-icon-card-wrapper .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-grants-and-training-card .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-division-card .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-tool-icon-card .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-promotional-card .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-sv-promotional-cards .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-about-nhlbi-promotional-ca .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.strategic-vision-titleblock .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.ppg-titleblock-wrapper .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.ppg-guidelines-card-wrapper .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-human-subject-cards .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-section-card .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-highlight-card .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.health-topic-teaser-container .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.about-nhlbi-our-mission-wrapper .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .title-banner.director-bioCard .flexItemImage,
  .about-nhlbi-our-mission-wrapper .node--type-news-mention.node--view-mode-subscribe .field--name-field-leadership > .title-banner.director-bioCard .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-consumer-nhlbi-publ .flexItemImage,
  .nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-health-consumer-nhlbi-publ .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-professionals-nhlbi .flexItemImage,
  .nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-health-professionals-nhlbi .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .title-banner.standard-teaser .flexItemImage,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .title-banner.standard-teaser .flexItemImage,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .publicationsBlock.view-nhlbi-publications > .title-banner.view-content .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-publications .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .healthEducationBlock .title-banner.standard-teaser .flexItemImage,
  .healthEducationBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .systematicEvidenceReviewsBlock .title-banner.view-content .flexItemImage,
  .systematicEvidenceReviewsBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.view-content .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .clinicalPracticeGuidelinesBlock .title-banner.view-content .flexItemImage,
  .clinicalPracticeGuidelinesBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.view-content .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .publicationsAndFactSheetsBlock .title-banner.view-content .flexItemImage,
  .publicationsAndFactSheetsBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.view-content .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.rtFlexContainer .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .title-banner.field--name-field-science-supplemental-page .flexItemImage,
  .node--type-research-topic .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-science-supplemental-page .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .title-banner.researchTopicPublications .flexItemImage,
  .node--type-research-topic .node--type-news-mention.node--view-mode-subscribe .title-banner.researchTopicPublications .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .field--name-field-content > .field__item article.title-banner.listTeaserCard .flexItemImage,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner.listTeaserCard .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .field--name-field-content > .field__item article.title-banner.standard-teaser .flexItemImage,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner.standard-teaser .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .field--name-field-content > .field__item article.title-banner.newsEventsCard .flexItemImage,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner.newsEventsCard .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.esi-feature-card .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.featured-science-instance-teaser-container .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.sfa-teaser-container .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .training-opportunity-card .title-banner.field--name-field-associated-people .flexItemImage,
  .training-opportunity-card .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-associated-people .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-featured-training-opportun .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-career-stages .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-workforce-development-card .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-update.node--view-mode-executive-teaser .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.news-and-events-titleblock .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .contact-box > .title-banner.field--name-field-contact-methods .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.leadership-container .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .flexItemImage,
  .leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-additional-leadership .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.branch-leadership-container .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .branch-leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .flexItemImage,
  .branch-leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-additional-leadership .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general .title-banner.field--name-field-related-publications .flexItemImage,
  .node--type-general .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-publications .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general .title-banner.field--name-field-general-publications-rlt .flexItemImage,
  .node--type-general .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-general-publications-rlt .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general .field--name-field-general-publications-rlt > .field__item .title-banner.standard-teaser .flexItemImage,
  .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general .field--name-field-related-publications > .field__item .title-banner.standard-teaser .flexItemImage,
  .node--type-general .field--name-field-related-publications > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.objective-text-container .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.objective-list-container .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-goal-card .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.strategic-vision-landing-goals-wrapper .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .title-banner.striped-container-wrapper .flexItemImage,
  .node--type-principal-investigator .node--type-news-mention.node--view-mode-subscribe .title-banner.striped-container-wrapper .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .title-banner.striped-container .flexItemImage,
  .node--type-principal-investigator .node--type-news-mention.node--view-mode-subscribe .title-banner.striped-container .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article.title-banner .flexItemImage,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-news-mention.node--view-mode-subscribe article.title-banner .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article.title-banner .flexItemImage,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-news-mention.node--view-mode-subscribe article.title-banner .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .title-banner.standard-teaser.node--view-mode-short-teaser .flexItemImage,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser.node--view-mode-short-teaser .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-awards .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.registerSocialContainer .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.eventdatesLocationType .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.news-article-container .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-feature-article.node--view-mode-press-release-teaser .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-press-release.node--view-mode-press-release-teaser .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-events.node--view-mode-press-release-teaser .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-events.node--view-mode-hp-press-release-teaser .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.news-header-container .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .contacts-container .title-banner.field--name-field-contacts .flexItemImage,
  .contacts-container .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contacts .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .publicationsBox .title-banner.field--name-field-related-publications .flexItemImage,
  .publicationsBox .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-publications .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-primary-featured-item .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-additional-featured-items .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.homepage-health-topics-container .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.homepage-mission-areas-container .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.homepage-location-container .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-alumni .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-full .title-banner.nhlbi-publication-details-container .flexItemImage,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .flexItemImage,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .flexItemImage,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .flexItemImage,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .flexItemImage,
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .flexItemImage,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.flexcontainer .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.related-ht-ser-container .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-sfa-card .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-speaker .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-executives .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-card-field .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-advisory-committees .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.contact-nhlbi-titleblock .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-cards .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-employment-opportunity-car .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.all-grants-foa-container .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-program-officers .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .view-id-nhlbi_grants_foa.view-display-id-block_2 > .title-banner.view-content .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .view-id-nhlbi_grants_foa.view-display-id-block_3 > .title-banner.view-content .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-individual-contact .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-individual-contact .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-division.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-division.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-division.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-division.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-branch.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-branch.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-branch.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-branch.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-general.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-general.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-health-education-initiative.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-health-education-initiative.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-health-education-initiative.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-committee .title-banner.field--name-field-card-text .flexItemImageHalf,
  .node--type-committee .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-card-text .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .news-and-events--landing .title-banner.landing-social .flexItemImageHalf,
  .news-and-events--landing .node--type-news-mention.node--view-mode-subscribe .title-banner.landing-social .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-sfa-cards .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.locationMap.contact-location-map-container .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.locationMap .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.grants-and-training-card-wrapper .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.about-nhlbi-division-card-wrapper .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.hei-tools-icon-card-wrapper .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-grants-and-training-card .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-division-card .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-tool-icon-card .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-promotional-card .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-sv-promotional-cards .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-about-nhlbi-promotional-ca .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.strategic-vision-titleblock .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.ppg-titleblock-wrapper .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.ppg-guidelines-card-wrapper .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-human-subject-cards .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-section-card .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-highlight-card .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.health-topic-teaser-container .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.about-nhlbi-our-mission-wrapper .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .title-banner.director-bioCard .flexItemImageHalf,
  .about-nhlbi-our-mission-wrapper .node--type-news-mention.node--view-mode-subscribe .field--name-field-leadership > .title-banner.director-bioCard .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-consumer-nhlbi-publ .flexItemImageHalf,
  .nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-health-consumer-nhlbi-publ .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-professionals-nhlbi .flexItemImageHalf,
  .nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-health-professionals-nhlbi .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .title-banner.standard-teaser .flexItemImageHalf,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .title-banner.standard-teaser .flexItemImageHalf,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .publicationsBlock.view-nhlbi-publications > .title-banner.view-content .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-publications .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .healthEducationBlock .title-banner.standard-teaser .flexItemImageHalf,
  .healthEducationBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .systematicEvidenceReviewsBlock .title-banner.view-content .flexItemImageHalf,
  .systematicEvidenceReviewsBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.view-content .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .clinicalPracticeGuidelinesBlock .title-banner.view-content .flexItemImageHalf,
  .clinicalPracticeGuidelinesBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.view-content .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .publicationsAndFactSheetsBlock .title-banner.view-content .flexItemImageHalf,
  .publicationsAndFactSheetsBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.view-content .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.rtFlexContainer .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .title-banner.field--name-field-science-supplemental-page .flexItemImageHalf,
  .node--type-research-topic .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-science-supplemental-page .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .title-banner.researchTopicPublications .flexItemImageHalf,
  .node--type-research-topic .node--type-news-mention.node--view-mode-subscribe .title-banner.researchTopicPublications .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .field--name-field-content > .field__item article.title-banner.listTeaserCard .flexItemImageHalf,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner.listTeaserCard .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .field--name-field-content > .field__item article.title-banner.standard-teaser .flexItemImageHalf,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner.standard-teaser .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .field--name-field-content > .field__item article.title-banner.newsEventsCard .flexItemImageHalf,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner.newsEventsCard .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.esi-feature-card .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.featured-science-instance-teaser-container .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.sfa-teaser-container .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .training-opportunity-card .title-banner.field--name-field-associated-people .flexItemImageHalf,
  .training-opportunity-card .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-associated-people .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-featured-training-opportun .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-career-stages .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-workforce-development-card .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-update.node--view-mode-executive-teaser .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.news-and-events-titleblock .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .contact-box > .title-banner.field--name-field-contact-methods .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.leadership-container .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .flexItemImageHalf,
  .leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-additional-leadership .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.branch-leadership-container .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .branch-leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .flexItemImageHalf,
  .branch-leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-additional-leadership .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general .title-banner.field--name-field-related-publications .flexItemImageHalf,
  .node--type-general .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-publications .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general .title-banner.field--name-field-general-publications-rlt .flexItemImageHalf,
  .node--type-general .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-general-publications-rlt .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general .field--name-field-general-publications-rlt > .field__item .title-banner.standard-teaser .flexItemImageHalf,
  .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general .field--name-field-related-publications > .field__item .title-banner.standard-teaser .flexItemImageHalf,
  .node--type-general .field--name-field-related-publications > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.objective-text-container .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.objective-list-container .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-goal-card .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.strategic-vision-landing-goals-wrapper .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .title-banner.striped-container-wrapper .flexItemImageHalf,
  .node--type-principal-investigator .node--type-news-mention.node--view-mode-subscribe .title-banner.striped-container-wrapper .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .title-banner.striped-container .flexItemImageHalf,
  .node--type-principal-investigator .node--type-news-mention.node--view-mode-subscribe .title-banner.striped-container .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article.title-banner .flexItemImageHalf,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-news-mention.node--view-mode-subscribe article.title-banner .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article.title-banner .flexItemImageHalf,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-news-mention.node--view-mode-subscribe article.title-banner .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .title-banner.standard-teaser.node--view-mode-short-teaser .flexItemImageHalf,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser.node--view-mode-short-teaser .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-awards .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.registerSocialContainer .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.eventdatesLocationType .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.news-article-container .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-press-release.node--view-mode-press-release-teaser .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-events.node--view-mode-press-release-teaser .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.news-header-container .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .contacts-container .title-banner.field--name-field-contacts .flexItemImageHalf,
  .contacts-container .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contacts .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .publicationsBox .title-banner.field--name-field-related-publications .flexItemImageHalf,
  .publicationsBox .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-publications .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-primary-featured-item .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-additional-featured-items .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.homepage-health-topics-container .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.homepage-mission-areas-container .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.homepage-location-container .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-alumni .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-full .title-banner.nhlbi-publication-details-container .flexItemImageHalf,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .flexItemImageHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .flexItemImageHalf,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .flexItemImageHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .flexItemImageHalf,
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .flexItemImageHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.flexcontainer .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.related-ht-ser-container .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-sfa-card .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-speaker .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-executives .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-card-field .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-advisory-committees .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.contact-nhlbi-titleblock .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-cards .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-employment-opportunity-car .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.all-grants-foa-container .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-program-officers .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .view-id-nhlbi_grants_foa.view-display-id-block_2 > .title-banner.view-content .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .view-id-nhlbi_grants_foa.view-display-id-block_3 > .title-banner.view-content .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-individual-contact .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-individual-contact .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-division.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-division.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-division.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-division.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-branch.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-branch.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-branch.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-branch.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-general.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-general.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-health-education-initiative.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-health-education-initiative.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-health-education-initiative.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-committee .title-banner.field--name-field-card-text .flexItemImageTenth,
  .node--type-committee .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-card-text .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .news-and-events--landing .title-banner.landing-social .flexItemImageTenth,
  .news-and-events--landing .node--type-news-mention.node--view-mode-subscribe .title-banner.landing-social .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-sfa-cards .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.locationMap.contact-location-map-container .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.locationMap .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.grants-and-training-card-wrapper .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.about-nhlbi-division-card-wrapper .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.hei-tools-icon-card-wrapper .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-grants-and-training-card .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-division-card .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-tool-icon-card .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-promotional-card .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-sv-promotional-cards .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-about-nhlbi-promotional-ca .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.strategic-vision-titleblock .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.ppg-titleblock-wrapper .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.ppg-guidelines-card-wrapper .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-human-subject-cards .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-section-card .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-highlight-card .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.health-topic-teaser-container .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.about-nhlbi-our-mission-wrapper .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .title-banner.director-bioCard .flexItemImageTenth,
  .about-nhlbi-our-mission-wrapper .node--type-news-mention.node--view-mode-subscribe .field--name-field-leadership > .title-banner.director-bioCard .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-consumer-nhlbi-publ .flexItemImageTenth,
  .nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-health-consumer-nhlbi-publ .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-professionals-nhlbi .flexItemImageTenth,
  .nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-health-professionals-nhlbi .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .title-banner.standard-teaser .flexItemImageTenth,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .title-banner.standard-teaser .flexItemImageTenth,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .publicationsBlock.view-nhlbi-publications > .title-banner.view-content .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-publications .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .healthEducationBlock .title-banner.standard-teaser .flexItemImageTenth,
  .healthEducationBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .systematicEvidenceReviewsBlock .title-banner.view-content .flexItemImageTenth,
  .systematicEvidenceReviewsBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.view-content .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .clinicalPracticeGuidelinesBlock .title-banner.view-content .flexItemImageTenth,
  .clinicalPracticeGuidelinesBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.view-content .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .publicationsAndFactSheetsBlock .title-banner.view-content .flexItemImageTenth,
  .publicationsAndFactSheetsBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.view-content .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.rtFlexContainer .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .title-banner.field--name-field-science-supplemental-page .flexItemImageTenth,
  .node--type-research-topic .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-science-supplemental-page .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .title-banner.researchTopicPublications .flexItemImageTenth,
  .node--type-research-topic .node--type-news-mention.node--view-mode-subscribe .title-banner.researchTopicPublications .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .field--name-field-content > .field__item article.title-banner.listTeaserCard .flexItemImageTenth,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner.listTeaserCard .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .field--name-field-content > .field__item article.title-banner.standard-teaser .flexItemImageTenth,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner.standard-teaser .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .field--name-field-content > .field__item article.title-banner.newsEventsCard .flexItemImageTenth,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner.newsEventsCard .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.esi-feature-card .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.featured-science-instance-teaser-container .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.sfa-teaser-container .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .training-opportunity-card .title-banner.field--name-field-associated-people .flexItemImageTenth,
  .training-opportunity-card .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-associated-people .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-featured-training-opportun .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-career-stages .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-workforce-development-card .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-update.node--view-mode-executive-teaser .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.news-and-events-titleblock .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .contact-box > .title-banner.field--name-field-contact-methods .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.leadership-container .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .flexItemImageTenth,
  .leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-additional-leadership .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.branch-leadership-container .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .branch-leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .flexItemImageTenth,
  .branch-leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-additional-leadership .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general .title-banner.field--name-field-related-publications .flexItemImageTenth,
  .node--type-general .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-publications .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general .title-banner.field--name-field-general-publications-rlt .flexItemImageTenth,
  .node--type-general .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-general-publications-rlt .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general .field--name-field-general-publications-rlt > .field__item .title-banner.standard-teaser .flexItemImageTenth,
  .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general .field--name-field-related-publications > .field__item .title-banner.standard-teaser .flexItemImageTenth,
  .node--type-general .field--name-field-related-publications > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.objective-text-container .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.objective-list-container .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-goal-card .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.strategic-vision-landing-goals-wrapper .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .title-banner.striped-container-wrapper .flexItemImageTenth,
  .node--type-principal-investigator .node--type-news-mention.node--view-mode-subscribe .title-banner.striped-container-wrapper .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .title-banner.striped-container .flexItemImageTenth,
  .node--type-principal-investigator .node--type-news-mention.node--view-mode-subscribe .title-banner.striped-container .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article.title-banner .flexItemImageTenth,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-news-mention.node--view-mode-subscribe article.title-banner .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article.title-banner .flexItemImageTenth,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-news-mention.node--view-mode-subscribe article.title-banner .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .title-banner.standard-teaser.node--view-mode-short-teaser .flexItemImageTenth,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser.node--view-mode-short-teaser .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-awards .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.registerSocialContainer .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.eventdatesLocationType .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.news-article-container .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-press-release.node--view-mode-press-release-teaser .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-events.node--view-mode-press-release-teaser .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.news-header-container .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .contacts-container .title-banner.field--name-field-contacts .flexItemImageTenth,
  .contacts-container .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contacts .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .publicationsBox .title-banner.field--name-field-related-publications .flexItemImageTenth,
  .publicationsBox .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-publications .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-primary-featured-item .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-additional-featured-items .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.homepage-health-topics-container .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.homepage-mission-areas-container .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.homepage-location-container .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-alumni .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-full .title-banner.nhlbi-publication-details-container .flexItemImageTenth,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .flexItemImageTenth,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .flexItemImageTenth,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .flexItemImageTenth,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .flexItemImageTenth,
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .flexItemImageTenth,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.flexcontainer .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.related-ht-ser-container .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-sfa-card .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-speaker .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-executives .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-card-field .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-advisory-committees .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.contact-nhlbi-titleblock .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-cards .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-employment-opportunity-car .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.all-grants-foa-container .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-program-officers .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .view-id-nhlbi_grants_foa.view-display-id-block_2 > .title-banner.view-content .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .view-id-nhlbi_grants_foa.view-display-id-block_3 > .title-banner.view-content .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-individual-contact .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-individual-contact .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-division.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-division.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-division.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-division.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-branch.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-branch.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-branch.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-branch.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-general.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-general.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-health-education-initiative.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-health-education-initiative.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-health-education-initiative.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-committee .title-banner.field--name-field-card-text .flexItemImageFourth,
  .node--type-committee .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-card-text .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .news-and-events--landing .title-banner.landing-social .flexItemImageFourth,
  .news-and-events--landing .node--type-news-mention.node--view-mode-subscribe .title-banner.landing-social .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-sfa-cards .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.locationMap.contact-location-map-container .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.locationMap .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.grants-and-training-card-wrapper .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.about-nhlbi-division-card-wrapper .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.hei-tools-icon-card-wrapper .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-grants-and-training-card .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-division-card .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-tool-icon-card .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-promotional-card .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-sv-promotional-cards .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-about-nhlbi-promotional-ca .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.strategic-vision-titleblock .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.ppg-titleblock-wrapper .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.ppg-guidelines-card-wrapper .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-human-subject-cards .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-section-card .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-highlight-card .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.health-topic-teaser-container .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.about-nhlbi-our-mission-wrapper .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .title-banner.director-bioCard .flexItemImageFourth,
  .about-nhlbi-our-mission-wrapper .node--type-news-mention.node--view-mode-subscribe .field--name-field-leadership > .title-banner.director-bioCard .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-consumer-nhlbi-publ .flexItemImageFourth,
  .nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-health-consumer-nhlbi-publ .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-professionals-nhlbi .flexItemImageFourth,
  .nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-health-professionals-nhlbi .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .title-banner.standard-teaser .flexItemImageFourth,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .title-banner.standard-teaser .flexItemImageFourth,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .publicationsBlock.view-nhlbi-publications > .title-banner.view-content .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-publications .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .healthEducationBlock .title-banner.standard-teaser .flexItemImageFourth,
  .healthEducationBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .systematicEvidenceReviewsBlock .title-banner.view-content .flexItemImageFourth,
  .systematicEvidenceReviewsBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.view-content .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .clinicalPracticeGuidelinesBlock .title-banner.view-content .flexItemImageFourth,
  .clinicalPracticeGuidelinesBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.view-content .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .publicationsAndFactSheetsBlock .title-banner.view-content .flexItemImageFourth,
  .publicationsAndFactSheetsBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.view-content .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.rtFlexContainer .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .title-banner.field--name-field-science-supplemental-page .flexItemImageFourth,
  .node--type-research-topic .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-science-supplemental-page .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .title-banner.researchTopicPublications .flexItemImageFourth,
  .node--type-research-topic .node--type-news-mention.node--view-mode-subscribe .title-banner.researchTopicPublications .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .field--name-field-content > .field__item article.title-banner.listTeaserCard .flexItemImageFourth,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner.listTeaserCard .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .field--name-field-content > .field__item article.title-banner.standard-teaser .flexItemImageFourth,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner.standard-teaser .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .field--name-field-content > .field__item article.title-banner.newsEventsCard .flexItemImageFourth,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner.newsEventsCard .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.esi-feature-card .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.featured-science-instance-teaser-container .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.sfa-teaser-container .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .training-opportunity-card .title-banner.field--name-field-associated-people .flexItemImageFourth,
  .training-opportunity-card .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-associated-people .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-featured-training-opportun .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-career-stages .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-workforce-development-card .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-update.node--view-mode-executive-teaser .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.news-and-events-titleblock .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .contact-box > .title-banner.field--name-field-contact-methods .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.leadership-container .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .flexItemImageFourth,
  .leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-additional-leadership .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.branch-leadership-container .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .branch-leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .flexItemImageFourth,
  .branch-leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-additional-leadership .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general .title-banner.field--name-field-related-publications .flexItemImageFourth,
  .node--type-general .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-publications .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general .title-banner.field--name-field-general-publications-rlt .flexItemImageFourth,
  .node--type-general .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-general-publications-rlt .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general .field--name-field-general-publications-rlt > .field__item .title-banner.standard-teaser .flexItemImageFourth,
  .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general .field--name-field-related-publications > .field__item .title-banner.standard-teaser .flexItemImageFourth,
  .node--type-general .field--name-field-related-publications > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.objective-text-container .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.objective-list-container .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-goal-card .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.strategic-vision-landing-goals-wrapper .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .title-banner.striped-container-wrapper .flexItemImageFourth,
  .node--type-principal-investigator .node--type-news-mention.node--view-mode-subscribe .title-banner.striped-container-wrapper .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .title-banner.striped-container .flexItemImageFourth,
  .node--type-principal-investigator .node--type-news-mention.node--view-mode-subscribe .title-banner.striped-container .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article.title-banner .flexItemImageFourth,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-news-mention.node--view-mode-subscribe article.title-banner .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article.title-banner .flexItemImageFourth,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-news-mention.node--view-mode-subscribe article.title-banner .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .title-banner.standard-teaser.node--view-mode-short-teaser .flexItemImageFourth,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser.node--view-mode-short-teaser .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-awards .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.registerSocialContainer .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.eventdatesLocationType .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.news-article-container .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-press-release.node--view-mode-press-release-teaser .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-events.node--view-mode-press-release-teaser .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.news-header-container .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .contacts-container .title-banner.field--name-field-contacts .flexItemImageFourth,
  .contacts-container .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contacts .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .publicationsBox .title-banner.field--name-field-related-publications .flexItemImageFourth,
  .publicationsBox .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-publications .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-primary-featured-item .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-additional-featured-items .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.homepage-health-topics-container .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.homepage-mission-areas-container .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.homepage-location-container .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-alumni .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-full .title-banner.nhlbi-publication-details-container .flexItemImageFourth,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .flexItemImageFourth,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .flexItemImageFourth,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .flexItemImageFourth,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .flexItemImageFourth,
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .flexItemImageFourth,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageFourth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.flexcontainer .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.related-ht-ser-container .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-sfa-card .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-speaker .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-executives .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-card-field .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-advisory-committees .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.contact-nhlbi-titleblock .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-cards .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-employment-opportunity-car .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.all-grants-foa-container .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-program-officers .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .view-id-nhlbi_grants_foa.view-display-id-block_2 > .title-banner.view-content .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .view-id-nhlbi_grants_foa.view-display-id-block_3 > .title-banner.view-content .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .node--type-individual-contact .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-individual-contact .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .node--type-division.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-division.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .node--type-division.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-division.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .node--type-branch.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-branch.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .node--type-branch.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-branch.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-general.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-general.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .node--type-health-education-initiative.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-health-education-initiative.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .node--type-health-education-initiative.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .node--type-committee .title-banner.field--name-field-card-text .flexItemImageThird,
  .node--type-committee .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-card-text .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .news-and-events--landing .title-banner.landing-social .flexItemImageThird,
  .news-and-events--landing .node--type-news-mention.node--view-mode-subscribe .title-banner.landing-social .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-sfa-cards .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.locationMap.contact-location-map-container .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.locationMap .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.grants-and-training-card-wrapper .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.about-nhlbi-division-card-wrapper .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.hei-tools-icon-card-wrapper .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-grants-and-training-card .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-division-card .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-tool-icon-card .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-promotional-card .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-sv-promotional-cards .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-about-nhlbi-promotional-ca .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.strategic-vision-titleblock .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.ppg-titleblock-wrapper .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.ppg-guidelines-card-wrapper .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-human-subject-cards .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-section-card .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-highlight-card .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.health-topic-teaser-container .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.about-nhlbi-our-mission-wrapper .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .title-banner.director-bioCard .flexItemImageThird,
  .about-nhlbi-our-mission-wrapper .node--type-news-mention.node--view-mode-subscribe .field--name-field-leadership > .title-banner.director-bioCard .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-consumer-nhlbi-publ .flexItemImageThird,
  .nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-health-consumer-nhlbi-publ .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-professionals-nhlbi .flexItemImageThird,
  .nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-health-professionals-nhlbi .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .title-banner.standard-teaser .flexItemImageThird,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .title-banner.standard-teaser .flexItemImageThird,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .publicationsBlock.view-nhlbi-publications > .title-banner.view-content .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-publications .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .healthEducationBlock .title-banner.standard-teaser .flexItemImageThird,
  .healthEducationBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .systematicEvidenceReviewsBlock .title-banner.view-content .flexItemImageThird,
  .systematicEvidenceReviewsBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.view-content .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .clinicalPracticeGuidelinesBlock .title-banner.view-content .flexItemImageThird,
  .clinicalPracticeGuidelinesBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.view-content .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .publicationsAndFactSheetsBlock .title-banner.view-content .flexItemImageThird,
  .publicationsAndFactSheetsBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.view-content .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.rtFlexContainer .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .title-banner.field--name-field-science-supplemental-page .flexItemImageThird,
  .node--type-research-topic .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-science-supplemental-page .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .title-banner.researchTopicPublications .flexItemImageThird,
  .node--type-research-topic .node--type-news-mention.node--view-mode-subscribe .title-banner.researchTopicPublications .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .field--name-field-content > .field__item article.title-banner.listTeaserCard .flexItemImageThird,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner.listTeaserCard .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .field--name-field-content > .field__item article.title-banner.standard-teaser .flexItemImageThird,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner.standard-teaser .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .field--name-field-content > .field__item article.title-banner.newsEventsCard .flexItemImageThird,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner.newsEventsCard .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.esi-feature-card .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.featured-science-instance-teaser-container .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.sfa-teaser-container .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .training-opportunity-card .title-banner.field--name-field-associated-people .flexItemImageThird,
  .training-opportunity-card .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-associated-people .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-featured-training-opportun .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-career-stages .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-workforce-development-card .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-update.node--view-mode-executive-teaser .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.news-and-events-titleblock .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .contact-box > .title-banner.field--name-field-contact-methods .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.leadership-container .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .flexItemImageThird,
  .leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-additional-leadership .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.branch-leadership-container .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .branch-leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .flexItemImageThird,
  .branch-leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-additional-leadership .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general .title-banner.field--name-field-related-publications .flexItemImageThird,
  .node--type-general .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-publications .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general .title-banner.field--name-field-general-publications-rlt .flexItemImageThird,
  .node--type-general .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-general-publications-rlt .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general .field--name-field-general-publications-rlt > .field__item .title-banner.standard-teaser .flexItemImageThird,
  .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general .field--name-field-related-publications > .field__item .title-banner.standard-teaser .flexItemImageThird,
  .node--type-general .field--name-field-related-publications > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.objective-text-container .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.objective-list-container .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-goal-card .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.strategic-vision-landing-goals-wrapper .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .title-banner.striped-container-wrapper .flexItemImageThird,
  .node--type-principal-investigator .node--type-news-mention.node--view-mode-subscribe .title-banner.striped-container-wrapper .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .title-banner.striped-container .flexItemImageThird,
  .node--type-principal-investigator .node--type-news-mention.node--view-mode-subscribe .title-banner.striped-container .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article.title-banner .flexItemImageThird,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-news-mention.node--view-mode-subscribe article.title-banner .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article.title-banner .flexItemImageThird,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-news-mention.node--view-mode-subscribe article.title-banner .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .title-banner.standard-teaser.node--view-mode-short-teaser .flexItemImageThird,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser.node--view-mode-short-teaser .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-awards .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.registerSocialContainer .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.eventdatesLocationType .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.news-article-container .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-press-release.node--view-mode-press-release-teaser .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-events.node--view-mode-press-release-teaser .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.news-header-container .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .contacts-container .title-banner.field--name-field-contacts .flexItemImageThird,
  .contacts-container .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contacts .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .publicationsBox .title-banner.field--name-field-related-publications .flexItemImageThird,
  .publicationsBox .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-publications .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-primary-featured-item .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-additional-featured-items .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.homepage-health-topics-container .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.homepage-mission-areas-container .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.homepage-location-container .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-alumni .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-full .title-banner.nhlbi-publication-details-container .flexItemImageThird,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .flexItemImageThird,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .flexItemImageThird,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .flexItemImageThird,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .flexItemImageThird,
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .flexItemImageThird,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.flexcontainer .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.related-ht-ser-container .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-sfa-card .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-speaker .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-executives .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-card-field .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-advisory-committees .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.contact-nhlbi-titleblock .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-cards .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-employment-opportunity-car .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.all-grants-foa-container .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-program-officers .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .view-id-nhlbi_grants_foa.view-display-id-block_2 > .title-banner.view-content .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .view-id-nhlbi_grants_foa.view-display-id-block_3 > .title-banner.view-content .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-individual-contact .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-individual-contact .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-division.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-division.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-division.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-division.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-branch.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-branch.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-branch.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-branch.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-general.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-general.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-health-education-initiative.node--view-mode-full .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-health-education-initiative.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-health-education-initiative.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-committee .title-banner.field--name-field-card-text .flexItemImageThirdHalf,
  .node--type-committee .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-card-text .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .news-and-events--landing .title-banner.landing-social .flexItemImageThirdHalf,
  .news-and-events--landing .node--type-news-mention.node--view-mode-subscribe .title-banner.landing-social .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-sfa-cards .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.locationMap.contact-location-map-container .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.locationMap .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.grants-and-training-card-wrapper .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.about-nhlbi-division-card-wrapper .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.hei-tools-icon-card-wrapper .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-grants-and-training-card .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-division-card .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-tool-icon-card .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-promotional-card .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-sv-promotional-cards .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-about-nhlbi-promotional-ca .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.strategic-vision-titleblock .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.ppg-titleblock-wrapper .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.ppg-guidelines-card-wrapper .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-human-subject-cards .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-section-card .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-highlight-card .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.health-topic-teaser-container .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.about-nhlbi-our-mission-wrapper .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .title-banner.director-bioCard .flexItemImageThirdHalf,
  .about-nhlbi-our-mission-wrapper .node--type-news-mention.node--view-mode-subscribe .field--name-field-leadership > .title-banner.director-bioCard .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-consumer-nhlbi-publ .flexItemImageThirdHalf,
  .nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-health-consumer-nhlbi-publ .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-professionals-nhlbi .flexItemImageThirdHalf,
  .nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-health-professionals-nhlbi .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .title-banner.standard-teaser .flexItemImageThirdHalf,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .title-banner.standard-teaser .flexItemImageThirdHalf,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .publicationsBlock.view-nhlbi-publications > .title-banner.view-content .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-publications .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .healthEducationBlock .title-banner.standard-teaser .flexItemImageThirdHalf,
  .healthEducationBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .systematicEvidenceReviewsBlock .title-banner.view-content .flexItemImageThirdHalf,
  .systematicEvidenceReviewsBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.view-content .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .clinicalPracticeGuidelinesBlock .title-banner.view-content .flexItemImageThirdHalf,
  .clinicalPracticeGuidelinesBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.view-content .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .publicationsAndFactSheetsBlock .title-banner.view-content .flexItemImageThirdHalf,
  .publicationsAndFactSheetsBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.view-content .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.rtFlexContainer .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .title-banner.field--name-field-science-supplemental-page .flexItemImageThirdHalf,
  .node--type-research-topic .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-science-supplemental-page .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .title-banner.researchTopicPublications .flexItemImageThirdHalf,
  .node--type-research-topic .node--type-news-mention.node--view-mode-subscribe .title-banner.researchTopicPublications .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .field--name-field-content > .field__item article.title-banner.listTeaserCard .flexItemImageThirdHalf,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner.listTeaserCard .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .field--name-field-content > .field__item article.title-banner.standard-teaser .flexItemImageThirdHalf,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner.standard-teaser .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .field--name-field-content > .field__item article.title-banner.newsEventsCard .flexItemImageThirdHalf,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner.newsEventsCard .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.esi-feature-card .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.featured-science-instance-teaser-container .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.sfa-teaser-container .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .training-opportunity-card .title-banner.field--name-field-associated-people .flexItemImageThirdHalf,
  .training-opportunity-card .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-associated-people .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-featured-training-opportun .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-career-stages .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-workforce-development-card .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-update.node--view-mode-executive-teaser .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.news-and-events-titleblock .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .contact-box > .title-banner.field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.leadership-container .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .flexItemImageThirdHalf,
  .leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-additional-leadership .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.branch-leadership-container .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .branch-leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .flexItemImageThirdHalf,
  .branch-leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-additional-leadership .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general .title-banner.field--name-field-related-publications .flexItemImageThirdHalf,
  .node--type-general .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-publications .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general .title-banner.field--name-field-general-publications-rlt .flexItemImageThirdHalf,
  .node--type-general .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-general-publications-rlt .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general .field--name-field-general-publications-rlt > .field__item .title-banner.standard-teaser .flexItemImageThirdHalf,
  .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general .field--name-field-related-publications > .field__item .title-banner.standard-teaser .flexItemImageThirdHalf,
  .node--type-general .field--name-field-related-publications > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.objective-text-container .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.objective-list-container .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-goal-card .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.strategic-vision-landing-goals-wrapper .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .title-banner.striped-container-wrapper .flexItemImageThirdHalf,
  .node--type-principal-investigator .node--type-news-mention.node--view-mode-subscribe .title-banner.striped-container-wrapper .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .title-banner.striped-container .flexItemImageThirdHalf,
  .node--type-principal-investigator .node--type-news-mention.node--view-mode-subscribe .title-banner.striped-container .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article.title-banner .flexItemImageThirdHalf,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-news-mention.node--view-mode-subscribe article.title-banner .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article.title-banner .flexItemImageThirdHalf,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-news-mention.node--view-mode-subscribe article.title-banner .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .title-banner.standard-teaser.node--view-mode-short-teaser .flexItemImageThirdHalf,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser.node--view-mode-short-teaser .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-awards .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.registerSocialContainer .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.eventdatesLocationType .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.news-article-container .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-press-release.node--view-mode-press-release-teaser .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-events.node--view-mode-press-release-teaser .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-news-mention.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.news-header-container .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .contacts-container .title-banner.field--name-field-contacts .flexItemImageThirdHalf,
  .contacts-container .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contacts .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .publicationsBox .title-banner.field--name-field-related-publications .flexItemImageThirdHalf,
  .publicationsBox .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-publications .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-primary-featured-item .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-additional-featured-items .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.homepage-health-topics-container .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.homepage-mission-areas-container .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.homepage-location-container .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-alumni .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-full .title-banner.nhlbi-publication-details-container .flexItemImageThirdHalf,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .flexItemImageThirdHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .flexItemImageThirdHalf,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .flexItemImageThirdHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .flexItemImageThirdHalf,
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .flexItemImageThirdHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.flexcontainer .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.related-ht-ser-container .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-sfa-card .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-speaker .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-executives .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-card-field .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-advisory-committees .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.contact-nhlbi-titleblock .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-cards .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-employment-opportunity-car .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.all-grants-foa-container .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-program-officers .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .view-id-nhlbi_grants_foa.view-display-id-block_2 > .title-banner.view-content .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .view-id-nhlbi_grants_foa.view-display-id-block_3 > .title-banner.view-content .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .node--type-individual-contact .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-individual-contact .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .node--type-division.node--view-mode-full .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-division.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .node--type-division.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-division.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .node--type-branch.node--view-mode-full .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-branch.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .node--type-branch.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-branch.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general.node--view-mode-full .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-general.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-general.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .node--type-health-education-initiative.node--view-mode-full .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-health-education-initiative.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .node--type-health-education-initiative.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-health-education-initiative.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .node--type-committee .title-banner.field--name-field-card-text .hero-image,
  .node--type-committee .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-card-text .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .news-and-events--landing .title-banner.landing-social .hero-image,
  .news-and-events--landing .node--type-news-mention.node--view-mode-subscribe .title-banner.landing-social .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-sfa-cards .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.locationMap.contact-location-map-container .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.locationMap .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.grants-and-training-card-wrapper .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.about-nhlbi-division-card-wrapper .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.hei-tools-icon-card-wrapper .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-grants-and-training-card .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-division-card .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-tool-icon-card .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-promotional-card .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-sv-promotional-cards .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-about-nhlbi-promotional-ca .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.strategic-vision-titleblock .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.ppg-titleblock-wrapper .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.ppg-guidelines-card-wrapper .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-human-subject-cards .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-section-card .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-highlight-card .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.health-topic-teaser-container .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.about-nhlbi-our-mission-wrapper .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .title-banner.director-bioCard .hero-image,
  .about-nhlbi-our-mission-wrapper .node--type-news-mention.node--view-mode-subscribe .field--name-field-leadership > .title-banner.director-bioCard .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-consumer-nhlbi-publ .hero-image,
  .nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-health-consumer-nhlbi-publ .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .title-banner.field--name-field-health-professionals-nhlbi .hero-image,
  .nhlbi-publications-and-resources--landing .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-health-professionals-nhlbi .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .title-banner.standard-teaser .hero-image,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .title-banner.standard-teaser .hero-image,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .publicationsBlock.view-nhlbi-publications > .title-banner.view-content .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-publications .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .healthEducationBlock .title-banner.standard-teaser .hero-image,
  .healthEducationBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .systematicEvidenceReviewsBlock .title-banner.view-content .hero-image,
  .systematicEvidenceReviewsBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.view-content .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .clinicalPracticeGuidelinesBlock .title-banner.view-content .hero-image,
  .clinicalPracticeGuidelinesBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.view-content .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .publicationsAndFactSheetsBlock .title-banner.view-content .hero-image,
  .publicationsAndFactSheetsBlock .node--type-news-mention.node--view-mode-subscribe .title-banner.view-content .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.rtFlexContainer .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .title-banner.field--name-field-science-supplemental-page .hero-image,
  .node--type-research-topic .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-science-supplemental-page .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .title-banner.researchTopicPublications .hero-image,
  .node--type-research-topic .node--type-news-mention.node--view-mode-subscribe .title-banner.researchTopicPublications .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .field--name-field-content > .field__item article.title-banner.listTeaserCard .hero-image,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner.listTeaserCard .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .field--name-field-content > .field__item article.title-banner.standard-teaser .hero-image,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner.standard-teaser .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .node--type-research-topic .field--name-field-content > .field__item article.title-banner.newsEventsCard .hero-image,
  .node--type-research-topic .field--name-field-content > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner.newsEventsCard .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.esi-feature-card .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.featured-science-instance-teaser-container .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.sfa-teaser-container .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .training-opportunity-card .title-banner.field--name-field-associated-people .hero-image,
  .training-opportunity-card .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-associated-people .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-featured-training-opportun .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-career-stages .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-workforce-development-card .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-update.node--view-mode-executive-teaser .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.news-and-events-titleblock .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .contact-box > .title-banner.field--name-field-contact-methods .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.leadership-container .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .hero-image,
  .leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-additional-leadership .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.branch-leadership-container .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .branch-leadership-container .leadership-deputy-director-container .title-banner.field--name-field-additional-leadership .hero-image,
  .branch-leadership-container .leadership-deputy-director-container .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-additional-leadership .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general .title-banner.field--name-field-related-publications .hero-image,
  .node--type-general .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-publications .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general .title-banner.field--name-field-general-publications-rlt .hero-image,
  .node--type-general .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-general-publications-rlt .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general .field--name-field-general-publications-rlt > .field__item .title-banner.standard-teaser .hero-image,
  .node--type-general .field--name-field-general-publications-rlt > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .node--type-general .field--name-field-related-publications > .field__item .title-banner.standard-teaser .hero-image,
  .node--type-general .field--name-field-related-publications > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.objective-text-container .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.objective-list-container .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-goal-card .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.strategic-vision-landing-goals-wrapper .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .title-banner.striped-container-wrapper .hero-image,
  .node--type-principal-investigator .node--type-news-mention.node--view-mode-subscribe .title-banner.striped-container-wrapper .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .title-banner.striped-container .hero-image,
  .node--type-principal-investigator .node--type-news-mention.node--view-mode-subscribe .title-banner.striped-container .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article.title-banner .hero-image,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-news-mention.node--view-mode-subscribe article.title-banner .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article.title-banner .hero-image,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-news-mention.node--view-mode-subscribe article.title-banner .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .title-banner.standard-teaser.node--view-mode-short-teaser .hero-image,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser.node--view-mode-short-teaser .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-awards .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.registerSocialContainer .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.eventdatesLocationType .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.news-article-container .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-feature-article.node--view-mode-press-release-teaser .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-press-release.node--view-mode-press-release-teaser .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-events.node--view-mode-press-release-teaser .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-feature-article.node--view-mode-hp-press-release-teaser .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-press-release.node--view-mode-hp-press-release-teaser .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-events.node--view-mode-hp-press-release-teaser .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.node--type-news-mention.node--view-mode-hp-press-release-teaser .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.news-header-container .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .contacts-container .title-banner.field--name-field-contacts .hero-image,
  .contacts-container .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-contacts .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .publicationsBox .title-banner.field--name-field-related-publications .hero-image,
  .publicationsBox .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-publications .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-primary-featured-item .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-additional-featured-items .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.homepage-health-topics-container .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.homepage-mission-areas-container .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.homepage-location-container .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-alumni .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-full .title-banner.nhlbi-publication-details-container .hero-image,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .hero-image,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.nhlbi-publication-details-container .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-full .title-banner.field--name-field-related-nhlbi-publications .hero-image,
  .node--type-nhlbi-publication.node--view-mode-full .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .hero-image,
  .node--type-nhlbi-publication.node--view-mode-subscribe .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-related-nhlbi-publications .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .hero-image,
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .title-banner.standard-teaser .hero-image,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-subscribe .title-banner.standard-teaser .hero-image {
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
}

/* line 482, ../sass/components/_news.scss */
.paragraph--type--media-coverage-source {
  padding: 1em 0;
}
/* line 484, ../sass/components/_news.scss */
.paragraph--type--media-coverage-source li, .paragraph--type--media-coverage-source li.field__item {
  list-style: none;
}

/* line 492, ../sass/components/_news.scss */
.node--type-news-mention.node--view-mode-short-teaser {
  overflow: visible;
}

/* line 499, ../sass/components/_news.scss */
.node--type-news-mention h1,
.node--type-press-release h1,
.node--type-nhlbi-publication h1 {
  margin-top: 0;
}

/* line 505, ../sass/components/_news.scss */
.node--type-events .breadcrumbs {
  margin-top: 0;
  padding: 1em 0;
}
/* line 509, ../sass/components/_news.scss */
.node--type-events .light-greyBottom {
  margin-bottom: 0;
  padding-bottom: 0.25em;
}
/* line 513, ../sass/components/_news.scss */
.node--type-events div.flatPlainHeader, .node--type-events div.flatPlainHeaderWhite {
  margin: 1em 0 0.25em;
  padding: 0;
}
/* line 517, ../sass/components/_news.scss */
.node--type-events .paddedContainer {
  padding-top: 1em;
  padding-bottom: 1em;
}
/* line 521, ../sass/components/_news.scss */
.node--type-events .social_media_header li a {
  padding: 0px 0.5em 0 0;
}
/* line 524, ../sass/components/_news.scss */
.node--type-events .social_media_header li a:focus, .node--type-events .social_media_header li a:active {
  outline: none !important;
}
/* line 528, ../sass/components/_news.scss */
.node--type-events .bodytext ul, .node--type-events .darkGrayBodyText ul, .node--type-events .foa-expiration-date ul {
  margin-bottom: 1.5em;
}

/* line 533, ../sass/components/_news.scss */
article.node.node--view-mode-featured-teaser {
  overflow: visible;
}
/* line 535, ../sass/components/_news.scss */
article.node.node--view-mode-featured-teaser div {
  overflow: visible;
}

/* line 2, ../sass/components/_homepage.scss */
.home-page--landing .field--name-field-division-card, .home-page--landing .field--name-field-tool-icon-card {
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  -ms-justify-content: space-around;
  -o-justify-content: space-around;
  justify-content: space-around;
}
/* line 5, ../sass/components/_homepage.scss */
.home-page--landing a.bluebutton {
  margin-top: 0.5em;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 5, ../sass/components/_homepage.scss */
  .home-page--landing a.bluebutton {
    margin-left: auto;
    margin-right: auto;
  }
}

/* line 14, ../sass/components/_homepage.scss */
a.no-hover-color:hover {
  background-color: transparent;
}
/* line 16, ../sass/components/_homepage.scss */
a.no-hover-color:hover .field--name-field-featured-item-title {
  font-weight: bold;
}

/* line 23, ../sass/components/_homepage.scss */
.home-page-featured-item-card-featured-wrapper a.no-hover-color,
.home-page-featured-item-card-wrapper a.no-hover-color,
.about-nhlbi-featured-item-card-featured-wrapper a.no-hover-color {
  color: #222;
}
/* line 26, ../sass/components/_homepage.scss */
.home-page-featured-item-card-featured-wrapper a.no-hover-color:visited h3, .home-page-featured-item-card-featured-wrapper a.no-hover-color:visited .field--name-field-social-phrase-group-title, .home-page-featured-item-card-featured-wrapper a.no-hover-color:visited .field--name-field-image-gallery-title,
.home-page-featured-item-card-wrapper a.no-hover-color:visited h3,
.home-page-featured-item-card-wrapper a.no-hover-color:visited .field--name-field-social-phrase-group-title,
.home-page-featured-item-card-wrapper a.no-hover-color:visited .field--name-field-image-gallery-title,
.about-nhlbi-featured-item-card-featured-wrapper a.no-hover-color:visited h3,
.about-nhlbi-featured-item-card-featured-wrapper a.no-hover-color:visited .field--name-field-social-phrase-group-title,
.about-nhlbi-featured-item-card-featured-wrapper a.no-hover-color:visited .field--name-field-image-gallery-title {
  color: #6f57B5;
}

/* line 31, ../sass/components/_homepage.scss */
.about-nhlbi-featured-item-card-featured-wrapper h3, .about-nhlbi-featured-item-card-featured-wrapper .field--name-field-social-phrase-group-title, .about-nhlbi-featured-item-card-featured-wrapper .field--name-field-image-gallery-title {
  margin: 0 0 0.25em;
}

/* line 35, ../sass/components/_homepage.scss */
.home-page-header {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  -o-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  background-color: #f4f4f4;
  width: 100%;
  height: auto;
}
/* line 50, ../sass/components/_homepage.scss */
.home-page-header .home-page-header-top {
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-shrink: 0;
  -o-flex-shrink: 0;
  flex-shrink: 0;
  width: 100%;
}
/* line 55, ../sass/components/_homepage.scss */
.home-page-header .home-page-header-bottom {
  -webkit-box-ordinal-group: 2;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-shrink: 0;
  -o-flex-shrink: 0;
  flex-shrink: 0;
  width: 100%;
}

/* line 62, ../sass/components/_homepage.scss */
.homepage-description {
  font-size: 1.5rem;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-style: italic;
  color: #fff;
  width: 50%;
  margin-right: auto;
  margin-left: auto;
}
@media all and (min-width: 1440px) {
  /* line 62, ../sass/components/_homepage.scss */
  .homepage-description {
    font-size: 1.5rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 62, ../sass/components/_homepage.scss */
  .homepage-description {
    font-size: 1.5rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 62, ../sass/components/_homepage.scss */
  .homepage-description {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 62, ../sass/components/_homepage.scss */
  .homepage-description {
    font-size: 1rem;
  }
}

/* line 71, ../sass/components/_homepage.scss */
.homepage-title {
  font-size: 3.5rem;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-weight: normal;
  color: #fff;
  margin: 2em auto 0.75em;
  text-transform: uppercase;
  padding: 0;
  width: 70%;
}
@media all and (min-width: 1440px) {
  /* line 71, ../sass/components/_homepage.scss */
  .homepage-title {
    font-size: 3.5rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 71, ../sass/components/_homepage.scss */
  .homepage-title {
    font-size: 3.5rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 71, ../sass/components/_homepage.scss */
  .homepage-title {
    font-size: 2.5rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 71, ../sass/components/_homepage.scss */
  .homepage-title {
    font-size: 2rem;
  }
}

/* line 81, ../sass/components/_homepage.scss */
.home-page-photocredit {
  font-size: 0.875rem;
  color: #fff;
  margin: 0 0 1.25em;
}
/* line 84, ../sass/components/_homepage.scss */
.home-page-photocredit span {
  background: #4a4a4a;
  background: rgba(74, 74, 74, 0.4);
  box-sizing: border-box;
}

/* line 91, ../sass/components/_homepage.scss */
.homepage-featured-additional-background {
  padding-top: 1.4em;
  background-color: #f4f4f4;
  width: 100%;
  background-image: url("../images/bottom-cut-white-large.png");
  background-size: 4000px auto;
  background-repeat: no-repeat;
  background-position: bottom right;
  display: block;
  content: " ";
  height: auto;
  height: auto;
  /*
  @include bp-desktop {
    @include background-icon-cover('homepage-additional-featured-background-short.png',1440px,508px,1440px,508px,767px,164px,block,bottom center);
    @include bp-retina {
      @include background-icon-cover('homepage-additional-featured-background-short@2x.png',1440px,508px,1440px,508px,767px,164px,block,bottom center);
    }
    height: 508px;
  }
  @include bp-tablet {
    @include background-icon-cover('homepage-additional-featured-background-short-tablet.png',1440px,508px,1100px,508px,767px,164px,block,bottom center);
    @include bp-retina {
      @include background-icon-cover('homepage-additional-featured-background-short-tablet@2x.png',1440px,508px,1100px,508px,767px,164px,block,bottom center);
    }
    height: 508px;
  }
  @include bp-phone-wide {
    @include background-icon-cover('homepage-additional-featured-background-short-phone.png',1440px,508px,1100px,508px,767px,650px,block,bottom center);
    @include bp-retina {
      @include background-icon-cover('homepage-additional-featured-background-short-phone@2x.png',1440px,508px,1100px,508px,767px,650px,block,bottom center);
    }
    height: 650px;
  }
  @include bp-phone-small {
    @include background-icon-cover('homepage-additional-featured-background-short-small-phone.png',1440px,508px,1100px,508px,479px,500px,block,bottom center);
    @include bp-retina {
      @include background-icon-cover('homepage-additional-featured-background-short-small-phone@2x.png',1440px,508px,1100px,508px,479px,500px,block,bottom center);
    }
    height: 500px;
  }
  */
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 91, ../sass/components/_homepage.scss */
  .homepage-featured-additional-background {
    background-size: 1100px auto;
    height: auto;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 91, ../sass/components/_homepage.scss */
  .homepage-featured-additional-background {
    background-size: 767px auto;
    height: auto;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2), all and (min--moz-device-pixel-ratio: 2), all and (-o-min-device-pixel-ratio: 2 / 1), all and (min-device-pixel-ratio: 2), all and (min-resolution: 192dpi), all and (min-resolution: 2dppx) {
  /* line 91, ../sass/components/_homepage.scss */
  .homepage-featured-additional-background {
    background-image: url("../images/bottom-cut-white@2x.png");
    background-size: 4000px auto;
    background-repeat: no-repeat;
    background-position: bottom right;
    display: block;
    content: " ";
    height: auto;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 768px) and (max-width: 1099px), all and (min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 192dpi) and (min-width: 768px) and (max-width: 1099px), all and (min-resolution: 2dppx) and (min-width: 768px) and (max-width: 1099px) {
  /* line 91, ../sass/components/_homepage.scss */
  .homepage-featured-additional-background {
    background-size: 1100px auto;
    height: auto;
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min--moz-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (-o-min-device-pixel-ratio: 2 / 1) and (min-width: 0em) and (max-width: 767px), all and (min-device-pixel-ratio: 2) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 192dpi) and (min-width: 0em) and (max-width: 767px), all and (min-resolution: 2dppx) and (min-width: 0em) and (max-width: 767px) {
  /* line 91, ../sass/components/_homepage.scss */
  .homepage-featured-additional-background {
    background-size: 767px auto;
    height: auto;
  }
}

@media all and (min-width: 1100px) {
  /* line 91, ../sass/components/_homepage.scss */
  .homepage-featured-additional-background {
    padding-bottom: 7em;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 91, ../sass/components/_homepage.scss */
  .homepage-featured-additional-background {
    padding-bottom: 5em;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 91, ../sass/components/_homepage.scss */
  .homepage-featured-additional-background {
    padding-bottom: 5em;
  }
}

/* line 141, ../sass/components/_homepage.scss */
.homepage-featured-items-container {
  padding-bottom: 2em;
}
/* line 143, ../sass/components/_homepage.scss */
.homepage-featured-items-container a.bluebutton {
  margin-top: 0.5em;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 143, ../sass/components/_homepage.scss */
  .homepage-featured-items-container a.bluebutton {
    margin-left: auto;
    margin-right: auto;
  }
}

/* line 151, ../sass/components/_homepage.scss */
.field--name-field-primary-featured-item {
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  -o-align-items: stretch;
  align-items: stretch;
}

/* line 157, ../sass/components/_homepage.scss */
.home-page-featured-item-card-wrapper {
  width: 100%;
  background-color: #fff;
}
/* line 164, ../sass/components/_homepage.scss */
.home-page-featured-item-card-wrapper > a:focus .field--name-field-featured-item-title, .home-page-featured-item-card-wrapper > a:active .field--name-field-featured-item-title {
  outline: #bf0d2e 3px dotted;
}
/* line 168, ../sass/components/_homepage.scss */
.home-page-featured-item-card-wrapper > a .field--name-field-featured-item-title {
  position: relative;
}

/* line 173, ../sass/components/_homepage.scss */
.home-page-featured-item-card-featured-wrapper {
  width: 100%;
}
/* line 178, ../sass/components/_homepage.scss */
.home-page-featured-item-card-featured-wrapper > a:focus .field--name-field-featured-item-title, .home-page-featured-item-card-featured-wrapper > a:active .field--name-field-featured-item-title {
  outline: #bf0d2e 3px dotted;
}

/* line 184, ../sass/components/_homepage.scss */
.field--name-field-primary-featured-item > .field__item {
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  -o-flex: 1;
  flex: 1;
}

/* line 187, ../sass/components/_homepage.scss */
.featured-home-page-promoted-card {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  background-color: transparent;
  padding: 0;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 187, ../sass/components/_homepage.scss */
  .featured-home-page-promoted-card {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
  }
}
/* line 198, ../sass/components/_homepage.scss */
.featured-home-page-promoted-card .flexItemImageHalf.whiteBorderImage, .featured-home-page-promoted-card .all-events--landing .eventFeatured .flexItemImageThird img.flexItemImageHalf, .all-events--landing .eventFeatured .flexItemImageThird .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .all-events--landing .eventFeatured .flexItemImageThirdHalf img.flexItemImageHalf, .all-events--landing .eventFeatured .flexItemImageThirdHalf .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .all-events--landing .eventFeatured .hero-image img.flexItemImageHalf, .all-events--landing .eventFeatured .hero-image .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .all-events--landing .newsFeatured .flexItemImageThird img.flexItemImageHalf, .all-events--landing .newsFeatured .flexItemImageThird .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .all-events--landing .newsFeatured .flexItemImageThirdHalf img.flexItemImageHalf, .all-events--landing .newsFeatured .flexItemImageThirdHalf .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .all-events--landing .newsFeatured .hero-image img.flexItemImageHalf, .all-events--landing .newsFeatured .hero-image .featured-home-page-promoted-card img.flexItemImageHalf,
.featured-home-page-promoted-card .all-news--landing .eventFeatured .flexItemImageThird img.flexItemImageHalf,
.all-news--landing .eventFeatured .flexItemImageThird .featured-home-page-promoted-card img.flexItemImageHalf,
.featured-home-page-promoted-card .all-news--landing .eventFeatured .flexItemImageThirdHalf img.flexItemImageHalf,
.all-news--landing .eventFeatured .flexItemImageThirdHalf .featured-home-page-promoted-card img.flexItemImageHalf,
.featured-home-page-promoted-card .all-news--landing .eventFeatured .hero-image img.flexItemImageHalf,
.all-news--landing .eventFeatured .hero-image .featured-home-page-promoted-card img.flexItemImageHalf,
.featured-home-page-promoted-card .all-news--landing .newsFeatured .flexItemImageThird img.flexItemImageHalf,
.all-news--landing .newsFeatured .flexItemImageThird .featured-home-page-promoted-card img.flexItemImageHalf,
.featured-home-page-promoted-card .all-news--landing .newsFeatured .flexItemImageThirdHalf img.flexItemImageHalf,
.all-news--landing .newsFeatured .flexItemImageThirdHalf .featured-home-page-promoted-card img.flexItemImageHalf,
.featured-home-page-promoted-card .all-news--landing .newsFeatured .hero-image img.flexItemImageHalf,
.all-news--landing .newsFeatured .hero-image .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .all-science--landing .all-science-header .flexItemImageThird img.flexItemImageHalf, .all-science--landing .all-science-header .flexItemImageThird .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .all-science--landing .all-science-header .flexItemImageThirdHalf img.flexItemImageHalf, .all-science--landing .all-science-header .flexItemImageThirdHalf .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .all-science--landing .all-science-header .hero-image img.flexItemImageHalf, .all-science--landing .all-science-header .hero-image .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImage img.flexItemImageHalf, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImage .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageHalf img.flexItemImageHalf, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageHalf .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageTenth img.flexItemImageHalf, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageTenth .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageFourth img.flexItemImageHalf, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageFourth .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThird img.flexItemImageHalf, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThird .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThirdHalf img.flexItemImageHalf, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThirdHalf .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .hero-image img.flexItemImageHalf, .nhlbi-publications-and-resources--landing .publications-and-resources-header .hero-image .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .homepage-location-container .homepage-location-image img.flexItemImageHalf, .homepage-location-container .homepage-location-image .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .hei-partnering .flexItemImage img.flexItemImageHalf, .hei-partnering .flexItemImage .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .hei-partnering .flexItemImageHalf img.flexItemImageHalf, .hei-partnering .flexItemImageHalf .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .hei-partnering .flexItemImageTenth img.flexItemImageHalf, .hei-partnering .flexItemImageTenth .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .hei-partnering .flexItemImageFourth img.flexItemImageHalf, .hei-partnering .flexItemImageFourth .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .hei-partnering .flexItemImageThird img.flexItemImageHalf, .hei-partnering .flexItemImageThird .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .hei-partnering .flexItemImageThirdHalf img.flexItemImageHalf, .hei-partnering .flexItemImageThirdHalf .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .hei-partnering .hero-image img.flexItemImageHalf, .hei-partnering .hero-image .featured-home-page-promoted-card img.flexItemImageHalf {
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-shrink: 0;
  -o-flex-shrink: 0;
  flex-shrink: 0;
  min-width: 50%;
  max-width: 50%;
}
@media all and (min-width: 768px) {
  /* line 198, ../sass/components/_homepage.scss */
  .featured-home-page-promoted-card .flexItemImageHalf.whiteBorderImage, .featured-home-page-promoted-card .all-events--landing .eventFeatured .flexItemImageThird img.flexItemImageHalf, .all-events--landing .eventFeatured .flexItemImageThird .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .all-events--landing .eventFeatured .flexItemImageThirdHalf img.flexItemImageHalf, .all-events--landing .eventFeatured .flexItemImageThirdHalf .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .all-events--landing .eventFeatured .hero-image img.flexItemImageHalf, .all-events--landing .eventFeatured .hero-image .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .all-events--landing .newsFeatured .flexItemImageThird img.flexItemImageHalf, .all-events--landing .newsFeatured .flexItemImageThird .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .all-events--landing .newsFeatured .flexItemImageThirdHalf img.flexItemImageHalf, .all-events--landing .newsFeatured .flexItemImageThirdHalf .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .all-events--landing .newsFeatured .hero-image img.flexItemImageHalf, .all-events--landing .newsFeatured .hero-image .featured-home-page-promoted-card img.flexItemImageHalf,
  .featured-home-page-promoted-card .all-news--landing .eventFeatured .flexItemImageThird img.flexItemImageHalf,
  .all-news--landing .eventFeatured .flexItemImageThird .featured-home-page-promoted-card img.flexItemImageHalf,
  .featured-home-page-promoted-card .all-news--landing .eventFeatured .flexItemImageThirdHalf img.flexItemImageHalf,
  .all-news--landing .eventFeatured .flexItemImageThirdHalf .featured-home-page-promoted-card img.flexItemImageHalf,
  .featured-home-page-promoted-card .all-news--landing .eventFeatured .hero-image img.flexItemImageHalf,
  .all-news--landing .eventFeatured .hero-image .featured-home-page-promoted-card img.flexItemImageHalf,
  .featured-home-page-promoted-card .all-news--landing .newsFeatured .flexItemImageThird img.flexItemImageHalf,
  .all-news--landing .newsFeatured .flexItemImageThird .featured-home-page-promoted-card img.flexItemImageHalf,
  .featured-home-page-promoted-card .all-news--landing .newsFeatured .flexItemImageThirdHalf img.flexItemImageHalf,
  .all-news--landing .newsFeatured .flexItemImageThirdHalf .featured-home-page-promoted-card img.flexItemImageHalf,
  .featured-home-page-promoted-card .all-news--landing .newsFeatured .hero-image img.flexItemImageHalf,
  .all-news--landing .newsFeatured .hero-image .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .all-science--landing .all-science-header .flexItemImageThird img.flexItemImageHalf, .all-science--landing .all-science-header .flexItemImageThird .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .all-science--landing .all-science-header .flexItemImageThirdHalf img.flexItemImageHalf, .all-science--landing .all-science-header .flexItemImageThirdHalf .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .all-science--landing .all-science-header .hero-image img.flexItemImageHalf, .all-science--landing .all-science-header .hero-image .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImage img.flexItemImageHalf, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImage .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageHalf img.flexItemImageHalf, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageHalf .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageTenth img.flexItemImageHalf, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageTenth .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageFourth img.flexItemImageHalf, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageFourth .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThird img.flexItemImageHalf, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThird .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThirdHalf img.flexItemImageHalf, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThirdHalf .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .hero-image img.flexItemImageHalf, .nhlbi-publications-and-resources--landing .publications-and-resources-header .hero-image .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .homepage-location-container .homepage-location-image img.flexItemImageHalf, .homepage-location-container .homepage-location-image .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .hei-partnering .flexItemImage img.flexItemImageHalf, .hei-partnering .flexItemImage .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .hei-partnering .flexItemImageHalf img.flexItemImageHalf, .hei-partnering .flexItemImageHalf .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .hei-partnering .flexItemImageTenth img.flexItemImageHalf, .hei-partnering .flexItemImageTenth .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .hei-partnering .flexItemImageFourth img.flexItemImageHalf, .hei-partnering .flexItemImageFourth .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .hei-partnering .flexItemImageThird img.flexItemImageHalf, .hei-partnering .flexItemImageThird .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .hei-partnering .flexItemImageThirdHalf img.flexItemImageHalf, .hei-partnering .flexItemImageThirdHalf .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .hei-partnering .hero-image img.flexItemImageHalf, .hei-partnering .hero-image .featured-home-page-promoted-card img.flexItemImageHalf {
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    -o-flex: 1;
    flex: 1;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 198, ../sass/components/_homepage.scss */
  .featured-home-page-promoted-card .flexItemImageHalf.whiteBorderImage, .featured-home-page-promoted-card .all-events--landing .eventFeatured .flexItemImageThird img.flexItemImageHalf, .all-events--landing .eventFeatured .flexItemImageThird .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .all-events--landing .eventFeatured .flexItemImageThirdHalf img.flexItemImageHalf, .all-events--landing .eventFeatured .flexItemImageThirdHalf .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .all-events--landing .eventFeatured .hero-image img.flexItemImageHalf, .all-events--landing .eventFeatured .hero-image .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .all-events--landing .newsFeatured .flexItemImageThird img.flexItemImageHalf, .all-events--landing .newsFeatured .flexItemImageThird .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .all-events--landing .newsFeatured .flexItemImageThirdHalf img.flexItemImageHalf, .all-events--landing .newsFeatured .flexItemImageThirdHalf .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .all-events--landing .newsFeatured .hero-image img.flexItemImageHalf, .all-events--landing .newsFeatured .hero-image .featured-home-page-promoted-card img.flexItemImageHalf,
  .featured-home-page-promoted-card .all-news--landing .eventFeatured .flexItemImageThird img.flexItemImageHalf,
  .all-news--landing .eventFeatured .flexItemImageThird .featured-home-page-promoted-card img.flexItemImageHalf,
  .featured-home-page-promoted-card .all-news--landing .eventFeatured .flexItemImageThirdHalf img.flexItemImageHalf,
  .all-news--landing .eventFeatured .flexItemImageThirdHalf .featured-home-page-promoted-card img.flexItemImageHalf,
  .featured-home-page-promoted-card .all-news--landing .eventFeatured .hero-image img.flexItemImageHalf,
  .all-news--landing .eventFeatured .hero-image .featured-home-page-promoted-card img.flexItemImageHalf,
  .featured-home-page-promoted-card .all-news--landing .newsFeatured .flexItemImageThird img.flexItemImageHalf,
  .all-news--landing .newsFeatured .flexItemImageThird .featured-home-page-promoted-card img.flexItemImageHalf,
  .featured-home-page-promoted-card .all-news--landing .newsFeatured .flexItemImageThirdHalf img.flexItemImageHalf,
  .all-news--landing .newsFeatured .flexItemImageThirdHalf .featured-home-page-promoted-card img.flexItemImageHalf,
  .featured-home-page-promoted-card .all-news--landing .newsFeatured .hero-image img.flexItemImageHalf,
  .all-news--landing .newsFeatured .hero-image .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .all-science--landing .all-science-header .flexItemImageThird img.flexItemImageHalf, .all-science--landing .all-science-header .flexItemImageThird .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .all-science--landing .all-science-header .flexItemImageThirdHalf img.flexItemImageHalf, .all-science--landing .all-science-header .flexItemImageThirdHalf .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .all-science--landing .all-science-header .hero-image img.flexItemImageHalf, .all-science--landing .all-science-header .hero-image .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImage img.flexItemImageHalf, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImage .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageHalf img.flexItemImageHalf, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageHalf .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageTenth img.flexItemImageHalf, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageTenth .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageFourth img.flexItemImageHalf, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageFourth .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThird img.flexItemImageHalf, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThird .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThirdHalf img.flexItemImageHalf, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThirdHalf .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .hero-image img.flexItemImageHalf, .nhlbi-publications-and-resources--landing .publications-and-resources-header .hero-image .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .homepage-location-container .homepage-location-image img.flexItemImageHalf, .homepage-location-container .homepage-location-image .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .hei-partnering .flexItemImage img.flexItemImageHalf, .hei-partnering .flexItemImage .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .hei-partnering .flexItemImageHalf img.flexItemImageHalf, .hei-partnering .flexItemImageHalf .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .hei-partnering .flexItemImageTenth img.flexItemImageHalf, .hei-partnering .flexItemImageTenth .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .hei-partnering .flexItemImageFourth img.flexItemImageHalf, .hei-partnering .flexItemImageFourth .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .hei-partnering .flexItemImageThird img.flexItemImageHalf, .hei-partnering .flexItemImageThird .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .hei-partnering .flexItemImageThirdHalf img.flexItemImageHalf, .hei-partnering .flexItemImageThirdHalf .featured-home-page-promoted-card img.flexItemImageHalf, .featured-home-page-promoted-card .hei-partnering .hero-image img.flexItemImageHalf, .hei-partnering .hero-image .featured-home-page-promoted-card img.flexItemImageHalf {
    width: auto;
    max-width: 100%;
    min-width: inherit;
    margin-bottom: 1em;
  }
}
/* line 213, ../sass/components/_homepage.scss */
.featured-home-page-promoted-card .flexItemText, .featured-home-page-promoted-card .flexItemTextHalf {
  -webkit-box-ordinal-group: 2;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  -o-align-items: flex-end;
  align-items: flex-end;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-shrink: 0;
  -o-flex-shrink: 0;
  flex-shrink: 0;
  max-width: 50%;
  padding: 0 2em;
}
@media all and (min-width: 768px) {
  /* line 213, ../sass/components/_homepage.scss */
  .featured-home-page-promoted-card .flexItemText, .featured-home-page-promoted-card .flexItemTextHalf {
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    -o-flex: 1;
    flex: 1;
  }
}
@media all and (min-width: 1100px) {
  /* line 213, ../sass/components/_homepage.scss */
  .featured-home-page-promoted-card .flexItemText, .featured-home-page-promoted-card .flexItemTextHalf {
    padding-bottom: 2em;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 213, ../sass/components/_homepage.scss */
  .featured-home-page-promoted-card .flexItemText, .featured-home-page-promoted-card .flexItemTextHalf {
    padding-bottom: 0;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 213, ../sass/components/_homepage.scss */
  .featured-home-page-promoted-card .flexItemText, .featured-home-page-promoted-card .flexItemTextHalf {
    padding: 0 1em;
    max-width: none;
  }
}

/* line 240, ../sass/components/_homepage.scss */
.field--name-field-additional-featured-items {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}

/* line 245, ../sass/components/_homepage.scss */
.field--name-field-additional-featured-items > .field__item {
  width: 32%;
  min-width: 32%;
  margin-right: 1em;
  margin-bottom: 1em;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  -o-align-items: stretch;
  align-items: stretch;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-shrink: 0;
  -o-flex-shrink: 0;
  flex-shrink: 0;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 245, ../sass/components/_homepage.scss */
  .field--name-field-additional-featured-items > .field__item {
    width: 31%;
    min-width: 31%;
    margin-right: 1em;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 245, ../sass/components/_homepage.scss */
  .field--name-field-additional-featured-items > .field__item {
    width: 100%;
    min-width: inherit;
    margin-right: 0;
  }
}

@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 266, ../sass/components/_homepage.scss */
  .field--name-field-additional-featured-items > .field__item:nth-child(2n) {
    margin-right: 1em;
  }
}

/* line 272, ../sass/components/_homepage.scss */
.field--name-field-additional-featured-items > .field__item:last-child {
  margin-right: 0;
}

/* line 275, ../sass/components/_homepage.scss */
.field--name-field-additional-featured-items > .field__item > a {
  background-color: #fff;
  flex: 1;
}

/* line 280, ../sass/components/_homepage.scss */
.full-height {
  height: 100%;
}

/* line 283, ../sass/components/_homepage.scss */
.home-page-promoted-card {
  height: 100%;
  padding: 0;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 283, ../sass/components/_homepage.scss */
  .home-page-promoted-card {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
  }
}
/* line 292, ../sass/components/_homepage.scss */
.home-page-promoted-card .flexItemImage.whiteBorderImage, .home-page-promoted-card .whiteBorderImage.flexItemImageHalf, .home-page-promoted-card .all-events--landing .eventFeatured .flexItemImageThird img.flexItemImageHalf, .all-events--landing .eventFeatured .flexItemImageThird .home-page-promoted-card img.flexItemImageHalf, .home-page-promoted-card .all-events--landing .eventFeatured .flexItemImageThirdHalf img.flexItemImageHalf, .all-events--landing .eventFeatured .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageHalf, .home-page-promoted-card .all-events--landing .eventFeatured .hero-image img.flexItemImageHalf, .all-events--landing .eventFeatured .hero-image .home-page-promoted-card img.flexItemImageHalf, .home-page-promoted-card .all-events--landing .newsFeatured .flexItemImageThird img.flexItemImageHalf, .all-events--landing .newsFeatured .flexItemImageThird .home-page-promoted-card img.flexItemImageHalf, .home-page-promoted-card .all-events--landing .newsFeatured .flexItemImageThirdHalf img.flexItemImageHalf, .all-events--landing .newsFeatured .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageHalf, .home-page-promoted-card .all-events--landing .newsFeatured .hero-image img.flexItemImageHalf, .all-events--landing .newsFeatured .hero-image .home-page-promoted-card img.flexItemImageHalf,
.home-page-promoted-card .all-news--landing .eventFeatured .flexItemImageThird img.flexItemImageHalf,
.all-news--landing .eventFeatured .flexItemImageThird .home-page-promoted-card img.flexItemImageHalf,
.home-page-promoted-card .all-news--landing .eventFeatured .flexItemImageThirdHalf img.flexItemImageHalf,
.all-news--landing .eventFeatured .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageHalf,
.home-page-promoted-card .all-news--landing .eventFeatured .hero-image img.flexItemImageHalf,
.all-news--landing .eventFeatured .hero-image .home-page-promoted-card img.flexItemImageHalf,
.home-page-promoted-card .all-news--landing .newsFeatured .flexItemImageThird img.flexItemImageHalf,
.all-news--landing .newsFeatured .flexItemImageThird .home-page-promoted-card img.flexItemImageHalf,
.home-page-promoted-card .all-news--landing .newsFeatured .flexItemImageThirdHalf img.flexItemImageHalf,
.all-news--landing .newsFeatured .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageHalf,
.home-page-promoted-card .all-news--landing .newsFeatured .hero-image img.flexItemImageHalf,
.all-news--landing .newsFeatured .hero-image .home-page-promoted-card img.flexItemImageHalf, .home-page-promoted-card .all-science--landing .all-science-header .flexItemImageThird img.flexItemImageHalf, .all-science--landing .all-science-header .flexItemImageThird .home-page-promoted-card img.flexItemImageHalf, .home-page-promoted-card .all-science--landing .all-science-header .flexItemImageThirdHalf img.flexItemImageHalf, .all-science--landing .all-science-header .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageHalf, .home-page-promoted-card .all-science--landing .all-science-header .hero-image img.flexItemImageHalf, .all-science--landing .all-science-header .hero-image .home-page-promoted-card img.flexItemImageHalf, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImage img.flexItemImageHalf, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImage .home-page-promoted-card img.flexItemImageHalf, .home-page-promoted-card .homepage-location-container .homepage-location-image img.flexItemImageHalf, .homepage-location-container .homepage-location-image .home-page-promoted-card img.flexItemImageHalf, .home-page-promoted-card .hei-partnering .flexItemImage img.flexItemImageHalf, .hei-partnering .flexItemImage .home-page-promoted-card img.flexItemImageHalf, .home-page-promoted-card .whiteBorderImage.flexItemImageTenth, .home-page-promoted-card .all-events--landing .eventFeatured .flexItemImageThird img.flexItemImageTenth, .all-events--landing .eventFeatured .flexItemImageThird .home-page-promoted-card img.flexItemImageTenth, .home-page-promoted-card .all-events--landing .eventFeatured .flexItemImageThirdHalf img.flexItemImageTenth, .all-events--landing .eventFeatured .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageTenth, .home-page-promoted-card .all-events--landing .eventFeatured .hero-image img.flexItemImageTenth, .all-events--landing .eventFeatured .hero-image .home-page-promoted-card img.flexItemImageTenth, .home-page-promoted-card .all-events--landing .newsFeatured .flexItemImageThird img.flexItemImageTenth, .all-events--landing .newsFeatured .flexItemImageThird .home-page-promoted-card img.flexItemImageTenth, .home-page-promoted-card .all-events--landing .newsFeatured .flexItemImageThirdHalf img.flexItemImageTenth, .all-events--landing .newsFeatured .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageTenth, .home-page-promoted-card .all-events--landing .newsFeatured .hero-image img.flexItemImageTenth, .all-events--landing .newsFeatured .hero-image .home-page-promoted-card img.flexItemImageTenth,
.home-page-promoted-card .all-news--landing .eventFeatured .flexItemImageThird img.flexItemImageTenth,
.all-news--landing .eventFeatured .flexItemImageThird .home-page-promoted-card img.flexItemImageTenth,
.home-page-promoted-card .all-news--landing .eventFeatured .flexItemImageThirdHalf img.flexItemImageTenth,
.all-news--landing .eventFeatured .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageTenth,
.home-page-promoted-card .all-news--landing .eventFeatured .hero-image img.flexItemImageTenth,
.all-news--landing .eventFeatured .hero-image .home-page-promoted-card img.flexItemImageTenth,
.home-page-promoted-card .all-news--landing .newsFeatured .flexItemImageThird img.flexItemImageTenth,
.all-news--landing .newsFeatured .flexItemImageThird .home-page-promoted-card img.flexItemImageTenth,
.home-page-promoted-card .all-news--landing .newsFeatured .flexItemImageThirdHalf img.flexItemImageTenth,
.all-news--landing .newsFeatured .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageTenth,
.home-page-promoted-card .all-news--landing .newsFeatured .hero-image img.flexItemImageTenth,
.all-news--landing .newsFeatured .hero-image .home-page-promoted-card img.flexItemImageTenth, .home-page-promoted-card .all-science--landing .all-science-header .flexItemImageThird img.flexItemImageTenth, .all-science--landing .all-science-header .flexItemImageThird .home-page-promoted-card img.flexItemImageTenth, .home-page-promoted-card .all-science--landing .all-science-header .flexItemImageThirdHalf img.flexItemImageTenth, .all-science--landing .all-science-header .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageTenth, .home-page-promoted-card .all-science--landing .all-science-header .hero-image img.flexItemImageTenth, .all-science--landing .all-science-header .hero-image .home-page-promoted-card img.flexItemImageTenth, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImage img.flexItemImageTenth, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImage .home-page-promoted-card img.flexItemImageTenth, .home-page-promoted-card .homepage-location-container .homepage-location-image img.flexItemImageTenth, .homepage-location-container .homepage-location-image .home-page-promoted-card img.flexItemImageTenth, .home-page-promoted-card .hei-partnering .flexItemImage img.flexItemImageTenth, .hei-partnering .flexItemImage .home-page-promoted-card img.flexItemImageTenth, .home-page-promoted-card .whiteBorderImage.flexItemImageFourth, .home-page-promoted-card .all-events--landing .eventFeatured .flexItemImageThird img.flexItemImageFourth, .all-events--landing .eventFeatured .flexItemImageThird .home-page-promoted-card img.flexItemImageFourth, .home-page-promoted-card .all-events--landing .eventFeatured .flexItemImageThirdHalf img.flexItemImageFourth, .all-events--landing .eventFeatured .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageFourth, .home-page-promoted-card .all-events--landing .eventFeatured .hero-image img.flexItemImageFourth, .all-events--landing .eventFeatured .hero-image .home-page-promoted-card img.flexItemImageFourth, .home-page-promoted-card .all-events--landing .newsFeatured .flexItemImageThird img.flexItemImageFourth, .all-events--landing .newsFeatured .flexItemImageThird .home-page-promoted-card img.flexItemImageFourth, .home-page-promoted-card .all-events--landing .newsFeatured .flexItemImageThirdHalf img.flexItemImageFourth, .all-events--landing .newsFeatured .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageFourth, .home-page-promoted-card .all-events--landing .newsFeatured .hero-image img.flexItemImageFourth, .all-events--landing .newsFeatured .hero-image .home-page-promoted-card img.flexItemImageFourth,
.home-page-promoted-card .all-news--landing .eventFeatured .flexItemImageThird img.flexItemImageFourth,
.all-news--landing .eventFeatured .flexItemImageThird .home-page-promoted-card img.flexItemImageFourth,
.home-page-promoted-card .all-news--landing .eventFeatured .flexItemImageThirdHalf img.flexItemImageFourth,
.all-news--landing .eventFeatured .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageFourth,
.home-page-promoted-card .all-news--landing .eventFeatured .hero-image img.flexItemImageFourth,
.all-news--landing .eventFeatured .hero-image .home-page-promoted-card img.flexItemImageFourth,
.home-page-promoted-card .all-news--landing .newsFeatured .flexItemImageThird img.flexItemImageFourth,
.all-news--landing .newsFeatured .flexItemImageThird .home-page-promoted-card img.flexItemImageFourth,
.home-page-promoted-card .all-news--landing .newsFeatured .flexItemImageThirdHalf img.flexItemImageFourth,
.all-news--landing .newsFeatured .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageFourth,
.home-page-promoted-card .all-news--landing .newsFeatured .hero-image img.flexItemImageFourth,
.all-news--landing .newsFeatured .hero-image .home-page-promoted-card img.flexItemImageFourth, .home-page-promoted-card .all-science--landing .all-science-header .flexItemImageThird img.flexItemImageFourth, .all-science--landing .all-science-header .flexItemImageThird .home-page-promoted-card img.flexItemImageFourth, .home-page-promoted-card .all-science--landing .all-science-header .flexItemImageThirdHalf img.flexItemImageFourth, .all-science--landing .all-science-header .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageFourth, .home-page-promoted-card .all-science--landing .all-science-header .hero-image img.flexItemImageFourth, .all-science--landing .all-science-header .hero-image .home-page-promoted-card img.flexItemImageFourth, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImage img.flexItemImageFourth, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImage .home-page-promoted-card img.flexItemImageFourth, .home-page-promoted-card .homepage-location-container .homepage-location-image img.flexItemImageFourth, .homepage-location-container .homepage-location-image .home-page-promoted-card img.flexItemImageFourth, .home-page-promoted-card .hei-partnering .flexItemImage img.flexItemImageFourth, .hei-partnering .flexItemImage .home-page-promoted-card img.flexItemImageFourth, .home-page-promoted-card .whiteBorderImage.flexItemImageThird, .home-page-promoted-card .whiteBorderImage.flexItemImageThirdHalf, .home-page-promoted-card .all-events--landing .eventFeatured .flexItemImageThird img.flexItemImageThirdHalf, .all-events--landing .eventFeatured .flexItemImageThird .home-page-promoted-card img.flexItemImageThirdHalf, .home-page-promoted-card .all-events--landing .newsFeatured .flexItemImageThird img.flexItemImageThirdHalf, .all-events--landing .newsFeatured .flexItemImageThird .home-page-promoted-card img.flexItemImageThirdHalf,
.home-page-promoted-card .all-news--landing .eventFeatured .flexItemImageThird img.flexItemImageThirdHalf,
.all-news--landing .eventFeatured .flexItemImageThird .home-page-promoted-card img.flexItemImageThirdHalf,
.home-page-promoted-card .all-news--landing .newsFeatured .flexItemImageThird img.flexItemImageThirdHalf,
.all-news--landing .newsFeatured .flexItemImageThird .home-page-promoted-card img.flexItemImageThirdHalf, .home-page-promoted-card .all-science--landing .all-science-header .flexItemImageThird img.flexItemImageThirdHalf, .all-science--landing .all-science-header .flexItemImageThird .home-page-promoted-card img.flexItemImageThirdHalf, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImage img.flexItemImageThirdHalf, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImage .home-page-promoted-card img.flexItemImageThirdHalf, .home-page-promoted-card .homepage-location-container .homepage-location-image img.flexItemImageThirdHalf, .homepage-location-container .homepage-location-image .home-page-promoted-card img.flexItemImageThirdHalf, .home-page-promoted-card .hei-partnering .flexItemImage img.flexItemImageThirdHalf, .hei-partnering .flexItemImage .home-page-promoted-card img.flexItemImageThirdHalf, .home-page-promoted-card .all-events--landing .eventFeatured .flexItemImageThird img.flexItemImageThird, .all-events--landing .eventFeatured .flexItemImageThird .home-page-promoted-card img.flexItemImageThird, .home-page-promoted-card .all-events--landing .eventFeatured .flexItemImageThirdHalf img.flexItemImageThird, .all-events--landing .eventFeatured .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageThird, .home-page-promoted-card .all-events--landing .eventFeatured .hero-image img.flexItemImageThird, .all-events--landing .eventFeatured .hero-image .home-page-promoted-card img.flexItemImageThird, .home-page-promoted-card .all-events--landing .eventFeatured .flexItemImageThirdHalf img.flexItemImageThirdHalf, .all-events--landing .eventFeatured .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageThirdHalf, .home-page-promoted-card .all-events--landing .eventFeatured .hero-image img.flexItemImageThirdHalf, .all-events--landing .eventFeatured .hero-image .home-page-promoted-card img.flexItemImageThirdHalf, .home-page-promoted-card .all-events--landing .eventFeatured .flexItemImageThird img.hero-image, .all-events--landing .eventFeatured .flexItemImageThird .home-page-promoted-card img.hero-image, .home-page-promoted-card .all-events--landing .eventFeatured .flexItemImageThirdHalf img.hero-image, .all-events--landing .eventFeatured .flexItemImageThirdHalf .home-page-promoted-card img.hero-image, .home-page-promoted-card .all-events--landing .eventFeatured .hero-image img.hero-image, .all-events--landing .eventFeatured .hero-image .home-page-promoted-card img.hero-image, .home-page-promoted-card .all-events--landing .newsFeatured .flexItemImageThird img.flexItemImageThird, .all-events--landing .newsFeatured .flexItemImageThird .home-page-promoted-card img.flexItemImageThird, .home-page-promoted-card .all-events--landing .newsFeatured .flexItemImageThirdHalf img.flexItemImageThird, .all-events--landing .newsFeatured .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageThird, .home-page-promoted-card .all-events--landing .newsFeatured .hero-image img.flexItemImageThird, .all-events--landing .newsFeatured .hero-image .home-page-promoted-card img.flexItemImageThird, .home-page-promoted-card .all-events--landing .newsFeatured .flexItemImageThirdHalf img.flexItemImageThirdHalf, .all-events--landing .newsFeatured .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageThirdHalf, .home-page-promoted-card .all-events--landing .newsFeatured .hero-image img.flexItemImageThirdHalf, .all-events--landing .newsFeatured .hero-image .home-page-promoted-card img.flexItemImageThirdHalf, .home-page-promoted-card .all-events--landing .newsFeatured .flexItemImageThird img.hero-image, .all-events--landing .newsFeatured .flexItemImageThird .home-page-promoted-card img.hero-image, .home-page-promoted-card .all-events--landing .newsFeatured .flexItemImageThirdHalf img.hero-image, .all-events--landing .newsFeatured .flexItemImageThirdHalf .home-page-promoted-card img.hero-image, .home-page-promoted-card .all-events--landing .newsFeatured .hero-image img.hero-image, .all-events--landing .newsFeatured .hero-image .home-page-promoted-card img.hero-image,
.home-page-promoted-card .all-news--landing .eventFeatured .flexItemImageThird img.flexItemImageThird,
.all-news--landing .eventFeatured .flexItemImageThird .home-page-promoted-card img.flexItemImageThird,
.home-page-promoted-card .all-news--landing .eventFeatured .flexItemImageThirdHalf img.flexItemImageThird,
.all-news--landing .eventFeatured .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageThird,
.home-page-promoted-card .all-news--landing .eventFeatured .hero-image img.flexItemImageThird,
.all-news--landing .eventFeatured .hero-image .home-page-promoted-card img.flexItemImageThird,
.home-page-promoted-card .all-news--landing .eventFeatured .flexItemImageThirdHalf img.flexItemImageThirdHalf,
.all-news--landing .eventFeatured .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageThirdHalf,
.home-page-promoted-card .all-news--landing .eventFeatured .hero-image img.flexItemImageThirdHalf,
.all-news--landing .eventFeatured .hero-image .home-page-promoted-card img.flexItemImageThirdHalf,
.home-page-promoted-card .all-news--landing .eventFeatured .flexItemImageThird img.hero-image,
.all-news--landing .eventFeatured .flexItemImageThird .home-page-promoted-card img.hero-image,
.home-page-promoted-card .all-news--landing .eventFeatured .flexItemImageThirdHalf img.hero-image,
.all-news--landing .eventFeatured .flexItemImageThirdHalf .home-page-promoted-card img.hero-image,
.home-page-promoted-card .all-news--landing .eventFeatured .hero-image img.hero-image,
.all-news--landing .eventFeatured .hero-image .home-page-promoted-card img.hero-image,
.home-page-promoted-card .all-news--landing .newsFeatured .flexItemImageThird img.flexItemImageThird,
.all-news--landing .newsFeatured .flexItemImageThird .home-page-promoted-card img.flexItemImageThird,
.home-page-promoted-card .all-news--landing .newsFeatured .flexItemImageThirdHalf img.flexItemImageThird,
.all-news--landing .newsFeatured .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageThird,
.home-page-promoted-card .all-news--landing .newsFeatured .hero-image img.flexItemImageThird,
.all-news--landing .newsFeatured .hero-image .home-page-promoted-card img.flexItemImageThird,
.home-page-promoted-card .all-news--landing .newsFeatured .flexItemImageThirdHalf img.flexItemImageThirdHalf,
.all-news--landing .newsFeatured .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageThirdHalf,
.home-page-promoted-card .all-news--landing .newsFeatured .hero-image img.flexItemImageThirdHalf,
.all-news--landing .newsFeatured .hero-image .home-page-promoted-card img.flexItemImageThirdHalf,
.home-page-promoted-card .all-news--landing .newsFeatured .flexItemImageThird img.hero-image,
.all-news--landing .newsFeatured .flexItemImageThird .home-page-promoted-card img.hero-image,
.home-page-promoted-card .all-news--landing .newsFeatured .flexItemImageThirdHalf img.hero-image,
.all-news--landing .newsFeatured .flexItemImageThirdHalf .home-page-promoted-card img.hero-image,
.home-page-promoted-card .all-news--landing .newsFeatured .hero-image img.hero-image,
.all-news--landing .newsFeatured .hero-image .home-page-promoted-card img.hero-image, .home-page-promoted-card .all-science--landing .all-science-header .flexItemImageThird img.flexItemImageThird, .all-science--landing .all-science-header .flexItemImageThird .home-page-promoted-card img.flexItemImageThird, .home-page-promoted-card .all-science--landing .all-science-header .flexItemImageThirdHalf img.flexItemImageThird, .all-science--landing .all-science-header .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageThird, .home-page-promoted-card .all-science--landing .all-science-header .hero-image img.flexItemImageThird, .all-science--landing .all-science-header .hero-image .home-page-promoted-card img.flexItemImageThird, .home-page-promoted-card .all-science--landing .all-science-header .flexItemImageThirdHalf img.flexItemImageThirdHalf, .all-science--landing .all-science-header .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageThirdHalf, .home-page-promoted-card .all-science--landing .all-science-header .hero-image img.flexItemImageThirdHalf, .all-science--landing .all-science-header .hero-image .home-page-promoted-card img.flexItemImageThirdHalf, .home-page-promoted-card .all-science--landing .all-science-header .flexItemImageThird img.hero-image, .all-science--landing .all-science-header .flexItemImageThird .home-page-promoted-card img.hero-image, .home-page-promoted-card .all-science--landing .all-science-header .flexItemImageThirdHalf img.hero-image, .all-science--landing .all-science-header .flexItemImageThirdHalf .home-page-promoted-card img.hero-image, .home-page-promoted-card .all-science--landing .all-science-header .hero-image img.hero-image, .all-science--landing .all-science-header .hero-image .home-page-promoted-card img.hero-image, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImage img.flexItemImageThird, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImage .home-page-promoted-card img.flexItemImageThird, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImage img.hero-image, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImage .home-page-promoted-card img.hero-image, .home-page-promoted-card .whiteBorderImage.hero-image, .home-page-promoted-card .homepage-location-container .homepage-location-image img.hero-image, .homepage-location-container .homepage-location-image .home-page-promoted-card img.hero-image, .home-page-promoted-card .hei-partnering .flexItemImage img.hero-image, .hei-partnering .flexItemImage .home-page-promoted-card img.hero-image, .home-page-promoted-card .homepage-location-container .homepage-location-image img.flexItemImageThird, .homepage-location-container .homepage-location-image .home-page-promoted-card img.flexItemImageThird, .home-page-promoted-card .hei-partnering .flexItemImage img.flexItemImageThird, .hei-partnering .flexItemImage .home-page-promoted-card img.flexItemImageThird, .home-page-promoted-card .all-events--landing .eventFeatured .flexItemImageThird img.flexItemImage, .all-events--landing .eventFeatured .flexItemImageThird .home-page-promoted-card img.flexItemImage, .home-page-promoted-card .all-events--landing .eventFeatured .flexItemImageThirdHalf img.flexItemImage, .all-events--landing .eventFeatured .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImage, .home-page-promoted-card .all-events--landing .eventFeatured .hero-image img.flexItemImage, .all-events--landing .eventFeatured .hero-image .home-page-promoted-card img.flexItemImage, .home-page-promoted-card .all-events--landing .newsFeatured .flexItemImageThird img.flexItemImage, .all-events--landing .newsFeatured .flexItemImageThird .home-page-promoted-card img.flexItemImage, .home-page-promoted-card .all-events--landing .newsFeatured .flexItemImageThirdHalf img.flexItemImage, .all-events--landing .newsFeatured .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImage, .home-page-promoted-card .all-events--landing .newsFeatured .hero-image img.flexItemImage, .all-events--landing .newsFeatured .hero-image .home-page-promoted-card img.flexItemImage,
.home-page-promoted-card .all-news--landing .eventFeatured .flexItemImageThird img.flexItemImage,
.all-news--landing .eventFeatured .flexItemImageThird .home-page-promoted-card img.flexItemImage,
.home-page-promoted-card .all-news--landing .eventFeatured .flexItemImageThirdHalf img.flexItemImage,
.all-news--landing .eventFeatured .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImage,
.home-page-promoted-card .all-news--landing .eventFeatured .hero-image img.flexItemImage,
.all-news--landing .eventFeatured .hero-image .home-page-promoted-card img.flexItemImage,
.home-page-promoted-card .all-news--landing .newsFeatured .flexItemImageThird img.flexItemImage,
.all-news--landing .newsFeatured .flexItemImageThird .home-page-promoted-card img.flexItemImage,
.home-page-promoted-card .all-news--landing .newsFeatured .flexItemImageThirdHalf img.flexItemImage,
.all-news--landing .newsFeatured .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImage,
.home-page-promoted-card .all-news--landing .newsFeatured .hero-image img.flexItemImage,
.all-news--landing .newsFeatured .hero-image .home-page-promoted-card img.flexItemImage, .home-page-promoted-card .all-science--landing .all-science-header .flexItemImageThird img.flexItemImage, .all-science--landing .all-science-header .flexItemImageThird .home-page-promoted-card img.flexItemImage, .home-page-promoted-card .all-science--landing .all-science-header .flexItemImageThirdHalf img.flexItemImage, .all-science--landing .all-science-header .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImage, .home-page-promoted-card .all-science--landing .all-science-header .hero-image img.flexItemImage, .all-science--landing .all-science-header .hero-image .home-page-promoted-card img.flexItemImage, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImage img.flexItemImage, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImage .home-page-promoted-card img.flexItemImage, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageHalf img.flexItemImage, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageHalf .home-page-promoted-card img.flexItemImage, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageTenth img.flexItemImage, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageTenth .home-page-promoted-card img.flexItemImage, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageFourth img.flexItemImage, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageFourth .home-page-promoted-card img.flexItemImage, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThird img.flexItemImage, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThird .home-page-promoted-card img.flexItemImage, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThirdHalf img.flexItemImage, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImage, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .hero-image img.flexItemImage, .nhlbi-publications-and-resources--landing .publications-and-resources-header .hero-image .home-page-promoted-card img.flexItemImage, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageHalf img.flexItemImageHalf, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageHalf .home-page-promoted-card img.flexItemImageHalf, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageTenth img.flexItemImageHalf, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageTenth .home-page-promoted-card img.flexItemImageHalf, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageFourth img.flexItemImageHalf, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageFourth .home-page-promoted-card img.flexItemImageHalf, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThird img.flexItemImageHalf, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThird .home-page-promoted-card img.flexItemImageHalf, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThirdHalf img.flexItemImageHalf, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageHalf, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .hero-image img.flexItemImageHalf, .nhlbi-publications-and-resources--landing .publications-and-resources-header .hero-image .home-page-promoted-card img.flexItemImageHalf, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageHalf img.flexItemImageTenth, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageHalf .home-page-promoted-card img.flexItemImageTenth, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageTenth img.flexItemImageTenth, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageTenth .home-page-promoted-card img.flexItemImageTenth, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageFourth img.flexItemImageTenth, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageFourth .home-page-promoted-card img.flexItemImageTenth, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThird img.flexItemImageTenth, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThird .home-page-promoted-card img.flexItemImageTenth, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThirdHalf img.flexItemImageTenth, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageTenth, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .hero-image img.flexItemImageTenth, .nhlbi-publications-and-resources--landing .publications-and-resources-header .hero-image .home-page-promoted-card img.flexItemImageTenth, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageHalf img.flexItemImageFourth, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageHalf .home-page-promoted-card img.flexItemImageFourth, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageTenth img.flexItemImageFourth, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageTenth .home-page-promoted-card img.flexItemImageFourth, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageFourth img.flexItemImageFourth, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageFourth .home-page-promoted-card img.flexItemImageFourth, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThird img.flexItemImageFourth, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThird .home-page-promoted-card img.flexItemImageFourth, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThirdHalf img.flexItemImageFourth, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageFourth, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .hero-image img.flexItemImageFourth, .nhlbi-publications-and-resources--landing .publications-and-resources-header .hero-image .home-page-promoted-card img.flexItemImageFourth, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageHalf img.flexItemImageThird, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageHalf .home-page-promoted-card img.flexItemImageThird, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageTenth img.flexItemImageThird, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageTenth .home-page-promoted-card img.flexItemImageThird, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageFourth img.flexItemImageThird, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageFourth .home-page-promoted-card img.flexItemImageThird, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThird img.flexItemImageThird, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThird .home-page-promoted-card img.flexItemImageThird, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThirdHalf img.flexItemImageThird, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageThird, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .hero-image img.flexItemImageThird, .nhlbi-publications-and-resources--landing .publications-and-resources-header .hero-image .home-page-promoted-card img.flexItemImageThird, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageHalf img.flexItemImageThirdHalf, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageHalf .home-page-promoted-card img.flexItemImageThirdHalf, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageTenth img.flexItemImageThirdHalf, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageTenth .home-page-promoted-card img.flexItemImageThirdHalf, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageFourth img.flexItemImageThirdHalf, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageFourth .home-page-promoted-card img.flexItemImageThirdHalf, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThird img.flexItemImageThirdHalf, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThird .home-page-promoted-card img.flexItemImageThirdHalf, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThirdHalf img.flexItemImageThirdHalf, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageThirdHalf, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .hero-image img.flexItemImageThirdHalf, .nhlbi-publications-and-resources--landing .publications-and-resources-header .hero-image .home-page-promoted-card img.flexItemImageThirdHalf, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageHalf img.hero-image, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageHalf .home-page-promoted-card img.hero-image, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageTenth img.hero-image, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageTenth .home-page-promoted-card img.hero-image, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageFourth img.hero-image, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageFourth .home-page-promoted-card img.hero-image, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThird img.hero-image, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThird .home-page-promoted-card img.hero-image, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThirdHalf img.hero-image, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThirdHalf .home-page-promoted-card img.hero-image, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .hero-image img.hero-image, .nhlbi-publications-and-resources--landing .publications-and-resources-header .hero-image .home-page-promoted-card img.hero-image, .home-page-promoted-card .homepage-location-container .homepage-location-image img.flexItemImage, .homepage-location-container .homepage-location-image .home-page-promoted-card img.flexItemImage, .home-page-promoted-card .hei-partnering .flexItemImage img.flexItemImage, .hei-partnering .flexItemImage .home-page-promoted-card img.flexItemImage, .home-page-promoted-card .hei-partnering .flexItemImageHalf img.flexItemImage, .hei-partnering .flexItemImageHalf .home-page-promoted-card img.flexItemImage, .home-page-promoted-card .hei-partnering .flexItemImageTenth img.flexItemImage, .hei-partnering .flexItemImageTenth .home-page-promoted-card img.flexItemImage, .home-page-promoted-card .hei-partnering .flexItemImageFourth img.flexItemImage, .hei-partnering .flexItemImageFourth .home-page-promoted-card img.flexItemImage, .home-page-promoted-card .hei-partnering .flexItemImageThird img.flexItemImage, .hei-partnering .flexItemImageThird .home-page-promoted-card img.flexItemImage, .home-page-promoted-card .hei-partnering .flexItemImageThirdHalf img.flexItemImage, .hei-partnering .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImage, .home-page-promoted-card .hei-partnering .hero-image img.flexItemImage, .hei-partnering .hero-image .home-page-promoted-card img.flexItemImage, .home-page-promoted-card .hei-partnering .flexItemImageHalf img.flexItemImageHalf, .hei-partnering .flexItemImageHalf .home-page-promoted-card img.flexItemImageHalf, .home-page-promoted-card .hei-partnering .flexItemImageTenth img.flexItemImageHalf, .hei-partnering .flexItemImageTenth .home-page-promoted-card img.flexItemImageHalf, .home-page-promoted-card .hei-partnering .flexItemImageFourth img.flexItemImageHalf, .hei-partnering .flexItemImageFourth .home-page-promoted-card img.flexItemImageHalf, .home-page-promoted-card .hei-partnering .flexItemImageThird img.flexItemImageHalf, .hei-partnering .flexItemImageThird .home-page-promoted-card img.flexItemImageHalf, .home-page-promoted-card .hei-partnering .flexItemImageThirdHalf img.flexItemImageHalf, .hei-partnering .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageHalf, .home-page-promoted-card .hei-partnering .hero-image img.flexItemImageHalf, .hei-partnering .hero-image .home-page-promoted-card img.flexItemImageHalf, .home-page-promoted-card .hei-partnering .flexItemImageHalf img.flexItemImageTenth, .hei-partnering .flexItemImageHalf .home-page-promoted-card img.flexItemImageTenth, .home-page-promoted-card .hei-partnering .flexItemImageTenth img.flexItemImageTenth, .hei-partnering .flexItemImageTenth .home-page-promoted-card img.flexItemImageTenth, .home-page-promoted-card .hei-partnering .flexItemImageFourth img.flexItemImageTenth, .hei-partnering .flexItemImageFourth .home-page-promoted-card img.flexItemImageTenth, .home-page-promoted-card .hei-partnering .flexItemImageThird img.flexItemImageTenth, .hei-partnering .flexItemImageThird .home-page-promoted-card img.flexItemImageTenth, .home-page-promoted-card .hei-partnering .flexItemImageThirdHalf img.flexItemImageTenth, .hei-partnering .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageTenth, .home-page-promoted-card .hei-partnering .hero-image img.flexItemImageTenth, .hei-partnering .hero-image .home-page-promoted-card img.flexItemImageTenth, .home-page-promoted-card .hei-partnering .flexItemImageHalf img.flexItemImageFourth, .hei-partnering .flexItemImageHalf .home-page-promoted-card img.flexItemImageFourth, .home-page-promoted-card .hei-partnering .flexItemImageTenth img.flexItemImageFourth, .hei-partnering .flexItemImageTenth .home-page-promoted-card img.flexItemImageFourth, .home-page-promoted-card .hei-partnering .flexItemImageFourth img.flexItemImageFourth, .hei-partnering .flexItemImageFourth .home-page-promoted-card img.flexItemImageFourth, .home-page-promoted-card .hei-partnering .flexItemImageThird img.flexItemImageFourth, .hei-partnering .flexItemImageThird .home-page-promoted-card img.flexItemImageFourth, .home-page-promoted-card .hei-partnering .flexItemImageThirdHalf img.flexItemImageFourth, .hei-partnering .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageFourth, .home-page-promoted-card .hei-partnering .hero-image img.flexItemImageFourth, .hei-partnering .hero-image .home-page-promoted-card img.flexItemImageFourth, .home-page-promoted-card .hei-partnering .flexItemImageHalf img.flexItemImageThird, .hei-partnering .flexItemImageHalf .home-page-promoted-card img.flexItemImageThird, .home-page-promoted-card .hei-partnering .flexItemImageTenth img.flexItemImageThird, .hei-partnering .flexItemImageTenth .home-page-promoted-card img.flexItemImageThird, .home-page-promoted-card .hei-partnering .flexItemImageFourth img.flexItemImageThird, .hei-partnering .flexItemImageFourth .home-page-promoted-card img.flexItemImageThird, .home-page-promoted-card .hei-partnering .flexItemImageThird img.flexItemImageThird, .hei-partnering .flexItemImageThird .home-page-promoted-card img.flexItemImageThird, .home-page-promoted-card .hei-partnering .flexItemImageThirdHalf img.flexItemImageThird, .hei-partnering .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageThird, .home-page-promoted-card .hei-partnering .hero-image img.flexItemImageThird, .hei-partnering .hero-image .home-page-promoted-card img.flexItemImageThird, .home-page-promoted-card .hei-partnering .flexItemImageHalf img.flexItemImageThirdHalf, .hei-partnering .flexItemImageHalf .home-page-promoted-card img.flexItemImageThirdHalf, .home-page-promoted-card .hei-partnering .flexItemImageTenth img.flexItemImageThirdHalf, .hei-partnering .flexItemImageTenth .home-page-promoted-card img.flexItemImageThirdHalf, .home-page-promoted-card .hei-partnering .flexItemImageFourth img.flexItemImageThirdHalf, .hei-partnering .flexItemImageFourth .home-page-promoted-card img.flexItemImageThirdHalf, .home-page-promoted-card .hei-partnering .flexItemImageThird img.flexItemImageThirdHalf, .hei-partnering .flexItemImageThird .home-page-promoted-card img.flexItemImageThirdHalf, .home-page-promoted-card .hei-partnering .flexItemImageThirdHalf img.flexItemImageThirdHalf, .hei-partnering .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageThirdHalf, .home-page-promoted-card .hei-partnering .hero-image img.flexItemImageThirdHalf, .hei-partnering .hero-image .home-page-promoted-card img.flexItemImageThirdHalf, .home-page-promoted-card .hei-partnering .flexItemImageHalf img.hero-image, .hei-partnering .flexItemImageHalf .home-page-promoted-card img.hero-image, .home-page-promoted-card .hei-partnering .flexItemImageTenth img.hero-image, .hei-partnering .flexItemImageTenth .home-page-promoted-card img.hero-image, .home-page-promoted-card .hei-partnering .flexItemImageFourth img.hero-image, .hei-partnering .flexItemImageFourth .home-page-promoted-card img.hero-image, .home-page-promoted-card .hei-partnering .flexItemImageThird img.hero-image, .hei-partnering .flexItemImageThird .home-page-promoted-card img.hero-image, .home-page-promoted-card .hei-partnering .flexItemImageThirdHalf img.hero-image, .hei-partnering .flexItemImageThirdHalf .home-page-promoted-card img.hero-image, .home-page-promoted-card .hei-partnering .hero-image img.hero-image, .hei-partnering .hero-image .home-page-promoted-card img.hero-image {
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 292, ../sass/components/_homepage.scss */
  .home-page-promoted-card .flexItemImage.whiteBorderImage, .home-page-promoted-card .whiteBorderImage.flexItemImageHalf, .home-page-promoted-card .all-events--landing .eventFeatured .flexItemImageThird img.flexItemImageHalf, .all-events--landing .eventFeatured .flexItemImageThird .home-page-promoted-card img.flexItemImageHalf, .home-page-promoted-card .all-events--landing .eventFeatured .flexItemImageThirdHalf img.flexItemImageHalf, .all-events--landing .eventFeatured .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageHalf, .home-page-promoted-card .all-events--landing .eventFeatured .hero-image img.flexItemImageHalf, .all-events--landing .eventFeatured .hero-image .home-page-promoted-card img.flexItemImageHalf, .home-page-promoted-card .all-events--landing .newsFeatured .flexItemImageThird img.flexItemImageHalf, .all-events--landing .newsFeatured .flexItemImageThird .home-page-promoted-card img.flexItemImageHalf, .home-page-promoted-card .all-events--landing .newsFeatured .flexItemImageThirdHalf img.flexItemImageHalf, .all-events--landing .newsFeatured .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageHalf, .home-page-promoted-card .all-events--landing .newsFeatured .hero-image img.flexItemImageHalf, .all-events--landing .newsFeatured .hero-image .home-page-promoted-card img.flexItemImageHalf,
  .home-page-promoted-card .all-news--landing .eventFeatured .flexItemImageThird img.flexItemImageHalf,
  .all-news--landing .eventFeatured .flexItemImageThird .home-page-promoted-card img.flexItemImageHalf,
  .home-page-promoted-card .all-news--landing .eventFeatured .flexItemImageThirdHalf img.flexItemImageHalf,
  .all-news--landing .eventFeatured .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageHalf,
  .home-page-promoted-card .all-news--landing .eventFeatured .hero-image img.flexItemImageHalf,
  .all-news--landing .eventFeatured .hero-image .home-page-promoted-card img.flexItemImageHalf,
  .home-page-promoted-card .all-news--landing .newsFeatured .flexItemImageThird img.flexItemImageHalf,
  .all-news--landing .newsFeatured .flexItemImageThird .home-page-promoted-card img.flexItemImageHalf,
  .home-page-promoted-card .all-news--landing .newsFeatured .flexItemImageThirdHalf img.flexItemImageHalf,
  .all-news--landing .newsFeatured .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageHalf,
  .home-page-promoted-card .all-news--landing .newsFeatured .hero-image img.flexItemImageHalf,
  .all-news--landing .newsFeatured .hero-image .home-page-promoted-card img.flexItemImageHalf, .home-page-promoted-card .all-science--landing .all-science-header .flexItemImageThird img.flexItemImageHalf, .all-science--landing .all-science-header .flexItemImageThird .home-page-promoted-card img.flexItemImageHalf, .home-page-promoted-card .all-science--landing .all-science-header .flexItemImageThirdHalf img.flexItemImageHalf, .all-science--landing .all-science-header .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageHalf, .home-page-promoted-card .all-science--landing .all-science-header .hero-image img.flexItemImageHalf, .all-science--landing .all-science-header .hero-image .home-page-promoted-card img.flexItemImageHalf, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImage img.flexItemImageHalf, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImage .home-page-promoted-card img.flexItemImageHalf, .home-page-promoted-card .homepage-location-container .homepage-location-image img.flexItemImageHalf, .homepage-location-container .homepage-location-image .home-page-promoted-card img.flexItemImageHalf, .home-page-promoted-card .hei-partnering .flexItemImage img.flexItemImageHalf, .hei-partnering .flexItemImage .home-page-promoted-card img.flexItemImageHalf, .home-page-promoted-card .whiteBorderImage.flexItemImageTenth, .home-page-promoted-card .all-events--landing .eventFeatured .flexItemImageThird img.flexItemImageTenth, .all-events--landing .eventFeatured .flexItemImageThird .home-page-promoted-card img.flexItemImageTenth, .home-page-promoted-card .all-events--landing .eventFeatured .flexItemImageThirdHalf img.flexItemImageTenth, .all-events--landing .eventFeatured .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageTenth, .home-page-promoted-card .all-events--landing .eventFeatured .hero-image img.flexItemImageTenth, .all-events--landing .eventFeatured .hero-image .home-page-promoted-card img.flexItemImageTenth, .home-page-promoted-card .all-events--landing .newsFeatured .flexItemImageThird img.flexItemImageTenth, .all-events--landing .newsFeatured .flexItemImageThird .home-page-promoted-card img.flexItemImageTenth, .home-page-promoted-card .all-events--landing .newsFeatured .flexItemImageThirdHalf img.flexItemImageTenth, .all-events--landing .newsFeatured .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageTenth, .home-page-promoted-card .all-events--landing .newsFeatured .hero-image img.flexItemImageTenth, .all-events--landing .newsFeatured .hero-image .home-page-promoted-card img.flexItemImageTenth,
  .home-page-promoted-card .all-news--landing .eventFeatured .flexItemImageThird img.flexItemImageTenth,
  .all-news--landing .eventFeatured .flexItemImageThird .home-page-promoted-card img.flexItemImageTenth,
  .home-page-promoted-card .all-news--landing .eventFeatured .flexItemImageThirdHalf img.flexItemImageTenth,
  .all-news--landing .eventFeatured .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageTenth,
  .home-page-promoted-card .all-news--landing .eventFeatured .hero-image img.flexItemImageTenth,
  .all-news--landing .eventFeatured .hero-image .home-page-promoted-card img.flexItemImageTenth,
  .home-page-promoted-card .all-news--landing .newsFeatured .flexItemImageThird img.flexItemImageTenth,
  .all-news--landing .newsFeatured .flexItemImageThird .home-page-promoted-card img.flexItemImageTenth,
  .home-page-promoted-card .all-news--landing .newsFeatured .flexItemImageThirdHalf img.flexItemImageTenth,
  .all-news--landing .newsFeatured .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageTenth,
  .home-page-promoted-card .all-news--landing .newsFeatured .hero-image img.flexItemImageTenth,
  .all-news--landing .newsFeatured .hero-image .home-page-promoted-card img.flexItemImageTenth, .home-page-promoted-card .all-science--landing .all-science-header .flexItemImageThird img.flexItemImageTenth, .all-science--landing .all-science-header .flexItemImageThird .home-page-promoted-card img.flexItemImageTenth, .home-page-promoted-card .all-science--landing .all-science-header .flexItemImageThirdHalf img.flexItemImageTenth, .all-science--landing .all-science-header .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageTenth, .home-page-promoted-card .all-science--landing .all-science-header .hero-image img.flexItemImageTenth, .all-science--landing .all-science-header .hero-image .home-page-promoted-card img.flexItemImageTenth, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImage img.flexItemImageTenth, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImage .home-page-promoted-card img.flexItemImageTenth, .home-page-promoted-card .homepage-location-container .homepage-location-image img.flexItemImageTenth, .homepage-location-container .homepage-location-image .home-page-promoted-card img.flexItemImageTenth, .home-page-promoted-card .hei-partnering .flexItemImage img.flexItemImageTenth, .hei-partnering .flexItemImage .home-page-promoted-card img.flexItemImageTenth, .home-page-promoted-card .whiteBorderImage.flexItemImageFourth, .home-page-promoted-card .all-events--landing .eventFeatured .flexItemImageThird img.flexItemImageFourth, .all-events--landing .eventFeatured .flexItemImageThird .home-page-promoted-card img.flexItemImageFourth, .home-page-promoted-card .all-events--landing .eventFeatured .flexItemImageThirdHalf img.flexItemImageFourth, .all-events--landing .eventFeatured .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageFourth, .home-page-promoted-card .all-events--landing .eventFeatured .hero-image img.flexItemImageFourth, .all-events--landing .eventFeatured .hero-image .home-page-promoted-card img.flexItemImageFourth, .home-page-promoted-card .all-events--landing .newsFeatured .flexItemImageThird img.flexItemImageFourth, .all-events--landing .newsFeatured .flexItemImageThird .home-page-promoted-card img.flexItemImageFourth, .home-page-promoted-card .all-events--landing .newsFeatured .flexItemImageThirdHalf img.flexItemImageFourth, .all-events--landing .newsFeatured .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageFourth, .home-page-promoted-card .all-events--landing .newsFeatured .hero-image img.flexItemImageFourth, .all-events--landing .newsFeatured .hero-image .home-page-promoted-card img.flexItemImageFourth,
  .home-page-promoted-card .all-news--landing .eventFeatured .flexItemImageThird img.flexItemImageFourth,
  .all-news--landing .eventFeatured .flexItemImageThird .home-page-promoted-card img.flexItemImageFourth,
  .home-page-promoted-card .all-news--landing .eventFeatured .flexItemImageThirdHalf img.flexItemImageFourth,
  .all-news--landing .eventFeatured .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageFourth,
  .home-page-promoted-card .all-news--landing .eventFeatured .hero-image img.flexItemImageFourth,
  .all-news--landing .eventFeatured .hero-image .home-page-promoted-card img.flexItemImageFourth,
  .home-page-promoted-card .all-news--landing .newsFeatured .flexItemImageThird img.flexItemImageFourth,
  .all-news--landing .newsFeatured .flexItemImageThird .home-page-promoted-card img.flexItemImageFourth,
  .home-page-promoted-card .all-news--landing .newsFeatured .flexItemImageThirdHalf img.flexItemImageFourth,
  .all-news--landing .newsFeatured .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageFourth,
  .home-page-promoted-card .all-news--landing .newsFeatured .hero-image img.flexItemImageFourth,
  .all-news--landing .newsFeatured .hero-image .home-page-promoted-card img.flexItemImageFourth, .home-page-promoted-card .all-science--landing .all-science-header .flexItemImageThird img.flexItemImageFourth, .all-science--landing .all-science-header .flexItemImageThird .home-page-promoted-card img.flexItemImageFourth, .home-page-promoted-card .all-science--landing .all-science-header .flexItemImageThirdHalf img.flexItemImageFourth, .all-science--landing .all-science-header .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageFourth, .home-page-promoted-card .all-science--landing .all-science-header .hero-image img.flexItemImageFourth, .all-science--landing .all-science-header .hero-image .home-page-promoted-card img.flexItemImageFourth, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImage img.flexItemImageFourth, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImage .home-page-promoted-card img.flexItemImageFourth, .home-page-promoted-card .homepage-location-container .homepage-location-image img.flexItemImageFourth, .homepage-location-container .homepage-location-image .home-page-promoted-card img.flexItemImageFourth, .home-page-promoted-card .hei-partnering .flexItemImage img.flexItemImageFourth, .hei-partnering .flexItemImage .home-page-promoted-card img.flexItemImageFourth, .home-page-promoted-card .whiteBorderImage.flexItemImageThird, .home-page-promoted-card .whiteBorderImage.flexItemImageThirdHalf, .home-page-promoted-card .all-events--landing .eventFeatured .flexItemImageThird img.flexItemImageThirdHalf, .all-events--landing .eventFeatured .flexItemImageThird .home-page-promoted-card img.flexItemImageThirdHalf, .home-page-promoted-card .all-events--landing .newsFeatured .flexItemImageThird img.flexItemImageThirdHalf, .all-events--landing .newsFeatured .flexItemImageThird .home-page-promoted-card img.flexItemImageThirdHalf,
  .home-page-promoted-card .all-news--landing .eventFeatured .flexItemImageThird img.flexItemImageThirdHalf,
  .all-news--landing .eventFeatured .flexItemImageThird .home-page-promoted-card img.flexItemImageThirdHalf,
  .home-page-promoted-card .all-news--landing .newsFeatured .flexItemImageThird img.flexItemImageThirdHalf,
  .all-news--landing .newsFeatured .flexItemImageThird .home-page-promoted-card img.flexItemImageThirdHalf, .home-page-promoted-card .all-science--landing .all-science-header .flexItemImageThird img.flexItemImageThirdHalf, .all-science--landing .all-science-header .flexItemImageThird .home-page-promoted-card img.flexItemImageThirdHalf, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImage img.flexItemImageThirdHalf, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImage .home-page-promoted-card img.flexItemImageThirdHalf, .home-page-promoted-card .homepage-location-container .homepage-location-image img.flexItemImageThirdHalf, .homepage-location-container .homepage-location-image .home-page-promoted-card img.flexItemImageThirdHalf, .home-page-promoted-card .hei-partnering .flexItemImage img.flexItemImageThirdHalf, .hei-partnering .flexItemImage .home-page-promoted-card img.flexItemImageThirdHalf, .home-page-promoted-card .all-events--landing .eventFeatured .flexItemImageThird img.flexItemImageThird, .all-events--landing .eventFeatured .flexItemImageThird .home-page-promoted-card img.flexItemImageThird, .home-page-promoted-card .all-events--landing .eventFeatured .flexItemImageThirdHalf img.flexItemImageThird, .all-events--landing .eventFeatured .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageThird, .home-page-promoted-card .all-events--landing .eventFeatured .hero-image img.flexItemImageThird, .all-events--landing .eventFeatured .hero-image .home-page-promoted-card img.flexItemImageThird, .home-page-promoted-card .all-events--landing .eventFeatured .flexItemImageThirdHalf img.flexItemImageThirdHalf, .all-events--landing .eventFeatured .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageThirdHalf, .home-page-promoted-card .all-events--landing .eventFeatured .hero-image img.flexItemImageThirdHalf, .all-events--landing .eventFeatured .hero-image .home-page-promoted-card img.flexItemImageThirdHalf, .home-page-promoted-card .all-events--landing .eventFeatured .flexItemImageThird img.hero-image, .all-events--landing .eventFeatured .flexItemImageThird .home-page-promoted-card img.hero-image, .home-page-promoted-card .all-events--landing .eventFeatured .flexItemImageThirdHalf img.hero-image, .all-events--landing .eventFeatured .flexItemImageThirdHalf .home-page-promoted-card img.hero-image, .home-page-promoted-card .all-events--landing .eventFeatured .hero-image img.hero-image, .all-events--landing .eventFeatured .hero-image .home-page-promoted-card img.hero-image, .home-page-promoted-card .all-events--landing .newsFeatured .flexItemImageThird img.flexItemImageThird, .all-events--landing .newsFeatured .flexItemImageThird .home-page-promoted-card img.flexItemImageThird, .home-page-promoted-card .all-events--landing .newsFeatured .flexItemImageThirdHalf img.flexItemImageThird, .all-events--landing .newsFeatured .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageThird, .home-page-promoted-card .all-events--landing .newsFeatured .hero-image img.flexItemImageThird, .all-events--landing .newsFeatured .hero-image .home-page-promoted-card img.flexItemImageThird, .home-page-promoted-card .all-events--landing .newsFeatured .flexItemImageThirdHalf img.flexItemImageThirdHalf, .all-events--landing .newsFeatured .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageThirdHalf, .home-page-promoted-card .all-events--landing .newsFeatured .hero-image img.flexItemImageThirdHalf, .all-events--landing .newsFeatured .hero-image .home-page-promoted-card img.flexItemImageThirdHalf, .home-page-promoted-card .all-events--landing .newsFeatured .flexItemImageThird img.hero-image, .all-events--landing .newsFeatured .flexItemImageThird .home-page-promoted-card img.hero-image, .home-page-promoted-card .all-events--landing .newsFeatured .flexItemImageThirdHalf img.hero-image, .all-events--landing .newsFeatured .flexItemImageThirdHalf .home-page-promoted-card img.hero-image, .home-page-promoted-card .all-events--landing .newsFeatured .hero-image img.hero-image, .all-events--landing .newsFeatured .hero-image .home-page-promoted-card img.hero-image,
  .home-page-promoted-card .all-news--landing .eventFeatured .flexItemImageThird img.flexItemImageThird,
  .all-news--landing .eventFeatured .flexItemImageThird .home-page-promoted-card img.flexItemImageThird,
  .home-page-promoted-card .all-news--landing .eventFeatured .flexItemImageThirdHalf img.flexItemImageThird,
  .all-news--landing .eventFeatured .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageThird,
  .home-page-promoted-card .all-news--landing .eventFeatured .hero-image img.flexItemImageThird,
  .all-news--landing .eventFeatured .hero-image .home-page-promoted-card img.flexItemImageThird,
  .home-page-promoted-card .all-news--landing .eventFeatured .flexItemImageThirdHalf img.flexItemImageThirdHalf,
  .all-news--landing .eventFeatured .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageThirdHalf,
  .home-page-promoted-card .all-news--landing .eventFeatured .hero-image img.flexItemImageThirdHalf,
  .all-news--landing .eventFeatured .hero-image .home-page-promoted-card img.flexItemImageThirdHalf,
  .home-page-promoted-card .all-news--landing .eventFeatured .flexItemImageThird img.hero-image,
  .all-news--landing .eventFeatured .flexItemImageThird .home-page-promoted-card img.hero-image,
  .home-page-promoted-card .all-news--landing .eventFeatured .flexItemImageThirdHalf img.hero-image,
  .all-news--landing .eventFeatured .flexItemImageThirdHalf .home-page-promoted-card img.hero-image,
  .home-page-promoted-card .all-news--landing .eventFeatured .hero-image img.hero-image,
  .all-news--landing .eventFeatured .hero-image .home-page-promoted-card img.hero-image,
  .home-page-promoted-card .all-news--landing .newsFeatured .flexItemImageThird img.flexItemImageThird,
  .all-news--landing .newsFeatured .flexItemImageThird .home-page-promoted-card img.flexItemImageThird,
  .home-page-promoted-card .all-news--landing .newsFeatured .flexItemImageThirdHalf img.flexItemImageThird,
  .all-news--landing .newsFeatured .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageThird,
  .home-page-promoted-card .all-news--landing .newsFeatured .hero-image img.flexItemImageThird,
  .all-news--landing .newsFeatured .hero-image .home-page-promoted-card img.flexItemImageThird,
  .home-page-promoted-card .all-news--landing .newsFeatured .flexItemImageThirdHalf img.flexItemImageThirdHalf,
  .all-news--landing .newsFeatured .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageThirdHalf,
  .home-page-promoted-card .all-news--landing .newsFeatured .hero-image img.flexItemImageThirdHalf,
  .all-news--landing .newsFeatured .hero-image .home-page-promoted-card img.flexItemImageThirdHalf,
  .home-page-promoted-card .all-news--landing .newsFeatured .flexItemImageThird img.hero-image,
  .all-news--landing .newsFeatured .flexItemImageThird .home-page-promoted-card img.hero-image,
  .home-page-promoted-card .all-news--landing .newsFeatured .flexItemImageThirdHalf img.hero-image,
  .all-news--landing .newsFeatured .flexItemImageThirdHalf .home-page-promoted-card img.hero-image,
  .home-page-promoted-card .all-news--landing .newsFeatured .hero-image img.hero-image,
  .all-news--landing .newsFeatured .hero-image .home-page-promoted-card img.hero-image, .home-page-promoted-card .all-science--landing .all-science-header .flexItemImageThird img.flexItemImageThird, .all-science--landing .all-science-header .flexItemImageThird .home-page-promoted-card img.flexItemImageThird, .home-page-promoted-card .all-science--landing .all-science-header .flexItemImageThirdHalf img.flexItemImageThird, .all-science--landing .all-science-header .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageThird, .home-page-promoted-card .all-science--landing .all-science-header .hero-image img.flexItemImageThird, .all-science--landing .all-science-header .hero-image .home-page-promoted-card img.flexItemImageThird, .home-page-promoted-card .all-science--landing .all-science-header .flexItemImageThirdHalf img.flexItemImageThirdHalf, .all-science--landing .all-science-header .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageThirdHalf, .home-page-promoted-card .all-science--landing .all-science-header .hero-image img.flexItemImageThirdHalf, .all-science--landing .all-science-header .hero-image .home-page-promoted-card img.flexItemImageThirdHalf, .home-page-promoted-card .all-science--landing .all-science-header .flexItemImageThird img.hero-image, .all-science--landing .all-science-header .flexItemImageThird .home-page-promoted-card img.hero-image, .home-page-promoted-card .all-science--landing .all-science-header .flexItemImageThirdHalf img.hero-image, .all-science--landing .all-science-header .flexItemImageThirdHalf .home-page-promoted-card img.hero-image, .home-page-promoted-card .all-science--landing .all-science-header .hero-image img.hero-image, .all-science--landing .all-science-header .hero-image .home-page-promoted-card img.hero-image, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImage img.flexItemImageThird, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImage .home-page-promoted-card img.flexItemImageThird, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImage img.hero-image, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImage .home-page-promoted-card img.hero-image, .home-page-promoted-card .whiteBorderImage.hero-image, .home-page-promoted-card .homepage-location-container .homepage-location-image img.hero-image, .homepage-location-container .homepage-location-image .home-page-promoted-card img.hero-image, .home-page-promoted-card .hei-partnering .flexItemImage img.hero-image, .hei-partnering .flexItemImage .home-page-promoted-card img.hero-image, .home-page-promoted-card .homepage-location-container .homepage-location-image img.flexItemImageThird, .homepage-location-container .homepage-location-image .home-page-promoted-card img.flexItemImageThird, .home-page-promoted-card .hei-partnering .flexItemImage img.flexItemImageThird, .hei-partnering .flexItemImage .home-page-promoted-card img.flexItemImageThird, .home-page-promoted-card .all-events--landing .eventFeatured .flexItemImageThird img.flexItemImage, .all-events--landing .eventFeatured .flexItemImageThird .home-page-promoted-card img.flexItemImage, .home-page-promoted-card .all-events--landing .eventFeatured .flexItemImageThirdHalf img.flexItemImage, .all-events--landing .eventFeatured .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImage, .home-page-promoted-card .all-events--landing .eventFeatured .hero-image img.flexItemImage, .all-events--landing .eventFeatured .hero-image .home-page-promoted-card img.flexItemImage, .home-page-promoted-card .all-events--landing .newsFeatured .flexItemImageThird img.flexItemImage, .all-events--landing .newsFeatured .flexItemImageThird .home-page-promoted-card img.flexItemImage, .home-page-promoted-card .all-events--landing .newsFeatured .flexItemImageThirdHalf img.flexItemImage, .all-events--landing .newsFeatured .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImage, .home-page-promoted-card .all-events--landing .newsFeatured .hero-image img.flexItemImage, .all-events--landing .newsFeatured .hero-image .home-page-promoted-card img.flexItemImage,
  .home-page-promoted-card .all-news--landing .eventFeatured .flexItemImageThird img.flexItemImage,
  .all-news--landing .eventFeatured .flexItemImageThird .home-page-promoted-card img.flexItemImage,
  .home-page-promoted-card .all-news--landing .eventFeatured .flexItemImageThirdHalf img.flexItemImage,
  .all-news--landing .eventFeatured .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImage,
  .home-page-promoted-card .all-news--landing .eventFeatured .hero-image img.flexItemImage,
  .all-news--landing .eventFeatured .hero-image .home-page-promoted-card img.flexItemImage,
  .home-page-promoted-card .all-news--landing .newsFeatured .flexItemImageThird img.flexItemImage,
  .all-news--landing .newsFeatured .flexItemImageThird .home-page-promoted-card img.flexItemImage,
  .home-page-promoted-card .all-news--landing .newsFeatured .flexItemImageThirdHalf img.flexItemImage,
  .all-news--landing .newsFeatured .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImage,
  .home-page-promoted-card .all-news--landing .newsFeatured .hero-image img.flexItemImage,
  .all-news--landing .newsFeatured .hero-image .home-page-promoted-card img.flexItemImage, .home-page-promoted-card .all-science--landing .all-science-header .flexItemImageThird img.flexItemImage, .all-science--landing .all-science-header .flexItemImageThird .home-page-promoted-card img.flexItemImage, .home-page-promoted-card .all-science--landing .all-science-header .flexItemImageThirdHalf img.flexItemImage, .all-science--landing .all-science-header .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImage, .home-page-promoted-card .all-science--landing .all-science-header .hero-image img.flexItemImage, .all-science--landing .all-science-header .hero-image .home-page-promoted-card img.flexItemImage, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImage img.flexItemImage, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImage .home-page-promoted-card img.flexItemImage, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageHalf img.flexItemImage, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageHalf .home-page-promoted-card img.flexItemImage, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageTenth img.flexItemImage, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageTenth .home-page-promoted-card img.flexItemImage, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageFourth img.flexItemImage, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageFourth .home-page-promoted-card img.flexItemImage, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThird img.flexItemImage, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThird .home-page-promoted-card img.flexItemImage, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThirdHalf img.flexItemImage, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImage, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .hero-image img.flexItemImage, .nhlbi-publications-and-resources--landing .publications-and-resources-header .hero-image .home-page-promoted-card img.flexItemImage, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageHalf img.flexItemImageHalf, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageHalf .home-page-promoted-card img.flexItemImageHalf, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageTenth img.flexItemImageHalf, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageTenth .home-page-promoted-card img.flexItemImageHalf, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageFourth img.flexItemImageHalf, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageFourth .home-page-promoted-card img.flexItemImageHalf, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThird img.flexItemImageHalf, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThird .home-page-promoted-card img.flexItemImageHalf, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThirdHalf img.flexItemImageHalf, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageHalf, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .hero-image img.flexItemImageHalf, .nhlbi-publications-and-resources--landing .publications-and-resources-header .hero-image .home-page-promoted-card img.flexItemImageHalf, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageHalf img.flexItemImageTenth, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageHalf .home-page-promoted-card img.flexItemImageTenth, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageTenth img.flexItemImageTenth, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageTenth .home-page-promoted-card img.flexItemImageTenth, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageFourth img.flexItemImageTenth, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageFourth .home-page-promoted-card img.flexItemImageTenth, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThird img.flexItemImageTenth, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThird .home-page-promoted-card img.flexItemImageTenth, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThirdHalf img.flexItemImageTenth, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageTenth, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .hero-image img.flexItemImageTenth, .nhlbi-publications-and-resources--landing .publications-and-resources-header .hero-image .home-page-promoted-card img.flexItemImageTenth, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageHalf img.flexItemImageFourth, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageHalf .home-page-promoted-card img.flexItemImageFourth, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageTenth img.flexItemImageFourth, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageTenth .home-page-promoted-card img.flexItemImageFourth, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageFourth img.flexItemImageFourth, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageFourth .home-page-promoted-card img.flexItemImageFourth, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThird img.flexItemImageFourth, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThird .home-page-promoted-card img.flexItemImageFourth, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThirdHalf img.flexItemImageFourth, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageFourth, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .hero-image img.flexItemImageFourth, .nhlbi-publications-and-resources--landing .publications-and-resources-header .hero-image .home-page-promoted-card img.flexItemImageFourth, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageHalf img.flexItemImageThird, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageHalf .home-page-promoted-card img.flexItemImageThird, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageTenth img.flexItemImageThird, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageTenth .home-page-promoted-card img.flexItemImageThird, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageFourth img.flexItemImageThird, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageFourth .home-page-promoted-card img.flexItemImageThird, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThird img.flexItemImageThird, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThird .home-page-promoted-card img.flexItemImageThird, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThirdHalf img.flexItemImageThird, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageThird, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .hero-image img.flexItemImageThird, .nhlbi-publications-and-resources--landing .publications-and-resources-header .hero-image .home-page-promoted-card img.flexItemImageThird, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageHalf img.flexItemImageThirdHalf, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageHalf .home-page-promoted-card img.flexItemImageThirdHalf, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageTenth img.flexItemImageThirdHalf, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageTenth .home-page-promoted-card img.flexItemImageThirdHalf, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageFourth img.flexItemImageThirdHalf, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageFourth .home-page-promoted-card img.flexItemImageThirdHalf, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThird img.flexItemImageThirdHalf, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThird .home-page-promoted-card img.flexItemImageThirdHalf, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThirdHalf img.flexItemImageThirdHalf, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageThirdHalf, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .hero-image img.flexItemImageThirdHalf, .nhlbi-publications-and-resources--landing .publications-and-resources-header .hero-image .home-page-promoted-card img.flexItemImageThirdHalf, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageHalf img.hero-image, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageHalf .home-page-promoted-card img.hero-image, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageTenth img.hero-image, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageTenth .home-page-promoted-card img.hero-image, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageFourth img.hero-image, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageFourth .home-page-promoted-card img.hero-image, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThird img.hero-image, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThird .home-page-promoted-card img.hero-image, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThirdHalf img.hero-image, .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemImageThirdHalf .home-page-promoted-card img.hero-image, .home-page-promoted-card .nhlbi-publications-and-resources--landing .publications-and-resources-header .hero-image img.hero-image, .nhlbi-publications-and-resources--landing .publications-and-resources-header .hero-image .home-page-promoted-card img.hero-image, .home-page-promoted-card .homepage-location-container .homepage-location-image img.flexItemImage, .homepage-location-container .homepage-location-image .home-page-promoted-card img.flexItemImage, .home-page-promoted-card .hei-partnering .flexItemImage img.flexItemImage, .hei-partnering .flexItemImage .home-page-promoted-card img.flexItemImage, .home-page-promoted-card .hei-partnering .flexItemImageHalf img.flexItemImage, .hei-partnering .flexItemImageHalf .home-page-promoted-card img.flexItemImage, .home-page-promoted-card .hei-partnering .flexItemImageTenth img.flexItemImage, .hei-partnering .flexItemImageTenth .home-page-promoted-card img.flexItemImage, .home-page-promoted-card .hei-partnering .flexItemImageFourth img.flexItemImage, .hei-partnering .flexItemImageFourth .home-page-promoted-card img.flexItemImage, .home-page-promoted-card .hei-partnering .flexItemImageThird img.flexItemImage, .hei-partnering .flexItemImageThird .home-page-promoted-card img.flexItemImage, .home-page-promoted-card .hei-partnering .flexItemImageThirdHalf img.flexItemImage, .hei-partnering .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImage, .home-page-promoted-card .hei-partnering .hero-image img.flexItemImage, .hei-partnering .hero-image .home-page-promoted-card img.flexItemImage, .home-page-promoted-card .hei-partnering .flexItemImageHalf img.flexItemImageHalf, .hei-partnering .flexItemImageHalf .home-page-promoted-card img.flexItemImageHalf, .home-page-promoted-card .hei-partnering .flexItemImageTenth img.flexItemImageHalf, .hei-partnering .flexItemImageTenth .home-page-promoted-card img.flexItemImageHalf, .home-page-promoted-card .hei-partnering .flexItemImageFourth img.flexItemImageHalf, .hei-partnering .flexItemImageFourth .home-page-promoted-card img.flexItemImageHalf, .home-page-promoted-card .hei-partnering .flexItemImageThird img.flexItemImageHalf, .hei-partnering .flexItemImageThird .home-page-promoted-card img.flexItemImageHalf, .home-page-promoted-card .hei-partnering .flexItemImageThirdHalf img.flexItemImageHalf, .hei-partnering .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageHalf, .home-page-promoted-card .hei-partnering .hero-image img.flexItemImageHalf, .hei-partnering .hero-image .home-page-promoted-card img.flexItemImageHalf, .home-page-promoted-card .hei-partnering .flexItemImageHalf img.flexItemImageTenth, .hei-partnering .flexItemImageHalf .home-page-promoted-card img.flexItemImageTenth, .home-page-promoted-card .hei-partnering .flexItemImageTenth img.flexItemImageTenth, .hei-partnering .flexItemImageTenth .home-page-promoted-card img.flexItemImageTenth, .home-page-promoted-card .hei-partnering .flexItemImageFourth img.flexItemImageTenth, .hei-partnering .flexItemImageFourth .home-page-promoted-card img.flexItemImageTenth, .home-page-promoted-card .hei-partnering .flexItemImageThird img.flexItemImageTenth, .hei-partnering .flexItemImageThird .home-page-promoted-card img.flexItemImageTenth, .home-page-promoted-card .hei-partnering .flexItemImageThirdHalf img.flexItemImageTenth, .hei-partnering .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageTenth, .home-page-promoted-card .hei-partnering .hero-image img.flexItemImageTenth, .hei-partnering .hero-image .home-page-promoted-card img.flexItemImageTenth, .home-page-promoted-card .hei-partnering .flexItemImageHalf img.flexItemImageFourth, .hei-partnering .flexItemImageHalf .home-page-promoted-card img.flexItemImageFourth, .home-page-promoted-card .hei-partnering .flexItemImageTenth img.flexItemImageFourth, .hei-partnering .flexItemImageTenth .home-page-promoted-card img.flexItemImageFourth, .home-page-promoted-card .hei-partnering .flexItemImageFourth img.flexItemImageFourth, .hei-partnering .flexItemImageFourth .home-page-promoted-card img.flexItemImageFourth, .home-page-promoted-card .hei-partnering .flexItemImageThird img.flexItemImageFourth, .hei-partnering .flexItemImageThird .home-page-promoted-card img.flexItemImageFourth, .home-page-promoted-card .hei-partnering .flexItemImageThirdHalf img.flexItemImageFourth, .hei-partnering .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageFourth, .home-page-promoted-card .hei-partnering .hero-image img.flexItemImageFourth, .hei-partnering .hero-image .home-page-promoted-card img.flexItemImageFourth, .home-page-promoted-card .hei-partnering .flexItemImageHalf img.flexItemImageThird, .hei-partnering .flexItemImageHalf .home-page-promoted-card img.flexItemImageThird, .home-page-promoted-card .hei-partnering .flexItemImageTenth img.flexItemImageThird, .hei-partnering .flexItemImageTenth .home-page-promoted-card img.flexItemImageThird, .home-page-promoted-card .hei-partnering .flexItemImageFourth img.flexItemImageThird, .hei-partnering .flexItemImageFourth .home-page-promoted-card img.flexItemImageThird, .home-page-promoted-card .hei-partnering .flexItemImageThird img.flexItemImageThird, .hei-partnering .flexItemImageThird .home-page-promoted-card img.flexItemImageThird, .home-page-promoted-card .hei-partnering .flexItemImageThirdHalf img.flexItemImageThird, .hei-partnering .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageThird, .home-page-promoted-card .hei-partnering .hero-image img.flexItemImageThird, .hei-partnering .hero-image .home-page-promoted-card img.flexItemImageThird, .home-page-promoted-card .hei-partnering .flexItemImageHalf img.flexItemImageThirdHalf, .hei-partnering .flexItemImageHalf .home-page-promoted-card img.flexItemImageThirdHalf, .home-page-promoted-card .hei-partnering .flexItemImageTenth img.flexItemImageThirdHalf, .hei-partnering .flexItemImageTenth .home-page-promoted-card img.flexItemImageThirdHalf, .home-page-promoted-card .hei-partnering .flexItemImageFourth img.flexItemImageThirdHalf, .hei-partnering .flexItemImageFourth .home-page-promoted-card img.flexItemImageThirdHalf, .home-page-promoted-card .hei-partnering .flexItemImageThird img.flexItemImageThirdHalf, .hei-partnering .flexItemImageThird .home-page-promoted-card img.flexItemImageThirdHalf, .home-page-promoted-card .hei-partnering .flexItemImageThirdHalf img.flexItemImageThirdHalf, .hei-partnering .flexItemImageThirdHalf .home-page-promoted-card img.flexItemImageThirdHalf, .home-page-promoted-card .hei-partnering .hero-image img.flexItemImageThirdHalf, .hei-partnering .hero-image .home-page-promoted-card img.flexItemImageThirdHalf, .home-page-promoted-card .hei-partnering .flexItemImageHalf img.hero-image, .hei-partnering .flexItemImageHalf .home-page-promoted-card img.hero-image, .home-page-promoted-card .hei-partnering .flexItemImageTenth img.hero-image, .hei-partnering .flexItemImageTenth .home-page-promoted-card img.hero-image, .home-page-promoted-card .hei-partnering .flexItemImageFourth img.hero-image, .hei-partnering .flexItemImageFourth .home-page-promoted-card img.hero-image, .home-page-promoted-card .hei-partnering .flexItemImageThird img.hero-image, .hei-partnering .flexItemImageThird .home-page-promoted-card img.hero-image, .home-page-promoted-card .hei-partnering .flexItemImageThirdHalf img.hero-image, .hei-partnering .flexItemImageThirdHalf .home-page-promoted-card img.hero-image, .home-page-promoted-card .hei-partnering .hero-image img.hero-image, .hei-partnering .hero-image .home-page-promoted-card img.hero-image {
    width: 30%;
  }
}
/* line 298, ../sass/components/_homepage.scss */
.home-page-promoted-card .flexItemText {
  -webkit-box-ordinal-group: 2;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
  padding: 0 1em;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 298, ../sass/components/_homepage.scss */
  .home-page-promoted-card .flexItemText {
    width: 65%;
    padding: 1em 0.5em;
  }
}

@media all and (min-width: 1100px) {
  /* line 307, ../sass/components/_homepage.scss */
  .homepage-health-topics-container {
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
  }
}
/* line 319, ../sass/components/_homepage.scss */
.homepage-health-topics-container .homepage-health-topics-images {
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-shrink: 0;
  -o-flex-shrink: 0;
  flex-shrink: 0;
}
@media all and (min-width: 768px) {
  /* line 319, ../sass/components/_homepage.scss */
  .homepage-health-topics-container .homepage-health-topics-images {
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
    width: 50%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 319, ../sass/components/_homepage.scss */
  .homepage-health-topics-container .homepage-health-topics-images {
    -webkit-box-ordinal-group: 2;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
    padding-top: 1.5em;
    width: auto;
  }
}
/* line 331, ../sass/components/_homepage.scss */
.homepage-health-topics-container .homepage-health-topics-text {
  -webkit-box-ordinal-group: 2;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
}
@media all and (min-width: 768px) {
  /* line 331, ../sass/components/_homepage.scss */
  .homepage-health-topics-container .homepage-health-topics-text {
    -webkit-box-ordinal-group: 2;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
    width: 45%;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 331, ../sass/components/_homepage.scss */
  .homepage-health-topics-container .homepage-health-topics-text {
    padding-left: 2em;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 331, ../sass/components/_homepage.scss */
  .homepage-health-topics-container .homepage-health-topics-text {
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
    width: auto;
  }
}
/* line 347, ../sass/components/_homepage.scss */
.homepage-health-topics-container .homepage-health-topics-text .homepage-health-topics-text-wrapper {
  width: 100%;
}

/* line 352, ../sass/components/_homepage.scss */
.field--name-field-health-topic-images {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}

/* line 357, ../sass/components/_homepage.scss */
.field--name-field-health-topic-images > .field__item {
  width: 47%;
  margin-right: 0.5em;
  margin-bottom: 0.1em;
}

/* line 362, ../sass/components/_homepage.scss */
ul.health-topic-link-list {
  list-style: none;
  padding: 0;
}
/* line 365, ../sass/components/_homepage.scss */
ul.health-topic-link-list li {
  margin-bottom: 1.25em;
}
/* line 367, ../sass/components/_homepage.scss */
ul.health-topic-link-list li a {
  font-family: "Open Sans", sans-serif;
}
/* line 369, ../sass/components/_homepage.scss */
ul.health-topic-link-list li a:focus, ul.health-topic-link-list li a:active {
  outline: #bf0d2e 3px dotted;
}
/* line 372, ../sass/components/_homepage.scss */
ul.health-topic-link-list li a:link {
  color: #0051a8;
}

/* line 378, ../sass/components/_homepage.scss */
.home-page-mission-background {
  background-color: #fff;
}

/* line 384, ../sass/components/_homepage.scss */
.homepage-mission-areas-container {
  overflow: visible;
  height: auto;
}
@media all and (min-width: 1100px) {
  /* line 384, ../sass/components/_homepage.scss */
  .homepage-mission-areas-container {
    padding-top: 7em;
    padding-bottom: 9em;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 384, ../sass/components/_homepage.scss */
  .homepage-mission-areas-container {
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 384, ../sass/components/_homepage.scss */
  .homepage-mission-areas-container {
    padding-top: 9em;
    padding-bottom: 9em;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 384, ../sass/components/_homepage.scss */
  .homepage-mission-areas-container {
    padding-top: 12em;
    padding-bottom: 6em;
  }
}
/* line 406, ../sass/components/_homepage.scss */
.homepage-mission-areas-container .homepage-mission-areas-text {
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
  padding-right: 2em;
}
/* line 411, ../sass/components/_homepage.scss */
.homepage-mission-areas-container .homepage-mission-areas-text h3, .homepage-mission-areas-container .homepage-mission-areas-text .field--name-field-social-phrase-group-title, .homepage-mission-areas-container .homepage-mission-areas-text .field--name-field-image-gallery-title {
  font-size: 1.125rem;
  margin: 0 0 11px 0;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-weight: normal;
  font-style: normal;
  text-transform: uppercase;
  font-size: 1.125rem;
  font-size: 1.25rem;
  text-transform: none;
  padding: 0;
  margin: 1.5em 0 0.25em;
}
@media all and (min-width: 1440px) {
  /* line 411, ../sass/components/_homepage.scss */
  .homepage-mission-areas-container .homepage-mission-areas-text h3, .homepage-mission-areas-container .homepage-mission-areas-text .field--name-field-social-phrase-group-title, .homepage-mission-areas-container .homepage-mission-areas-text .field--name-field-image-gallery-title {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 411, ../sass/components/_homepage.scss */
  .homepage-mission-areas-container .homepage-mission-areas-text h3, .homepage-mission-areas-container .homepage-mission-areas-text .field--name-field-social-phrase-group-title, .homepage-mission-areas-container .homepage-mission-areas-text .field--name-field-image-gallery-title {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 411, ../sass/components/_homepage.scss */
  .homepage-mission-areas-container .homepage-mission-areas-text h3, .homepage-mission-areas-container .homepage-mission-areas-text .field--name-field-social-phrase-group-title, .homepage-mission-areas-container .homepage-mission-areas-text .field--name-field-image-gallery-title {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 411, ../sass/components/_homepage.scss */
  .homepage-mission-areas-container .homepage-mission-areas-text h3, .homepage-mission-areas-container .homepage-mission-areas-text .field--name-field-social-phrase-group-title, .homepage-mission-areas-container .homepage-mission-areas-text .field--name-field-image-gallery-title {
    font-size: 1rem;
  }
}
@media all and (min-width: 1440px) {
  /* line 411, ../sass/components/_homepage.scss */
  .homepage-mission-areas-container .homepage-mission-areas-text h3, .homepage-mission-areas-container .homepage-mission-areas-text .field--name-field-social-phrase-group-title, .homepage-mission-areas-container .homepage-mission-areas-text .field--name-field-image-gallery-title {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 411, ../sass/components/_homepage.scss */
  .homepage-mission-areas-container .homepage-mission-areas-text h3, .homepage-mission-areas-container .homepage-mission-areas-text .field--name-field-social-phrase-group-title, .homepage-mission-areas-container .homepage-mission-areas-text .field--name-field-image-gallery-title {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 411, ../sass/components/_homepage.scss */
  .homepage-mission-areas-container .homepage-mission-areas-text h3, .homepage-mission-areas-container .homepage-mission-areas-text .field--name-field-social-phrase-group-title, .homepage-mission-areas-container .homepage-mission-areas-text .field--name-field-image-gallery-title {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 411, ../sass/components/_homepage.scss */
  .homepage-mission-areas-container .homepage-mission-areas-text h3, .homepage-mission-areas-container .homepage-mission-areas-text .field--name-field-social-phrase-group-title, .homepage-mission-areas-container .homepage-mission-areas-text .field--name-field-image-gallery-title {
    font-size: 1rem;
  }
}
/* line 419, ../sass/components/_homepage.scss */
.homepage-mission-areas-container .homepage-mission-areas-text h3 a:focus, .homepage-mission-areas-container .homepage-mission-areas-text .field--name-field-social-phrase-group-title a:focus, .homepage-mission-areas-container .homepage-mission-areas-text .field--name-field-image-gallery-title a:focus, .homepage-mission-areas-container .homepage-mission-areas-text h3 a:active, .homepage-mission-areas-container .homepage-mission-areas-text .field--name-field-social-phrase-group-title a:active, .homepage-mission-areas-container .homepage-mission-areas-text .field--name-field-image-gallery-title a:active {
  outline: #fff 3px dotted;
}
/* line 424, ../sass/components/_homepage.scss */
.homepage-mission-areas-container .homepage-mission-areas-text h3.white-text a, .homepage-mission-areas-container .homepage-mission-areas-text .white-text.field--name-field-social-phrase-group-title a, .homepage-mission-areas-container .homepage-mission-areas-text .white-text.field--name-field-image-gallery-title a {
  color: #fff;
}
/* line 427, ../sass/components/_homepage.scss */
.homepage-mission-areas-container .homepage-mission-areas-text h3.white-text a:visited, .homepage-mission-areas-container .homepage-mission-areas-text .white-text.field--name-field-social-phrase-group-title a:visited, .homepage-mission-areas-container .homepage-mission-areas-text .white-text.field--name-field-image-gallery-title a:visited {
  color: #D7E7F4;
}
/* line 430, ../sass/components/_homepage.scss */
.homepage-mission-areas-container .homepage-mission-areas-text a.bluebutton {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #1a568c;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #fff;
  padding: 0.8em 3em;
  display: table !important;
  background-image: none;
  margin: 2em 0;
}
@media all and (min-width: 1440px) {
  /* line 430, ../sass/components/_homepage.scss */
  .homepage-mission-areas-container .homepage-mission-areas-text a.bluebutton {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 430, ../sass/components/_homepage.scss */
  .homepage-mission-areas-container .homepage-mission-areas-text a.bluebutton {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 430, ../sass/components/_homepage.scss */
  .homepage-mission-areas-container .homepage-mission-areas-text a.bluebutton {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 430, ../sass/components/_homepage.scss */
  .homepage-mission-areas-container .homepage-mission-areas-text a.bluebutton {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.homepage-mission-areas-container .homepage-mission-areas-text a.bluebutton :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 430, ../sass/components/_homepage.scss */
  .homepage-mission-areas-container .homepage-mission-areas-text a.bluebutton {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 430, ../sass/components/_homepage.scss */
  .homepage-mission-areas-container .homepage-mission-areas-text a.bluebutton {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 430, ../sass/components/_homepage.scss */
  .homepage-mission-areas-container .homepage-mission-areas-text a.bluebutton {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 430, ../sass/components/_homepage.scss */
  .homepage-mission-areas-container .homepage-mission-areas-text a.bluebutton {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 430, ../sass/components/_homepage.scss */
  .homepage-mission-areas-container .homepage-mission-areas-text a.bluebutton {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.homepage-mission-areas-container .homepage-mission-areas-text a.bluebutton:hover {
  background-color: #d7e7f4;
  border-color: #d7e7f4;
  color: #222;
  text-decoration: none;
}
/* line 2379, ../sass/_mixins.scss */
.homepage-mission-areas-container .homepage-mission-areas-text a.bluebutton:focus, .homepage-mission-areas-container .homepage-mission-areas-text a.bluebutton:active {
  outline: #fff dotted 3px !important;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 430, ../sass/components/_homepage.scss */
  .homepage-mission-areas-container .homepage-mission-areas-text a.bluebutton {
    margin-left: auto;
    margin-right: auto;
  }
}
@media all and (min-width: 1100px) {
  /* line 406, ../sass/components/_homepage.scss */
  .homepage-mission-areas-container .homepage-mission-areas-text {
    width: 45%;
    -webkit-align-self: center;
    -moz-align-self: center;
    -ms-align-self: center;
    -o-align-self: center;
    align-self: center;
    -webkit-justify-self: center;
    -moz-justify-self: center;
    -ms-justify-self: center;
    -o-justify-self: center;
    justify-self: center;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 406, ../sass/components/_homepage.scss */
  .homepage-mission-areas-container .homepage-mission-areas-text {
    padding-right: 0;
    width: 100%;
  }
}
/* line 451, ../sass/components/_homepage.scss */
.homepage-mission-areas-container .homepage-mission-areas-text .field--name-field-social-phrase-group-title {
  margin: 1.5em 0 0.25em;
  padding: 0;
}
/* line 455, ../sass/components/_homepage.scss */
.homepage-mission-areas-container .homepage-mission-areas-text .field--name-field-image-gallery-title {
  margin: 1.5em 0 0.25em;
  padding: 0;
}
/* line 460, ../sass/components/_homepage.scss */
.homepage-mission-areas-container .homepage-mission-areas-images {
  -webkit-box-ordinal-group: 2;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
}
@media all and (min-width: 1100px) {
  /* line 460, ../sass/components/_homepage.scss */
  .homepage-mission-areas-container .homepage-mission-areas-images {
    width: 45%;
    -webkit-box-ordinal-group: 2;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 460, ../sass/components/_homepage.scss */
  .homepage-mission-areas-container .homepage-mission-areas-images {
    display: none;
  }
}

/* line 471, ../sass/components/_homepage.scss */
.homepage-organization-container {
  padding-bottom: 2em;
}

/* line 475, ../sass/components/_homepage.scss */
h2.homepage-location-title, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.homepage-location-title, .homepage-location-title.contact-method-label {
  margin: 1.5em 0 0.25em;
  padding: 0;
}

/* line 479, ../sass/components/_homepage.scss */
.homepage-location-title.contact-method-label {
  margin: 1.5em 0 0.25em;
  padding: 0;
}

/* line 483, ../sass/components/_homepage.scss */
.homepage-location-container {
  padding-bottom: 2em;
  overflow: visible;
}
/* line 488, ../sass/components/_homepage.scss */
.homepage-location-container .homepage-location-text {
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-shrink: 0;
  -o-flex-shrink: 0;
  flex-shrink: 0;
}
@media all and (min-width: 1100px) {
  /* line 488, ../sass/components/_homepage.scss */
  .homepage-location-container .homepage-location-text {
    width: 45%;
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
    padding-right: 2em;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 488, ../sass/components/_homepage.scss */
  .homepage-location-container .homepage-location-text {
    width: 45%;
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
    padding-right: 2em;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 488, ../sass/components/_homepage.scss */
  .homepage-location-container .homepage-location-text {
    padding-top: 1em;
    width: auto;
    -webkit-box-ordinal-group: 2;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
    padding-right: 0;
  }
}
/* line 506, ../sass/components/_homepage.scss */
.homepage-location-container .homepage-location-text .mapLocation {
  float: none;
}
/* line 508, ../sass/components/_homepage.scss */
.homepage-location-container .homepage-location-text .mapLocation h3, .homepage-location-container .homepage-location-text .mapLocation .field--name-field-social-phrase-group-title, .homepage-location-container .homepage-location-text .mapLocation .field--name-field-image-gallery-title {
  margin-top: 0;
  color: #222;
}
/* line 514, ../sass/components/_homepage.scss */
.homepage-location-container .homepage-location-image {
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-shrink: 0;
  -o-flex-shrink: 0;
  flex-shrink: 0;
}
@media all and (min-width: 1100px) {
  /* line 514, ../sass/components/_homepage.scss */
  .homepage-location-container .homepage-location-image {
    width: 45%;
    -webkit-box-ordinal-group: 2;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 514, ../sass/components/_homepage.scss */
  .homepage-location-container .homepage-location-image {
    width: 45%;
    -webkit-box-ordinal-group: 2;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 514, ../sass/components/_homepage.scss */
  .homepage-location-container .homepage-location-image {
    width: auto;
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
}

/* line 535, ../sass/components/_homepage.scss */
.homepage-view-button a.bluebutton {
  margin: 2em 0;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 535, ../sass/components/_homepage.scss */
  .homepage-view-button a.bluebutton {
    margin-left: auto;
    margin-right: auto;
  }
}

/* line 545, ../sass/components/_homepage.scss */
.field--name-field-events-descriptive-callout .component-callout-container-descriptive {
  padding-left: 2.5em;
}
/* line 548, ../sass/components/_homepage.scss */
.field--name-field-events-descriptive-callout .callout-descriptive {
  grid-template-columns: 100% !important;
  max-width: none;
  border-radius: 8px !important;
  border-left: none !important;
}

/* line 1, ../sass/components/_banner_promotion.scss */
#banner-promotion-wrapper {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 1;
  border-top: 10px solid #1C578B;
}
/* line 7, ../sass/components/_banner_promotion.scss */
#banner-promotion-wrapper .content-container {
  margin-top: 0;
}
/* line 10, ../sass/components/_banner_promotion.scss */
#banner-promotion-wrapper a.banner-promotion-close, #banner-promotion-wrapper a.banner-promotion-close:link, #banner-promotion-wrapper a.banner-promotion-close:active, #banner-promotion-wrapper a.banner-promotion-close:visited {
  width: 19px;
  position: absolute;
  right: 15px;
  top: 2rem;
}
/* line 17, ../sass/components/_banner_promotion.scss */
#banner-promotion-wrapper a.banner-promotion-close:hover {
  background-color: transparent;
}
/* line 22, ../sass/components/_banner_promotion.scss */
#banner-promotion-wrapper a {
  text-decoration: none;
}
/* line 25, ../sass/components/_banner_promotion.scss */
#banner-promotion-wrapper a .banner-promotion-title {
  text-decoration: underline;
  text-decoration-color: #1C578B;
}
/* line 29, ../sass/components/_banner_promotion.scss */
#banner-promotion-wrapper a:hover {
  font-weight: normal;
}

/* line 34, ../sass/components/_banner_promotion.scss */
.banner-promotion-title {
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  text-transform: uppercase;
  padding-bottom: 1em;
  font-size: 1.125rem;
  line-height: 1.25;
}
/* line 39, ../sass/components/_banner_promotion.scss */
.banner-promotion-title .blue-promotion-text {
  color: #1C578B;
}
/* line 42, ../sass/components/_banner_promotion.scss */
.banner-promotion-title .red-promotion-text {
  color: #ae304d;
}
@media all and (min-width: 1440px) {
  /* line 34, ../sass/components/_banner_promotion.scss */
  .banner-promotion-title {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 34, ../sass/components/_banner_promotion.scss */
  .banner-promotion-title {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 34, ../sass/components/_banner_promotion.scss */
  .banner-promotion-title {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 34, ../sass/components/_banner_promotion.scss */
  .banner-promotion-title {
    font-size: 1rem;
  }
}

/* line 48, ../sass/components/_banner_promotion.scss */
.banner-promotion-container-wrapper {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 48, ../sass/components/_banner_promotion.scss */
  .banner-promotion-container-wrapper {
    padding-bottom: 3rem;
  }
}

/* line 55, ../sass/components/_banner_promotion.scss */
.banner-promotion-container {
  padding-left: 90px;
  padding-right: 45px;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 55, ../sass/components/_banner_promotion.scss */
  .banner-promotion-container {
    padding-left: 70px;
  }
}

/* line 63, ../sass/components/_banner_promotion.scss */
.banner-promotion-container.hide-banner {
  display: none;
}

/* line 2, ../sass/components/_science_supplemental.scss */
.node--type-science-supplemental .tertiary-blue-background-box {
  background-color: #102d66;
}
/* line 4, ../sass/components/_science_supplemental.scss */
.node--type-science-supplemental .tertiary-blue-background-box h2.mainheading, .node--type-science-supplemental .tertiary-blue-background-box .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.mainheading, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-science-supplemental .tertiary-blue-background-box h1.mainheading, .node--type-science-supplemental .tertiary-blue-background-box .mainheading.contact-method-label {
  color: #fff;
  padding-top: 10px;
}
/* line 9, ../sass/components/_science_supplemental.scss */
.node--type-science-supplemental h1 {
  background-color: #f4f4f4;
  padding-top: 0;
  margin: 0;
}
/* line 15, ../sass/components/_science_supplemental.scss */
.node--type-science-supplemental .tools-content h3, .node--type-science-supplemental .tools-content .field--name-field-social-phrase-group-title, .node--type-science-supplemental .tools-content .field--name-field-image-gallery-title {
  margin-bottom: 0;
}
/* line 19, ../sass/components/_science_supplemental.scss */
.node--type-science-supplemental .tool-card {
  padding-bottom: 2em;
}
/* line 22, ../sass/components/_science_supplemental.scss */
.node--type-science-supplemental .publicationsContainer {
  background-color: #f4f4f4;
}
/* line 24, ../sass/components/_science_supplemental.scss */
.node--type-science-supplemental .publicationsContainer .herobannertitle, .node--type-science-supplemental .publicationsContainer .herobannertitle-grey {
  padding-top: 20px;
}
/* line 28, ../sass/components/_science_supplemental.scss */
.node--type-science-supplemental .publicationsContainer h2, .node--type-science-supplemental .publicationsContainer .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-science-supplemental .publicationsContainer h1, .node--type-science-supplemental .publicationsContainer .contact-method-label {
  color: #222;
  padding-top: 1.5em;
}
/* line 32, ../sass/components/_science_supplemental.scss */
.node--type-science-supplemental .publicationsContainer .views-element-container {
  padding-top: 1em;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 32, ../sass/components/_science_supplemental.scss */
  .node--type-science-supplemental .publicationsContainer .views-element-container {
    padding-left: 0;
  }
}
/* line 39, ../sass/components/_science_supplemental.scss */
.node--type-science-supplemental .publicationsContainer .views-element-container .view-nhlbi-research-publications {
  overflow: hidden;
  width: -webkit-fill-available;
  width: -moz-fill-available;
  width: -ms-fill-available;
  width: -o-fill-available;
  width: fill-available;
  width: -moz-available;
  width: available;
}
/* line 45, ../sass/components/_science_supplemental.scss */
.node--type-science-supplemental .publicationsContainer .views-element-container .view-nhlbi-research-publications h3 a, .node--type-science-supplemental .publicationsContainer .views-element-container .view-nhlbi-research-publications .field--name-field-social-phrase-group-title a, .node--type-science-supplemental .publicationsContainer .views-element-container .view-nhlbi-research-publications .field--name-field-image-gallery-title a {
  text-decoration: none;
  color: #3885ca;
}
/* line 49, ../sass/components/_science_supplemental.scss */
.node--type-science-supplemental .publicationsContainer .views-element-container .view-nhlbi-research-publications h3 a:hover, .node--type-science-supplemental .publicationsContainer .views-element-container .view-nhlbi-research-publications .field--name-field-social-phrase-group-title a:hover, .node--type-science-supplemental .publicationsContainer .views-element-container .view-nhlbi-research-publications .field--name-field-image-gallery-title a:hover {
  color: #144571;
}
/* line 54, ../sass/components/_science_supplemental.scss */
.node--type-science-supplemental .publicationsContainer .views-element-container .view-nhlbi-research-publications a.button {
  background-color: #307484;
  border-radius: 38px;
  padding: 14px 70px;
  color: #fff;
  border: 1px solid #307484;
}
/* line 61, ../sass/components/_science_supplemental.scss */
.node--type-science-supplemental .publicationsContainer .views-element-container .view-nhlbi-research-publications a.button:hover {
  background-color: #0F80A7;
  border-color: #0F80A7;
}
/* line 69, ../sass/components/_science_supplemental.scss */
.node--type-science-supplemental .pale-blue-darker-white-background {
  background-color: #f1f7fb;
}
/* line 71, ../sass/components/_science_supplemental.scss */
.node--type-science-supplemental .pale-blue-darker-white-background .content-container {
  padding-top: 40px;
  margin-top: 0;
}
/* line 77, ../sass/components/_science_supplemental.scss */
.node--type-science-supplemental .pi-container h3, .node--type-science-supplemental .pi-container .field--name-field-social-phrase-group-title, .node--type-science-supplemental .pi-container .field--name-field-image-gallery-title {
  padding: 20px 0;
}
/* line 81, ../sass/components/_science_supplemental.scss */
.node--type-science-supplemental .light-gray-background {
  padding-bottom: 20px;
}
/* line 84, ../sass/components/_science_supplemental.scss */
.node--type-science-supplemental .secondary-gray-background {
  padding-bottom: 20px;
  background-color: #f4f4f4;
}
/* line 87, ../sass/components/_science_supplemental.scss */
.node--type-science-supplemental .secondary-gray-background h1, .node--type-science-supplemental .secondary-gray-background h3, .node--type-science-supplemental .secondary-gray-background .field--name-field-social-phrase-group-title, .node--type-science-supplemental .secondary-gray-background .field--name-field-image-gallery-title {
  background-color: #f4f4f4;
}
/* line 90, ../sass/components/_science_supplemental.scss */
.node--type-science-supplemental .secondary-gray-background div.ui-accordion-content {
  background-color: #f4f4f4;
}
/* line 94, ../sass/components/_science_supplemental.scss */
.node--type-science-supplemental .secondary-gray-background .field--name-field-science-accordion > .field__item {
  padding-bottom: 10px;
}
/* line 98, ../sass/components/_science_supplemental.scss */
.node--type-science-supplemental .secondary-gray-background .field--name-field-science-accordion, .node--type-science-supplemental .secondary-gray-background .accordion-header-active.ui-state-active,
.node--type-science-supplemental .secondary-gray-background .readMoreButton {
  background-color: #f4f4f4;
}
/* line 103, ../sass/components/_science_supplemental.scss */
.node--type-science-supplemental .secondary-gray-background .readMoreButton {
  margin-top: 0;
  padding-top: 1em;
}
/* line 111, ../sass/components/_science_supplemental.scss */
.node--type-science-supplemental .secondary-gray-background .ui-accordion-content {
  padding: 0;
}
/* line 115, ../sass/components/_science_supplemental.scss */
.node--type-science-supplemental .secondary-gray-background .node__content {
  padding-bottom: 30px;
}
/* line 119, ../sass/components/_science_supplemental.scss */
.node--type-science-supplemental .secondary-gray-background .content-container {
  margin-top: 0;
  padding-top: 20px;
}
/* line 125, ../sass/components/_science_supplemental.scss */
.node--type-science-supplemental .bluesubhead {
  font-size: 0.875rem;
  color: #3885ca;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
}
@media all and (min-width: 1440px) {
  /* line 125, ../sass/components/_science_supplemental.scss */
  .node--type-science-supplemental .bluesubhead {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 125, ../sass/components/_science_supplemental.scss */
  .node--type-science-supplemental .bluesubhead {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 125, ../sass/components/_science_supplemental.scss */
  .node--type-science-supplemental .bluesubhead {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 125, ../sass/components/_science_supplemental.scss */
  .node--type-science-supplemental .bluesubhead {
    font-size: 0.75rem;
  }
}
/* line 129, ../sass/components/_science_supplemental.scss */
.node--type-science-supplemental .bluesubhead .field--name-field-related-research-topics {
  padding-top: 1em;
}
/* line 134, ../sass/components/_science_supplemental.scss */
.node--type-science-supplemental .principal-investigator {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
/* line 136, ../sass/components/_science_supplemental.scss */
.node--type-science-supplemental .principal-investigator .memberphoto {
  margin: 25px;
}
/* line 138, ../sass/components/_science_supplemental.scss */
.node--type-science-supplemental .principal-investigator .memberphoto img {
  border-radius: 50%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 138, ../sass/components/_science_supplemental.scss */
  .node--type-science-supplemental .principal-investigator .memberphoto img {
    width: 125px;
    height: 125px;
  }
}
@media all and (min-width: 1100px) {
  /* line 138, ../sass/components/_science_supplemental.scss */
  .node--type-science-supplemental .principal-investigator .memberphoto img {
    width: 150px;
    height: 150px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 138, ../sass/components/_science_supplemental.scss */
  .node--type-science-supplemental .principal-investigator .memberphoto img {
    width: 90px;
    height: 90px;
  }
}
/* line 160, ../sass/components/_science_supplemental.scss */
.node--type-science-supplemental .principal-investigator .membername {
  -webkit-align-self: center;
  -moz-align-self: center;
  -ms-align-self: center;
  -o-align-self: center;
  align-self: center;
}
/* line 165, ../sass/components/_science_supplemental.scss */
.node--type-science-supplemental .calloutdescription p, .node--type-science-supplemental .calloutdescriptionwhite p, .node--type-science-supplemental .calloutflattextwhite p, .node--type-science-supplemental .calloutflattext p, .node--type-science-supplemental .node--type-webform .field--name-field-status-message p, .node--type-webform .node--type-science-supplemental .field--name-field-status-message p, .node--type-science-supplemental .webform-submission-form .field--name-field-status-message p, .webform-submission-form .node--type-science-supplemental .field--name-field-status-message p, .node--type-science-supplemental .node--type-research-topic .rtDescription .readMoreContainer > .field--name-field-standard-description p, .node--type-research-topic .rtDescription .node--type-science-supplemental .readMoreContainer > .field--name-field-standard-description p,
.node--type-science-supplemental .node--type-research-topic .rtDescription .field--name-field-additional-text p p,
.node--type-research-topic .rtDescription .field--name-field-additional-text .node--type-science-supplemental p p {
  font-size: 1.125rem;
}
@media all and (min-width: 1440px) {
  /* line 165, ../sass/components/_science_supplemental.scss */
  .node--type-science-supplemental .calloutdescription p, .node--type-science-supplemental .calloutdescriptionwhite p, .node--type-science-supplemental .calloutflattextwhite p, .node--type-science-supplemental .calloutflattext p, .node--type-science-supplemental .node--type-webform .field--name-field-status-message p, .node--type-webform .node--type-science-supplemental .field--name-field-status-message p, .node--type-science-supplemental .webform-submission-form .field--name-field-status-message p, .webform-submission-form .node--type-science-supplemental .field--name-field-status-message p, .node--type-science-supplemental .node--type-research-topic .rtDescription .readMoreContainer > .field--name-field-standard-description p, .node--type-research-topic .rtDescription .node--type-science-supplemental .readMoreContainer > .field--name-field-standard-description p,
  .node--type-science-supplemental .node--type-research-topic .rtDescription .field--name-field-additional-text p p,
  .node--type-research-topic .rtDescription .field--name-field-additional-text .node--type-science-supplemental p p {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 165, ../sass/components/_science_supplemental.scss */
  .node--type-science-supplemental .calloutdescription p, .node--type-science-supplemental .calloutdescriptionwhite p, .node--type-science-supplemental .calloutflattextwhite p, .node--type-science-supplemental .calloutflattext p, .node--type-science-supplemental .node--type-webform .field--name-field-status-message p, .node--type-webform .node--type-science-supplemental .field--name-field-status-message p, .node--type-science-supplemental .webform-submission-form .field--name-field-status-message p, .webform-submission-form .node--type-science-supplemental .field--name-field-status-message p, .node--type-science-supplemental .node--type-research-topic .rtDescription .readMoreContainer > .field--name-field-standard-description p, .node--type-research-topic .rtDescription .node--type-science-supplemental .readMoreContainer > .field--name-field-standard-description p,
  .node--type-science-supplemental .node--type-research-topic .rtDescription .field--name-field-additional-text p p,
  .node--type-research-topic .rtDescription .field--name-field-additional-text .node--type-science-supplemental p p {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 165, ../sass/components/_science_supplemental.scss */
  .node--type-science-supplemental .calloutdescription p, .node--type-science-supplemental .calloutdescriptionwhite p, .node--type-science-supplemental .calloutflattextwhite p, .node--type-science-supplemental .calloutflattext p, .node--type-science-supplemental .node--type-webform .field--name-field-status-message p, .node--type-webform .node--type-science-supplemental .field--name-field-status-message p, .node--type-science-supplemental .webform-submission-form .field--name-field-status-message p, .webform-submission-form .node--type-science-supplemental .field--name-field-status-message p, .node--type-science-supplemental .node--type-research-topic .rtDescription .readMoreContainer > .field--name-field-standard-description p, .node--type-research-topic .rtDescription .node--type-science-supplemental .readMoreContainer > .field--name-field-standard-description p,
  .node--type-science-supplemental .node--type-research-topic .rtDescription .field--name-field-additional-text p p,
  .node--type-research-topic .rtDescription .field--name-field-additional-text .node--type-science-supplemental p p {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 165, ../sass/components/_science_supplemental.scss */
  .node--type-science-supplemental .calloutdescription p, .node--type-science-supplemental .calloutdescriptionwhite p, .node--type-science-supplemental .calloutflattextwhite p, .node--type-science-supplemental .calloutflattext p, .node--type-science-supplemental .node--type-webform .field--name-field-status-message p, .node--type-webform .node--type-science-supplemental .field--name-field-status-message p, .node--type-science-supplemental .webform-submission-form .field--name-field-status-message p, .webform-submission-form .node--type-science-supplemental .field--name-field-status-message p, .node--type-science-supplemental .node--type-research-topic .rtDescription .readMoreContainer > .field--name-field-standard-description p, .node--type-research-topic .rtDescription .node--type-science-supplemental .readMoreContainer > .field--name-field-standard-description p,
  .node--type-science-supplemental .node--type-research-topic .rtDescription .field--name-field-additional-text p p,
  .node--type-research-topic .rtDescription .field--name-field-additional-text .node--type-science-supplemental p p {
    font-size: 1rem;
  }
}
/* line 169, ../sass/components/_science_supplemental.scss */
.node--type-science-supplemental .flex-container {
  padding-bottom: 20px;
  margin: 0px;
  flex-wrap: wrap;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  display-direction: row;
  overflow: hidden;
}
/* line 182, ../sass/components/_science_supplemental.scss */
.node--type-science-supplemental .flexitem-3-2-1 {
  background-color: #fff;
  margin-right: 20px;
  margin-top: 20px;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 182, ../sass/components/_science_supplemental.scss */
  .node--type-science-supplemental .flexitem-3-2-1 {
    width: 90%;
    margin: 20px auto;
  }
}
@media all and (min-width: 1100px) {
  /* line 182, ../sass/components/_science_supplemental.scss */
  .node--type-science-supplemental .flexitem-3-2-1 {
    width: 30%;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 182, ../sass/components/_science_supplemental.scss */
  .node--type-science-supplemental .flexitem-3-2-1 {
    width: 40%;
  }
}
/* line 198, ../sass/components/_science_supplemental.scss */
.node--type-science-supplemental .flexitem-3-2-1 .member-education, .node--type-science-supplemental .flexitem-3-2-1 .member-skills {
  padding-left: 55px;
}
/* line 200, ../sass/components/_science_supplemental.scss */
.node--type-science-supplemental .flexitem-3-2-1 .member-education .profileheader, .node--type-science-supplemental .flexitem-3-2-1 .member-skills .profileheader {
  margin-top: -0.4em;
}
/* line 205, ../sass/components/_science_supplemental.scss */
.node--type-science-supplemental .flexitem-3-2-1 .skills-icon, .node--type-science-supplemental .flexitem-3-2-1 .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-member-skills .labIcon, .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-member-skills .node--type-science-supplemental .flexitem-3-2-1 .labIcon, .node--type-science-supplemental .flexitem-3-2-1 .education-icon, .node--type-science-supplemental .flexitem-3-2-1 .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-member-education .labIcon, .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-member-education .node--type-science-supplemental .flexitem-3-2-1 .labIcon {
  width: 100%;
}
/* line 210, ../sass/components/_science_supplemental.scss */
.node--type-science-supplemental .flexitem-3-2-1 .card-row {
  width: 80%;
  margin: auto;
  padding: 20px 0px;
}
/* line 216, ../sass/components/_science_supplemental.scss */
.node--type-science-supplemental .flexitem-3-2-1 .membername, .node--type-science-supplemental .flexitem-3-2-1 .membertitle {
  text-align: center;
}
/* line 222, ../sass/components/_science_supplemental.scss */
.node--type-science-supplemental .flexitem-3-2-1 .memberphoto {
  margin: 25px;
}
/* line 224, ../sass/components/_science_supplemental.scss */
.node--type-science-supplemental .flexitem-3-2-1 .memberphoto img {
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* line 240, ../sass/components/_science_supplemental.scss */
.member-links a {
  display: inline-block;
  padding-top: 0.5em;
}

/* line 246, ../sass/components/_science_supplemental.scss */
.field--name-field-alumni {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* line 251, ../sass/components/_science_supplemental.scss */
.field--name-field-alumni > .field__item {
  border: 3px solid #d7e7f4;
  width: 30%;
  margin: 0 1em 1em 0;
}
/* line 255, ../sass/components/_science_supplemental.scss */
.field--name-field-alumni > .field__item .alumniCard {
  padding: 2em;
  height: 100%;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 251, ../sass/components/_science_supplemental.scss */
  .field--name-field-alumni > .field__item {
    width: 45%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 251, ../sass/components/_science_supplemental.scss */
  .field--name-field-alumni > .field__item {
    width: auto;
    margin-right: 0;
  }
}
/* line 267, ../sass/components/_science_supplemental.scss */
.field--name-field-alumni > .field__item .profileheader div {
  display: inline;
}

/* line 275, ../sass/components/_science_supplemental.scss */
.prev-next {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
@media all and (min-width: 1100px) {
  /* line 275, ../sass/components/_science_supplemental.scss */
  .prev-next {
    margin-top: 3.5em;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 275, ../sass/components/_science_supplemental.scss */
  .prev-next {
    margin-top: 3em;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 275, ../sass/components/_science_supplemental.scss */
  .prev-next {
    flex-direction: column;
    margin-top: 2em;
  }
}

/* line 289, ../sass/components/_science_supplemental.scss */
.prev-next-item {
  flex: 1 1 0;
}
/* line 291, ../sass/components/_science_supplemental.scss */
.prev-next-item .previous-arrow-icon, .prev-next-item .previousNavigation, .prev-next-item .next-arrow-icon, .prev-next-item .nextNavigation {
  margin: 45px 10px;
  padding-top: 20px;
  width: 30px;
}
/* line 297, ../sass/components/_science_supplemental.scss */
.prev-next-item .previous-arrow-icon, .prev-next-item .previousNavigation {
  float: left;
}
/* line 300, ../sass/components/_science_supplemental.scss */
.prev-next-item .next-arrow-icon, .prev-next-item .nextNavigation {
  float: right;
}
/* line 304, ../sass/components/_science_supplemental.scss */
.prev-next-item .calloutdescription, .prev-next-item .calloutdescriptionwhite, .prev-next-item .calloutflattextwhite, .prev-next-item .calloutflattext, .prev-next-item .node--type-webform .field--name-field-status-message, .node--type-webform .prev-next-item .field--name-field-status-message, .prev-next-item .webform-submission-form .field--name-field-status-message, .webform-submission-form .prev-next-item .field--name-field-status-message, .prev-next-item .node--type-research-topic .rtDescription .readMoreContainer > .field--name-field-standard-description, .node--type-research-topic .rtDescription .prev-next-item .readMoreContainer > .field--name-field-standard-description,
.prev-next-item .node--type-research-topic .rtDescription .field--name-field-additional-text p,
.node--type-research-topic .rtDescription .field--name-field-additional-text .prev-next-item p {
  padding-top: 30px;
}

/* line 310, ../sass/components/_science_supplemental.scss */
.prev-next-details {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  max-width: 500px;
  margin: 20px 20px 20px 0;
}
/* line 316, ../sass/components/_science_supplemental.scss */
.prev-next-details .image img {
  display: block;
}
/* line 320, ../sass/components/_science_supplemental.scss */
.prev-next-details .date-title {
  padding: 5px 20px;
}
/* line 324, ../sass/components/_science_supplemental.scss */
.prev-next-details a {
  display: block;
}

/* line 1, ../sass/components/_pubmed_article.scss */
.node--type-publication.node--view-mode-short-teaser, .node--type-publication.node--view-mode-science-instance-card {
  background-color: #fff;
  margin-bottom: 1em;
  padding: 1.5em;
  border: 1px solid #d7d7d7;
  border-radius: 8px;
}
/* line 7, ../sass/components/_pubmed_article.scss */
.node--type-publication.node--view-mode-short-teaser .singlePublicationCard, .node--type-publication.node--view-mode-science-instance-card .singlePublicationCard {
  background-color: #fff;
  margin-bottom: 0 !important;
  padding: 0 !important;
  display: flex;
  flex-wrap: wrap;
  color: #222;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 7, ../sass/components/_pubmed_article.scss */
  .node--type-publication.node--view-mode-short-teaser .singlePublicationCard, .node--type-publication.node--view-mode-science-instance-card .singlePublicationCard {
    display: block;
  }
}
/* line 18, ../sass/components/_pubmed_article.scss */
.node--type-publication.node--view-mode-short-teaser .singlePublicationCard h3, .node--type-publication.node--view-mode-short-teaser .singlePublicationCard .field--name-field-social-phrase-group-title, .node--type-publication.node--view-mode-short-teaser .singlePublicationCard .field--name-field-image-gallery-title, .node--type-publication.node--view-mode-science-instance-card .singlePublicationCard h3, .node--type-publication.node--view-mode-science-instance-card .singlePublicationCard .field--name-field-social-phrase-group-title, .node--type-publication.node--view-mode-science-instance-card .singlePublicationCard .field--name-field-image-gallery-title {
  font-family: "Merriweather", serif;
  font-weight: bold;
  line-height: 1.25;
  font-size: 1.25rem;
  text-transform: none;
  margin: 0 !important;
  text-transform: none !important;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 18, ../sass/components/_pubmed_article.scss */
  .node--type-publication.node--view-mode-short-teaser .singlePublicationCard h3, .node--type-publication.node--view-mode-short-teaser .singlePublicationCard .field--name-field-social-phrase-group-title, .node--type-publication.node--view-mode-short-teaser .singlePublicationCard .field--name-field-image-gallery-title, .node--type-publication.node--view-mode-science-instance-card .singlePublicationCard h3, .node--type-publication.node--view-mode-science-instance-card .singlePublicationCard .field--name-field-social-phrase-group-title, .node--type-publication.node--view-mode-science-instance-card .singlePublicationCard .field--name-field-image-gallery-title {
    font-size: 1.125rem;
  }
}
/* line 32, ../sass/components/_pubmed_article.scss */
.node--type-publication.node--view-mode-short-teaser .singlePublicationCard .flex-item, .node--type-publication.node--view-mode-science-instance-card .singlePublicationCard .flex-item {
  flex: 2;
  color: #575b5e;
  font-size: 1rem;
  line-height: 1.5;
  margin-right: 25px;
}
/* line 34, ../sass/components/_pubmed_article.scss */
.node--type-publication.node--view-mode-short-teaser .singlePublicationCard .flex-item span, .node--type-publication.node--view-mode-science-instance-card .singlePublicationCard .flex-item span {
  font-weight: bold;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 32, ../sass/components/_pubmed_article.scss */
  .node--type-publication.node--view-mode-short-teaser .singlePublicationCard .flex-item, .node--type-publication.node--view-mode-science-instance-card .singlePublicationCard .flex-item {
    font-size: 0.875rem;
  }
}
/* line 46, ../sass/components/_pubmed_article.scss */
.node--type-publication.node--view-mode-short-teaser .singlePublicationCard .flex-item:last-child, .node--type-publication.node--view-mode-science-instance-card .singlePublicationCard .flex-item:last-child {
  flex: 1;
  border-left: 1px solid #999;
  padding-left: 25px;
  margin: 0px 0px 0px 25px;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 46, ../sass/components/_pubmed_article.scss */
  .node--type-publication.node--view-mode-short-teaser .singlePublicationCard .flex-item:last-child, .node--type-publication.node--view-mode-science-instance-card .singlePublicationCard .flex-item:last-child {
    text-align: left;
    margin: 20px 0px 0px 0px;
    border: none;
    padding: 0;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 46, ../sass/components/_pubmed_article.scss */
  .node--type-publication.node--view-mode-short-teaser .singlePublicationCard .flex-item:last-child, .node--type-publication.node--view-mode-science-instance-card .singlePublicationCard .flex-item:last-child {
    width: 100%;
  }
}
/* line 63, ../sass/components/_pubmed_article.scss */
.node--type-publication.node--view-mode-short-teaser .singlePublicationCard .read-publications, .node--type-publication.node--view-mode-science-instance-card .singlePublicationCard .read-publications {
  padding: 14px 50px;
  color: #0F80A7 !important;
  border: 1px solid #0F80A7;
  border-radius: 38px;
  background-color: #fff;
  display: inline-block;
  text-decoration: none !important;
  text-align: center;
}
@media all and (min-width: 1100px) {
  /* line 63, ../sass/components/_pubmed_article.scss */
  .node--type-publication.node--view-mode-short-teaser .singlePublicationCard .read-publications, .node--type-publication.node--view-mode-science-instance-card .singlePublicationCard .read-publications {
    width: 57%;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 63, ../sass/components/_pubmed_article.scss */
  .node--type-publication.node--view-mode-short-teaser .singlePublicationCard .read-publications, .node--type-publication.node--view-mode-science-instance-card .singlePublicationCard .read-publications {
    width: 250px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 63, ../sass/components/_pubmed_article.scss */
  .node--type-publication.node--view-mode-short-teaser .singlePublicationCard .read-publications, .node--type-publication.node--view-mode-science-instance-card .singlePublicationCard .read-publications {
    display: block;
  }
}
/* line 87, ../sass/components/_pubmed_article.scss */
.node--type-publication.node--view-mode-short-teaser .singlePublicationCard .publicationAuthors, .node--type-publication.node--view-mode-science-instance-card .singlePublicationCard .publicationAuthors {
  margin-top: 8px;
  margin-bottom: 8px;
  color: #575b5e;
}
/* line 93, ../sass/components/_pubmed_article.scss */
.node--type-publication.node--view-mode-short-teaser .singlePublicationCard .field--name-field-related-research-topics, .node--type-publication.node--view-mode-science-instance-card .singlePublicationCard .field--name-field-related-research-topics {
  margin-top: 1em;
}
/* line 95, ../sass/components/_pubmed_article.scss */
.node--type-publication.node--view-mode-short-teaser .singlePublicationCard .field--name-field-related-research-topics a, .node--type-publication.node--view-mode-science-instance-card .singlePublicationCard .field--name-field-related-research-topics a {
  color: #0F80A7;
}
/* line 100, ../sass/components/_pubmed_article.scss */
.node--type-publication.node--view-mode-short-teaser .field--name-field-publication-authors, .node--type-publication.node--view-mode-science-instance-card .field--name-field-publication-authors {
  margin-bottom: 1em;
}
/* line 104, ../sass/components/_pubmed_article.scss */
.node--type-publication.node--view-mode-short-teaser .field--name-field-publication-volume,
.node--type-publication.node--view-mode-short-teaser .field--name-field-publication-date,
.node--type-publication.node--view-mode-short-teaser .field--name-field-publication-issue, .node--type-publication.node--view-mode-science-instance-card .field--name-field-publication-volume,
.node--type-publication.node--view-mode-science-instance-card .field--name-field-publication-date,
.node--type-publication.node--view-mode-science-instance-card .field--name-field-publication-issue {
  display: inline;
}

/* line 3, ../sass/components/_individual_foa.scss */
.node--type-grants-foa .page-top {
  padding-top: 30px;
}
/* line 5, ../sass/components/_individual_foa.scss */
.node--type-grants-foa .page-top .flexcontainer-foa-top {
  display: flex;
  flex-wrap: wrap;
}
/* line 9, ../sass/components/_individual_foa.scss */
.node--type-grants-foa .page-top .flexcontainer-foa-top .flexItem {
  width: 20%;
  padding-left: 30px;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 9, ../sass/components/_individual_foa.scss */
  .node--type-grants-foa .page-top .flexcontainer-foa-top .flexItem {
    width: 100%;
    padding-left: 0px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 9, ../sass/components/_individual_foa.scss */
  .node--type-grants-foa .page-top .flexcontainer-foa-top .flexItem {
    width: 30%;
  }
}
@media all and (min-width: 768px) {
  /* line 9, ../sass/components/_individual_foa.scss */
  .node--type-grants-foa .page-top .flexcontainer-foa-top .flexItem {
    border-left: 1px solid #d7d7d7;
  }
}
/* line 23, ../sass/components/_individual_foa.scss */
.node--type-grants-foa .page-top .flexcontainer-foa-top .flexItem.first {
  border: none;
  padding-left: 0px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 28, ../sass/components/_individual_foa.scss */
  .node--type-grants-foa .page-top .flexcontainer-foa-top .flexItem.last {
    border: none;
    padding-left: 0px;
  }
}

/* line 4, ../sass/components/_nhlbi_publications.scss */
.node--type-nhlbi-publication.node--view-mode-full .nhlbi-publications-header .flexItemText,
.node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publications-header .flexItemText {
  padding: 0 0 0 2em;
  -webkit-flex: 0 0 62%;
  -moz-flex: 0 0 62%;
  -ms-flex: 0 0 62%;
  -o-flex: 0 0 62%;
  flex: 0 0 62%;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 4, ../sass/components/_nhlbi_publications.scss */
  .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publications-header .flexItemText,
  .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publications-header .flexItemText {
    padding: 0;
    -webkit-flex: 0 0 auto;
    -moz-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    -o-flex: 0 0 auto;
    flex: 0 0 auto;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 12, ../sass/components/_nhlbi_publications.scss */
  .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publications-header .flexItemImageThird, .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publications-header .flexItemImageThirdHalf, .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publications-header .hero-image,
  .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publications-header .flexItemImageThird,
  .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publications-header .flexItemImageThirdHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publications-header .hero-image {
    max-width: 70%;
    margin-right: auto;
    margin-left: auto;
    padding-bottom: 1.5em;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) and (min-width: 0em) and (max-width: 767px) {
  /* line 12, ../sass/components/_nhlbi_publications.scss */
  .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publications-header .flexItemImageThird, .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publications-header .flexItemImageThirdHalf, .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publications-header .hero-image,
  .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publications-header .flexItemImageThird,
  .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publications-header .flexItemImageThirdHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publications-header .hero-image {
    -webkit-flex: 0 0 auto;
    -moz-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    -o-flex: 0 0 auto;
    flex: 0 0 auto;
  }
}

/* line 22, ../sass/components/_nhlbi_publications.scss */
.node--type-nhlbi-publication.node--view-mode-full .nhlbi-publications-header .flexItemImageThird img, .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publications-header .flexItemImageThirdHalf img, .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publications-header .hero-image img,
.node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publications-header .flexItemImageThird img,
.node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publications-header .flexItemImageThirdHalf img,
.node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publications-header .hero-image img {
  display: inline-block;
  box-shadow: 3px 2px 7px 0px;
}
/* line 28, ../sass/components/_nhlbi_publications.scss */
.node--type-nhlbi-publication.node--view-mode-full .field--name-field-download-file,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-download-file {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}
/* line 33, ../sass/components/_nhlbi_publications.scss */
.node--type-nhlbi-publication.node--view-mode-full .field--name-field-download-file > .field__item,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-download-file > .field__item {
  display: inline-block;
  margin: 0 0.5em 0.5em 0;
  background-image: none;
}
/* line 39, ../sass/components/_nhlbi_publications.scss */
.node--type-nhlbi-publication.node--view-mode-full .field--name-field-download-file > .field__item:hover > a,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-download-file > .field__item:hover > a {
  color: #fff;
}
/* line 43, ../sass/components/_nhlbi_publications.scss */
.node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container,
.node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 1.5em;
}
/* line 47, ../sass/components/_nhlbi_publications.scss */
.node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .nhlbi-publication-details-item,
.node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .nhlbi-publication-details-item {
  margin-right: 1.5em;
  margin-bottom: 1em;
  padding-bottom: 0.8em;
}
@media all and (min-width: 768px) {
  /* line 47, ../sass/components/_nhlbi_publications.scss */
  .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .nhlbi-publication-details-item,
  .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .nhlbi-publication-details-item {
    max-width: 30%;
    min-width: 30%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 47, ../sass/components/_nhlbi_publications.scss */
  .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .nhlbi-publication-details-item,
  .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .nhlbi-publication-details-item {
    max-width: none;
    min-width: auto;
  }
}
/* line 66, ../sass/components/_nhlbi_publications.scss */
.node--type-nhlbi-publication.node--view-mode-full h3.publicationTitle, .node--type-nhlbi-publication.node--view-mode-full h3.primary-blue-publication-title, .node--type-nhlbi-publication.node--view-mode-full .primary-blue-publication-title.field--name-field-social-phrase-group-title, .node--type-nhlbi-publication.node--view-mode-full .primary-blue-publication-title.field--name-field-image-gallery-title, .node--type-nhlbi-publication.node--view-mode-full .publicationTitle.field--name-field-social-phrase-group-title, .node--type-nhlbi-publication.node--view-mode-full .publicationTitle.field--name-field-image-gallery-title, .node--type-nhlbi-publication.node--view-mode-full h3.publicationTitle > a, .node--type-nhlbi-publication.node--view-mode-full h3.primary-blue-publication-title > a, .node--type-nhlbi-publication.node--view-mode-full .primary-blue-publication-title.field--name-field-social-phrase-group-title > a, .node--type-nhlbi-publication.node--view-mode-full .primary-blue-publication-title.field--name-field-image-gallery-title > a, .node--type-nhlbi-publication.node--view-mode-full .smaller-titled-cards .publicationTitle.field--name-field-social-phrase-group-title > a, .node--type-nhlbi-publication.node--view-mode-full .smaller-titled-cards h3.field--name-field-social-phrase-group-title.primary-blue-publication-title > a, .node--type-nhlbi-publication.node--view-mode-full .smaller-titled-cards .publicationTitle.field--name-field-image-gallery-title > a, .node--type-nhlbi-publication.node--view-mode-full .smaller-titled-cards h3.field--name-field-image-gallery-title.primary-blue-publication-title > a, .node--type-nhlbi-publication.node--view-mode-full .publicationTitle.field--name-field-social-phrase-group-title > a, .node--type-nhlbi-publication.node--view-mode-full .publicationTitle.field--name-field-image-gallery-title > a, .node--type-nhlbi-publication.node--view-mode-full h3.publicationTitle > a:link, .node--type-nhlbi-publication.node--view-mode-full h3.primary-blue-publication-title > a:link, .node--type-nhlbi-publication.node--view-mode-full .primary-blue-publication-title.field--name-field-social-phrase-group-title > a:link, .node--type-nhlbi-publication.node--view-mode-full .primary-blue-publication-title.field--name-field-image-gallery-title > a:link, .node--type-nhlbi-publication.node--view-mode-full .smaller-titled-cards .publicationTitle.field--name-field-social-phrase-group-title > a:link, .node--type-nhlbi-publication.node--view-mode-full .smaller-titled-cards h3.field--name-field-social-phrase-group-title.primary-blue-publication-title > a:link, .node--type-nhlbi-publication.node--view-mode-full .smaller-titled-cards .publicationTitle.field--name-field-image-gallery-title > a:link, .node--type-nhlbi-publication.node--view-mode-full .smaller-titled-cards h3.field--name-field-image-gallery-title.primary-blue-publication-title > a:link, .node--type-nhlbi-publication.node--view-mode-full .publicationTitle.field--name-field-social-phrase-group-title > a:link, .node--type-nhlbi-publication.node--view-mode-full .publicationTitle.field--name-field-image-gallery-title > a:link,
.node--type-nhlbi-publication.node--view-mode-subscribe h3.publicationTitle,
.node--type-nhlbi-publication.node--view-mode-subscribe h3.primary-blue-publication-title,
.node--type-nhlbi-publication.node--view-mode-subscribe .primary-blue-publication-title.field--name-field-social-phrase-group-title,
.node--type-nhlbi-publication.node--view-mode-subscribe .primary-blue-publication-title.field--name-field-image-gallery-title,
.node--type-nhlbi-publication.node--view-mode-subscribe .publicationTitle.field--name-field-social-phrase-group-title,
.node--type-nhlbi-publication.node--view-mode-subscribe .publicationTitle.field--name-field-image-gallery-title,
.node--type-nhlbi-publication.node--view-mode-subscribe h3.publicationTitle > a,
.node--type-nhlbi-publication.node--view-mode-subscribe h3.primary-blue-publication-title > a,
.node--type-nhlbi-publication.node--view-mode-subscribe .primary-blue-publication-title.field--name-field-social-phrase-group-title > a,
.node--type-nhlbi-publication.node--view-mode-subscribe .primary-blue-publication-title.field--name-field-image-gallery-title > a,
.node--type-nhlbi-publication.node--view-mode-subscribe .smaller-titled-cards .publicationTitle.field--name-field-social-phrase-group-title > a,
.node--type-nhlbi-publication.node--view-mode-subscribe .smaller-titled-cards h3.field--name-field-social-phrase-group-title.primary-blue-publication-title > a,
.node--type-nhlbi-publication.node--view-mode-subscribe .smaller-titled-cards .publicationTitle.field--name-field-image-gallery-title > a,
.node--type-nhlbi-publication.node--view-mode-subscribe .smaller-titled-cards h3.field--name-field-image-gallery-title.primary-blue-publication-title > a,
.node--type-nhlbi-publication.node--view-mode-subscribe .publicationTitle.field--name-field-social-phrase-group-title > a,
.node--type-nhlbi-publication.node--view-mode-subscribe .publicationTitle.field--name-field-image-gallery-title > a,
.node--type-nhlbi-publication.node--view-mode-subscribe h3.publicationTitle > a:link,
.node--type-nhlbi-publication.node--view-mode-subscribe h3.primary-blue-publication-title > a:link,
.node--type-nhlbi-publication.node--view-mode-subscribe .primary-blue-publication-title.field--name-field-social-phrase-group-title > a:link,
.node--type-nhlbi-publication.node--view-mode-subscribe .primary-blue-publication-title.field--name-field-image-gallery-title > a:link,
.node--type-nhlbi-publication.node--view-mode-subscribe .smaller-titled-cards .publicationTitle.field--name-field-social-phrase-group-title > a:link,
.node--type-nhlbi-publication.node--view-mode-subscribe .smaller-titled-cards h3.field--name-field-social-phrase-group-title.primary-blue-publication-title > a:link,
.node--type-nhlbi-publication.node--view-mode-subscribe .smaller-titled-cards .publicationTitle.field--name-field-image-gallery-title > a:link,
.node--type-nhlbi-publication.node--view-mode-subscribe .smaller-titled-cards h3.field--name-field-image-gallery-title.primary-blue-publication-title > a:link,
.node--type-nhlbi-publication.node--view-mode-subscribe .publicationTitle.field--name-field-social-phrase-group-title > a:link,
.node--type-nhlbi-publication.node--view-mode-subscribe .publicationTitle.field--name-field-image-gallery-title > a:link {
  color: #0051a8;
}
/* line 69, ../sass/components/_nhlbi_publications.scss */
.node--type-nhlbi-publication.node--view-mode-full h3.publicationTitle > a:visited, .node--type-nhlbi-publication.node--view-mode-full h3.primary-blue-publication-title > a:visited, .node--type-nhlbi-publication.node--view-mode-full .primary-blue-publication-title.field--name-field-social-phrase-group-title > a:visited, .node--type-nhlbi-publication.node--view-mode-full .primary-blue-publication-title.field--name-field-image-gallery-title > a:visited, .node--type-nhlbi-publication.node--view-mode-full .smaller-titled-cards .publicationTitle.field--name-field-social-phrase-group-title > a:visited, .node--type-nhlbi-publication.node--view-mode-full .smaller-titled-cards h3.field--name-field-social-phrase-group-title.primary-blue-publication-title > a:visited, .node--type-nhlbi-publication.node--view-mode-full .smaller-titled-cards .publicationTitle.field--name-field-image-gallery-title > a:visited, .node--type-nhlbi-publication.node--view-mode-full .smaller-titled-cards h3.field--name-field-image-gallery-title.primary-blue-publication-title > a:visited, .node--type-nhlbi-publication.node--view-mode-full .publicationTitle.field--name-field-social-phrase-group-title > a:visited, .node--type-nhlbi-publication.node--view-mode-full .publicationTitle.field--name-field-image-gallery-title > a:visited,
.node--type-nhlbi-publication.node--view-mode-subscribe h3.publicationTitle > a:visited,
.node--type-nhlbi-publication.node--view-mode-subscribe h3.primary-blue-publication-title > a:visited,
.node--type-nhlbi-publication.node--view-mode-subscribe .primary-blue-publication-title.field--name-field-social-phrase-group-title > a:visited,
.node--type-nhlbi-publication.node--view-mode-subscribe .primary-blue-publication-title.field--name-field-image-gallery-title > a:visited,
.node--type-nhlbi-publication.node--view-mode-subscribe .smaller-titled-cards .publicationTitle.field--name-field-social-phrase-group-title > a:visited,
.node--type-nhlbi-publication.node--view-mode-subscribe .smaller-titled-cards h3.field--name-field-social-phrase-group-title.primary-blue-publication-title > a:visited,
.node--type-nhlbi-publication.node--view-mode-subscribe .smaller-titled-cards .publicationTitle.field--name-field-image-gallery-title > a:visited,
.node--type-nhlbi-publication.node--view-mode-subscribe .smaller-titled-cards h3.field--name-field-image-gallery-title.primary-blue-publication-title > a:visited,
.node--type-nhlbi-publication.node--view-mode-subscribe .publicationTitle.field--name-field-social-phrase-group-title > a:visited,
.node--type-nhlbi-publication.node--view-mode-subscribe .publicationTitle.field--name-field-image-gallery-title > a:visited {
  color: #6f57B5;
}
/* line 72, ../sass/components/_nhlbi_publications.scss */
.node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  -o-align-items: stretch;
  align-items: stretch;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -o-justify-content: flex-start;
  justify-content: flex-start;
  margin-bottom: 1em;
}
@media all and (min-width: 1100px) {
  /* line 72, ../sass/components/_nhlbi_publications.scss */
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications {
    margin-top: 2em;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 72, ../sass/components/_nhlbi_publications.scss */
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications {
    margin-top: 1.5em;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 72, ../sass/components/_nhlbi_publications.scss */
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications {
    margin-top: 1.5em;
  }
}
/* line 88, ../sass/components/_nhlbi_publications.scss */
.node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item {
  margin-right: 1em;
  margin-bottom: 1em;
  padding: 1.5em;
  border: 1px #d7d7d7 solid;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-grow: 1;
  -o-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-shrink: 0;
  -o-flex-shrink: 0;
  flex-shrink: 0;
}
@media all and (min-width: 1100px) {
  /* line 88, ../sass/components/_nhlbi_publications.scss */
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item {
    max-width: 25%;
    min-width: 25%;
    width: 25%;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 88, ../sass/components/_nhlbi_publications.scss */
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item {
    max-width: 40%;
    min-width: 40%;
    width: 40%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 88, ../sass/components/_nhlbi_publications.scss */
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item {
    max-width: none;
    width: -webkit-fill-available;
    width: -moz-fill-available;
    width: -ms-fill-available;
    width: -o-fill-available;
    width: fill-available;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-grow: 0;
    -o-flex-grow: 0;
    flex-grow: 0;
  }
}
/* line 115, ../sass/components/_nhlbi_publications.scss */
.node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .nhlbi-publication-short-teaser-wrapper,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .nhlbi-publication-short-teaser-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
/* line 118, ../sass/components/_nhlbi_publications.scss */
.node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .nhlbi-publication-short-teaser-wrapper > a,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .nhlbi-publication-short-teaser-wrapper > a {
  display: inline-flex;
}
/* line 120, ../sass/components/_nhlbi_publications.scss */
.node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .nhlbi-publication-short-teaser-wrapper > a article,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .nhlbi-publication-short-teaser-wrapper > a article {
  overflow: visible;
}
/* line 125, ../sass/components/_nhlbi_publications.scss */
.node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .nhlbi-publication-short-teaser-wrapper > a:visited h3, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .nhlbi-publication-short-teaser-wrapper > a:visited .field--name-field-social-phrase-group-title, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .nhlbi-publication-short-teaser-wrapper > a:visited .field--name-field-image-gallery-title,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .nhlbi-publication-short-teaser-wrapper > a:visited h3,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .nhlbi-publication-short-teaser-wrapper > a:visited .field--name-field-social-phrase-group-title,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .nhlbi-publication-short-teaser-wrapper > a:visited .field--name-field-image-gallery-title {
  color: #6f57B5;
}
/* line 129, ../sass/components/_nhlbi_publications.scss */
.node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item a:visited,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item a:visited {
  color: #6f57B5;
}
/* line 131, ../sass/components/_nhlbi_publications.scss */
.node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item a:visited h3, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item a:visited .field--name-field-social-phrase-group-title, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item a:visited .field--name-field-image-gallery-title,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item a:visited h3,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item a:visited .field--name-field-social-phrase-group-title,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item a:visited .field--name-field-image-gallery-title {
  color: #6f57B5;
}
/* line 135, ../sass/components/_nhlbi_publications.scss */
.node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser {
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
}
/* line 139, ../sass/components/_nhlbi_publications.scss */
.node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImage, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageHalf, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageTenth, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageFourth, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageThird, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageThirdHalf, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .hero-image,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImage,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageHalf,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageTenth,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageFourth,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageThird,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageThirdHalf,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .hero-image {
  min-width: auto;
}
@media all and (min-width: 1100px) {
  /* line 139, ../sass/components/_nhlbi_publications.scss */
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImage, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageHalf, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageTenth, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageFourth, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageThird, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageThirdHalf, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .hero-image,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImage,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageTenth,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageFourth,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageThird,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageThirdHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .hero-image {
    max-width: 35%;
    min-width: 35%;
    width: 35%;
    flex-basis: 35%;
    margin-right: 1em;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 139, ../sass/components/_nhlbi_publications.scss */
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImage, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageHalf, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageTenth, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageFourth, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageThird, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageThirdHalf, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .hero-image,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImage,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageTenth,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageFourth,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageThird,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageThirdHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .hero-image {
    max-width: 35%;
    min-width: 35%;
    flex-basis: 35%;
    width: 35%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 139, ../sass/components/_nhlbi_publications.scss */
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImage, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageHalf, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageTenth, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageFourth, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageThird, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageThirdHalf, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .hero-image,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImage,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageTenth,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageFourth,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageThird,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemImageThirdHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .hero-image {
    max-width: 25%;
    min-width: 25%;
    flex-basis: 25%;
    width: 25%;
  }
}
@media all and (min-width: 1100px) {
  /* line 161, ../sass/components/_nhlbi_publications.scss */
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText {
    padding: 0 0 0 1em;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 161, ../sass/components/_nhlbi_publications.scss */
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser .flexItemText {
    padding: 0 0 0 1em;
  }
}
@media all and (min-width: 1100px) {
  /* line 171, ../sass/components/_nhlbi_publications.scss */
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item:nth-child(3),
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item:nth-child(3) {
    margin-right: 0;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 176, ../sass/components/_nhlbi_publications.scss */
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item:nth-child(2),
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item:nth-child(2) {
    margin-right: 0;
  }
}
/* line 181, ../sass/components/_nhlbi_publications.scss */
.node--type-nhlbi-publication.node--view-mode-full .field--name-field-all-publications-link a:visited,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-all-publications-link a:visited {
  color: #6f57B5;
}
/* line 184, ../sass/components/_nhlbi_publications.scss */
.node--type-nhlbi-publication.node--view-mode-full .smaller-header,
.node--type-nhlbi-publication.node--view-mode-subscribe .smaller-header {
  font-size: 0.875rem;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  margin: 0 0 11px 0;
  font-size: 0.875rem;
  font-weight: bold;
  margin: 1em 0;
}
@media all and (min-width: 1440px) {
  /* line 184, ../sass/components/_nhlbi_publications.scss */
  .node--type-nhlbi-publication.node--view-mode-full .smaller-header,
  .node--type-nhlbi-publication.node--view-mode-subscribe .smaller-header {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 184, ../sass/components/_nhlbi_publications.scss */
  .node--type-nhlbi-publication.node--view-mode-full .smaller-header,
  .node--type-nhlbi-publication.node--view-mode-subscribe .smaller-header {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 184, ../sass/components/_nhlbi_publications.scss */
  .node--type-nhlbi-publication.node--view-mode-full .smaller-header,
  .node--type-nhlbi-publication.node--view-mode-subscribe .smaller-header {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 184, ../sass/components/_nhlbi_publications.scss */
  .node--type-nhlbi-publication.node--view-mode-full .smaller-header,
  .node--type-nhlbi-publication.node--view-mode-subscribe .smaller-header {
    font-size: 0.875rem;
  }
}
/* line 189, ../sass/components/_nhlbi_publications.scss */
.node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-download-and-order-container,
.node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-download-and-order-container {
  display: flex;
  -webkit-flex: 0 0 100%;
  -moz-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  -o-flex: 0 0 100%;
  flex: 0 0 100%;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 189, ../sass/components/_nhlbi_publications.scss */
  .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-download-and-order-container,
  .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-download-and-order-container {
    -webkit-flex-basis: auto;
    -moz-flex-basis: auto;
    -ms-flex-basis: auto;
    -o-flex-basis: auto;
    flex-basis: auto;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 189, ../sass/components/_nhlbi_publications.scss */
  .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-download-and-order-container,
  .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-download-and-order-container {
    flex-direction: column;
    display: block;
  }
}
/* line 207, ../sass/components/_nhlbi_publications.scss */
.node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container,
.node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container {
  align-self: flex-end;
  padding: 0;
  width: 250px;
  -webkit-flex: 0 0 45%;
  -moz-flex: 0 0 45%;
  -ms-flex: 0 0 45%;
  -o-flex: 0 0 45%;
  flex: 0 0 45%;
  -webkit-box-ordinal-group: 2;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 207, ../sass/components/_nhlbi_publications.scss */
  .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container,
  .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container {
    align-self: flex-start;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 207, ../sass/components/_nhlbi_publications.scss */
  .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container,
  .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container {
    -webkit-flex-basis: auto;
    -moz-flex-basis: auto;
    -ms-flex-basis: auto;
    -o-flex-basis: auto;
    flex-basis: auto;
  }
}
/* line 224, ../sass/components/_nhlbi_publications.scss */
.node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container h3, .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container .field--name-field-social-phrase-group-title, .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container .field--name-field-image-gallery-title,
.node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container h3,
.node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container .field--name-field-social-phrase-group-title,
.node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container .field--name-field-image-gallery-title {
  padding: 15px 0 0 20px;
  margin: 0 0 11px;
}
/* line 228, ../sass/components/_nhlbi_publications.scss */
.node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container h2.smaller-header, .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.smaller-header, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container h1.smaller-header, .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container .smaller-header.contact-method-label,
.node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container h2.smaller-header,
.node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.smaller-header,
.health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container h1.smaller-header,
.node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container .smaller-header.contact-method-label {
  padding: 15px 0 0 20px;
  margin: 0 0 11px;
}
/* line 234, ../sass/components/_nhlbi_publications.scss */
.node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container #need-more-copies a,
.node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container #need-more-copies a {
  color: #0051a8;
  cursor: pointer;
}
/* line 238, ../sass/components/_nhlbi_publications.scss */
.node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container #need-more-copies a:visited,
.node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container #need-more-copies a:visited {
  color: #6f57B5;
}
/* line 242, ../sass/components/_nhlbi_publications.scss */
.node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container .select-container,
.node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container .select-container {
  border: 1px solid #D7D7D7;
  border-radius: 1px;
  width: 230px;
  padding-bottom: 5px;
}
/* line 247, ../sass/components/_nhlbi_publications.scss */
.node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container .select-container .select-box-and-add,
.node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container .select-container .select-box-and-add {
  display: flex;
}
/* line 252, ../sass/components/_nhlbi_publications.scss */
.node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container .select-container .select-box-and-add > div,
.node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container .select-container .select-box-and-add > div {
  margin: 0;
  height: 36px;
  padding-left: 20px;
}
/* line 257, ../sass/components/_nhlbi_publications.scss */
.node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container .select-container select,
.node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container .select-container select {
  background-image: url("../images/dropdownarrow.png");
  background-size: 10px 10px;
  background-repeat: no-repeat;
  -moz-appearance: none;
  -webkit-appearance: none;
  -webkit-border-radius: 0px;
  appearance: none;
  outline-width: 0;
  padding: 5px 15px 5px 15px;
  display: block;
  font-size: 0.875rem;
  border: 1px solid #D7D7D7;
  background-position: 90%;
  border-radius: 4px;
  height: 36px;
}
/* line 275, ../sass/components/_nhlbi_publications.scss */
.node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container .select-container select::-ms-expand,
.node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container .select-container select::-ms-expand {
  display: none;
}
/* line 284, ../sass/components/_nhlbi_publications.scss */
.node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container .publication-select-count,
.node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container .publication-select-count {
  border: 1px solid #D7D7D7;
  border-radius: 4px;
}
/* line 290, ../sass/components/_nhlbi_publications.scss */
.node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container #publication-add-to-cart,
.node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container #publication-add-to-cart {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  background-color: #102d66;
  border: 1px solid #1a568c;
  display: inline-block;
  margin: 0 0.5em 0.5em 0;
  border-radius: 4px;
  padding: 0.5em 1.5em;
  height: 36px;
  margin-left: 10px;
}
@media all and (min-width: 1440px) {
  /* line 290, ../sass/components/_nhlbi_publications.scss */
  .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container #publication-add-to-cart,
  .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container #publication-add-to-cart {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 290, ../sass/components/_nhlbi_publications.scss */
  .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container #publication-add-to-cart,
  .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container #publication-add-to-cart {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 290, ../sass/components/_nhlbi_publications.scss */
  .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container #publication-add-to-cart,
  .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container #publication-add-to-cart {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 290, ../sass/components/_nhlbi_publications.scss */
  .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container #publication-add-to-cart,
  .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container #publication-add-to-cart {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container #publication-add-to-cart :hover,
.node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container #publication-add-to-cart :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 290, ../sass/components/_nhlbi_publications.scss */
  .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container #publication-add-to-cart,
  .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container #publication-add-to-cart {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 290, ../sass/components/_nhlbi_publications.scss */
  .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container #publication-add-to-cart,
  .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container #publication-add-to-cart {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 290, ../sass/components/_nhlbi_publications.scss */
  .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container #publication-add-to-cart,
  .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container #publication-add-to-cart {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 290, ../sass/components/_nhlbi_publications.scss */
  .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container #publication-add-to-cart,
  .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container #publication-add-to-cart {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 290, ../sass/components/_nhlbi_publications.scss */
  .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container #publication-add-to-cart,
  .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container #publication-add-to-cart {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container #publication-add-to-cart:hover,
.node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container #publication-add-to-cart:hover {
  background-color: #102d66;
  border-color: #102d66;
  color: #fff;
  text-decoration: none;
}
/* line 299, ../sass/components/_nhlbi_publications.scss */
.node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container #publication-add-to-cart:hover,
.node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container #publication-add-to-cart:hover {
  color: #fff;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 207, ../sass/components/_nhlbi_publications.scss */
  .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container,
  .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-download-and-order-container .nhlbi-publication-order-container {
    padding: 0;
  }
}
/* line 310, ../sass/components/_nhlbi_publications.scss */
.node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-download-and-order-container .nhlbi-publication-download-wrapper,
.node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-download-and-order-container .nhlbi-publication-download-wrapper {
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
  -webkit-flex: 0 0 55%;
  -moz-flex: 0 0 55%;
  -ms-flex: 0 0 55%;
  -o-flex: 0 0 55%;
  flex: 0 0 55%;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  align-self: flex-end;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 310, ../sass/components/_nhlbi_publications.scss */
  .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-download-and-order-container .nhlbi-publication-download-wrapper,
  .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-download-and-order-container .nhlbi-publication-download-wrapper {
    align-self: flex-start;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 310, ../sass/components/_nhlbi_publications.scss */
  .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-download-and-order-container .nhlbi-publication-download-wrapper,
  .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-download-and-order-container .nhlbi-publication-download-wrapper {
    -webkit-flex-basis: auto;
    -moz-flex-basis: auto;
    -ms-flex-basis: auto;
    -o-flex-basis: auto;
    flex-basis: auto;
  }
}

/* line 336, ../sass/components/_nhlbi_publications.scss */
#publication-shopping-cart {
  float: left;
  cursor: pointer;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 336, ../sass/components/_nhlbi_publications.scss */
  #publication-shopping-cart {
    margin-top: 6px;
  }
}
/* line 344, ../sass/components/_nhlbi_publications.scss */
#publication-shopping-cart #nav-bar-cart {
  background-image: url("../images/ico-shoppingcart.svg");
  background-size: 25px 25px;
  background-repeat: no-repeat;
  background-position: initial;
  display: inline-block;
  content: " ";
  height: 25px;
  height: 30px;
  width: 30px;
  margin-right: 20px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 344, ../sass/components/_nhlbi_publications.scss */
  #publication-shopping-cart #nav-bar-cart {
    background-size: 25px 25px;
    height: 25px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 344, ../sass/components/_nhlbi_publications.scss */
  #publication-shopping-cart #nav-bar-cart {
    background-size: 25px 25px;
    height: 25px;
  }
}
/* line 349, ../sass/components/_nhlbi_publications.scss */
#publication-shopping-cart #nav-bar-cart .items-count {
  position: relative;
  left: 15px;
  bottom: 20px;
  background-color: #bf0d2e;
  text-align: center;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  font-size: 0.875rem;
  color: #fff;
}
/* line 360, ../sass/components/_nhlbi_publications.scss */
#publication-shopping-cart #nav-bar-cart .items-count span {
  position: relative;
  top: 3px;
}

/* line 371, ../sass/components/_nhlbi_publications.scss */
#cart-container-wrapper-lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 150%;
  text-align: center;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
}
/* line 381, ../sass/components/_nhlbi_publications.scss */
#cart-container-wrapper-lightbox #cart-dialog-container {
  text-align: center;
  display: flex;
}
/* line 385, ../sass/components/_nhlbi_publications.scss */
#cart-container-wrapper-lightbox #cart-dialog-container .dialog-cart-item {
  border-bottom: 1px solid #D7D7D7;
  display: flex;
  padding: 10px 20px;
}
/* line 391, ../sass/components/_nhlbi_publications.scss */
#cart-container-wrapper-lightbox #cart-dialog-container .dialog-cart-item .dialog-image-wrapper img {
  width: 75px;
  max-height: 125px;
  max-width: none;
}
/* line 398, ../sass/components/_nhlbi_publications.scss */
#cart-container-wrapper-lightbox #cart-dialog-container .dialog-cart-item .title-select {
  padding-left: 20px;
}
/* line 405, ../sass/components/_nhlbi_publications.scss */
#cart-container-wrapper-lightbox #cart-dialog-container .cart-dialog {
  margin: 40px auto;
  padding: 20px;
  background-color: #fff;
  max-width: 600px;
  min-width: 500px;
  max-height: 400px;
  overflow-y: scroll;
  text-align: left;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 405, ../sass/components/_nhlbi_publications.scss */
  #cart-container-wrapper-lightbox #cart-dialog-container .cart-dialog {
    margin: 0;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 405, ../sass/components/_nhlbi_publications.scss */
  #cart-container-wrapper-lightbox #cart-dialog-container .cart-dialog {
    min-width: 300px;
    margin: auto;
    padding: 5px;
  }
}
/* line 422, ../sass/components/_nhlbi_publications.scss */
#cart-container-wrapper-lightbox #cart-dialog-container .cart-dialog .confirm-dialog {
  display: none;
  padding-left: 5px;
}
/* line 427, ../sass/components/_nhlbi_publications.scss */
#cart-container-wrapper-lightbox #cart-dialog-container .cart-dialog .delete-item, #cart-container-wrapper-lightbox #cart-dialog-container .cart-dialog .confirm-delete, #cart-container-wrapper-lightbox #cart-dialog-container .cart-dialog .cancel-delete {
  cursor: pointer;
}
/* line 430, ../sass/components/_nhlbi_publications.scss */
#cart-container-wrapper-lightbox #cart-dialog-container .cart-dialog h3, #cart-container-wrapper-lightbox #cart-dialog-container .cart-dialog .field--name-field-social-phrase-group-title, #cart-container-wrapper-lightbox #cart-dialog-container .cart-dialog .field--name-field-image-gallery-title {
  text-align: left;
  background-color: #1a568c;
  padding: 20px;
  color: #fff;
}
/* line 435, ../sass/components/_nhlbi_publications.scss */
#cart-container-wrapper-lightbox #cart-dialog-container .cart-dialog h3 .cart-dialog-close-button, #cart-container-wrapper-lightbox #cart-dialog-container .cart-dialog .field--name-field-social-phrase-group-title .cart-dialog-close-button, #cart-container-wrapper-lightbox #cart-dialog-container .cart-dialog .field--name-field-image-gallery-title .cart-dialog-close-button {
  cursor: pointer;
  background-image: url("../images/ico-cross-white.png");
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: initial;
  display: inline-block;
  content: " ";
  height: 20px;
  display: inline-block;
  width: 20px;
  height: 20px;
  padding: 5px 25px 0 0;
  background-position: right 10px center;
  float: right;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 435, ../sass/components/_nhlbi_publications.scss */
  #cart-container-wrapper-lightbox #cart-dialog-container .cart-dialog h3 .cart-dialog-close-button, #cart-container-wrapper-lightbox #cart-dialog-container .cart-dialog .field--name-field-social-phrase-group-title .cart-dialog-close-button, #cart-container-wrapper-lightbox #cart-dialog-container .cart-dialog .field--name-field-image-gallery-title .cart-dialog-close-button {
    background-size: 20px 20px;
    height: 20px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 435, ../sass/components/_nhlbi_publications.scss */
  #cart-container-wrapper-lightbox #cart-dialog-container .cart-dialog h3 .cart-dialog-close-button, #cart-container-wrapper-lightbox #cart-dialog-container .cart-dialog .field--name-field-social-phrase-group-title .cart-dialog-close-button, #cart-container-wrapper-lightbox #cart-dialog-container .cart-dialog .field--name-field-image-gallery-title .cart-dialog-close-button {
    background-size: 20px 20px;
    height: 20px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 435, ../sass/components/_nhlbi_publications.scss */
  #cart-container-wrapper-lightbox #cart-dialog-container .cart-dialog h3 .cart-dialog-close-button, #cart-container-wrapper-lightbox #cart-dialog-container .cart-dialog .field--name-field-social-phrase-group-title .cart-dialog-close-button, #cart-container-wrapper-lightbox #cart-dialog-container .cart-dialog .field--name-field-image-gallery-title .cart-dialog-close-button {
    padding-right: 10px;
  }
}
/* line 449, ../sass/components/_nhlbi_publications.scss */
#cart-container-wrapper-lightbox #cart-dialog-container .cart-dialog .cart-empty {
  background-image: url("../images/ico-infoalert.png");
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: 5px;
  display: block;
  content: " ";
  height: auto;
  padding: 20px 30px;
  background-color: #FDF8E4;
}
/* line 455, ../sass/components/_nhlbi_publications.scss */
#cart-container-wrapper-lightbox #cart-dialog-container .cart-dialog .cart-empty-message {
  padding-top: 20px;
}
/* line 459, ../sass/components/_nhlbi_publications.scss */
#cart-container-wrapper-lightbox #cart-dialog-container .cart-dialog .dialog-item-select {
  float: left;
  padding-top: 5px;
}
/* line 462, ../sass/components/_nhlbi_publications.scss */
#cart-container-wrapper-lightbox #cart-dialog-container .cart-dialog .dialog-item-select a {
  color: #0051a8;
  padding-left: 5px;
}
/* line 472, ../sass/components/_nhlbi_publications.scss */
#cart-container-wrapper-lightbox #cart-dialog-container .cart-dialog .dialog-item-select select {
  background-image: url("../images/dropdownarrow.png");
  background-size: 10px 10px;
  background-repeat: no-repeat;
  -moz-appearance: none;
  -webkit-appearance: none;
  -webkit-border-radius: 0px;
  appearance: none;
  outline-width: 0;
  padding: 5px 15px 5px 15px;
  font-size: 0.875rem;
  border: 1px solid #D7D7D7;
  background-position: 90%;
  border-radius: 4px;
  height: 36px;
  width: 55px;
}
/* line 491, ../sass/components/_nhlbi_publications.scss */
#cart-container-wrapper-lightbox #cart-dialog-container .cart-dialog .dialog-item-select select::-ms-expand {
  display: none;
}
/* line 497, ../sass/components/_nhlbi_publications.scss */
#cart-container-wrapper-lightbox #cart-dialog-container .cart-dialog-actions {
  display: flex;
  padding-top: 20px;
}
/* line 500, ../sass/components/_nhlbi_publications.scss */
#cart-container-wrapper-lightbox #cart-dialog-container .cart-dialog-actions #cart-proceed-to-checkout {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  background-color: #1a568c;
  border: 1px solid #1a568c;
  display: inline-block;
  margin: 0 0.5em 0.5em 0;
}
@media all and (min-width: 1440px) {
  /* line 500, ../sass/components/_nhlbi_publications.scss */
  #cart-container-wrapper-lightbox #cart-dialog-container .cart-dialog-actions #cart-proceed-to-checkout {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 500, ../sass/components/_nhlbi_publications.scss */
  #cart-container-wrapper-lightbox #cart-dialog-container .cart-dialog-actions #cart-proceed-to-checkout {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 500, ../sass/components/_nhlbi_publications.scss */
  #cart-container-wrapper-lightbox #cart-dialog-container .cart-dialog-actions #cart-proceed-to-checkout {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 500, ../sass/components/_nhlbi_publications.scss */
  #cart-container-wrapper-lightbox #cart-dialog-container .cart-dialog-actions #cart-proceed-to-checkout {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
#cart-container-wrapper-lightbox #cart-dialog-container .cart-dialog-actions #cart-proceed-to-checkout :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 500, ../sass/components/_nhlbi_publications.scss */
  #cart-container-wrapper-lightbox #cart-dialog-container .cart-dialog-actions #cart-proceed-to-checkout {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 500, ../sass/components/_nhlbi_publications.scss */
  #cart-container-wrapper-lightbox #cart-dialog-container .cart-dialog-actions #cart-proceed-to-checkout {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 500, ../sass/components/_nhlbi_publications.scss */
  #cart-container-wrapper-lightbox #cart-dialog-container .cart-dialog-actions #cart-proceed-to-checkout {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 500, ../sass/components/_nhlbi_publications.scss */
  #cart-container-wrapper-lightbox #cart-dialog-container .cart-dialog-actions #cart-proceed-to-checkout {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 500, ../sass/components/_nhlbi_publications.scss */
  #cart-container-wrapper-lightbox #cart-dialog-container .cart-dialog-actions #cart-proceed-to-checkout {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
#cart-container-wrapper-lightbox #cart-dialog-container .cart-dialog-actions #cart-proceed-to-checkout:hover {
  background-color: #102d66;
  border-color: #102d66;
  color: #fff;
  text-decoration: none;
}
/* line 505, ../sass/components/_nhlbi_publications.scss */
#cart-container-wrapper-lightbox #cart-dialog-container .cart-dialog-actions #cart-keep-browsing {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  background-color: #999;
  border: 1px solid #1a568c;
  display: inline-block;
  margin: 0 0.5em 0.5em 0;
  border: none;
}
@media all and (min-width: 1440px) {
  /* line 505, ../sass/components/_nhlbi_publications.scss */
  #cart-container-wrapper-lightbox #cart-dialog-container .cart-dialog-actions #cart-keep-browsing {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 505, ../sass/components/_nhlbi_publications.scss */
  #cart-container-wrapper-lightbox #cart-dialog-container .cart-dialog-actions #cart-keep-browsing {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 505, ../sass/components/_nhlbi_publications.scss */
  #cart-container-wrapper-lightbox #cart-dialog-container .cart-dialog-actions #cart-keep-browsing {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 505, ../sass/components/_nhlbi_publications.scss */
  #cart-container-wrapper-lightbox #cart-dialog-container .cart-dialog-actions #cart-keep-browsing {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
#cart-container-wrapper-lightbox #cart-dialog-container .cart-dialog-actions #cart-keep-browsing :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 505, ../sass/components/_nhlbi_publications.scss */
  #cart-container-wrapper-lightbox #cart-dialog-container .cart-dialog-actions #cart-keep-browsing {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 505, ../sass/components/_nhlbi_publications.scss */
  #cart-container-wrapper-lightbox #cart-dialog-container .cart-dialog-actions #cart-keep-browsing {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 505, ../sass/components/_nhlbi_publications.scss */
  #cart-container-wrapper-lightbox #cart-dialog-container .cart-dialog-actions #cart-keep-browsing {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 505, ../sass/components/_nhlbi_publications.scss */
  #cart-container-wrapper-lightbox #cart-dialog-container .cart-dialog-actions #cart-keep-browsing {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 505, ../sass/components/_nhlbi_publications.scss */
  #cart-container-wrapper-lightbox #cart-dialog-container .cart-dialog-actions #cart-keep-browsing {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
#cart-container-wrapper-lightbox #cart-dialog-container .cart-dialog-actions #cart-keep-browsing:hover {
  background-color: #102d66;
  border-color: #102d66;
  color: #fff;
  text-decoration: none;
}
/* line 513, ../sass/components/_nhlbi_publications.scss */
#cart-container-wrapper-lightbox #cart-dialog-container .dialog-action-wrapper {
  margin: 0 auto;
}
/* line 517, ../sass/components/_nhlbi_publications.scss */
#cart-container-wrapper-lightbox #cart-dialog-container .item-delete-message {
  padding: 10px 0;
}

/* line 524, ../sass/components/_nhlbi_publications.scss */
.order-more-dialog-wrapper {
  display: none;
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 150%;
  text-align: center;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
}
/* line 536, ../sass/components/_nhlbi_publications.scss */
.order-more-dialog-wrapper .order-more-dialog {
  margin: 40px auto;
  width: 600px;
  padding: 20px;
  background-color: #fff;
  text-align: left;
}
/* line 542, ../sass/components/_nhlbi_publications.scss */
.order-more-dialog-wrapper .order-more-dialog h2.order-more-header, .order-more-dialog-wrapper .order-more-dialog .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.order-more-header, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .order-more-dialog-wrapper .order-more-dialog h1.order-more-header, .order-more-dialog-wrapper .order-more-dialog .order-more-header.contact-method-label {
  font-size: 1.375rem;
  margin: 0 0 11px 0;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-weight: bold;
  font-style: normal;
  color: #222;
  font-size: 1.25rem;
  text-align: left;
  background-color: #1a568c;
  color: #fff;
  padding: 20px 20px 20px 20px;
  margin: 0 0 11px;
}
@media all and (min-width: 1440px) {
  /* line 542, ../sass/components/_nhlbi_publications.scss */
  .order-more-dialog-wrapper .order-more-dialog h2.order-more-header, .order-more-dialog-wrapper .order-more-dialog .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.order-more-header, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .order-more-dialog-wrapper .order-more-dialog h1.order-more-header, .order-more-dialog-wrapper .order-more-dialog .order-more-header.contact-method-label {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 542, ../sass/components/_nhlbi_publications.scss */
  .order-more-dialog-wrapper .order-more-dialog h2.order-more-header, .order-more-dialog-wrapper .order-more-dialog .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.order-more-header, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .order-more-dialog-wrapper .order-more-dialog h1.order-more-header, .order-more-dialog-wrapper .order-more-dialog .order-more-header.contact-method-label {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 542, ../sass/components/_nhlbi_publications.scss */
  .order-more-dialog-wrapper .order-more-dialog h2.order-more-header, .order-more-dialog-wrapper .order-more-dialog .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.order-more-header, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .order-more-dialog-wrapper .order-more-dialog h1.order-more-header, .order-more-dialog-wrapper .order-more-dialog .order-more-header.contact-method-label {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 542, ../sass/components/_nhlbi_publications.scss */
  .order-more-dialog-wrapper .order-more-dialog h2.order-more-header, .order-more-dialog-wrapper .order-more-dialog .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.order-more-header, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .order-more-dialog-wrapper .order-more-dialog h1.order-more-header, .order-more-dialog-wrapper .order-more-dialog .order-more-header.contact-method-label {
    font-size: 1rem;
  }
}
/* line 549, ../sass/components/_nhlbi_publications.scss */
.order-more-dialog-wrapper .order-more-dialog h2.order-more-header .order-dialog-close-button, .order-more-dialog-wrapper .order-more-dialog .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.order-more-header .order-dialog-close-button, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .order-more-dialog-wrapper .order-more-dialog h1.order-more-header .order-dialog-close-button, .order-more-dialog-wrapper .order-more-dialog .order-more-header.contact-method-label .order-dialog-close-button {
  cursor: pointer;
  background-image: url("../images/ico-cross-white.png");
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: initial;
  display: inline-block;
  content: " ";
  height: 20px;
  display: inline-block;
  width: 20px;
  height: 20px;
  padding: 5px 25px 0 0;
  background-position: right 10px center;
  float: right;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 549, ../sass/components/_nhlbi_publications.scss */
  .order-more-dialog-wrapper .order-more-dialog h2.order-more-header .order-dialog-close-button, .order-more-dialog-wrapper .order-more-dialog .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.order-more-header .order-dialog-close-button, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .order-more-dialog-wrapper .order-more-dialog h1.order-more-header .order-dialog-close-button, .order-more-dialog-wrapper .order-more-dialog .order-more-header.contact-method-label .order-dialog-close-button {
    background-size: 20px 20px;
    height: 20px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 549, ../sass/components/_nhlbi_publications.scss */
  .order-more-dialog-wrapper .order-more-dialog h2.order-more-header .order-dialog-close-button, .order-more-dialog-wrapper .order-more-dialog .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.order-more-header .order-dialog-close-button, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .order-more-dialog-wrapper .order-more-dialog h1.order-more-header .order-dialog-close-button, .order-more-dialog-wrapper .order-more-dialog .order-more-header.contact-method-label .order-dialog-close-button {
    background-size: 20px 20px;
    height: 20px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 549, ../sass/components/_nhlbi_publications.scss */
  .order-more-dialog-wrapper .order-more-dialog h2.order-more-header .order-dialog-close-button, .order-more-dialog-wrapper .order-more-dialog .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.order-more-header .order-dialog-close-button, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .order-more-dialog-wrapper .order-more-dialog h1.order-more-header .order-dialog-close-button, .order-more-dialog-wrapper .order-more-dialog .order-more-header.contact-method-label .order-dialog-close-button {
    padding-right: 10px;
  }
}
/* line 565, ../sass/components/_nhlbi_publications.scss */
.order-more-dialog-wrapper .order-more-dialog .order-more-got-it {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  background-color: #1a568c;
  border: 1px solid #1a568c;
  display: inline-block;
  margin: 20px auto 0;
  display: table;
}
@media all and (min-width: 1440px) {
  /* line 565, ../sass/components/_nhlbi_publications.scss */
  .order-more-dialog-wrapper .order-more-dialog .order-more-got-it {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 565, ../sass/components/_nhlbi_publications.scss */
  .order-more-dialog-wrapper .order-more-dialog .order-more-got-it {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 565, ../sass/components/_nhlbi_publications.scss */
  .order-more-dialog-wrapper .order-more-dialog .order-more-got-it {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 565, ../sass/components/_nhlbi_publications.scss */
  .order-more-dialog-wrapper .order-more-dialog .order-more-got-it {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.order-more-dialog-wrapper .order-more-dialog .order-more-got-it :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 565, ../sass/components/_nhlbi_publications.scss */
  .order-more-dialog-wrapper .order-more-dialog .order-more-got-it {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 565, ../sass/components/_nhlbi_publications.scss */
  .order-more-dialog-wrapper .order-more-dialog .order-more-got-it {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 565, ../sass/components/_nhlbi_publications.scss */
  .order-more-dialog-wrapper .order-more-dialog .order-more-got-it {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 565, ../sass/components/_nhlbi_publications.scss */
  .order-more-dialog-wrapper .order-more-dialog .order-more-got-it {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 565, ../sass/components/_nhlbi_publications.scss */
  .order-more-dialog-wrapper .order-more-dialog .order-more-got-it {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.order-more-dialog-wrapper .order-more-dialog .order-more-got-it:hover {
  background-color: #102d66;
  border-color: #102d66;
  color: #fff;
  text-decoration: none;
}

/* line 580, ../sass/components/_nhlbi_publications.scss */
#publication-checkout {
  display: none;
}

/* line 585, ../sass/components/_nhlbi_publications.scss */
.view-nhlbi-publications-and-resources .view-content {
  position: relative;
}
/* line 588, ../sass/components/_nhlbi_publications.scss */
.view-nhlbi-publications-and-resources .progress-wrapper {
  position: absolute;
  background-color: #232323;
  opacity: 0.9;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
/* line 597, ../sass/components/_nhlbi_publications.scss */
.view-nhlbi-publications-and-resources .ajax-progress-fullscreen {
  position: relative;
  top: 1%;
}
/* line 602, ../sass/components/_nhlbi_publications.scss */
.view-nhlbi-publications-and-resources .result-summary {
  margin: 0 0 10px 20px;
}

/* line 4, ../sass/components/_hei.scss */
.node--type-health-education-initiative.node--view-mode-full .standard,
.node--type-health-education-initiative.node--view-mode-subscribe .standard {
  position: relative;
}
/* line 9, ../sass/components/_hei.scss */
.node--type-health-education-initiative.node--view-mode-full .field--name-field-hero-image img,
.node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-hero-image img {
  width: 100%;
}

/* line 16, ../sass/components/_hei.scss */
.banner-container {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  grid-template-areas: "heroContent";
}
/* line 21, ../sass/components/_hei.scss */
.banner-container .banner-text-container {
  grid-area: heroContent;
  height: min-content;
  z-index: 2;
  float: left;
  margin-left: 0;
}
/* line 28, ../sass/components/_hei.scss */
.banner-container .banner-image-container {
  height: 100%;
  grid-area: heroContent;
  z-index: 1;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  /* line 16, ../sass/components/_hei.scss */
  .banner-container {
    display: -ms-grid;
    -ms-grid-rows: 1fr;
    -ms-grid-columns: 1fr;
    align-items: center;
  }
  /* line 39, ../sass/components/_hei.scss */
  .banner-container .banner-image-container {
    -ms-grid-column: 1;
    -ms-grid-row: 1;
  }
  /* line 43, ../sass/components/_hei.scss */
  .banner-container .banner-text-container {
    -ms-grid-column: 1;
    -ms-grid-row: 1;
  }
}

/* line 50, ../sass/components/_hei.scss */
.hei-header-content {
  width: 49%;
  margin-top: 30px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 50, ../sass/components/_hei.scss */
  .hei-header-content {
    width: 60%;
    margin-top: 15px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 50, ../sass/components/_hei.scss */
  .hei-header-content {
    width: 100%;
    margin-top: 50px;
  }
}
@media all and (min-width: 0em) and (max-width: 360px) {
  /* line 50, ../sass/components/_hei.scss */
  .hei-header-content {
    margin-top: 15px;
  }
}
/* line 64, ../sass/components/_hei.scss */
.hei-header-content h1 {
  margin: 0px;
}

/* line 68, ../sass/components/_hei.scss */
.hei-header-content.hei-unpublished {
  top: 126px;
}

/* line 71, ../sass/components/_hei.scss */
.hei-header-image {
  z-index: 2;
  display: flex;
  background-color: #f4f4f4;
}
@media all and (min-width: 1100px) {
  /* line 71, ../sass/components/_hei.scss */
  .hei-header-image {
    min-height: 330px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 71, ../sass/components/_hei.scss */
  .hei-header-image {
    min-height: 250px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 71, ../sass/components/_hei.scss */
  .hei-header-image {
    min-height: 250px;
  }
}
/* line 85, ../sass/components/_hei.scss */
.hei-header-image .fullFlexItemImage {
  width: 100%;
  max-width: 100%;
  min-width: 100%;
}
/* line 89, ../sass/components/_hei.scss */
.hei-header-image .fullFlexItemImage .field--name-field-hero-image, .hei-header-image .fullFlexItemImage .media--image {
  height: 100%;
}
/* line 92, ../sass/components/_hei.scss */
.hei-header-image .fullFlexItemImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* line 100, ../sass/components/_hei.scss */
.initiative-header, .initiativename, .initiativetagline, .initiativehashtag {
  font-weight: normal;
  color: #fff;
}

/* line 104, ../sass/components/_hei.scss */
.initiative-text-background {
  background-color: rgba(0, 0, 0, 0.54);
  padding: 5px 0.875rem;
  margin-bottom: 0.4em;
  display: inline-block;
}

/* line 111, ../sass/components/_hei.scss */
.initiativename {
  font-size: 1.4vw;
  line-height: 1.5;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
}
@media all and (min-width: 1440px) {
  /* line 111, ../sass/components/_hei.scss */
  .initiativename {
    font-size: 1.4vw;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 111, ../sass/components/_hei.scss */
  .initiativename {
    font-size: 1.4vw;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 111, ../sass/components/_hei.scss */
  .initiativename {
    font-size: 2.5vw;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 111, ../sass/components/_hei.scss */
  .initiativename {
    font-size: 3vw;
  }
}
@media all and (max-width: 479px) {
  /* line 111, ../sass/components/_hei.scss */
  .initiativename {
    font-size: 1.0625rem;
  }
}

/* line 120, ../sass/components/_hei.scss */
.initiativetagline {
  font-size: 1.5vw;
  font-family: "Merriweather", serif;
}
@media all and (min-width: 1440px) {
  /* line 120, ../sass/components/_hei.scss */
  .initiativetagline {
    font-size: 1.5vw;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 120, ../sass/components/_hei.scss */
  .initiativetagline {
    font-size: 1.5vw;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 120, ../sass/components/_hei.scss */
  .initiativetagline {
    font-size: 2.7vw;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 120, ../sass/components/_hei.scss */
  .initiativetagline {
    font-size: 3.5vw;
  }
}
@media all and (max-width: 479px) {
  /* line 120, ../sass/components/_hei.scss */
  .initiativetagline {
    font-size: 1.125rem;
  }
}

/* line 128, ../sass/components/_hei.scss */
.initiativehashtag {
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-style: italic;
}

/* line 134, ../sass/components/_hei.scss */
.initiativebuttonlabel {
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-weight: normal;
  color: #fff;
}

/* line 140, ../sass/components/_hei.scss */
.initiativebannertext, .initiativebannertext-white {
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-weight: normal;
  color: #222;
  font-size: 1rem;
}

/* line 146, ../sass/components/_hei.scss */
.initiativebannertext-white {
  color: #fff;
}

/* line 150, ../sass/components/_hei.scss */
.initiativeborder {
  border-bottom: 1px solid #979797;
}

/* line 153, ../sass/components/_hei.scss */
.hei-social-media {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  float: right;
  padding-bottom: 1em;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 153, ../sass/components/_hei.scss */
  .hei-social-media {
    float: none;
  }
}
/* line 166, ../sass/components/_hei.scss */
.hei-social-media .ext-icon {
  display: none;
}
/* line 169, ../sass/components/_hei.scss */
.hei-social-media .hei-social-media-links {
  margin-left: 1em;
}

/* line 173, ../sass/components/_hei.scss */
.social-link-hei {
  display: inline-block;
  width: 25px;
  margin-right: 5px;
}

/* line 198, ../sass/components/_hei.scss */
.blue-hei .hei-partnering-background {
  background-color: #102d66;
}
/* line 200, ../sass/components/_hei.scss */
.blue-hei .hei-partnering-background h2, .blue-hei .hei-partnering-background .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .blue-hei .hei-partnering-background h1, .blue-hei .hei-partnering-background .contact-method-label {
  color: #fff;
}
/* line 203, ../sass/components/_hei.scss */
.blue-hei .hei-partnering-background .initiativebannertext, .blue-hei .hei-partnering-background .initiativebannertext-white {
  color: #fff;
}
/* line 207, ../sass/components/_hei.scss */
.blue-hei .hei-top-button, .blue-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url, .yellow-turquoise-hei .hei-partnering .blue-hei .field--name-field-url {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 207, ../sass/components/_hei.scss */
  .blue-hei .hei-top-button, .blue-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url, .yellow-turquoise-hei .hei-partnering .blue-hei .field--name-field-url {
    margin-top: 0.75em;
    margin-bottom: 0.75em;
  }
}
/* line 1535, ../sass/_mixins.scss */
.blue-hei .hei-top-button a, .blue-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a, .yellow-turquoise-hei .hei-partnering .blue-hei .field--name-field-url a {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  background-color: #1a568c;
  border: 1px solid #1a568c;
  padding: 0.8em 3em;
}
@media all and (min-width: 1440px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-hei .hei-top-button a, .blue-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a, .yellow-turquoise-hei .hei-partnering .blue-hei .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-hei .hei-top-button a, .blue-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a, .yellow-turquoise-hei .hei-partnering .blue-hei .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-hei .hei-top-button a, .blue-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a, .yellow-turquoise-hei .hei-partnering .blue-hei .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-hei .hei-top-button a, .blue-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a, .yellow-turquoise-hei .hei-partnering .blue-hei .field--name-field-url a {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.blue-hei .hei-top-button a :hover, .blue-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a :hover, .yellow-turquoise-hei .hei-partnering .blue-hei .field--name-field-url a :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-hei .hei-top-button a, .blue-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a, .yellow-turquoise-hei .hei-partnering .blue-hei .field--name-field-url a {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-hei .hei-top-button a, .blue-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a, .yellow-turquoise-hei .hei-partnering .blue-hei .field--name-field-url a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-hei .hei-top-button a, .blue-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a, .yellow-turquoise-hei .hei-partnering .blue-hei .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-hei .hei-top-button a, .blue-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a, .yellow-turquoise-hei .hei-partnering .blue-hei .field--name-field-url a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-hei .hei-top-button a, .blue-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a, .yellow-turquoise-hei .hei-partnering .blue-hei .field--name-field-url a {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.blue-hei .hei-top-button a:hover, .blue-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a:hover, .yellow-turquoise-hei .hei-partnering .blue-hei .field--name-field-url a:hover {
  background-color: #102d66;
  border-color: #102d66;
  color: #fff;
  text-decoration: none;
}
/* line 1539, ../sass/_mixins.scss */
.blue-hei .hei-top-button a:focus, .blue-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a:focus, .yellow-turquoise-hei .hei-partnering .blue-hei .field--name-field-url a:focus {
  outline: #fff dotted 3px !important;
}
/* line 210, ../sass/components/_hei.scss */
.blue-hei .hei-standard-button, .blue-hei .hei-grants .field--name-field-url, .hei-grants .blue-hei .field--name-field-url, .blue-hei .hei-health-professionals .field--name-field-url, .hei-health-professionals .blue-hei .field--name-field-url {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 210, ../sass/components/_hei.scss */
  .blue-hei .hei-standard-button, .blue-hei .hei-grants .field--name-field-url, .hei-grants .blue-hei .field--name-field-url, .blue-hei .hei-health-professionals .field--name-field-url, .hei-health-professionals .blue-hei .field--name-field-url {
    margin-top: 0.75em;
    margin-bottom: 0.75em;
  }
}
/* line 1535, ../sass/_mixins.scss */
.blue-hei .hei-standard-button a, .blue-hei .hei-grants .field--name-field-url a, .hei-grants .blue-hei .field--name-field-url a, .blue-hei .hei-health-professionals .field--name-field-url a, .hei-health-professionals .blue-hei .field--name-field-url a {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  background-color: #1a568c;
  border: 1px solid #1a568c;
  padding: 0.8em 3em;
}
@media all and (min-width: 1440px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-hei .hei-standard-button a, .blue-hei .hei-grants .field--name-field-url a, .hei-grants .blue-hei .field--name-field-url a, .blue-hei .hei-health-professionals .field--name-field-url a, .hei-health-professionals .blue-hei .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-hei .hei-standard-button a, .blue-hei .hei-grants .field--name-field-url a, .hei-grants .blue-hei .field--name-field-url a, .blue-hei .hei-health-professionals .field--name-field-url a, .hei-health-professionals .blue-hei .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-hei .hei-standard-button a, .blue-hei .hei-grants .field--name-field-url a, .hei-grants .blue-hei .field--name-field-url a, .blue-hei .hei-health-professionals .field--name-field-url a, .hei-health-professionals .blue-hei .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-hei .hei-standard-button a, .blue-hei .hei-grants .field--name-field-url a, .hei-grants .blue-hei .field--name-field-url a, .blue-hei .hei-health-professionals .field--name-field-url a, .hei-health-professionals .blue-hei .field--name-field-url a {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.blue-hei .hei-standard-button a :hover, .blue-hei .hei-grants .field--name-field-url a :hover, .hei-grants .blue-hei .field--name-field-url a :hover, .blue-hei .hei-health-professionals .field--name-field-url a :hover, .hei-health-professionals .blue-hei .field--name-field-url a :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-hei .hei-standard-button a, .blue-hei .hei-grants .field--name-field-url a, .hei-grants .blue-hei .field--name-field-url a, .blue-hei .hei-health-professionals .field--name-field-url a, .hei-health-professionals .blue-hei .field--name-field-url a {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-hei .hei-standard-button a, .blue-hei .hei-grants .field--name-field-url a, .hei-grants .blue-hei .field--name-field-url a, .blue-hei .hei-health-professionals .field--name-field-url a, .hei-health-professionals .blue-hei .field--name-field-url a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-hei .hei-standard-button a, .blue-hei .hei-grants .field--name-field-url a, .hei-grants .blue-hei .field--name-field-url a, .blue-hei .hei-health-professionals .field--name-field-url a, .hei-health-professionals .blue-hei .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-hei .hei-standard-button a, .blue-hei .hei-grants .field--name-field-url a, .hei-grants .blue-hei .field--name-field-url a, .blue-hei .hei-health-professionals .field--name-field-url a, .hei-health-professionals .blue-hei .field--name-field-url a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-hei .hei-standard-button a, .blue-hei .hei-grants .field--name-field-url a, .hei-grants .blue-hei .field--name-field-url a, .blue-hei .hei-health-professionals .field--name-field-url a, .hei-health-professionals .blue-hei .field--name-field-url a {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.blue-hei .hei-standard-button a:hover, .blue-hei .hei-grants .field--name-field-url a:hover, .hei-grants .blue-hei .field--name-field-url a:hover, .blue-hei .hei-health-professionals .field--name-field-url a:hover, .hei-health-professionals .blue-hei .field--name-field-url a:hover {
  background-color: #102d66;
  border-color: #102d66;
  color: #fff;
  text-decoration: none;
}
/* line 1539, ../sass/_mixins.scss */
.blue-hei .hei-standard-button a:focus, .blue-hei .hei-grants .field--name-field-url a:focus, .hei-grants .blue-hei .field--name-field-url a:focus, .blue-hei .hei-health-professionals .field--name-field-url a:focus, .hei-health-professionals .blue-hei .field--name-field-url a:focus {
  outline: #bf0d2e dotted 3px !important;
}
/* line 213, ../sass/components/_hei.scss */
.blue-hei .hei-submit-button {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 213, ../sass/components/_hei.scss */
  .blue-hei .hei-submit-button {
    margin-top: 0.75em;
    margin-bottom: 0.75em;
  }
}
/* line 1535, ../sass/_mixins.scss */
.blue-hei .hei-submit-button a {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  background-color: #1a568c;
  border: 1px solid #1a568c;
  padding: 0.8em 3em;
}
@media all and (min-width: 1440px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-hei .hei-submit-button a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-hei .hei-submit-button a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-hei .hei-submit-button a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-hei .hei-submit-button a {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.blue-hei .hei-submit-button a :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-hei .hei-submit-button a {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-hei .hei-submit-button a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-hei .hei-submit-button a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-hei .hei-submit-button a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-hei .hei-submit-button a {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.blue-hei .hei-submit-button a:hover {
  background-color: #102d66;
  border-color: #102d66;
  color: #fff;
  text-decoration: none;
}
/* line 1539, ../sass/_mixins.scss */
.blue-hei .hei-submit-button a:focus {
  outline: #bf0d2e dotted 3px !important;
}
/* line 217, ../sass/components/_hei.scss */
.blue-hei .hei-partnering .field--name-field-url {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 217, ../sass/components/_hei.scss */
  .blue-hei .hei-partnering .field--name-field-url {
    margin-top: 0.75em;
    margin-bottom: 0.75em;
  }
}
/* line 1535, ../sass/_mixins.scss */
.blue-hei .hei-partnering .field--name-field-url a {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #1a568c;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #fff;
  padding: 0.8em 3em;
}
@media all and (min-width: 1440px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-hei .hei-partnering .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-hei .hei-partnering .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-hei .hei-partnering .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-hei .hei-partnering .field--name-field-url a {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.blue-hei .hei-partnering .field--name-field-url a :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-hei .hei-partnering .field--name-field-url a {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-hei .hei-partnering .field--name-field-url a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-hei .hei-partnering .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-hei .hei-partnering .field--name-field-url a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-hei .hei-partnering .field--name-field-url a {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.blue-hei .hei-partnering .field--name-field-url a:hover {
  background-color: #d7e7f4;
  border-color: #d7e7f4;
  color: #222;
  text-decoration: none;
}
/* line 1539, ../sass/_mixins.scss */
.blue-hei .hei-partnering .field--name-field-url a:focus {
  outline: #fff dotted 3px !important;
}
/* line 219, ../sass/components/_hei.scss */
.blue-hei .hei-partnering .field--name-field-url a:hover {
  border-color: #fff;
}
/* line 224, ../sass/components/_hei.scss */
.blue-hei .hei-related-initiatives-background {
  background-color: #d7e7f4;
}
/* line 227, ../sass/components/_hei.scss */
.blue-hei .hei-news {
  background-color: #102d66;
}
/* line 230, ../sass/components/_hei.scss */
.blue-hei .hei-news a.viewalllink, .blue-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .blue-hei .hei-news .field--name-field-url > a, .blue-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .blue-hei .hei-news a, .blue-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-hei .hei-news a, .blue-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-hei .hei-news .field--name-field-promotional-link > a, .blue-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-hei .hei-news a, .blue-hei .hei-news .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .blue-hei .hei-news .field--name-field-url > a {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #1a568c;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #fff;
  padding: 0.8em 3em;
  display: table !important;
  background-image: none;
}
@media all and (min-width: 1440px) {
  /* line 230, ../sass/components/_hei.scss */
  .blue-hei .hei-news a.viewalllink, .blue-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .blue-hei .hei-news .field--name-field-url > a, .blue-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .blue-hei .hei-news a, .blue-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-hei .hei-news a, .blue-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-hei .hei-news .field--name-field-promotional-link > a, .blue-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-hei .hei-news a, .blue-hei .hei-news .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .blue-hei .hei-news .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 230, ../sass/components/_hei.scss */
  .blue-hei .hei-news a.viewalllink, .blue-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .blue-hei .hei-news .field--name-field-url > a, .blue-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .blue-hei .hei-news a, .blue-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-hei .hei-news a, .blue-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-hei .hei-news .field--name-field-promotional-link > a, .blue-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-hei .hei-news a, .blue-hei .hei-news .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .blue-hei .hei-news .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 230, ../sass/components/_hei.scss */
  .blue-hei .hei-news a.viewalllink, .blue-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .blue-hei .hei-news .field--name-field-url > a, .blue-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .blue-hei .hei-news a, .blue-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-hei .hei-news a, .blue-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-hei .hei-news .field--name-field-promotional-link > a, .blue-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-hei .hei-news a, .blue-hei .hei-news .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .blue-hei .hei-news .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 230, ../sass/components/_hei.scss */
  .blue-hei .hei-news a.viewalllink, .blue-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .blue-hei .hei-news .field--name-field-url > a, .blue-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .blue-hei .hei-news a, .blue-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-hei .hei-news a, .blue-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-hei .hei-news .field--name-field-promotional-link > a, .blue-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-hei .hei-news a, .blue-hei .hei-news .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .blue-hei .hei-news .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.blue-hei .hei-news a.viewalllink :hover, .blue-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a :hover, .promoted-content-container .flexItemText .blue-hei .hei-news .field--name-field-url > a :hover, .blue-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a :hover, .contact-nhlbi--landing .field--name-field-directions-link .blue-hei .hei-news a :hover, .blue-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a :hover, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-hei .hei-news a :hover, .blue-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a :hover, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-hei .hei-news .field--name-field-promotional-link > a :hover, .blue-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a :hover, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-hei .hei-news a :hover, .blue-hei .hei-news .field--name-field-community-card .field--name-field-url > a :hover, .field--name-field-community-card .blue-hei .hei-news .field--name-field-url > a :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 230, ../sass/components/_hei.scss */
  .blue-hei .hei-news a.viewalllink, .blue-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .blue-hei .hei-news .field--name-field-url > a, .blue-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .blue-hei .hei-news a, .blue-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-hei .hei-news a, .blue-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-hei .hei-news .field--name-field-promotional-link > a, .blue-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-hei .hei-news a, .blue-hei .hei-news .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .blue-hei .hei-news .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 230, ../sass/components/_hei.scss */
  .blue-hei .hei-news a.viewalllink, .blue-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .blue-hei .hei-news .field--name-field-url > a, .blue-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .blue-hei .hei-news a, .blue-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-hei .hei-news a, .blue-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-hei .hei-news .field--name-field-promotional-link > a, .blue-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-hei .hei-news a, .blue-hei .hei-news .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .blue-hei .hei-news .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 230, ../sass/components/_hei.scss */
  .blue-hei .hei-news a.viewalllink, .blue-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .blue-hei .hei-news .field--name-field-url > a, .blue-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .blue-hei .hei-news a, .blue-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-hei .hei-news a, .blue-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-hei .hei-news .field--name-field-promotional-link > a, .blue-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-hei .hei-news a, .blue-hei .hei-news .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .blue-hei .hei-news .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 230, ../sass/components/_hei.scss */
  .blue-hei .hei-news a.viewalllink, .blue-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .blue-hei .hei-news .field--name-field-url > a, .blue-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .blue-hei .hei-news a, .blue-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-hei .hei-news a, .blue-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-hei .hei-news .field--name-field-promotional-link > a, .blue-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-hei .hei-news a, .blue-hei .hei-news .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .blue-hei .hei-news .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 230, ../sass/components/_hei.scss */
  .blue-hei .hei-news a.viewalllink, .blue-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .blue-hei .hei-news .field--name-field-url > a, .blue-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .blue-hei .hei-news a, .blue-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-hei .hei-news a, .blue-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-hei .hei-news .field--name-field-promotional-link > a, .blue-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-hei .hei-news a, .blue-hei .hei-news .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .blue-hei .hei-news .field--name-field-url > a {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.blue-hei .hei-news a.viewalllink:hover, .blue-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a:hover, .promoted-content-container .flexItemText .blue-hei .hei-news .field--name-field-url > a:hover, .blue-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a:hover, .contact-nhlbi--landing .field--name-field-directions-link .blue-hei .hei-news a:hover, .blue-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a:hover, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-hei .hei-news a:hover, .blue-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:hover, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-hei .hei-news .field--name-field-promotional-link > a:hover, .blue-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a:hover, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-hei .hei-news a:hover, .blue-hei .hei-news .field--name-field-community-card .field--name-field-url > a:hover, .field--name-field-community-card .blue-hei .hei-news .field--name-field-url > a:hover {
  background-color: #d7e7f4;
  border-color: #d7e7f4;
  color: #222;
  text-decoration: none;
}
/* line 2379, ../sass/_mixins.scss */
.blue-hei .hei-news a.viewalllink:focus, .blue-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a:focus, .promoted-content-container .flexItemText .blue-hei .hei-news .field--name-field-url > a:focus, .blue-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a:focus, .contact-nhlbi--landing .field--name-field-directions-link .blue-hei .hei-news a:focus, .blue-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a:focus, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-hei .hei-news a:focus, .blue-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:focus, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-hei .hei-news .field--name-field-promotional-link > a:focus, .blue-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a:focus, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-hei .hei-news a:focus, .blue-hei .hei-news .field--name-field-community-card .field--name-field-url > a:focus, .field--name-field-community-card .blue-hei .hei-news .field--name-field-url > a:focus, .blue-hei .hei-news a.viewalllink:active, .blue-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a:active, .promoted-content-container .flexItemText .blue-hei .hei-news .field--name-field-url > a:active, .blue-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a:active, .contact-nhlbi--landing .field--name-field-directions-link .blue-hei .hei-news a:active, .blue-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a:active, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-hei .hei-news a:active, .blue-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:active, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-hei .hei-news .field--name-field-promotional-link > a:active, .blue-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a:active, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-hei .hei-news a:active, .blue-hei .hei-news .field--name-field-community-card .field--name-field-url > a:active, .field--name-field-community-card .blue-hei .hei-news .field--name-field-url > a:active {
  outline: #fff dotted 3px !important;
}
/* line 234, ../sass/components/_hei.scss */
.blue-hei .hei-events {
  background-color: #1a568c;
}
/* line 237, ../sass/components/_hei.scss */
.blue-hei .hei-events .hei-related-events a {
  outline-color: #fff !important;
}
/* line 240, ../sass/components/_hei.scss */
.blue-hei .hei-events .hei-related-events .flexItemText {
  padding: 1.5em;
}
/* line 247, ../sass/components/_hei.scss */
.blue-hei .hei-events .hei-related-events .flexItemText .eventdatesLocationType .eventLocation .map-icon-top-page {
  background-position: center;
}
/* line 254, ../sass/components/_hei.scss */
.blue-hei .hei-events .hei-related-events .flexItemText .bodytext, .blue-hei .hei-events .hei-related-events .flexItemText .darkGrayBodyText, .blue-hei .hei-events .hei-related-events .flexItemText .foa-expiration-date {
  color: #fff;
}
/* line 261, ../sass/components/_hei.scss */
.blue-hei .hei-events a.viewalllink, .blue-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .blue-hei .hei-events .field--name-field-url > a, .blue-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .blue-hei .hei-events a, .blue-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-hei .hei-events a, .blue-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-hei .hei-events .field--name-field-promotional-link > a, .blue-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-hei .hei-events a, .blue-hei .hei-events .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .blue-hei .hei-events .field--name-field-url > a {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #1a568c;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #fff;
  padding: 0.8em 3em;
  display: table !important;
  background-image: none;
}
@media all and (min-width: 1440px) {
  /* line 261, ../sass/components/_hei.scss */
  .blue-hei .hei-events a.viewalllink, .blue-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .blue-hei .hei-events .field--name-field-url > a, .blue-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .blue-hei .hei-events a, .blue-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-hei .hei-events a, .blue-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-hei .hei-events .field--name-field-promotional-link > a, .blue-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-hei .hei-events a, .blue-hei .hei-events .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .blue-hei .hei-events .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 261, ../sass/components/_hei.scss */
  .blue-hei .hei-events a.viewalllink, .blue-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .blue-hei .hei-events .field--name-field-url > a, .blue-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .blue-hei .hei-events a, .blue-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-hei .hei-events a, .blue-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-hei .hei-events .field--name-field-promotional-link > a, .blue-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-hei .hei-events a, .blue-hei .hei-events .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .blue-hei .hei-events .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 261, ../sass/components/_hei.scss */
  .blue-hei .hei-events a.viewalllink, .blue-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .blue-hei .hei-events .field--name-field-url > a, .blue-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .blue-hei .hei-events a, .blue-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-hei .hei-events a, .blue-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-hei .hei-events .field--name-field-promotional-link > a, .blue-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-hei .hei-events a, .blue-hei .hei-events .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .blue-hei .hei-events .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 261, ../sass/components/_hei.scss */
  .blue-hei .hei-events a.viewalllink, .blue-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .blue-hei .hei-events .field--name-field-url > a, .blue-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .blue-hei .hei-events a, .blue-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-hei .hei-events a, .blue-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-hei .hei-events .field--name-field-promotional-link > a, .blue-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-hei .hei-events a, .blue-hei .hei-events .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .blue-hei .hei-events .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.blue-hei .hei-events a.viewalllink :hover, .blue-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a :hover, .promoted-content-container .flexItemText .blue-hei .hei-events .field--name-field-url > a :hover, .blue-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a :hover, .contact-nhlbi--landing .field--name-field-directions-link .blue-hei .hei-events a :hover, .blue-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a :hover, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-hei .hei-events a :hover, .blue-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a :hover, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-hei .hei-events .field--name-field-promotional-link > a :hover, .blue-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a :hover, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-hei .hei-events a :hover, .blue-hei .hei-events .field--name-field-community-card .field--name-field-url > a :hover, .field--name-field-community-card .blue-hei .hei-events .field--name-field-url > a :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 261, ../sass/components/_hei.scss */
  .blue-hei .hei-events a.viewalllink, .blue-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .blue-hei .hei-events .field--name-field-url > a, .blue-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .blue-hei .hei-events a, .blue-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-hei .hei-events a, .blue-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-hei .hei-events .field--name-field-promotional-link > a, .blue-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-hei .hei-events a, .blue-hei .hei-events .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .blue-hei .hei-events .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 261, ../sass/components/_hei.scss */
  .blue-hei .hei-events a.viewalllink, .blue-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .blue-hei .hei-events .field--name-field-url > a, .blue-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .blue-hei .hei-events a, .blue-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-hei .hei-events a, .blue-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-hei .hei-events .field--name-field-promotional-link > a, .blue-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-hei .hei-events a, .blue-hei .hei-events .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .blue-hei .hei-events .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 261, ../sass/components/_hei.scss */
  .blue-hei .hei-events a.viewalllink, .blue-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .blue-hei .hei-events .field--name-field-url > a, .blue-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .blue-hei .hei-events a, .blue-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-hei .hei-events a, .blue-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-hei .hei-events .field--name-field-promotional-link > a, .blue-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-hei .hei-events a, .blue-hei .hei-events .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .blue-hei .hei-events .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 261, ../sass/components/_hei.scss */
  .blue-hei .hei-events a.viewalllink, .blue-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .blue-hei .hei-events .field--name-field-url > a, .blue-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .blue-hei .hei-events a, .blue-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-hei .hei-events a, .blue-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-hei .hei-events .field--name-field-promotional-link > a, .blue-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-hei .hei-events a, .blue-hei .hei-events .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .blue-hei .hei-events .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 261, ../sass/components/_hei.scss */
  .blue-hei .hei-events a.viewalllink, .blue-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .blue-hei .hei-events .field--name-field-url > a, .blue-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .blue-hei .hei-events a, .blue-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-hei .hei-events a, .blue-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-hei .hei-events .field--name-field-promotional-link > a, .blue-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-hei .hei-events a, .blue-hei .hei-events .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .blue-hei .hei-events .field--name-field-url > a {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.blue-hei .hei-events a.viewalllink:hover, .blue-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a:hover, .promoted-content-container .flexItemText .blue-hei .hei-events .field--name-field-url > a:hover, .blue-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a:hover, .contact-nhlbi--landing .field--name-field-directions-link .blue-hei .hei-events a:hover, .blue-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a:hover, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-hei .hei-events a:hover, .blue-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:hover, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-hei .hei-events .field--name-field-promotional-link > a:hover, .blue-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a:hover, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-hei .hei-events a:hover, .blue-hei .hei-events .field--name-field-community-card .field--name-field-url > a:hover, .field--name-field-community-card .blue-hei .hei-events .field--name-field-url > a:hover {
  background-color: #d7e7f4;
  border-color: #d7e7f4;
  color: #222;
  text-decoration: none;
}
/* line 2379, ../sass/_mixins.scss */
.blue-hei .hei-events a.viewalllink:focus, .blue-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a:focus, .promoted-content-container .flexItemText .blue-hei .hei-events .field--name-field-url > a:focus, .blue-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a:focus, .contact-nhlbi--landing .field--name-field-directions-link .blue-hei .hei-events a:focus, .blue-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a:focus, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-hei .hei-events a:focus, .blue-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:focus, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-hei .hei-events .field--name-field-promotional-link > a:focus, .blue-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a:focus, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-hei .hei-events a:focus, .blue-hei .hei-events .field--name-field-community-card .field--name-field-url > a:focus, .field--name-field-community-card .blue-hei .hei-events .field--name-field-url > a:focus, .blue-hei .hei-events a.viewalllink:active, .blue-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a:active, .promoted-content-container .flexItemText .blue-hei .hei-events .field--name-field-url > a:active, .blue-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a:active, .contact-nhlbi--landing .field--name-field-directions-link .blue-hei .hei-events a:active, .blue-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a:active, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-hei .hei-events a:active, .blue-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:active, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-hei .hei-events .field--name-field-promotional-link > a:active, .blue-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a:active, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-hei .hei-events a:active, .blue-hei .hei-events .field--name-field-community-card .field--name-field-url > a:active, .field--name-field-community-card .blue-hei .hei-events .field--name-field-url > a:active {
  outline: #fff dotted 3px !important;
}
/* line 265, ../sass/components/_hei.scss */
.blue-hei #newsletter-block-alerts .subscribe {
  background-color: #1a568c;
}
/* line 269, ../sass/components/_hei.scss */
.blue-hei .hei-community a.viewalllink, .blue-hei .hei-community .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .blue-hei .hei-community .field--name-field-url > a, .blue-hei .hei-community .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .blue-hei .hei-community a, .blue-hei .hei-community .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-hei .hei-community a, .blue-hei .hei-community .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-hei .hei-community .field--name-field-promotional-link > a, .blue-hei .hei-community .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-hei .hei-community a, .blue-hei .hei-community .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .blue-hei .hei-community .field--name-field-url > a {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #1a568c;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #fff;
  padding: 0.8em 3em;
  display: table !important;
  background-image: none;
}
@media all and (min-width: 1440px) {
  /* line 269, ../sass/components/_hei.scss */
  .blue-hei .hei-community a.viewalllink, .blue-hei .hei-community .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .blue-hei .hei-community .field--name-field-url > a, .blue-hei .hei-community .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .blue-hei .hei-community a, .blue-hei .hei-community .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-hei .hei-community a, .blue-hei .hei-community .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-hei .hei-community .field--name-field-promotional-link > a, .blue-hei .hei-community .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-hei .hei-community a, .blue-hei .hei-community .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .blue-hei .hei-community .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 269, ../sass/components/_hei.scss */
  .blue-hei .hei-community a.viewalllink, .blue-hei .hei-community .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .blue-hei .hei-community .field--name-field-url > a, .blue-hei .hei-community .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .blue-hei .hei-community a, .blue-hei .hei-community .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-hei .hei-community a, .blue-hei .hei-community .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-hei .hei-community .field--name-field-promotional-link > a, .blue-hei .hei-community .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-hei .hei-community a, .blue-hei .hei-community .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .blue-hei .hei-community .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 269, ../sass/components/_hei.scss */
  .blue-hei .hei-community a.viewalllink, .blue-hei .hei-community .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .blue-hei .hei-community .field--name-field-url > a, .blue-hei .hei-community .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .blue-hei .hei-community a, .blue-hei .hei-community .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-hei .hei-community a, .blue-hei .hei-community .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-hei .hei-community .field--name-field-promotional-link > a, .blue-hei .hei-community .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-hei .hei-community a, .blue-hei .hei-community .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .blue-hei .hei-community .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 269, ../sass/components/_hei.scss */
  .blue-hei .hei-community a.viewalllink, .blue-hei .hei-community .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .blue-hei .hei-community .field--name-field-url > a, .blue-hei .hei-community .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .blue-hei .hei-community a, .blue-hei .hei-community .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-hei .hei-community a, .blue-hei .hei-community .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-hei .hei-community .field--name-field-promotional-link > a, .blue-hei .hei-community .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-hei .hei-community a, .blue-hei .hei-community .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .blue-hei .hei-community .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.blue-hei .hei-community a.viewalllink :hover, .blue-hei .hei-community .promoted-content-container .flexItemText .field--name-field-url > a :hover, .promoted-content-container .flexItemText .blue-hei .hei-community .field--name-field-url > a :hover, .blue-hei .hei-community .contact-nhlbi--landing .field--name-field-directions-link a :hover, .contact-nhlbi--landing .field--name-field-directions-link .blue-hei .hei-community a :hover, .blue-hei .hei-community .isi-job-opportunities--landing .field--name-field-vacancies-link a :hover, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-hei .hei-community a :hover, .blue-hei .hei-community .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a :hover, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-hei .hei-community .field--name-field-promotional-link > a :hover, .blue-hei .hei-community .fixedDarkBluePane .field--name-field-traveling-and-security a :hover, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-hei .hei-community a :hover, .blue-hei .hei-community .field--name-field-community-card .field--name-field-url > a :hover, .field--name-field-community-card .blue-hei .hei-community .field--name-field-url > a :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 269, ../sass/components/_hei.scss */
  .blue-hei .hei-community a.viewalllink, .blue-hei .hei-community .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .blue-hei .hei-community .field--name-field-url > a, .blue-hei .hei-community .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .blue-hei .hei-community a, .blue-hei .hei-community .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-hei .hei-community a, .blue-hei .hei-community .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-hei .hei-community .field--name-field-promotional-link > a, .blue-hei .hei-community .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-hei .hei-community a, .blue-hei .hei-community .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .blue-hei .hei-community .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 269, ../sass/components/_hei.scss */
  .blue-hei .hei-community a.viewalllink, .blue-hei .hei-community .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .blue-hei .hei-community .field--name-field-url > a, .blue-hei .hei-community .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .blue-hei .hei-community a, .blue-hei .hei-community .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-hei .hei-community a, .blue-hei .hei-community .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-hei .hei-community .field--name-field-promotional-link > a, .blue-hei .hei-community .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-hei .hei-community a, .blue-hei .hei-community .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .blue-hei .hei-community .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 269, ../sass/components/_hei.scss */
  .blue-hei .hei-community a.viewalllink, .blue-hei .hei-community .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .blue-hei .hei-community .field--name-field-url > a, .blue-hei .hei-community .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .blue-hei .hei-community a, .blue-hei .hei-community .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-hei .hei-community a, .blue-hei .hei-community .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-hei .hei-community .field--name-field-promotional-link > a, .blue-hei .hei-community .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-hei .hei-community a, .blue-hei .hei-community .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .blue-hei .hei-community .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 269, ../sass/components/_hei.scss */
  .blue-hei .hei-community a.viewalllink, .blue-hei .hei-community .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .blue-hei .hei-community .field--name-field-url > a, .blue-hei .hei-community .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .blue-hei .hei-community a, .blue-hei .hei-community .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-hei .hei-community a, .blue-hei .hei-community .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-hei .hei-community .field--name-field-promotional-link > a, .blue-hei .hei-community .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-hei .hei-community a, .blue-hei .hei-community .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .blue-hei .hei-community .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 269, ../sass/components/_hei.scss */
  .blue-hei .hei-community a.viewalllink, .blue-hei .hei-community .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .blue-hei .hei-community .field--name-field-url > a, .blue-hei .hei-community .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .blue-hei .hei-community a, .blue-hei .hei-community .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-hei .hei-community a, .blue-hei .hei-community .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-hei .hei-community .field--name-field-promotional-link > a, .blue-hei .hei-community .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-hei .hei-community a, .blue-hei .hei-community .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .blue-hei .hei-community .field--name-field-url > a {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.blue-hei .hei-community a.viewalllink:hover, .blue-hei .hei-community .promoted-content-container .flexItemText .field--name-field-url > a:hover, .promoted-content-container .flexItemText .blue-hei .hei-community .field--name-field-url > a:hover, .blue-hei .hei-community .contact-nhlbi--landing .field--name-field-directions-link a:hover, .contact-nhlbi--landing .field--name-field-directions-link .blue-hei .hei-community a:hover, .blue-hei .hei-community .isi-job-opportunities--landing .field--name-field-vacancies-link a:hover, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-hei .hei-community a:hover, .blue-hei .hei-community .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:hover, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-hei .hei-community .field--name-field-promotional-link > a:hover, .blue-hei .hei-community .fixedDarkBluePane .field--name-field-traveling-and-security a:hover, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-hei .hei-community a:hover, .blue-hei .hei-community .field--name-field-community-card .field--name-field-url > a:hover, .field--name-field-community-card .blue-hei .hei-community .field--name-field-url > a:hover {
  background-color: #d7e7f4;
  border-color: #d7e7f4;
  color: #222;
  text-decoration: none;
}
/* line 2379, ../sass/_mixins.scss */
.blue-hei .hei-community a.viewalllink:focus, .blue-hei .hei-community .promoted-content-container .flexItemText .field--name-field-url > a:focus, .promoted-content-container .flexItemText .blue-hei .hei-community .field--name-field-url > a:focus, .blue-hei .hei-community .contact-nhlbi--landing .field--name-field-directions-link a:focus, .contact-nhlbi--landing .field--name-field-directions-link .blue-hei .hei-community a:focus, .blue-hei .hei-community .isi-job-opportunities--landing .field--name-field-vacancies-link a:focus, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-hei .hei-community a:focus, .blue-hei .hei-community .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:focus, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-hei .hei-community .field--name-field-promotional-link > a:focus, .blue-hei .hei-community .fixedDarkBluePane .field--name-field-traveling-and-security a:focus, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-hei .hei-community a:focus, .blue-hei .hei-community .field--name-field-community-card .field--name-field-url > a:focus, .field--name-field-community-card .blue-hei .hei-community .field--name-field-url > a:focus, .blue-hei .hei-community a.viewalllink:active, .blue-hei .hei-community .promoted-content-container .flexItemText .field--name-field-url > a:active, .promoted-content-container .flexItemText .blue-hei .hei-community .field--name-field-url > a:active, .blue-hei .hei-community .contact-nhlbi--landing .field--name-field-directions-link a:active, .contact-nhlbi--landing .field--name-field-directions-link .blue-hei .hei-community a:active, .blue-hei .hei-community .isi-job-opportunities--landing .field--name-field-vacancies-link a:active, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-hei .hei-community a:active, .blue-hei .hei-community .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:active, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-hei .hei-community .field--name-field-promotional-link > a:active, .blue-hei .hei-community .fixedDarkBluePane .field--name-field-traveling-and-security a:active, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-hei .hei-community a:active, .blue-hei .hei-community .field--name-field-community-card .field--name-field-url > a:active, .field--name-field-community-card .blue-hei .hei-community .field--name-field-url > a:active {
  outline: #fff dotted 3px !important;
}

/* line 275, ../sass/components/_hei.scss */
.red-hei .hei-partnering-background {
  background-color: #bf0d2e;
}
/* line 277, ../sass/components/_hei.scss */
.red-hei .hei-partnering-background h2, .red-hei .hei-partnering-background .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .red-hei .hei-partnering-background h1, .red-hei .hei-partnering-background .contact-method-label {
  color: #fff;
}
/* line 280, ../sass/components/_hei.scss */
.red-hei .hei-partnering-background .initiativebannertext, .red-hei .hei-partnering-background .initiativebannertext-white {
  color: #fff;
}
/* line 284, ../sass/components/_hei.scss */
.red-hei .hei-top-button, .red-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url, .yellow-turquoise-hei .hei-partnering .red-hei .field--name-field-url {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 284, ../sass/components/_hei.scss */
  .red-hei .hei-top-button, .red-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url, .yellow-turquoise-hei .hei-partnering .red-hei .field--name-field-url {
    margin-top: 0.75em;
    margin-bottom: 0.75em;
  }
}
/* line 1535, ../sass/_mixins.scss */
.red-hei .hei-top-button a, .red-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a, .yellow-turquoise-hei .hei-partnering .red-hei .field--name-field-url a {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  background-color: #bf0d2e;
  border: 1px solid #bf0d2e;
  padding: 0.8em 3em;
}
@media all and (min-width: 1440px) {
  /* line 1535, ../sass/_mixins.scss */
  .red-hei .hei-top-button a, .red-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a, .yellow-turquoise-hei .hei-partnering .red-hei .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1535, ../sass/_mixins.scss */
  .red-hei .hei-top-button a, .red-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a, .yellow-turquoise-hei .hei-partnering .red-hei .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .red-hei .hei-top-button a, .red-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a, .yellow-turquoise-hei .hei-partnering .red-hei .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1535, ../sass/_mixins.scss */
  .red-hei .hei-top-button a, .red-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a, .yellow-turquoise-hei .hei-partnering .red-hei .field--name-field-url a {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.red-hei .hei-top-button a :hover, .red-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a :hover, .yellow-turquoise-hei .hei-partnering .red-hei .field--name-field-url a :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 1535, ../sass/_mixins.scss */
  .red-hei .hei-top-button a, .red-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a, .yellow-turquoise-hei .hei-partnering .red-hei .field--name-field-url a {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1535, ../sass/_mixins.scss */
  .red-hei .hei-top-button a, .red-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a, .yellow-turquoise-hei .hei-partnering .red-hei .field--name-field-url a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .red-hei .hei-top-button a, .red-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a, .yellow-turquoise-hei .hei-partnering .red-hei .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1535, ../sass/_mixins.scss */
  .red-hei .hei-top-button a, .red-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a, .yellow-turquoise-hei .hei-partnering .red-hei .field--name-field-url a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .red-hei .hei-top-button a, .red-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a, .yellow-turquoise-hei .hei-partnering .red-hei .field--name-field-url a {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.red-hei .hei-top-button a:hover, .red-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a:hover, .yellow-turquoise-hei .hei-partnering .red-hei .field--name-field-url a:hover {
  background-color: #850920;
  border-color: #850920;
  color: #fff;
  text-decoration: none;
}
/* line 1539, ../sass/_mixins.scss */
.red-hei .hei-top-button a:focus, .red-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a:focus, .yellow-turquoise-hei .hei-partnering .red-hei .field--name-field-url a:focus {
  outline: #fff dotted 3px !important;
}
/* line 287, ../sass/components/_hei.scss */
.red-hei .hei-standard-button, .red-hei .hei-grants .field--name-field-url, .hei-grants .red-hei .field--name-field-url, .red-hei .hei-health-professionals .field--name-field-url, .hei-health-professionals .red-hei .field--name-field-url {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 287, ../sass/components/_hei.scss */
  .red-hei .hei-standard-button, .red-hei .hei-grants .field--name-field-url, .hei-grants .red-hei .field--name-field-url, .red-hei .hei-health-professionals .field--name-field-url, .hei-health-professionals .red-hei .field--name-field-url {
    margin-top: 0.75em;
    margin-bottom: 0.75em;
  }
}
/* line 1535, ../sass/_mixins.scss */
.red-hei .hei-standard-button a, .red-hei .hei-grants .field--name-field-url a, .hei-grants .red-hei .field--name-field-url a, .red-hei .hei-health-professionals .field--name-field-url a, .hei-health-professionals .red-hei .field--name-field-url a {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  background-color: #bf0d2e;
  border: 1px solid #bf0d2e;
  padding: 0.8em 3em;
}
@media all and (min-width: 1440px) {
  /* line 1535, ../sass/_mixins.scss */
  .red-hei .hei-standard-button a, .red-hei .hei-grants .field--name-field-url a, .hei-grants .red-hei .field--name-field-url a, .red-hei .hei-health-professionals .field--name-field-url a, .hei-health-professionals .red-hei .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1535, ../sass/_mixins.scss */
  .red-hei .hei-standard-button a, .red-hei .hei-grants .field--name-field-url a, .hei-grants .red-hei .field--name-field-url a, .red-hei .hei-health-professionals .field--name-field-url a, .hei-health-professionals .red-hei .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .red-hei .hei-standard-button a, .red-hei .hei-grants .field--name-field-url a, .hei-grants .red-hei .field--name-field-url a, .red-hei .hei-health-professionals .field--name-field-url a, .hei-health-professionals .red-hei .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1535, ../sass/_mixins.scss */
  .red-hei .hei-standard-button a, .red-hei .hei-grants .field--name-field-url a, .hei-grants .red-hei .field--name-field-url a, .red-hei .hei-health-professionals .field--name-field-url a, .hei-health-professionals .red-hei .field--name-field-url a {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.red-hei .hei-standard-button a :hover, .red-hei .hei-grants .field--name-field-url a :hover, .hei-grants .red-hei .field--name-field-url a :hover, .red-hei .hei-health-professionals .field--name-field-url a :hover, .hei-health-professionals .red-hei .field--name-field-url a :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 1535, ../sass/_mixins.scss */
  .red-hei .hei-standard-button a, .red-hei .hei-grants .field--name-field-url a, .hei-grants .red-hei .field--name-field-url a, .red-hei .hei-health-professionals .field--name-field-url a, .hei-health-professionals .red-hei .field--name-field-url a {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1535, ../sass/_mixins.scss */
  .red-hei .hei-standard-button a, .red-hei .hei-grants .field--name-field-url a, .hei-grants .red-hei .field--name-field-url a, .red-hei .hei-health-professionals .field--name-field-url a, .hei-health-professionals .red-hei .field--name-field-url a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .red-hei .hei-standard-button a, .red-hei .hei-grants .field--name-field-url a, .hei-grants .red-hei .field--name-field-url a, .red-hei .hei-health-professionals .field--name-field-url a, .hei-health-professionals .red-hei .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1535, ../sass/_mixins.scss */
  .red-hei .hei-standard-button a, .red-hei .hei-grants .field--name-field-url a, .hei-grants .red-hei .field--name-field-url a, .red-hei .hei-health-professionals .field--name-field-url a, .hei-health-professionals .red-hei .field--name-field-url a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .red-hei .hei-standard-button a, .red-hei .hei-grants .field--name-field-url a, .hei-grants .red-hei .field--name-field-url a, .red-hei .hei-health-professionals .field--name-field-url a, .hei-health-professionals .red-hei .field--name-field-url a {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.red-hei .hei-standard-button a:hover, .red-hei .hei-grants .field--name-field-url a:hover, .hei-grants .red-hei .field--name-field-url a:hover, .red-hei .hei-health-professionals .field--name-field-url a:hover, .hei-health-professionals .red-hei .field--name-field-url a:hover {
  background-color: #850920;
  border-color: #850920;
  color: #fff;
  text-decoration: none;
}
/* line 1539, ../sass/_mixins.scss */
.red-hei .hei-standard-button a:focus, .red-hei .hei-grants .field--name-field-url a:focus, .hei-grants .red-hei .field--name-field-url a:focus, .red-hei .hei-health-professionals .field--name-field-url a:focus, .hei-health-professionals .red-hei .field--name-field-url a:focus {
  outline: #bf0d2e dotted 3px !important;
}
/* line 290, ../sass/components/_hei.scss */
.red-hei .hei-submit-button {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 290, ../sass/components/_hei.scss */
  .red-hei .hei-submit-button {
    margin-top: 0.75em;
    margin-bottom: 0.75em;
  }
}
/* line 1535, ../sass/_mixins.scss */
.red-hei .hei-submit-button a {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  background-color: #bf0d2e;
  border: 1px solid #bf0d2e;
  padding: 0.8em 3em;
}
@media all and (min-width: 1440px) {
  /* line 1535, ../sass/_mixins.scss */
  .red-hei .hei-submit-button a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1535, ../sass/_mixins.scss */
  .red-hei .hei-submit-button a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .red-hei .hei-submit-button a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1535, ../sass/_mixins.scss */
  .red-hei .hei-submit-button a {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.red-hei .hei-submit-button a :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 1535, ../sass/_mixins.scss */
  .red-hei .hei-submit-button a {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1535, ../sass/_mixins.scss */
  .red-hei .hei-submit-button a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .red-hei .hei-submit-button a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1535, ../sass/_mixins.scss */
  .red-hei .hei-submit-button a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .red-hei .hei-submit-button a {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.red-hei .hei-submit-button a:hover {
  background-color: #850920;
  border-color: #850920;
  color: #fff;
  text-decoration: none;
}
/* line 1539, ../sass/_mixins.scss */
.red-hei .hei-submit-button a:focus {
  outline: #bf0d2e dotted 3px !important;
}
/* line 294, ../sass/components/_hei.scss */
.red-hei .hei-partnering .field--name-field-url {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
  font-size: 1rem;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 294, ../sass/components/_hei.scss */
  .red-hei .hei-partnering .field--name-field-url {
    margin-top: 0.75em;
    margin-bottom: 0.75em;
  }
}
/* line 1535, ../sass/_mixins.scss */
.red-hei .hei-partnering .field--name-field-url a {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #850920;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #fff;
  padding: 0.8em 3em;
}
@media all and (min-width: 1440px) {
  /* line 1535, ../sass/_mixins.scss */
  .red-hei .hei-partnering .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1535, ../sass/_mixins.scss */
  .red-hei .hei-partnering .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .red-hei .hei-partnering .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1535, ../sass/_mixins.scss */
  .red-hei .hei-partnering .field--name-field-url a {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.red-hei .hei-partnering .field--name-field-url a :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 1535, ../sass/_mixins.scss */
  .red-hei .hei-partnering .field--name-field-url a {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1535, ../sass/_mixins.scss */
  .red-hei .hei-partnering .field--name-field-url a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .red-hei .hei-partnering .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1535, ../sass/_mixins.scss */
  .red-hei .hei-partnering .field--name-field-url a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .red-hei .hei-partnering .field--name-field-url a {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.red-hei .hei-partnering .field--name-field-url a:hover {
  background-color: #f6c163;
  border-color: #f6c163;
  color: #222;
  text-decoration: none;
}
/* line 1539, ../sass/_mixins.scss */
.red-hei .hei-partnering .field--name-field-url a:focus {
  outline: #fff dotted 3px !important;
}
/* line 299, ../sass/components/_hei.scss */
.red-hei .hei-news {
  background-color: #850920;
}
/* line 301, ../sass/components/_hei.scss */
.red-hei .hei-news a.viewalllink, .red-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .red-hei .hei-news .field--name-field-url > a, .red-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .red-hei .hei-news a, .red-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .red-hei .hei-news a, .red-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .red-hei .hei-news .field--name-field-promotional-link > a, .red-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .red-hei .hei-news a, .red-hei .hei-news .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .red-hei .hei-news .field--name-field-url > a {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #850920;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #fff;
  padding: 0.8em 3em;
  display: table !important;
  background-image: none;
}
@media all and (min-width: 1440px) {
  /* line 301, ../sass/components/_hei.scss */
  .red-hei .hei-news a.viewalllink, .red-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .red-hei .hei-news .field--name-field-url > a, .red-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .red-hei .hei-news a, .red-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .red-hei .hei-news a, .red-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .red-hei .hei-news .field--name-field-promotional-link > a, .red-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .red-hei .hei-news a, .red-hei .hei-news .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .red-hei .hei-news .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 301, ../sass/components/_hei.scss */
  .red-hei .hei-news a.viewalllink, .red-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .red-hei .hei-news .field--name-field-url > a, .red-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .red-hei .hei-news a, .red-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .red-hei .hei-news a, .red-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .red-hei .hei-news .field--name-field-promotional-link > a, .red-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .red-hei .hei-news a, .red-hei .hei-news .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .red-hei .hei-news .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 301, ../sass/components/_hei.scss */
  .red-hei .hei-news a.viewalllink, .red-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .red-hei .hei-news .field--name-field-url > a, .red-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .red-hei .hei-news a, .red-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .red-hei .hei-news a, .red-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .red-hei .hei-news .field--name-field-promotional-link > a, .red-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .red-hei .hei-news a, .red-hei .hei-news .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .red-hei .hei-news .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 301, ../sass/components/_hei.scss */
  .red-hei .hei-news a.viewalllink, .red-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .red-hei .hei-news .field--name-field-url > a, .red-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .red-hei .hei-news a, .red-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .red-hei .hei-news a, .red-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .red-hei .hei-news .field--name-field-promotional-link > a, .red-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .red-hei .hei-news a, .red-hei .hei-news .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .red-hei .hei-news .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.red-hei .hei-news a.viewalllink :hover, .red-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a :hover, .promoted-content-container .flexItemText .red-hei .hei-news .field--name-field-url > a :hover, .red-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a :hover, .contact-nhlbi--landing .field--name-field-directions-link .red-hei .hei-news a :hover, .red-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a :hover, .isi-job-opportunities--landing .field--name-field-vacancies-link .red-hei .hei-news a :hover, .red-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a :hover, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .red-hei .hei-news .field--name-field-promotional-link > a :hover, .red-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a :hover, .fixedDarkBluePane .field--name-field-traveling-and-security .red-hei .hei-news a :hover, .red-hei .hei-news .field--name-field-community-card .field--name-field-url > a :hover, .field--name-field-community-card .red-hei .hei-news .field--name-field-url > a :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 301, ../sass/components/_hei.scss */
  .red-hei .hei-news a.viewalllink, .red-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .red-hei .hei-news .field--name-field-url > a, .red-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .red-hei .hei-news a, .red-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .red-hei .hei-news a, .red-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .red-hei .hei-news .field--name-field-promotional-link > a, .red-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .red-hei .hei-news a, .red-hei .hei-news .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .red-hei .hei-news .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 301, ../sass/components/_hei.scss */
  .red-hei .hei-news a.viewalllink, .red-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .red-hei .hei-news .field--name-field-url > a, .red-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .red-hei .hei-news a, .red-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .red-hei .hei-news a, .red-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .red-hei .hei-news .field--name-field-promotional-link > a, .red-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .red-hei .hei-news a, .red-hei .hei-news .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .red-hei .hei-news .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 301, ../sass/components/_hei.scss */
  .red-hei .hei-news a.viewalllink, .red-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .red-hei .hei-news .field--name-field-url > a, .red-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .red-hei .hei-news a, .red-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .red-hei .hei-news a, .red-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .red-hei .hei-news .field--name-field-promotional-link > a, .red-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .red-hei .hei-news a, .red-hei .hei-news .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .red-hei .hei-news .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 301, ../sass/components/_hei.scss */
  .red-hei .hei-news a.viewalllink, .red-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .red-hei .hei-news .field--name-field-url > a, .red-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .red-hei .hei-news a, .red-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .red-hei .hei-news a, .red-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .red-hei .hei-news .field--name-field-promotional-link > a, .red-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .red-hei .hei-news a, .red-hei .hei-news .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .red-hei .hei-news .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 301, ../sass/components/_hei.scss */
  .red-hei .hei-news a.viewalllink, .red-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .red-hei .hei-news .field--name-field-url > a, .red-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .red-hei .hei-news a, .red-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .red-hei .hei-news a, .red-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .red-hei .hei-news .field--name-field-promotional-link > a, .red-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .red-hei .hei-news a, .red-hei .hei-news .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .red-hei .hei-news .field--name-field-url > a {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.red-hei .hei-news a.viewalllink:hover, .red-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a:hover, .promoted-content-container .flexItemText .red-hei .hei-news .field--name-field-url > a:hover, .red-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a:hover, .contact-nhlbi--landing .field--name-field-directions-link .red-hei .hei-news a:hover, .red-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a:hover, .isi-job-opportunities--landing .field--name-field-vacancies-link .red-hei .hei-news a:hover, .red-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:hover, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .red-hei .hei-news .field--name-field-promotional-link > a:hover, .red-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a:hover, .fixedDarkBluePane .field--name-field-traveling-and-security .red-hei .hei-news a:hover, .red-hei .hei-news .field--name-field-community-card .field--name-field-url > a:hover, .field--name-field-community-card .red-hei .hei-news .field--name-field-url > a:hover {
  background-color: #f6c163;
  border-color: #f6c163;
  color: #222;
  text-decoration: none;
}
/* line 2379, ../sass/_mixins.scss */
.red-hei .hei-news a.viewalllink:focus, .red-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a:focus, .promoted-content-container .flexItemText .red-hei .hei-news .field--name-field-url > a:focus, .red-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a:focus, .contact-nhlbi--landing .field--name-field-directions-link .red-hei .hei-news a:focus, .red-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a:focus, .isi-job-opportunities--landing .field--name-field-vacancies-link .red-hei .hei-news a:focus, .red-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:focus, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .red-hei .hei-news .field--name-field-promotional-link > a:focus, .red-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a:focus, .fixedDarkBluePane .field--name-field-traveling-and-security .red-hei .hei-news a:focus, .red-hei .hei-news .field--name-field-community-card .field--name-field-url > a:focus, .field--name-field-community-card .red-hei .hei-news .field--name-field-url > a:focus, .red-hei .hei-news a.viewalllink:active, .red-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a:active, .promoted-content-container .flexItemText .red-hei .hei-news .field--name-field-url > a:active, .red-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a:active, .contact-nhlbi--landing .field--name-field-directions-link .red-hei .hei-news a:active, .red-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a:active, .isi-job-opportunities--landing .field--name-field-vacancies-link .red-hei .hei-news a:active, .red-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:active, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .red-hei .hei-news .field--name-field-promotional-link > a:active, .red-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a:active, .fixedDarkBluePane .field--name-field-traveling-and-security .red-hei .hei-news a:active, .red-hei .hei-news .field--name-field-community-card .field--name-field-url > a:active, .field--name-field-community-card .red-hei .hei-news .field--name-field-url > a:active {
  outline: #fff dotted 3px !important;
}
/* line 306, ../sass/components/_hei.scss */
.red-hei .hei-events {
  background-color: #bf0d2e;
}
/* line 308, ../sass/components/_hei.scss */
.red-hei .hei-events .bodytext, .red-hei .hei-events .darkGrayBodyText, .red-hei .hei-events .foa-expiration-date {
  color: #fff;
}
/* line 312, ../sass/components/_hei.scss */
.red-hei .hei-events a.viewalllink, .red-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .red-hei .hei-events .field--name-field-url > a, .red-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .red-hei .hei-events a, .red-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .red-hei .hei-events a, .red-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .red-hei .hei-events .field--name-field-promotional-link > a, .red-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .red-hei .hei-events a, .red-hei .hei-events .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .red-hei .hei-events .field--name-field-url > a {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #850920;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #fff;
  padding: 0.8em 3em;
  display: table !important;
  background-image: none;
}
@media all and (min-width: 1440px) {
  /* line 312, ../sass/components/_hei.scss */
  .red-hei .hei-events a.viewalllink, .red-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .red-hei .hei-events .field--name-field-url > a, .red-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .red-hei .hei-events a, .red-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .red-hei .hei-events a, .red-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .red-hei .hei-events .field--name-field-promotional-link > a, .red-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .red-hei .hei-events a, .red-hei .hei-events .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .red-hei .hei-events .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 312, ../sass/components/_hei.scss */
  .red-hei .hei-events a.viewalllink, .red-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .red-hei .hei-events .field--name-field-url > a, .red-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .red-hei .hei-events a, .red-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .red-hei .hei-events a, .red-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .red-hei .hei-events .field--name-field-promotional-link > a, .red-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .red-hei .hei-events a, .red-hei .hei-events .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .red-hei .hei-events .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 312, ../sass/components/_hei.scss */
  .red-hei .hei-events a.viewalllink, .red-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .red-hei .hei-events .field--name-field-url > a, .red-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .red-hei .hei-events a, .red-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .red-hei .hei-events a, .red-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .red-hei .hei-events .field--name-field-promotional-link > a, .red-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .red-hei .hei-events a, .red-hei .hei-events .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .red-hei .hei-events .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 312, ../sass/components/_hei.scss */
  .red-hei .hei-events a.viewalllink, .red-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .red-hei .hei-events .field--name-field-url > a, .red-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .red-hei .hei-events a, .red-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .red-hei .hei-events a, .red-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .red-hei .hei-events .field--name-field-promotional-link > a, .red-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .red-hei .hei-events a, .red-hei .hei-events .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .red-hei .hei-events .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.red-hei .hei-events a.viewalllink :hover, .red-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a :hover, .promoted-content-container .flexItemText .red-hei .hei-events .field--name-field-url > a :hover, .red-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a :hover, .contact-nhlbi--landing .field--name-field-directions-link .red-hei .hei-events a :hover, .red-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a :hover, .isi-job-opportunities--landing .field--name-field-vacancies-link .red-hei .hei-events a :hover, .red-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a :hover, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .red-hei .hei-events .field--name-field-promotional-link > a :hover, .red-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a :hover, .fixedDarkBluePane .field--name-field-traveling-and-security .red-hei .hei-events a :hover, .red-hei .hei-events .field--name-field-community-card .field--name-field-url > a :hover, .field--name-field-community-card .red-hei .hei-events .field--name-field-url > a :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 312, ../sass/components/_hei.scss */
  .red-hei .hei-events a.viewalllink, .red-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .red-hei .hei-events .field--name-field-url > a, .red-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .red-hei .hei-events a, .red-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .red-hei .hei-events a, .red-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .red-hei .hei-events .field--name-field-promotional-link > a, .red-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .red-hei .hei-events a, .red-hei .hei-events .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .red-hei .hei-events .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 312, ../sass/components/_hei.scss */
  .red-hei .hei-events a.viewalllink, .red-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .red-hei .hei-events .field--name-field-url > a, .red-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .red-hei .hei-events a, .red-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .red-hei .hei-events a, .red-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .red-hei .hei-events .field--name-field-promotional-link > a, .red-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .red-hei .hei-events a, .red-hei .hei-events .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .red-hei .hei-events .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 312, ../sass/components/_hei.scss */
  .red-hei .hei-events a.viewalllink, .red-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .red-hei .hei-events .field--name-field-url > a, .red-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .red-hei .hei-events a, .red-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .red-hei .hei-events a, .red-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .red-hei .hei-events .field--name-field-promotional-link > a, .red-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .red-hei .hei-events a, .red-hei .hei-events .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .red-hei .hei-events .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 312, ../sass/components/_hei.scss */
  .red-hei .hei-events a.viewalllink, .red-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .red-hei .hei-events .field--name-field-url > a, .red-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .red-hei .hei-events a, .red-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .red-hei .hei-events a, .red-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .red-hei .hei-events .field--name-field-promotional-link > a, .red-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .red-hei .hei-events a, .red-hei .hei-events .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .red-hei .hei-events .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 312, ../sass/components/_hei.scss */
  .red-hei .hei-events a.viewalllink, .red-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .red-hei .hei-events .field--name-field-url > a, .red-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .red-hei .hei-events a, .red-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .red-hei .hei-events a, .red-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .red-hei .hei-events .field--name-field-promotional-link > a, .red-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .red-hei .hei-events a, .red-hei .hei-events .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .red-hei .hei-events .field--name-field-url > a {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.red-hei .hei-events a.viewalllink:hover, .red-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a:hover, .promoted-content-container .flexItemText .red-hei .hei-events .field--name-field-url > a:hover, .red-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a:hover, .contact-nhlbi--landing .field--name-field-directions-link .red-hei .hei-events a:hover, .red-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a:hover, .isi-job-opportunities--landing .field--name-field-vacancies-link .red-hei .hei-events a:hover, .red-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:hover, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .red-hei .hei-events .field--name-field-promotional-link > a:hover, .red-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a:hover, .fixedDarkBluePane .field--name-field-traveling-and-security .red-hei .hei-events a:hover, .red-hei .hei-events .field--name-field-community-card .field--name-field-url > a:hover, .field--name-field-community-card .red-hei .hei-events .field--name-field-url > a:hover {
  background-color: #f6c163;
  border-color: #f6c163;
  color: #222;
  text-decoration: none;
}
/* line 2379, ../sass/_mixins.scss */
.red-hei .hei-events a.viewalllink:focus, .red-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a:focus, .promoted-content-container .flexItemText .red-hei .hei-events .field--name-field-url > a:focus, .red-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a:focus, .contact-nhlbi--landing .field--name-field-directions-link .red-hei .hei-events a:focus, .red-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a:focus, .isi-job-opportunities--landing .field--name-field-vacancies-link .red-hei .hei-events a:focus, .red-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:focus, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .red-hei .hei-events .field--name-field-promotional-link > a:focus, .red-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a:focus, .fixedDarkBluePane .field--name-field-traveling-and-security .red-hei .hei-events a:focus, .red-hei .hei-events .field--name-field-community-card .field--name-field-url > a:focus, .field--name-field-community-card .red-hei .hei-events .field--name-field-url > a:focus, .red-hei .hei-events a.viewalllink:active, .red-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a:active, .promoted-content-container .flexItemText .red-hei .hei-events .field--name-field-url > a:active, .red-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a:active, .contact-nhlbi--landing .field--name-field-directions-link .red-hei .hei-events a:active, .red-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a:active, .isi-job-opportunities--landing .field--name-field-vacancies-link .red-hei .hei-events a:active, .red-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:active, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .red-hei .hei-events .field--name-field-promotional-link > a:active, .red-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a:active, .fixedDarkBluePane .field--name-field-traveling-and-security .red-hei .hei-events a:active, .red-hei .hei-events .field--name-field-community-card .field--name-field-url > a:active, .field--name-field-community-card .red-hei .hei-events .field--name-field-url > a:active {
  outline: #fff dotted 3px !important;
}
/* line 317, ../sass/components/_hei.scss */
.red-hei #newsletter-block-alerts .subscribe {
  background-color: #bf0d2e;
}
/* line 321, ../sass/components/_hei.scss */
.red-hei .hei-community a.viewalllink, .red-hei .hei-community .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .red-hei .hei-community .field--name-field-url > a, .red-hei .hei-community .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .red-hei .hei-community a, .red-hei .hei-community .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .red-hei .hei-community a, .red-hei .hei-community .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .red-hei .hei-community .field--name-field-promotional-link > a, .red-hei .hei-community .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .red-hei .hei-community a, .red-hei .hei-community .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .red-hei .hei-community .field--name-field-url > a {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #850920;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #fff;
  padding: 0.8em 3em;
  display: table !important;
  background-image: none;
}
@media all and (min-width: 1440px) {
  /* line 321, ../sass/components/_hei.scss */
  .red-hei .hei-community a.viewalllink, .red-hei .hei-community .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .red-hei .hei-community .field--name-field-url > a, .red-hei .hei-community .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .red-hei .hei-community a, .red-hei .hei-community .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .red-hei .hei-community a, .red-hei .hei-community .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .red-hei .hei-community .field--name-field-promotional-link > a, .red-hei .hei-community .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .red-hei .hei-community a, .red-hei .hei-community .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .red-hei .hei-community .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 321, ../sass/components/_hei.scss */
  .red-hei .hei-community a.viewalllink, .red-hei .hei-community .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .red-hei .hei-community .field--name-field-url > a, .red-hei .hei-community .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .red-hei .hei-community a, .red-hei .hei-community .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .red-hei .hei-community a, .red-hei .hei-community .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .red-hei .hei-community .field--name-field-promotional-link > a, .red-hei .hei-community .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .red-hei .hei-community a, .red-hei .hei-community .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .red-hei .hei-community .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 321, ../sass/components/_hei.scss */
  .red-hei .hei-community a.viewalllink, .red-hei .hei-community .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .red-hei .hei-community .field--name-field-url > a, .red-hei .hei-community .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .red-hei .hei-community a, .red-hei .hei-community .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .red-hei .hei-community a, .red-hei .hei-community .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .red-hei .hei-community .field--name-field-promotional-link > a, .red-hei .hei-community .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .red-hei .hei-community a, .red-hei .hei-community .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .red-hei .hei-community .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 321, ../sass/components/_hei.scss */
  .red-hei .hei-community a.viewalllink, .red-hei .hei-community .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .red-hei .hei-community .field--name-field-url > a, .red-hei .hei-community .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .red-hei .hei-community a, .red-hei .hei-community .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .red-hei .hei-community a, .red-hei .hei-community .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .red-hei .hei-community .field--name-field-promotional-link > a, .red-hei .hei-community .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .red-hei .hei-community a, .red-hei .hei-community .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .red-hei .hei-community .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.red-hei .hei-community a.viewalllink :hover, .red-hei .hei-community .promoted-content-container .flexItemText .field--name-field-url > a :hover, .promoted-content-container .flexItemText .red-hei .hei-community .field--name-field-url > a :hover, .red-hei .hei-community .contact-nhlbi--landing .field--name-field-directions-link a :hover, .contact-nhlbi--landing .field--name-field-directions-link .red-hei .hei-community a :hover, .red-hei .hei-community .isi-job-opportunities--landing .field--name-field-vacancies-link a :hover, .isi-job-opportunities--landing .field--name-field-vacancies-link .red-hei .hei-community a :hover, .red-hei .hei-community .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a :hover, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .red-hei .hei-community .field--name-field-promotional-link > a :hover, .red-hei .hei-community .fixedDarkBluePane .field--name-field-traveling-and-security a :hover, .fixedDarkBluePane .field--name-field-traveling-and-security .red-hei .hei-community a :hover, .red-hei .hei-community .field--name-field-community-card .field--name-field-url > a :hover, .field--name-field-community-card .red-hei .hei-community .field--name-field-url > a :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 321, ../sass/components/_hei.scss */
  .red-hei .hei-community a.viewalllink, .red-hei .hei-community .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .red-hei .hei-community .field--name-field-url > a, .red-hei .hei-community .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .red-hei .hei-community a, .red-hei .hei-community .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .red-hei .hei-community a, .red-hei .hei-community .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .red-hei .hei-community .field--name-field-promotional-link > a, .red-hei .hei-community .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .red-hei .hei-community a, .red-hei .hei-community .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .red-hei .hei-community .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 321, ../sass/components/_hei.scss */
  .red-hei .hei-community a.viewalllink, .red-hei .hei-community .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .red-hei .hei-community .field--name-field-url > a, .red-hei .hei-community .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .red-hei .hei-community a, .red-hei .hei-community .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .red-hei .hei-community a, .red-hei .hei-community .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .red-hei .hei-community .field--name-field-promotional-link > a, .red-hei .hei-community .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .red-hei .hei-community a, .red-hei .hei-community .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .red-hei .hei-community .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 321, ../sass/components/_hei.scss */
  .red-hei .hei-community a.viewalllink, .red-hei .hei-community .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .red-hei .hei-community .field--name-field-url > a, .red-hei .hei-community .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .red-hei .hei-community a, .red-hei .hei-community .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .red-hei .hei-community a, .red-hei .hei-community .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .red-hei .hei-community .field--name-field-promotional-link > a, .red-hei .hei-community .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .red-hei .hei-community a, .red-hei .hei-community .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .red-hei .hei-community .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 321, ../sass/components/_hei.scss */
  .red-hei .hei-community a.viewalllink, .red-hei .hei-community .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .red-hei .hei-community .field--name-field-url > a, .red-hei .hei-community .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .red-hei .hei-community a, .red-hei .hei-community .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .red-hei .hei-community a, .red-hei .hei-community .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .red-hei .hei-community .field--name-field-promotional-link > a, .red-hei .hei-community .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .red-hei .hei-community a, .red-hei .hei-community .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .red-hei .hei-community .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 321, ../sass/components/_hei.scss */
  .red-hei .hei-community a.viewalllink, .red-hei .hei-community .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .red-hei .hei-community .field--name-field-url > a, .red-hei .hei-community .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .red-hei .hei-community a, .red-hei .hei-community .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .red-hei .hei-community a, .red-hei .hei-community .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .red-hei .hei-community .field--name-field-promotional-link > a, .red-hei .hei-community .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .red-hei .hei-community a, .red-hei .hei-community .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .red-hei .hei-community .field--name-field-url > a {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.red-hei .hei-community a.viewalllink:hover, .red-hei .hei-community .promoted-content-container .flexItemText .field--name-field-url > a:hover, .promoted-content-container .flexItemText .red-hei .hei-community .field--name-field-url > a:hover, .red-hei .hei-community .contact-nhlbi--landing .field--name-field-directions-link a:hover, .contact-nhlbi--landing .field--name-field-directions-link .red-hei .hei-community a:hover, .red-hei .hei-community .isi-job-opportunities--landing .field--name-field-vacancies-link a:hover, .isi-job-opportunities--landing .field--name-field-vacancies-link .red-hei .hei-community a:hover, .red-hei .hei-community .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:hover, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .red-hei .hei-community .field--name-field-promotional-link > a:hover, .red-hei .hei-community .fixedDarkBluePane .field--name-field-traveling-and-security a:hover, .fixedDarkBluePane .field--name-field-traveling-and-security .red-hei .hei-community a:hover, .red-hei .hei-community .field--name-field-community-card .field--name-field-url > a:hover, .field--name-field-community-card .red-hei .hei-community .field--name-field-url > a:hover {
  background-color: #f6c163;
  border-color: #f6c163;
  color: #222;
  text-decoration: none;
}
/* line 2379, ../sass/_mixins.scss */
.red-hei .hei-community a.viewalllink:focus, .red-hei .hei-community .promoted-content-container .flexItemText .field--name-field-url > a:focus, .promoted-content-container .flexItemText .red-hei .hei-community .field--name-field-url > a:focus, .red-hei .hei-community .contact-nhlbi--landing .field--name-field-directions-link a:focus, .contact-nhlbi--landing .field--name-field-directions-link .red-hei .hei-community a:focus, .red-hei .hei-community .isi-job-opportunities--landing .field--name-field-vacancies-link a:focus, .isi-job-opportunities--landing .field--name-field-vacancies-link .red-hei .hei-community a:focus, .red-hei .hei-community .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:focus, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .red-hei .hei-community .field--name-field-promotional-link > a:focus, .red-hei .hei-community .fixedDarkBluePane .field--name-field-traveling-and-security a:focus, .fixedDarkBluePane .field--name-field-traveling-and-security .red-hei .hei-community a:focus, .red-hei .hei-community .field--name-field-community-card .field--name-field-url > a:focus, .field--name-field-community-card .red-hei .hei-community .field--name-field-url > a:focus, .red-hei .hei-community a.viewalllink:active, .red-hei .hei-community .promoted-content-container .flexItemText .field--name-field-url > a:active, .promoted-content-container .flexItemText .red-hei .hei-community .field--name-field-url > a:active, .red-hei .hei-community .contact-nhlbi--landing .field--name-field-directions-link a:active, .contact-nhlbi--landing .field--name-field-directions-link .red-hei .hei-community a:active, .red-hei .hei-community .isi-job-opportunities--landing .field--name-field-vacancies-link a:active, .isi-job-opportunities--landing .field--name-field-vacancies-link .red-hei .hei-community a:active, .red-hei .hei-community .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:active, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .red-hei .hei-community .field--name-field-promotional-link > a:active, .red-hei .hei-community .fixedDarkBluePane .field--name-field-traveling-and-security a:active, .fixedDarkBluePane .field--name-field-traveling-and-security .red-hei .hei-community a:active, .red-hei .hei-community .field--name-field-community-card .field--name-field-url > a:active, .field--name-field-community-card .red-hei .hei-community .field--name-field-url > a:active {
  outline: #fff dotted 3px !important;
}

/* line 327, ../sass/components/_hei.scss */
.turquoise-hei .hei-partnering-background {
  background-color: #3f4358;
}
/* line 329, ../sass/components/_hei.scss */
.turquoise-hei .hei-partnering-background h2, .turquoise-hei .hei-partnering-background .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .turquoise-hei .hei-partnering-background h1, .turquoise-hei .hei-partnering-background .contact-method-label {
  color: #fff;
}
/* line 332, ../sass/components/_hei.scss */
.turquoise-hei .hei-partnering-background .initiativebannertext, .turquoise-hei .hei-partnering-background .initiativebannertext-white {
  color: #fff;
}
/* line 336, ../sass/components/_hei.scss */
.turquoise-hei .hei-top-button, .turquoise-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url, .yellow-turquoise-hei .hei-partnering .turquoise-hei .field--name-field-url {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 336, ../sass/components/_hei.scss */
  .turquoise-hei .hei-top-button, .turquoise-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url, .yellow-turquoise-hei .hei-partnering .turquoise-hei .field--name-field-url {
    margin-top: 0.75em;
    margin-bottom: 0.75em;
  }
}
/* line 1535, ../sass/_mixins.scss */
.turquoise-hei .hei-top-button a, .turquoise-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a, .yellow-turquoise-hei .hei-partnering .turquoise-hei .field--name-field-url a {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  background-color: #307484;
  border: 1px solid #307484;
  padding: 0.8em 3em;
}
@media all and (min-width: 1440px) {
  /* line 1535, ../sass/_mixins.scss */
  .turquoise-hei .hei-top-button a, .turquoise-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a, .yellow-turquoise-hei .hei-partnering .turquoise-hei .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1535, ../sass/_mixins.scss */
  .turquoise-hei .hei-top-button a, .turquoise-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a, .yellow-turquoise-hei .hei-partnering .turquoise-hei .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .turquoise-hei .hei-top-button a, .turquoise-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a, .yellow-turquoise-hei .hei-partnering .turquoise-hei .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1535, ../sass/_mixins.scss */
  .turquoise-hei .hei-top-button a, .turquoise-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a, .yellow-turquoise-hei .hei-partnering .turquoise-hei .field--name-field-url a {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.turquoise-hei .hei-top-button a :hover, .turquoise-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a :hover, .yellow-turquoise-hei .hei-partnering .turquoise-hei .field--name-field-url a :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 1535, ../sass/_mixins.scss */
  .turquoise-hei .hei-top-button a, .turquoise-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a, .yellow-turquoise-hei .hei-partnering .turquoise-hei .field--name-field-url a {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1535, ../sass/_mixins.scss */
  .turquoise-hei .hei-top-button a, .turquoise-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a, .yellow-turquoise-hei .hei-partnering .turquoise-hei .field--name-field-url a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .turquoise-hei .hei-top-button a, .turquoise-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a, .yellow-turquoise-hei .hei-partnering .turquoise-hei .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1535, ../sass/_mixins.scss */
  .turquoise-hei .hei-top-button a, .turquoise-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a, .yellow-turquoise-hei .hei-partnering .turquoise-hei .field--name-field-url a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .turquoise-hei .hei-top-button a, .turquoise-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a, .yellow-turquoise-hei .hei-partnering .turquoise-hei .field--name-field-url a {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.turquoise-hei .hei-top-button a:hover, .turquoise-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a:hover, .yellow-turquoise-hei .hei-partnering .turquoise-hei .field--name-field-url a:hover {
  background-color: #3f4358;
  border-color: #3f4358;
  color: #fff;
  text-decoration: none;
}
/* line 1539, ../sass/_mixins.scss */
.turquoise-hei .hei-top-button a:focus, .turquoise-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a:focus, .yellow-turquoise-hei .hei-partnering .turquoise-hei .field--name-field-url a:focus {
  outline: #bf0d2e dotted 3px !important;
}
/* line 340, ../sass/components/_hei.scss */
.turquoise-hei .hei-standard-button, .turquoise-hei .hei-grants .field--name-field-url, .hei-grants .turquoise-hei .field--name-field-url, .turquoise-hei .hei-health-professionals .field--name-field-url, .hei-health-professionals .turquoise-hei .field--name-field-url {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 340, ../sass/components/_hei.scss */
  .turquoise-hei .hei-standard-button, .turquoise-hei .hei-grants .field--name-field-url, .hei-grants .turquoise-hei .field--name-field-url, .turquoise-hei .hei-health-professionals .field--name-field-url, .hei-health-professionals .turquoise-hei .field--name-field-url {
    margin-top: 0.75em;
    margin-bottom: 0.75em;
  }
}
/* line 1535, ../sass/_mixins.scss */
.turquoise-hei .hei-standard-button a, .turquoise-hei .hei-grants .field--name-field-url a, .hei-grants .turquoise-hei .field--name-field-url a, .turquoise-hei .hei-health-professionals .field--name-field-url a, .hei-health-professionals .turquoise-hei .field--name-field-url a {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  background-color: #307484;
  border: 1px solid #307484;
  padding: 0.8em 3em;
}
@media all and (min-width: 1440px) {
  /* line 1535, ../sass/_mixins.scss */
  .turquoise-hei .hei-standard-button a, .turquoise-hei .hei-grants .field--name-field-url a, .hei-grants .turquoise-hei .field--name-field-url a, .turquoise-hei .hei-health-professionals .field--name-field-url a, .hei-health-professionals .turquoise-hei .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1535, ../sass/_mixins.scss */
  .turquoise-hei .hei-standard-button a, .turquoise-hei .hei-grants .field--name-field-url a, .hei-grants .turquoise-hei .field--name-field-url a, .turquoise-hei .hei-health-professionals .field--name-field-url a, .hei-health-professionals .turquoise-hei .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .turquoise-hei .hei-standard-button a, .turquoise-hei .hei-grants .field--name-field-url a, .hei-grants .turquoise-hei .field--name-field-url a, .turquoise-hei .hei-health-professionals .field--name-field-url a, .hei-health-professionals .turquoise-hei .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1535, ../sass/_mixins.scss */
  .turquoise-hei .hei-standard-button a, .turquoise-hei .hei-grants .field--name-field-url a, .hei-grants .turquoise-hei .field--name-field-url a, .turquoise-hei .hei-health-professionals .field--name-field-url a, .hei-health-professionals .turquoise-hei .field--name-field-url a {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.turquoise-hei .hei-standard-button a :hover, .turquoise-hei .hei-grants .field--name-field-url a :hover, .hei-grants .turquoise-hei .field--name-field-url a :hover, .turquoise-hei .hei-health-professionals .field--name-field-url a :hover, .hei-health-professionals .turquoise-hei .field--name-field-url a :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 1535, ../sass/_mixins.scss */
  .turquoise-hei .hei-standard-button a, .turquoise-hei .hei-grants .field--name-field-url a, .hei-grants .turquoise-hei .field--name-field-url a, .turquoise-hei .hei-health-professionals .field--name-field-url a, .hei-health-professionals .turquoise-hei .field--name-field-url a {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1535, ../sass/_mixins.scss */
  .turquoise-hei .hei-standard-button a, .turquoise-hei .hei-grants .field--name-field-url a, .hei-grants .turquoise-hei .field--name-field-url a, .turquoise-hei .hei-health-professionals .field--name-field-url a, .hei-health-professionals .turquoise-hei .field--name-field-url a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .turquoise-hei .hei-standard-button a, .turquoise-hei .hei-grants .field--name-field-url a, .hei-grants .turquoise-hei .field--name-field-url a, .turquoise-hei .hei-health-professionals .field--name-field-url a, .hei-health-professionals .turquoise-hei .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1535, ../sass/_mixins.scss */
  .turquoise-hei .hei-standard-button a, .turquoise-hei .hei-grants .field--name-field-url a, .hei-grants .turquoise-hei .field--name-field-url a, .turquoise-hei .hei-health-professionals .field--name-field-url a, .hei-health-professionals .turquoise-hei .field--name-field-url a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .turquoise-hei .hei-standard-button a, .turquoise-hei .hei-grants .field--name-field-url a, .hei-grants .turquoise-hei .field--name-field-url a, .turquoise-hei .hei-health-professionals .field--name-field-url a, .hei-health-professionals .turquoise-hei .field--name-field-url a {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.turquoise-hei .hei-standard-button a:hover, .turquoise-hei .hei-grants .field--name-field-url a:hover, .hei-grants .turquoise-hei .field--name-field-url a:hover, .turquoise-hei .hei-health-professionals .field--name-field-url a:hover, .hei-health-professionals .turquoise-hei .field--name-field-url a:hover {
  background-color: #3f4358;
  border-color: #3f4358;
  color: #fff;
  text-decoration: none;
}
/* line 1539, ../sass/_mixins.scss */
.turquoise-hei .hei-standard-button a:focus, .turquoise-hei .hei-grants .field--name-field-url a:focus, .hei-grants .turquoise-hei .field--name-field-url a:focus, .turquoise-hei .hei-health-professionals .field--name-field-url a:focus, .hei-health-professionals .turquoise-hei .field--name-field-url a:focus {
  outline: #bf0d2e dotted 3px !important;
}
/* line 343, ../sass/components/_hei.scss */
.turquoise-hei .hei-submit-button {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 343, ../sass/components/_hei.scss */
  .turquoise-hei .hei-submit-button {
    margin-top: 0.75em;
    margin-bottom: 0.75em;
  }
}
/* line 1535, ../sass/_mixins.scss */
.turquoise-hei .hei-submit-button a {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  background-color: #307484;
  border: 1px solid #307484;
  padding: 0.8em 3em;
}
@media all and (min-width: 1440px) {
  /* line 1535, ../sass/_mixins.scss */
  .turquoise-hei .hei-submit-button a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1535, ../sass/_mixins.scss */
  .turquoise-hei .hei-submit-button a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .turquoise-hei .hei-submit-button a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1535, ../sass/_mixins.scss */
  .turquoise-hei .hei-submit-button a {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.turquoise-hei .hei-submit-button a :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 1535, ../sass/_mixins.scss */
  .turquoise-hei .hei-submit-button a {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1535, ../sass/_mixins.scss */
  .turquoise-hei .hei-submit-button a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .turquoise-hei .hei-submit-button a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1535, ../sass/_mixins.scss */
  .turquoise-hei .hei-submit-button a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .turquoise-hei .hei-submit-button a {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.turquoise-hei .hei-submit-button a:hover {
  background-color: #3f4358;
  border-color: #3f4358;
  color: #fff;
  text-decoration: none;
}
/* line 1539, ../sass/_mixins.scss */
.turquoise-hei .hei-submit-button a:focus {
  outline: #fff dotted 3px !important;
}
/* line 347, ../sass/components/_hei.scss */
.turquoise-hei .hei-partnering .field--name-field-url {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 347, ../sass/components/_hei.scss */
  .turquoise-hei .hei-partnering .field--name-field-url {
    margin-top: 0.75em;
    margin-bottom: 0.75em;
  }
}
/* line 1535, ../sass/_mixins.scss */
.turquoise-hei .hei-partnering .field--name-field-url a {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #3f4358;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #fff;
  padding: 0.8em 3em;
}
@media all and (min-width: 1440px) {
  /* line 1535, ../sass/_mixins.scss */
  .turquoise-hei .hei-partnering .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1535, ../sass/_mixins.scss */
  .turquoise-hei .hei-partnering .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .turquoise-hei .hei-partnering .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1535, ../sass/_mixins.scss */
  .turquoise-hei .hei-partnering .field--name-field-url a {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.turquoise-hei .hei-partnering .field--name-field-url a :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 1535, ../sass/_mixins.scss */
  .turquoise-hei .hei-partnering .field--name-field-url a {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1535, ../sass/_mixins.scss */
  .turquoise-hei .hei-partnering .field--name-field-url a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .turquoise-hei .hei-partnering .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1535, ../sass/_mixins.scss */
  .turquoise-hei .hei-partnering .field--name-field-url a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .turquoise-hei .hei-partnering .field--name-field-url a {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.turquoise-hei .hei-partnering .field--name-field-url a:hover {
  background-color: #307484;
  border-color: #307484;
  color: #fff;
  text-decoration: none;
}
/* line 1539, ../sass/_mixins.scss */
.turquoise-hei .hei-partnering .field--name-field-url a:focus {
  outline: #fff dotted 3px !important;
}
/* line 351, ../sass/components/_hei.scss */
.turquoise-hei .hei-news {
  background-color: #575b5e;
}
/* line 354, ../sass/components/_hei.scss */
.turquoise-hei .hei-news a.viewalllink, .turquoise-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .turquoise-hei .hei-news .field--name-field-url > a, .turquoise-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .turquoise-hei .hei-news a, .turquoise-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .turquoise-hei .hei-news a, .turquoise-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .turquoise-hei .hei-news .field--name-field-promotional-link > a, .turquoise-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .turquoise-hei .hei-news a, .turquoise-hei .hei-news .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .turquoise-hei .hei-news .field--name-field-url > a {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #2f4c73;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #fff;
  padding: 0.8em 3em;
  display: table !important;
  background-image: none;
}
@media all and (min-width: 1440px) {
  /* line 354, ../sass/components/_hei.scss */
  .turquoise-hei .hei-news a.viewalllink, .turquoise-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .turquoise-hei .hei-news .field--name-field-url > a, .turquoise-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .turquoise-hei .hei-news a, .turquoise-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .turquoise-hei .hei-news a, .turquoise-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .turquoise-hei .hei-news .field--name-field-promotional-link > a, .turquoise-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .turquoise-hei .hei-news a, .turquoise-hei .hei-news .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .turquoise-hei .hei-news .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 354, ../sass/components/_hei.scss */
  .turquoise-hei .hei-news a.viewalllink, .turquoise-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .turquoise-hei .hei-news .field--name-field-url > a, .turquoise-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .turquoise-hei .hei-news a, .turquoise-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .turquoise-hei .hei-news a, .turquoise-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .turquoise-hei .hei-news .field--name-field-promotional-link > a, .turquoise-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .turquoise-hei .hei-news a, .turquoise-hei .hei-news .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .turquoise-hei .hei-news .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 354, ../sass/components/_hei.scss */
  .turquoise-hei .hei-news a.viewalllink, .turquoise-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .turquoise-hei .hei-news .field--name-field-url > a, .turquoise-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .turquoise-hei .hei-news a, .turquoise-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .turquoise-hei .hei-news a, .turquoise-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .turquoise-hei .hei-news .field--name-field-promotional-link > a, .turquoise-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .turquoise-hei .hei-news a, .turquoise-hei .hei-news .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .turquoise-hei .hei-news .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 354, ../sass/components/_hei.scss */
  .turquoise-hei .hei-news a.viewalllink, .turquoise-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .turquoise-hei .hei-news .field--name-field-url > a, .turquoise-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .turquoise-hei .hei-news a, .turquoise-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .turquoise-hei .hei-news a, .turquoise-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .turquoise-hei .hei-news .field--name-field-promotional-link > a, .turquoise-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .turquoise-hei .hei-news a, .turquoise-hei .hei-news .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .turquoise-hei .hei-news .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.turquoise-hei .hei-news a.viewalllink :hover, .turquoise-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a :hover, .promoted-content-container .flexItemText .turquoise-hei .hei-news .field--name-field-url > a :hover, .turquoise-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a :hover, .contact-nhlbi--landing .field--name-field-directions-link .turquoise-hei .hei-news a :hover, .turquoise-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a :hover, .isi-job-opportunities--landing .field--name-field-vacancies-link .turquoise-hei .hei-news a :hover, .turquoise-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a :hover, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .turquoise-hei .hei-news .field--name-field-promotional-link > a :hover, .turquoise-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a :hover, .fixedDarkBluePane .field--name-field-traveling-and-security .turquoise-hei .hei-news a :hover, .turquoise-hei .hei-news .field--name-field-community-card .field--name-field-url > a :hover, .field--name-field-community-card .turquoise-hei .hei-news .field--name-field-url > a :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 354, ../sass/components/_hei.scss */
  .turquoise-hei .hei-news a.viewalllink, .turquoise-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .turquoise-hei .hei-news .field--name-field-url > a, .turquoise-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .turquoise-hei .hei-news a, .turquoise-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .turquoise-hei .hei-news a, .turquoise-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .turquoise-hei .hei-news .field--name-field-promotional-link > a, .turquoise-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .turquoise-hei .hei-news a, .turquoise-hei .hei-news .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .turquoise-hei .hei-news .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 354, ../sass/components/_hei.scss */
  .turquoise-hei .hei-news a.viewalllink, .turquoise-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .turquoise-hei .hei-news .field--name-field-url > a, .turquoise-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .turquoise-hei .hei-news a, .turquoise-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .turquoise-hei .hei-news a, .turquoise-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .turquoise-hei .hei-news .field--name-field-promotional-link > a, .turquoise-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .turquoise-hei .hei-news a, .turquoise-hei .hei-news .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .turquoise-hei .hei-news .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 354, ../sass/components/_hei.scss */
  .turquoise-hei .hei-news a.viewalllink, .turquoise-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .turquoise-hei .hei-news .field--name-field-url > a, .turquoise-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .turquoise-hei .hei-news a, .turquoise-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .turquoise-hei .hei-news a, .turquoise-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .turquoise-hei .hei-news .field--name-field-promotional-link > a, .turquoise-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .turquoise-hei .hei-news a, .turquoise-hei .hei-news .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .turquoise-hei .hei-news .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 354, ../sass/components/_hei.scss */
  .turquoise-hei .hei-news a.viewalllink, .turquoise-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .turquoise-hei .hei-news .field--name-field-url > a, .turquoise-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .turquoise-hei .hei-news a, .turquoise-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .turquoise-hei .hei-news a, .turquoise-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .turquoise-hei .hei-news .field--name-field-promotional-link > a, .turquoise-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .turquoise-hei .hei-news a, .turquoise-hei .hei-news .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .turquoise-hei .hei-news .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 354, ../sass/components/_hei.scss */
  .turquoise-hei .hei-news a.viewalllink, .turquoise-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .turquoise-hei .hei-news .field--name-field-url > a, .turquoise-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .turquoise-hei .hei-news a, .turquoise-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .turquoise-hei .hei-news a, .turquoise-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .turquoise-hei .hei-news .field--name-field-promotional-link > a, .turquoise-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .turquoise-hei .hei-news a, .turquoise-hei .hei-news .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .turquoise-hei .hei-news .field--name-field-url > a {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.turquoise-hei .hei-news a.viewalllink:hover, .turquoise-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a:hover, .promoted-content-container .flexItemText .turquoise-hei .hei-news .field--name-field-url > a:hover, .turquoise-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a:hover, .contact-nhlbi--landing .field--name-field-directions-link .turquoise-hei .hei-news a:hover, .turquoise-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a:hover, .isi-job-opportunities--landing .field--name-field-vacancies-link .turquoise-hei .hei-news a:hover, .turquoise-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:hover, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .turquoise-hei .hei-news .field--name-field-promotional-link > a:hover, .turquoise-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a:hover, .fixedDarkBluePane .field--name-field-traveling-and-security .turquoise-hei .hei-news a:hover, .turquoise-hei .hei-news .field--name-field-community-card .field--name-field-url > a:hover, .field--name-field-community-card .turquoise-hei .hei-news .field--name-field-url > a:hover {
  background-color: #3f4358;
  border-color: #3f4358;
  color: #fff;
  text-decoration: none;
}
/* line 2379, ../sass/_mixins.scss */
.turquoise-hei .hei-news a.viewalllink:focus, .turquoise-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a:focus, .promoted-content-container .flexItemText .turquoise-hei .hei-news .field--name-field-url > a:focus, .turquoise-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a:focus, .contact-nhlbi--landing .field--name-field-directions-link .turquoise-hei .hei-news a:focus, .turquoise-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a:focus, .isi-job-opportunities--landing .field--name-field-vacancies-link .turquoise-hei .hei-news a:focus, .turquoise-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:focus, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .turquoise-hei .hei-news .field--name-field-promotional-link > a:focus, .turquoise-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a:focus, .fixedDarkBluePane .field--name-field-traveling-and-security .turquoise-hei .hei-news a:focus, .turquoise-hei .hei-news .field--name-field-community-card .field--name-field-url > a:focus, .field--name-field-community-card .turquoise-hei .hei-news .field--name-field-url > a:focus, .turquoise-hei .hei-news a.viewalllink:active, .turquoise-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a:active, .promoted-content-container .flexItemText .turquoise-hei .hei-news .field--name-field-url > a:active, .turquoise-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a:active, .contact-nhlbi--landing .field--name-field-directions-link .turquoise-hei .hei-news a:active, .turquoise-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a:active, .isi-job-opportunities--landing .field--name-field-vacancies-link .turquoise-hei .hei-news a:active, .turquoise-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:active, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .turquoise-hei .hei-news .field--name-field-promotional-link > a:active, .turquoise-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a:active, .fixedDarkBluePane .field--name-field-traveling-and-security .turquoise-hei .hei-news a:active, .turquoise-hei .hei-news .field--name-field-community-card .field--name-field-url > a:active, .field--name-field-community-card .turquoise-hei .hei-news .field--name-field-url > a:active {
  outline: #fff dotted 3px !important;
}
/* line 358, ../sass/components/_hei.scss */
.turquoise-hei .hei-events {
  background-color: #307484;
}
/* line 360, ../sass/components/_hei.scss */
.turquoise-hei .hei-events .bodytext, .turquoise-hei .hei-events .darkGrayBodyText, .turquoise-hei .hei-events .foa-expiration-date {
  color: #fff;
}
/* line 364, ../sass/components/_hei.scss */
.turquoise-hei .hei-events a.viewalllink, .turquoise-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .turquoise-hei .hei-events .field--name-field-url > a, .turquoise-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .turquoise-hei .hei-events a, .turquoise-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .turquoise-hei .hei-events a, .turquoise-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .turquoise-hei .hei-events .field--name-field-promotional-link > a, .turquoise-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .turquoise-hei .hei-events a, .turquoise-hei .hei-events .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .turquoise-hei .hei-events .field--name-field-url > a {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #2f4c73;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #fff;
  padding: 0.8em 3em;
  display: table !important;
  background-image: none;
}
@media all and (min-width: 1440px) {
  /* line 364, ../sass/components/_hei.scss */
  .turquoise-hei .hei-events a.viewalllink, .turquoise-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .turquoise-hei .hei-events .field--name-field-url > a, .turquoise-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .turquoise-hei .hei-events a, .turquoise-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .turquoise-hei .hei-events a, .turquoise-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .turquoise-hei .hei-events .field--name-field-promotional-link > a, .turquoise-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .turquoise-hei .hei-events a, .turquoise-hei .hei-events .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .turquoise-hei .hei-events .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 364, ../sass/components/_hei.scss */
  .turquoise-hei .hei-events a.viewalllink, .turquoise-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .turquoise-hei .hei-events .field--name-field-url > a, .turquoise-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .turquoise-hei .hei-events a, .turquoise-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .turquoise-hei .hei-events a, .turquoise-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .turquoise-hei .hei-events .field--name-field-promotional-link > a, .turquoise-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .turquoise-hei .hei-events a, .turquoise-hei .hei-events .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .turquoise-hei .hei-events .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 364, ../sass/components/_hei.scss */
  .turquoise-hei .hei-events a.viewalllink, .turquoise-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .turquoise-hei .hei-events .field--name-field-url > a, .turquoise-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .turquoise-hei .hei-events a, .turquoise-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .turquoise-hei .hei-events a, .turquoise-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .turquoise-hei .hei-events .field--name-field-promotional-link > a, .turquoise-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .turquoise-hei .hei-events a, .turquoise-hei .hei-events .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .turquoise-hei .hei-events .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 364, ../sass/components/_hei.scss */
  .turquoise-hei .hei-events a.viewalllink, .turquoise-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .turquoise-hei .hei-events .field--name-field-url > a, .turquoise-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .turquoise-hei .hei-events a, .turquoise-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .turquoise-hei .hei-events a, .turquoise-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .turquoise-hei .hei-events .field--name-field-promotional-link > a, .turquoise-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .turquoise-hei .hei-events a, .turquoise-hei .hei-events .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .turquoise-hei .hei-events .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.turquoise-hei .hei-events a.viewalllink :hover, .turquoise-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a :hover, .promoted-content-container .flexItemText .turquoise-hei .hei-events .field--name-field-url > a :hover, .turquoise-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a :hover, .contact-nhlbi--landing .field--name-field-directions-link .turquoise-hei .hei-events a :hover, .turquoise-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a :hover, .isi-job-opportunities--landing .field--name-field-vacancies-link .turquoise-hei .hei-events a :hover, .turquoise-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a :hover, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .turquoise-hei .hei-events .field--name-field-promotional-link > a :hover, .turquoise-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a :hover, .fixedDarkBluePane .field--name-field-traveling-and-security .turquoise-hei .hei-events a :hover, .turquoise-hei .hei-events .field--name-field-community-card .field--name-field-url > a :hover, .field--name-field-community-card .turquoise-hei .hei-events .field--name-field-url > a :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 364, ../sass/components/_hei.scss */
  .turquoise-hei .hei-events a.viewalllink, .turquoise-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .turquoise-hei .hei-events .field--name-field-url > a, .turquoise-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .turquoise-hei .hei-events a, .turquoise-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .turquoise-hei .hei-events a, .turquoise-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .turquoise-hei .hei-events .field--name-field-promotional-link > a, .turquoise-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .turquoise-hei .hei-events a, .turquoise-hei .hei-events .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .turquoise-hei .hei-events .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 364, ../sass/components/_hei.scss */
  .turquoise-hei .hei-events a.viewalllink, .turquoise-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .turquoise-hei .hei-events .field--name-field-url > a, .turquoise-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .turquoise-hei .hei-events a, .turquoise-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .turquoise-hei .hei-events a, .turquoise-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .turquoise-hei .hei-events .field--name-field-promotional-link > a, .turquoise-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .turquoise-hei .hei-events a, .turquoise-hei .hei-events .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .turquoise-hei .hei-events .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 364, ../sass/components/_hei.scss */
  .turquoise-hei .hei-events a.viewalllink, .turquoise-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .turquoise-hei .hei-events .field--name-field-url > a, .turquoise-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .turquoise-hei .hei-events a, .turquoise-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .turquoise-hei .hei-events a, .turquoise-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .turquoise-hei .hei-events .field--name-field-promotional-link > a, .turquoise-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .turquoise-hei .hei-events a, .turquoise-hei .hei-events .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .turquoise-hei .hei-events .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 364, ../sass/components/_hei.scss */
  .turquoise-hei .hei-events a.viewalllink, .turquoise-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .turquoise-hei .hei-events .field--name-field-url > a, .turquoise-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .turquoise-hei .hei-events a, .turquoise-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .turquoise-hei .hei-events a, .turquoise-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .turquoise-hei .hei-events .field--name-field-promotional-link > a, .turquoise-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .turquoise-hei .hei-events a, .turquoise-hei .hei-events .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .turquoise-hei .hei-events .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 364, ../sass/components/_hei.scss */
  .turquoise-hei .hei-events a.viewalllink, .turquoise-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .turquoise-hei .hei-events .field--name-field-url > a, .turquoise-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .turquoise-hei .hei-events a, .turquoise-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .turquoise-hei .hei-events a, .turquoise-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .turquoise-hei .hei-events .field--name-field-promotional-link > a, .turquoise-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .turquoise-hei .hei-events a, .turquoise-hei .hei-events .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .turquoise-hei .hei-events .field--name-field-url > a {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.turquoise-hei .hei-events a.viewalllink:hover, .turquoise-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a:hover, .promoted-content-container .flexItemText .turquoise-hei .hei-events .field--name-field-url > a:hover, .turquoise-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a:hover, .contact-nhlbi--landing .field--name-field-directions-link .turquoise-hei .hei-events a:hover, .turquoise-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a:hover, .isi-job-opportunities--landing .field--name-field-vacancies-link .turquoise-hei .hei-events a:hover, .turquoise-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:hover, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .turquoise-hei .hei-events .field--name-field-promotional-link > a:hover, .turquoise-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a:hover, .fixedDarkBluePane .field--name-field-traveling-and-security .turquoise-hei .hei-events a:hover, .turquoise-hei .hei-events .field--name-field-community-card .field--name-field-url > a:hover, .field--name-field-community-card .turquoise-hei .hei-events .field--name-field-url > a:hover {
  background-color: #3f4358;
  border-color: #3f4358;
  color: #fff;
  text-decoration: none;
}
/* line 2379, ../sass/_mixins.scss */
.turquoise-hei .hei-events a.viewalllink:focus, .turquoise-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a:focus, .promoted-content-container .flexItemText .turquoise-hei .hei-events .field--name-field-url > a:focus, .turquoise-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a:focus, .contact-nhlbi--landing .field--name-field-directions-link .turquoise-hei .hei-events a:focus, .turquoise-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a:focus, .isi-job-opportunities--landing .field--name-field-vacancies-link .turquoise-hei .hei-events a:focus, .turquoise-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:focus, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .turquoise-hei .hei-events .field--name-field-promotional-link > a:focus, .turquoise-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a:focus, .fixedDarkBluePane .field--name-field-traveling-and-security .turquoise-hei .hei-events a:focus, .turquoise-hei .hei-events .field--name-field-community-card .field--name-field-url > a:focus, .field--name-field-community-card .turquoise-hei .hei-events .field--name-field-url > a:focus, .turquoise-hei .hei-events a.viewalllink:active, .turquoise-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a:active, .promoted-content-container .flexItemText .turquoise-hei .hei-events .field--name-field-url > a:active, .turquoise-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a:active, .contact-nhlbi--landing .field--name-field-directions-link .turquoise-hei .hei-events a:active, .turquoise-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a:active, .isi-job-opportunities--landing .field--name-field-vacancies-link .turquoise-hei .hei-events a:active, .turquoise-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:active, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .turquoise-hei .hei-events .field--name-field-promotional-link > a:active, .turquoise-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a:active, .fixedDarkBluePane .field--name-field-traveling-and-security .turquoise-hei .hei-events a:active, .turquoise-hei .hei-events .field--name-field-community-card .field--name-field-url > a:active, .field--name-field-community-card .turquoise-hei .hei-events .field--name-field-url > a:active {
  outline: #fff dotted 3px !important;
}
/* line 369, ../sass/components/_hei.scss */
.turquoise-hei .field--name-field-community-card .field--name-field-url > a {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #3f4358;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #fff;
  padding: 0.8em 3em;
  display: table !important;
  background-image: none;
}
@media all and (min-width: 1440px) {
  /* line 369, ../sass/components/_hei.scss */
  .turquoise-hei .field--name-field-community-card .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 369, ../sass/components/_hei.scss */
  .turquoise-hei .field--name-field-community-card .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 369, ../sass/components/_hei.scss */
  .turquoise-hei .field--name-field-community-card .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 369, ../sass/components/_hei.scss */
  .turquoise-hei .field--name-field-community-card .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.turquoise-hei .field--name-field-community-card .field--name-field-url > a :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 369, ../sass/components/_hei.scss */
  .turquoise-hei .field--name-field-community-card .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 369, ../sass/components/_hei.scss */
  .turquoise-hei .field--name-field-community-card .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 369, ../sass/components/_hei.scss */
  .turquoise-hei .field--name-field-community-card .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 369, ../sass/components/_hei.scss */
  .turquoise-hei .field--name-field-community-card .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 369, ../sass/components/_hei.scss */
  .turquoise-hei .field--name-field-community-card .field--name-field-url > a {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.turquoise-hei .field--name-field-community-card .field--name-field-url > a:hover {
  background-color: #307484;
  border-color: #307484;
  color: #fff;
  text-decoration: none;
}
/* line 2379, ../sass/_mixins.scss */
.turquoise-hei .field--name-field-community-card .field--name-field-url > a:focus, .turquoise-hei .field--name-field-community-card .field--name-field-url > a:active {
  outline: #fff dotted 3px !important;
}
/* line 373, ../sass/components/_hei.scss */
.turquoise-hei #newsletter-block-alerts .subscribe {
  background-color: #307484;
}

/* line 378, ../sass/components/_hei.scss */
.blue-violet-hei .hei-partnering-background {
  background-color: #2f4c73;
}
/* line 380, ../sass/components/_hei.scss */
.blue-violet-hei .hei-partnering-background h2, .blue-violet-hei .hei-partnering-background .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .blue-violet-hei .hei-partnering-background h1, .blue-violet-hei .hei-partnering-background .contact-method-label {
  color: #fff;
}
/* line 383, ../sass/components/_hei.scss */
.blue-violet-hei .hei-partnering-background .initiativebannertext, .blue-violet-hei .hei-partnering-background .initiativebannertext-white {
  color: #fff;
}
/* line 387, ../sass/components/_hei.scss */
.blue-violet-hei .hei-standard-button, .blue-violet-hei .hei-grants .field--name-field-url, .hei-grants .blue-violet-hei .field--name-field-url, .blue-violet-hei .hei-health-professionals .field--name-field-url, .hei-health-professionals .blue-violet-hei .field--name-field-url {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 387, ../sass/components/_hei.scss */
  .blue-violet-hei .hei-standard-button, .blue-violet-hei .hei-grants .field--name-field-url, .hei-grants .blue-violet-hei .field--name-field-url, .blue-violet-hei .hei-health-professionals .field--name-field-url, .hei-health-professionals .blue-violet-hei .field--name-field-url {
    margin-top: 0.75em;
    margin-bottom: 0.75em;
  }
}
/* line 1535, ../sass/_mixins.scss */
.blue-violet-hei .hei-standard-button a, .blue-violet-hei .hei-grants .field--name-field-url a, .hei-grants .blue-violet-hei .field--name-field-url a, .blue-violet-hei .hei-health-professionals .field--name-field-url a, .hei-health-professionals .blue-violet-hei .field--name-field-url a {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  background-color: #0c5fa7;
  border: 1px solid #0c5fa7;
  padding: 0.8em 3em;
}
@media all and (min-width: 1440px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-violet-hei .hei-standard-button a, .blue-violet-hei .hei-grants .field--name-field-url a, .hei-grants .blue-violet-hei .field--name-field-url a, .blue-violet-hei .hei-health-professionals .field--name-field-url a, .hei-health-professionals .blue-violet-hei .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-violet-hei .hei-standard-button a, .blue-violet-hei .hei-grants .field--name-field-url a, .hei-grants .blue-violet-hei .field--name-field-url a, .blue-violet-hei .hei-health-professionals .field--name-field-url a, .hei-health-professionals .blue-violet-hei .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-violet-hei .hei-standard-button a, .blue-violet-hei .hei-grants .field--name-field-url a, .hei-grants .blue-violet-hei .field--name-field-url a, .blue-violet-hei .hei-health-professionals .field--name-field-url a, .hei-health-professionals .blue-violet-hei .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-violet-hei .hei-standard-button a, .blue-violet-hei .hei-grants .field--name-field-url a, .hei-grants .blue-violet-hei .field--name-field-url a, .blue-violet-hei .hei-health-professionals .field--name-field-url a, .hei-health-professionals .blue-violet-hei .field--name-field-url a {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.blue-violet-hei .hei-standard-button a :hover, .blue-violet-hei .hei-grants .field--name-field-url a :hover, .hei-grants .blue-violet-hei .field--name-field-url a :hover, .blue-violet-hei .hei-health-professionals .field--name-field-url a :hover, .hei-health-professionals .blue-violet-hei .field--name-field-url a :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-violet-hei .hei-standard-button a, .blue-violet-hei .hei-grants .field--name-field-url a, .hei-grants .blue-violet-hei .field--name-field-url a, .blue-violet-hei .hei-health-professionals .field--name-field-url a, .hei-health-professionals .blue-violet-hei .field--name-field-url a {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-violet-hei .hei-standard-button a, .blue-violet-hei .hei-grants .field--name-field-url a, .hei-grants .blue-violet-hei .field--name-field-url a, .blue-violet-hei .hei-health-professionals .field--name-field-url a, .hei-health-professionals .blue-violet-hei .field--name-field-url a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-violet-hei .hei-standard-button a, .blue-violet-hei .hei-grants .field--name-field-url a, .hei-grants .blue-violet-hei .field--name-field-url a, .blue-violet-hei .hei-health-professionals .field--name-field-url a, .hei-health-professionals .blue-violet-hei .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-violet-hei .hei-standard-button a, .blue-violet-hei .hei-grants .field--name-field-url a, .hei-grants .blue-violet-hei .field--name-field-url a, .blue-violet-hei .hei-health-professionals .field--name-field-url a, .hei-health-professionals .blue-violet-hei .field--name-field-url a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-violet-hei .hei-standard-button a, .blue-violet-hei .hei-grants .field--name-field-url a, .hei-grants .blue-violet-hei .field--name-field-url a, .blue-violet-hei .hei-health-professionals .field--name-field-url a, .hei-health-professionals .blue-violet-hei .field--name-field-url a {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.blue-violet-hei .hei-standard-button a:hover, .blue-violet-hei .hei-grants .field--name-field-url a:hover, .hei-grants .blue-violet-hei .field--name-field-url a:hover, .blue-violet-hei .hei-health-professionals .field--name-field-url a:hover, .hei-health-professionals .blue-violet-hei .field--name-field-url a:hover {
  background-color: #2f4c73;
  border-color: #2f4c73;
  color: #fff;
  text-decoration: none;
}
/* line 1539, ../sass/_mixins.scss */
.blue-violet-hei .hei-standard-button a:focus, .blue-violet-hei .hei-grants .field--name-field-url a:focus, .hei-grants .blue-violet-hei .field--name-field-url a:focus, .blue-violet-hei .hei-health-professionals .field--name-field-url a:focus, .hei-health-professionals .blue-violet-hei .field--name-field-url a:focus {
  outline: #bf0d2e dotted 3px !important;
}
/* line 390, ../sass/components/_hei.scss */
.blue-violet-hei .hei-top-button, .blue-violet-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url, .yellow-turquoise-hei .hei-partnering .blue-violet-hei .field--name-field-url {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 390, ../sass/components/_hei.scss */
  .blue-violet-hei .hei-top-button, .blue-violet-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url, .yellow-turquoise-hei .hei-partnering .blue-violet-hei .field--name-field-url {
    margin-top: 0.75em;
    margin-bottom: 0.75em;
  }
}
/* line 1535, ../sass/_mixins.scss */
.blue-violet-hei .hei-top-button a, .blue-violet-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a, .yellow-turquoise-hei .hei-partnering .blue-violet-hei .field--name-field-url a {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  background-color: #0c5fa7;
  border: 1px solid #0c5fa7;
  padding: 0.8em 3em;
}
@media all and (min-width: 1440px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-violet-hei .hei-top-button a, .blue-violet-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a, .yellow-turquoise-hei .hei-partnering .blue-violet-hei .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-violet-hei .hei-top-button a, .blue-violet-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a, .yellow-turquoise-hei .hei-partnering .blue-violet-hei .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-violet-hei .hei-top-button a, .blue-violet-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a, .yellow-turquoise-hei .hei-partnering .blue-violet-hei .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-violet-hei .hei-top-button a, .blue-violet-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a, .yellow-turquoise-hei .hei-partnering .blue-violet-hei .field--name-field-url a {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.blue-violet-hei .hei-top-button a :hover, .blue-violet-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a :hover, .yellow-turquoise-hei .hei-partnering .blue-violet-hei .field--name-field-url a :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-violet-hei .hei-top-button a, .blue-violet-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a, .yellow-turquoise-hei .hei-partnering .blue-violet-hei .field--name-field-url a {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-violet-hei .hei-top-button a, .blue-violet-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a, .yellow-turquoise-hei .hei-partnering .blue-violet-hei .field--name-field-url a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-violet-hei .hei-top-button a, .blue-violet-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a, .yellow-turquoise-hei .hei-partnering .blue-violet-hei .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-violet-hei .hei-top-button a, .blue-violet-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a, .yellow-turquoise-hei .hei-partnering .blue-violet-hei .field--name-field-url a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-violet-hei .hei-top-button a, .blue-violet-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a, .yellow-turquoise-hei .hei-partnering .blue-violet-hei .field--name-field-url a {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.blue-violet-hei .hei-top-button a:hover, .blue-violet-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a:hover, .yellow-turquoise-hei .hei-partnering .blue-violet-hei .field--name-field-url a:hover {
  background-color: #2f4c73;
  border-color: #2f4c73;
  color: #fff;
  text-decoration: none;
}
/* line 1539, ../sass/_mixins.scss */
.blue-violet-hei .hei-top-button a:focus, .blue-violet-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a:focus, .yellow-turquoise-hei .hei-partnering .blue-violet-hei .field--name-field-url a:focus {
  outline: #bf0d2e dotted 3px !important;
}
/* line 393, ../sass/components/_hei.scss */
.blue-violet-hei .hei-submit-button {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 393, ../sass/components/_hei.scss */
  .blue-violet-hei .hei-submit-button {
    margin-top: 0.75em;
    margin-bottom: 0.75em;
  }
}
/* line 1535, ../sass/_mixins.scss */
.blue-violet-hei .hei-submit-button a {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  background-color: #2f4c73;
  border: 1px solid #0c5fa7;
  padding: 0.8em 3em;
}
@media all and (min-width: 1440px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-violet-hei .hei-submit-button a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-violet-hei .hei-submit-button a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-violet-hei .hei-submit-button a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-violet-hei .hei-submit-button a {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.blue-violet-hei .hei-submit-button a :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-violet-hei .hei-submit-button a {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-violet-hei .hei-submit-button a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-violet-hei .hei-submit-button a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-violet-hei .hei-submit-button a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-violet-hei .hei-submit-button a {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.blue-violet-hei .hei-submit-button a:hover {
  background-color: #2f4c73;
  border-color: #2f4c73;
  color: #fff;
  text-decoration: none;
}
/* line 1539, ../sass/_mixins.scss */
.blue-violet-hei .hei-submit-button a:focus {
  outline: #fff dotted 3px !important;
}
/* line 397, ../sass/components/_hei.scss */
.blue-violet-hei .hei-partnering .field--name-field-url {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 397, ../sass/components/_hei.scss */
  .blue-violet-hei .hei-partnering .field--name-field-url {
    margin-top: 0.75em;
    margin-bottom: 0.75em;
  }
}
/* line 1535, ../sass/_mixins.scss */
.blue-violet-hei .hei-partnering .field--name-field-url a {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #2f4c73;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #fff;
  padding: 0.8em 3em;
}
@media all and (min-width: 1440px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-violet-hei .hei-partnering .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-violet-hei .hei-partnering .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-violet-hei .hei-partnering .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-violet-hei .hei-partnering .field--name-field-url a {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.blue-violet-hei .hei-partnering .field--name-field-url a :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-violet-hei .hei-partnering .field--name-field-url a {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-violet-hei .hei-partnering .field--name-field-url a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-violet-hei .hei-partnering .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-violet-hei .hei-partnering .field--name-field-url a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-violet-hei .hei-partnering .field--name-field-url a {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.blue-violet-hei .hei-partnering .field--name-field-url a:hover {
  background-color: #0c5fa7;
  border-color: #0c5fa7;
  color: #fff;
  text-decoration: none;
}
/* line 1539, ../sass/_mixins.scss */
.blue-violet-hei .hei-partnering .field--name-field-url a:focus {
  outline: #fff dotted 3px !important;
}
/* line 401, ../sass/components/_hei.scss */
.blue-violet-hei .hei-news {
  background-color: #2f4c73;
}
/* line 404, ../sass/components/_hei.scss */
.blue-violet-hei .hei-news a.viewalllink, .blue-violet-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .blue-violet-hei .hei-news .field--name-field-url > a, .blue-violet-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .blue-violet-hei .hei-news a, .blue-violet-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-violet-hei .hei-news a, .blue-violet-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-violet-hei .hei-news .field--name-field-promotional-link > a, .blue-violet-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-violet-hei .hei-news a, .blue-violet-hei .hei-news .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .blue-violet-hei .hei-news .field--name-field-url > a {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #2f4c73;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #fff;
  padding: 0.8em 3em;
  display: table !important;
  background-image: none;
}
@media all and (min-width: 1440px) {
  /* line 404, ../sass/components/_hei.scss */
  .blue-violet-hei .hei-news a.viewalllink, .blue-violet-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .blue-violet-hei .hei-news .field--name-field-url > a, .blue-violet-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .blue-violet-hei .hei-news a, .blue-violet-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-violet-hei .hei-news a, .blue-violet-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-violet-hei .hei-news .field--name-field-promotional-link > a, .blue-violet-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-violet-hei .hei-news a, .blue-violet-hei .hei-news .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .blue-violet-hei .hei-news .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 404, ../sass/components/_hei.scss */
  .blue-violet-hei .hei-news a.viewalllink, .blue-violet-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .blue-violet-hei .hei-news .field--name-field-url > a, .blue-violet-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .blue-violet-hei .hei-news a, .blue-violet-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-violet-hei .hei-news a, .blue-violet-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-violet-hei .hei-news .field--name-field-promotional-link > a, .blue-violet-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-violet-hei .hei-news a, .blue-violet-hei .hei-news .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .blue-violet-hei .hei-news .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 404, ../sass/components/_hei.scss */
  .blue-violet-hei .hei-news a.viewalllink, .blue-violet-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .blue-violet-hei .hei-news .field--name-field-url > a, .blue-violet-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .blue-violet-hei .hei-news a, .blue-violet-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-violet-hei .hei-news a, .blue-violet-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-violet-hei .hei-news .field--name-field-promotional-link > a, .blue-violet-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-violet-hei .hei-news a, .blue-violet-hei .hei-news .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .blue-violet-hei .hei-news .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 404, ../sass/components/_hei.scss */
  .blue-violet-hei .hei-news a.viewalllink, .blue-violet-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .blue-violet-hei .hei-news .field--name-field-url > a, .blue-violet-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .blue-violet-hei .hei-news a, .blue-violet-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-violet-hei .hei-news a, .blue-violet-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-violet-hei .hei-news .field--name-field-promotional-link > a, .blue-violet-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-violet-hei .hei-news a, .blue-violet-hei .hei-news .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .blue-violet-hei .hei-news .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.blue-violet-hei .hei-news a.viewalllink :hover, .blue-violet-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a :hover, .promoted-content-container .flexItemText .blue-violet-hei .hei-news .field--name-field-url > a :hover, .blue-violet-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a :hover, .contact-nhlbi--landing .field--name-field-directions-link .blue-violet-hei .hei-news a :hover, .blue-violet-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a :hover, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-violet-hei .hei-news a :hover, .blue-violet-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a :hover, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-violet-hei .hei-news .field--name-field-promotional-link > a :hover, .blue-violet-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a :hover, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-violet-hei .hei-news a :hover, .blue-violet-hei .hei-news .field--name-field-community-card .field--name-field-url > a :hover, .field--name-field-community-card .blue-violet-hei .hei-news .field--name-field-url > a :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 404, ../sass/components/_hei.scss */
  .blue-violet-hei .hei-news a.viewalllink, .blue-violet-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .blue-violet-hei .hei-news .field--name-field-url > a, .blue-violet-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .blue-violet-hei .hei-news a, .blue-violet-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-violet-hei .hei-news a, .blue-violet-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-violet-hei .hei-news .field--name-field-promotional-link > a, .blue-violet-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-violet-hei .hei-news a, .blue-violet-hei .hei-news .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .blue-violet-hei .hei-news .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 404, ../sass/components/_hei.scss */
  .blue-violet-hei .hei-news a.viewalllink, .blue-violet-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .blue-violet-hei .hei-news .field--name-field-url > a, .blue-violet-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .blue-violet-hei .hei-news a, .blue-violet-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-violet-hei .hei-news a, .blue-violet-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-violet-hei .hei-news .field--name-field-promotional-link > a, .blue-violet-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-violet-hei .hei-news a, .blue-violet-hei .hei-news .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .blue-violet-hei .hei-news .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 404, ../sass/components/_hei.scss */
  .blue-violet-hei .hei-news a.viewalllink, .blue-violet-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .blue-violet-hei .hei-news .field--name-field-url > a, .blue-violet-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .blue-violet-hei .hei-news a, .blue-violet-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-violet-hei .hei-news a, .blue-violet-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-violet-hei .hei-news .field--name-field-promotional-link > a, .blue-violet-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-violet-hei .hei-news a, .blue-violet-hei .hei-news .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .blue-violet-hei .hei-news .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 404, ../sass/components/_hei.scss */
  .blue-violet-hei .hei-news a.viewalllink, .blue-violet-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .blue-violet-hei .hei-news .field--name-field-url > a, .blue-violet-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .blue-violet-hei .hei-news a, .blue-violet-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-violet-hei .hei-news a, .blue-violet-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-violet-hei .hei-news .field--name-field-promotional-link > a, .blue-violet-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-violet-hei .hei-news a, .blue-violet-hei .hei-news .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .blue-violet-hei .hei-news .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 404, ../sass/components/_hei.scss */
  .blue-violet-hei .hei-news a.viewalllink, .blue-violet-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .blue-violet-hei .hei-news .field--name-field-url > a, .blue-violet-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .blue-violet-hei .hei-news a, .blue-violet-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-violet-hei .hei-news a, .blue-violet-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-violet-hei .hei-news .field--name-field-promotional-link > a, .blue-violet-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-violet-hei .hei-news a, .blue-violet-hei .hei-news .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .blue-violet-hei .hei-news .field--name-field-url > a {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.blue-violet-hei .hei-news a.viewalllink:hover, .blue-violet-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a:hover, .promoted-content-container .flexItemText .blue-violet-hei .hei-news .field--name-field-url > a:hover, .blue-violet-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a:hover, .contact-nhlbi--landing .field--name-field-directions-link .blue-violet-hei .hei-news a:hover, .blue-violet-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a:hover, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-violet-hei .hei-news a:hover, .blue-violet-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:hover, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-violet-hei .hei-news .field--name-field-promotional-link > a:hover, .blue-violet-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a:hover, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-violet-hei .hei-news a:hover, .blue-violet-hei .hei-news .field--name-field-community-card .field--name-field-url > a:hover, .field--name-field-community-card .blue-violet-hei .hei-news .field--name-field-url > a:hover {
  background-color: #fff;
  border-color: #fff;
  color: #2f4c73;
  text-decoration: none;
}
/* line 2379, ../sass/_mixins.scss */
.blue-violet-hei .hei-news a.viewalllink:focus, .blue-violet-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a:focus, .promoted-content-container .flexItemText .blue-violet-hei .hei-news .field--name-field-url > a:focus, .blue-violet-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a:focus, .contact-nhlbi--landing .field--name-field-directions-link .blue-violet-hei .hei-news a:focus, .blue-violet-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a:focus, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-violet-hei .hei-news a:focus, .blue-violet-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:focus, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-violet-hei .hei-news .field--name-field-promotional-link > a:focus, .blue-violet-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a:focus, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-violet-hei .hei-news a:focus, .blue-violet-hei .hei-news .field--name-field-community-card .field--name-field-url > a:focus, .field--name-field-community-card .blue-violet-hei .hei-news .field--name-field-url > a:focus, .blue-violet-hei .hei-news a.viewalllink:active, .blue-violet-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a:active, .promoted-content-container .flexItemText .blue-violet-hei .hei-news .field--name-field-url > a:active, .blue-violet-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a:active, .contact-nhlbi--landing .field--name-field-directions-link .blue-violet-hei .hei-news a:active, .blue-violet-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a:active, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-violet-hei .hei-news a:active, .blue-violet-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:active, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-violet-hei .hei-news .field--name-field-promotional-link > a:active, .blue-violet-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a:active, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-violet-hei .hei-news a:active, .blue-violet-hei .hei-news .field--name-field-community-card .field--name-field-url > a:active, .field--name-field-community-card .blue-violet-hei .hei-news .field--name-field-url > a:active {
  outline: #fff dotted 3px !important;
}
/* line 408, ../sass/components/_hei.scss */
.blue-violet-hei .hei-events {
  background-color: #5f0f40;
}
/* line 411, ../sass/components/_hei.scss */
.blue-violet-hei .hei-events a {
  outline-color: #fff !important;
}
/* line 414, ../sass/components/_hei.scss */
.blue-violet-hei .hei-events .bodytext, .blue-violet-hei .hei-events .darkGrayBodyText, .blue-violet-hei .hei-events .foa-expiration-date {
  color: #fff;
}
/* line 417, ../sass/components/_hei.scss */
.blue-violet-hei .hei-events a.viewalllink, .blue-violet-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .blue-violet-hei .hei-events .field--name-field-url > a, .blue-violet-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .blue-violet-hei .hei-events a, .blue-violet-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-violet-hei .hei-events a, .blue-violet-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-violet-hei .hei-events .field--name-field-promotional-link > a, .blue-violet-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-violet-hei .hei-events a, .blue-violet-hei .hei-events .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .blue-violet-hei .hei-events .field--name-field-url > a {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #5f0f40;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #fff;
  padding: 0.8em 3em;
  display: table !important;
  background-image: none;
}
@media all and (min-width: 1440px) {
  /* line 417, ../sass/components/_hei.scss */
  .blue-violet-hei .hei-events a.viewalllink, .blue-violet-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .blue-violet-hei .hei-events .field--name-field-url > a, .blue-violet-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .blue-violet-hei .hei-events a, .blue-violet-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-violet-hei .hei-events a, .blue-violet-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-violet-hei .hei-events .field--name-field-promotional-link > a, .blue-violet-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-violet-hei .hei-events a, .blue-violet-hei .hei-events .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .blue-violet-hei .hei-events .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 417, ../sass/components/_hei.scss */
  .blue-violet-hei .hei-events a.viewalllink, .blue-violet-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .blue-violet-hei .hei-events .field--name-field-url > a, .blue-violet-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .blue-violet-hei .hei-events a, .blue-violet-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-violet-hei .hei-events a, .blue-violet-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-violet-hei .hei-events .field--name-field-promotional-link > a, .blue-violet-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-violet-hei .hei-events a, .blue-violet-hei .hei-events .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .blue-violet-hei .hei-events .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 417, ../sass/components/_hei.scss */
  .blue-violet-hei .hei-events a.viewalllink, .blue-violet-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .blue-violet-hei .hei-events .field--name-field-url > a, .blue-violet-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .blue-violet-hei .hei-events a, .blue-violet-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-violet-hei .hei-events a, .blue-violet-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-violet-hei .hei-events .field--name-field-promotional-link > a, .blue-violet-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-violet-hei .hei-events a, .blue-violet-hei .hei-events .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .blue-violet-hei .hei-events .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 417, ../sass/components/_hei.scss */
  .blue-violet-hei .hei-events a.viewalllink, .blue-violet-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .blue-violet-hei .hei-events .field--name-field-url > a, .blue-violet-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .blue-violet-hei .hei-events a, .blue-violet-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-violet-hei .hei-events a, .blue-violet-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-violet-hei .hei-events .field--name-field-promotional-link > a, .blue-violet-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-violet-hei .hei-events a, .blue-violet-hei .hei-events .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .blue-violet-hei .hei-events .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.blue-violet-hei .hei-events a.viewalllink :hover, .blue-violet-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a :hover, .promoted-content-container .flexItemText .blue-violet-hei .hei-events .field--name-field-url > a :hover, .blue-violet-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a :hover, .contact-nhlbi--landing .field--name-field-directions-link .blue-violet-hei .hei-events a :hover, .blue-violet-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a :hover, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-violet-hei .hei-events a :hover, .blue-violet-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a :hover, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-violet-hei .hei-events .field--name-field-promotional-link > a :hover, .blue-violet-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a :hover, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-violet-hei .hei-events a :hover, .blue-violet-hei .hei-events .field--name-field-community-card .field--name-field-url > a :hover, .field--name-field-community-card .blue-violet-hei .hei-events .field--name-field-url > a :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 417, ../sass/components/_hei.scss */
  .blue-violet-hei .hei-events a.viewalllink, .blue-violet-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .blue-violet-hei .hei-events .field--name-field-url > a, .blue-violet-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .blue-violet-hei .hei-events a, .blue-violet-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-violet-hei .hei-events a, .blue-violet-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-violet-hei .hei-events .field--name-field-promotional-link > a, .blue-violet-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-violet-hei .hei-events a, .blue-violet-hei .hei-events .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .blue-violet-hei .hei-events .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 417, ../sass/components/_hei.scss */
  .blue-violet-hei .hei-events a.viewalllink, .blue-violet-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .blue-violet-hei .hei-events .field--name-field-url > a, .blue-violet-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .blue-violet-hei .hei-events a, .blue-violet-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-violet-hei .hei-events a, .blue-violet-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-violet-hei .hei-events .field--name-field-promotional-link > a, .blue-violet-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-violet-hei .hei-events a, .blue-violet-hei .hei-events .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .blue-violet-hei .hei-events .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 417, ../sass/components/_hei.scss */
  .blue-violet-hei .hei-events a.viewalllink, .blue-violet-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .blue-violet-hei .hei-events .field--name-field-url > a, .blue-violet-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .blue-violet-hei .hei-events a, .blue-violet-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-violet-hei .hei-events a, .blue-violet-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-violet-hei .hei-events .field--name-field-promotional-link > a, .blue-violet-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-violet-hei .hei-events a, .blue-violet-hei .hei-events .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .blue-violet-hei .hei-events .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 417, ../sass/components/_hei.scss */
  .blue-violet-hei .hei-events a.viewalllink, .blue-violet-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .blue-violet-hei .hei-events .field--name-field-url > a, .blue-violet-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .blue-violet-hei .hei-events a, .blue-violet-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-violet-hei .hei-events a, .blue-violet-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-violet-hei .hei-events .field--name-field-promotional-link > a, .blue-violet-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-violet-hei .hei-events a, .blue-violet-hei .hei-events .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .blue-violet-hei .hei-events .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 417, ../sass/components/_hei.scss */
  .blue-violet-hei .hei-events a.viewalllink, .blue-violet-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .blue-violet-hei .hei-events .field--name-field-url > a, .blue-violet-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .blue-violet-hei .hei-events a, .blue-violet-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-violet-hei .hei-events a, .blue-violet-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-violet-hei .hei-events .field--name-field-promotional-link > a, .blue-violet-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-violet-hei .hei-events a, .blue-violet-hei .hei-events .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .blue-violet-hei .hei-events .field--name-field-url > a {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.blue-violet-hei .hei-events a.viewalllink:hover, .blue-violet-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a:hover, .promoted-content-container .flexItemText .blue-violet-hei .hei-events .field--name-field-url > a:hover, .blue-violet-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a:hover, .contact-nhlbi--landing .field--name-field-directions-link .blue-violet-hei .hei-events a:hover, .blue-violet-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a:hover, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-violet-hei .hei-events a:hover, .blue-violet-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:hover, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-violet-hei .hei-events .field--name-field-promotional-link > a:hover, .blue-violet-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a:hover, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-violet-hei .hei-events a:hover, .blue-violet-hei .hei-events .field--name-field-community-card .field--name-field-url > a:hover, .field--name-field-community-card .blue-violet-hei .hei-events .field--name-field-url > a:hover {
  background-color: #0c5fa7;
  border-color: #0c5fa7;
  color: #fff;
  text-decoration: none;
}
/* line 2379, ../sass/_mixins.scss */
.blue-violet-hei .hei-events a.viewalllink:focus, .blue-violet-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a:focus, .promoted-content-container .flexItemText .blue-violet-hei .hei-events .field--name-field-url > a:focus, .blue-violet-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a:focus, .contact-nhlbi--landing .field--name-field-directions-link .blue-violet-hei .hei-events a:focus, .blue-violet-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a:focus, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-violet-hei .hei-events a:focus, .blue-violet-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:focus, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-violet-hei .hei-events .field--name-field-promotional-link > a:focus, .blue-violet-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a:focus, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-violet-hei .hei-events a:focus, .blue-violet-hei .hei-events .field--name-field-community-card .field--name-field-url > a:focus, .field--name-field-community-card .blue-violet-hei .hei-events .field--name-field-url > a:focus, .blue-violet-hei .hei-events a.viewalllink:active, .blue-violet-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a:active, .promoted-content-container .flexItemText .blue-violet-hei .hei-events .field--name-field-url > a:active, .blue-violet-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a:active, .contact-nhlbi--landing .field--name-field-directions-link .blue-violet-hei .hei-events a:active, .blue-violet-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a:active, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-violet-hei .hei-events a:active, .blue-violet-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:active, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .blue-violet-hei .hei-events .field--name-field-promotional-link > a:active, .blue-violet-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a:active, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-violet-hei .hei-events a:active, .blue-violet-hei .hei-events .field--name-field-community-card .field--name-field-url > a:active, .field--name-field-community-card .blue-violet-hei .hei-events .field--name-field-url > a:active {
  outline: #fff dotted 3px !important;
}
/* line 425, ../sass/components/_hei.scss */
.blue-violet-hei .hei-grants .field--name-field-url a {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 425, ../sass/components/_hei.scss */
  .blue-violet-hei .hei-grants .field--name-field-url a {
    margin-top: 0.75em;
    margin-bottom: 0.75em;
  }
}
/* line 1535, ../sass/_mixins.scss */
.blue-violet-hei .hei-grants .field--name-field-url a a {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  background-color: #0c5fa7;
  border: 1px solid #0c5fa7;
  padding: 0.8em 3em;
}
@media all and (min-width: 1440px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-violet-hei .hei-grants .field--name-field-url a a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-violet-hei .hei-grants .field--name-field-url a a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-violet-hei .hei-grants .field--name-field-url a a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-violet-hei .hei-grants .field--name-field-url a a {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.blue-violet-hei .hei-grants .field--name-field-url a a :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-violet-hei .hei-grants .field--name-field-url a a {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-violet-hei .hei-grants .field--name-field-url a a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-violet-hei .hei-grants .field--name-field-url a a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-violet-hei .hei-grants .field--name-field-url a a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .blue-violet-hei .hei-grants .field--name-field-url a a {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.blue-violet-hei .hei-grants .field--name-field-url a a:hover {
  background-color: #2f4c73;
  border-color: #2f4c73;
  color: #bf0d2e;
  text-decoration: none;
}
/* line 1539, ../sass/_mixins.scss */
.blue-violet-hei .hei-grants .field--name-field-url a a:focus {
  outline: #fff dotted 3px !important;
}
/* line 432, ../sass/components/_hei.scss */
.blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf a.viewalllink, .blue-violet-hei .hei-related-news .promoted-content-container .flexItemText.flexItemTextHalf .field--name-field-url > a, .promoted-content-container .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .field--name-field-url > a, .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf a, .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf a, .blue-violet-hei .hei-related-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf a, .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .field--name-field-url > a {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #2f4c73;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #fff;
  padding: 0.8em 3em;
  display: table !important;
  background-image: none;
}
@media all and (min-width: 1440px) {
  /* line 432, ../sass/components/_hei.scss */
  .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf a.viewalllink, .blue-violet-hei .hei-related-news .promoted-content-container .flexItemText.flexItemTextHalf .field--name-field-url > a, .promoted-content-container .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .field--name-field-url > a, .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf a, .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf a, .blue-violet-hei .hei-related-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf a, .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 432, ../sass/components/_hei.scss */
  .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf a.viewalllink, .blue-violet-hei .hei-related-news .promoted-content-container .flexItemText.flexItemTextHalf .field--name-field-url > a, .promoted-content-container .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .field--name-field-url > a, .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf a, .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf a, .blue-violet-hei .hei-related-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf a, .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 432, ../sass/components/_hei.scss */
  .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf a.viewalllink, .blue-violet-hei .hei-related-news .promoted-content-container .flexItemText.flexItemTextHalf .field--name-field-url > a, .promoted-content-container .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .field--name-field-url > a, .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf a, .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf a, .blue-violet-hei .hei-related-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf a, .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 432, ../sass/components/_hei.scss */
  .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf a.viewalllink, .blue-violet-hei .hei-related-news .promoted-content-container .flexItemText.flexItemTextHalf .field--name-field-url > a, .promoted-content-container .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .field--name-field-url > a, .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf a, .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf a, .blue-violet-hei .hei-related-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf a, .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf a.viewalllink :hover, .blue-violet-hei .hei-related-news .promoted-content-container .flexItemText.flexItemTextHalf .field--name-field-url > a :hover, .promoted-content-container .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .field--name-field-url > a :hover, .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .contact-nhlbi--landing .field--name-field-directions-link a :hover, .contact-nhlbi--landing .field--name-field-directions-link .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf a :hover, .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .isi-job-opportunities--landing .field--name-field-vacancies-link a :hover, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf a :hover, .blue-violet-hei .hei-related-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a :hover, .field--name-field-promotional-card > .field__item .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a :hover, .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .fixedDarkBluePane .field--name-field-traveling-and-security a :hover, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf a :hover, .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .field--name-field-community-card .field--name-field-url > a :hover, .field--name-field-community-card .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .field--name-field-url > a :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 432, ../sass/components/_hei.scss */
  .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf a.viewalllink, .blue-violet-hei .hei-related-news .promoted-content-container .flexItemText.flexItemTextHalf .field--name-field-url > a, .promoted-content-container .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .field--name-field-url > a, .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf a, .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf a, .blue-violet-hei .hei-related-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf a, .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 432, ../sass/components/_hei.scss */
  .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf a.viewalllink, .blue-violet-hei .hei-related-news .promoted-content-container .flexItemText.flexItemTextHalf .field--name-field-url > a, .promoted-content-container .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .field--name-field-url > a, .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf a, .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf a, .blue-violet-hei .hei-related-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf a, .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 432, ../sass/components/_hei.scss */
  .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf a.viewalllink, .blue-violet-hei .hei-related-news .promoted-content-container .flexItemText.flexItemTextHalf .field--name-field-url > a, .promoted-content-container .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .field--name-field-url > a, .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf a, .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf a, .blue-violet-hei .hei-related-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf a, .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 432, ../sass/components/_hei.scss */
  .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf a.viewalllink, .blue-violet-hei .hei-related-news .promoted-content-container .flexItemText.flexItemTextHalf .field--name-field-url > a, .promoted-content-container .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .field--name-field-url > a, .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf a, .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf a, .blue-violet-hei .hei-related-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf a, .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 432, ../sass/components/_hei.scss */
  .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf a.viewalllink, .blue-violet-hei .hei-related-news .promoted-content-container .flexItemText.flexItemTextHalf .field--name-field-url > a, .promoted-content-container .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .field--name-field-url > a, .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf a, .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf a, .blue-violet-hei .hei-related-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf a, .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .field--name-field-url > a {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf a.viewalllink:hover, .blue-violet-hei .hei-related-news .promoted-content-container .flexItemText.flexItemTextHalf .field--name-field-url > a:hover, .promoted-content-container .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .field--name-field-url > a:hover, .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .contact-nhlbi--landing .field--name-field-directions-link a:hover, .contact-nhlbi--landing .field--name-field-directions-link .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf a:hover, .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .isi-job-opportunities--landing .field--name-field-vacancies-link a:hover, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf a:hover, .blue-violet-hei .hei-related-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:hover, .field--name-field-promotional-card > .field__item .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:hover, .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .fixedDarkBluePane .field--name-field-traveling-and-security a:hover, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf a:hover, .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .field--name-field-community-card .field--name-field-url > a:hover, .field--name-field-community-card .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .field--name-field-url > a:hover {
  background-color: #0c5fa7;
  border-color: #0c5fa7;
  color: #fff;
  text-decoration: none;
}
/* line 2379, ../sass/_mixins.scss */
.blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf a.viewalllink:focus, .blue-violet-hei .hei-related-news .promoted-content-container .flexItemText.flexItemTextHalf .field--name-field-url > a:focus, .promoted-content-container .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .field--name-field-url > a:focus, .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .contact-nhlbi--landing .field--name-field-directions-link a:focus, .contact-nhlbi--landing .field--name-field-directions-link .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf a:focus, .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .isi-job-opportunities--landing .field--name-field-vacancies-link a:focus, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf a:focus, .blue-violet-hei .hei-related-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:focus, .field--name-field-promotional-card > .field__item .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:focus, .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .fixedDarkBluePane .field--name-field-traveling-and-security a:focus, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf a:focus, .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .field--name-field-community-card .field--name-field-url > a:focus, .field--name-field-community-card .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .field--name-field-url > a:focus, .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf a.viewalllink:active, .blue-violet-hei .hei-related-news .promoted-content-container .flexItemText.flexItemTextHalf .field--name-field-url > a:active, .promoted-content-container .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .field--name-field-url > a:active, .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .contact-nhlbi--landing .field--name-field-directions-link a:active, .contact-nhlbi--landing .field--name-field-directions-link .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf a:active, .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .isi-job-opportunities--landing .field--name-field-vacancies-link a:active, .isi-job-opportunities--landing .field--name-field-vacancies-link .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf a:active, .blue-violet-hei .hei-related-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:active, .field--name-field-promotional-card > .field__item .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:active, .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .fixedDarkBluePane .field--name-field-traveling-and-security a:active, .fixedDarkBluePane .field--name-field-traveling-and-security .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf a:active, .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .field--name-field-community-card .field--name-field-url > a:active, .field--name-field-community-card .blue-violet-hei .hei-related-news .flexItemText.flexItemTextHalf .field--name-field-url > a:active {
  outline: #fff dotted 3px !important;
}
/* line 436, ../sass/components/_hei.scss */
.blue-violet-hei #newsletter-block-alerts .subscribe {
  background-color: #0c5fa7;
}
/* line 441, ../sass/components/_hei.scss */
.blue-violet-hei .field--name-field-community-card .field--name-field-url a {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #2f4c73;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #fff;
  padding: 0.8em 3em;
  display: table !important;
  background-image: none;
}
@media all and (min-width: 1440px) {
  /* line 441, ../sass/components/_hei.scss */
  .blue-violet-hei .field--name-field-community-card .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 441, ../sass/components/_hei.scss */
  .blue-violet-hei .field--name-field-community-card .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 441, ../sass/components/_hei.scss */
  .blue-violet-hei .field--name-field-community-card .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 441, ../sass/components/_hei.scss */
  .blue-violet-hei .field--name-field-community-card .field--name-field-url a {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.blue-violet-hei .field--name-field-community-card .field--name-field-url a :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 441, ../sass/components/_hei.scss */
  .blue-violet-hei .field--name-field-community-card .field--name-field-url a {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 441, ../sass/components/_hei.scss */
  .blue-violet-hei .field--name-field-community-card .field--name-field-url a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 441, ../sass/components/_hei.scss */
  .blue-violet-hei .field--name-field-community-card .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 441, ../sass/components/_hei.scss */
  .blue-violet-hei .field--name-field-community-card .field--name-field-url a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 441, ../sass/components/_hei.scss */
  .blue-violet-hei .field--name-field-community-card .field--name-field-url a {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.blue-violet-hei .field--name-field-community-card .field--name-field-url a:hover {
  background-color: #0c5fa7;
  border-color: #0c5fa7;
  color: #fff;
  text-decoration: none;
}
/* line 2379, ../sass/_mixins.scss */
.blue-violet-hei .field--name-field-community-card .field--name-field-url a:focus, .blue-violet-hei .field--name-field-community-card .field--name-field-url a:active {
  outline: #fff dotted 3px !important;
}

/* line 447, ../sass/components/_hei.scss */
.green-blue-hei .hei-partnering-background {
  background-color: #f6c163;
}
/* line 450, ../sass/components/_hei.scss */
.green-blue-hei .hei-top-button, .green-blue-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url, .yellow-turquoise-hei .hei-partnering .green-blue-hei .field--name-field-url {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 450, ../sass/components/_hei.scss */
  .green-blue-hei .hei-top-button, .green-blue-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url, .yellow-turquoise-hei .hei-partnering .green-blue-hei .field--name-field-url {
    margin-top: 0.75em;
    margin-bottom: 0.75em;
  }
}
/* line 1535, ../sass/_mixins.scss */
.green-blue-hei .hei-top-button a, .green-blue-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a, .yellow-turquoise-hei .hei-partnering .green-blue-hei .field--name-field-url a {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #222;
  text-decoration: none;
  background-color: #93c648;
  border: 1px solid #93c648;
  padding: 0.8em 3em;
}
@media all and (min-width: 1440px) {
  /* line 1535, ../sass/_mixins.scss */
  .green-blue-hei .hei-top-button a, .green-blue-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a, .yellow-turquoise-hei .hei-partnering .green-blue-hei .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1535, ../sass/_mixins.scss */
  .green-blue-hei .hei-top-button a, .green-blue-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a, .yellow-turquoise-hei .hei-partnering .green-blue-hei .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .green-blue-hei .hei-top-button a, .green-blue-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a, .yellow-turquoise-hei .hei-partnering .green-blue-hei .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1535, ../sass/_mixins.scss */
  .green-blue-hei .hei-top-button a, .green-blue-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a, .yellow-turquoise-hei .hei-partnering .green-blue-hei .field--name-field-url a {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.green-blue-hei .hei-top-button a :hover, .green-blue-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a :hover, .yellow-turquoise-hei .hei-partnering .green-blue-hei .field--name-field-url a :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 1535, ../sass/_mixins.scss */
  .green-blue-hei .hei-top-button a, .green-blue-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a, .yellow-turquoise-hei .hei-partnering .green-blue-hei .field--name-field-url a {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1535, ../sass/_mixins.scss */
  .green-blue-hei .hei-top-button a, .green-blue-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a, .yellow-turquoise-hei .hei-partnering .green-blue-hei .field--name-field-url a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .green-blue-hei .hei-top-button a, .green-blue-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a, .yellow-turquoise-hei .hei-partnering .green-blue-hei .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1535, ../sass/_mixins.scss */
  .green-blue-hei .hei-top-button a, .green-blue-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a, .yellow-turquoise-hei .hei-partnering .green-blue-hei .field--name-field-url a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .green-blue-hei .hei-top-button a, .green-blue-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a, .yellow-turquoise-hei .hei-partnering .green-blue-hei .field--name-field-url a {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.green-blue-hei .hei-top-button a:hover, .green-blue-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a:hover, .yellow-turquoise-hei .hei-partnering .green-blue-hei .field--name-field-url a:hover {
  background-color: #f6c163;
  border-color: #f6c163;
  color: #222;
  text-decoration: none;
}
/* line 1539, ../sass/_mixins.scss */
.green-blue-hei .hei-top-button a:focus, .green-blue-hei .yellow-turquoise-hei .hei-partnering .field--name-field-url a:focus, .yellow-turquoise-hei .hei-partnering .green-blue-hei .field--name-field-url a:focus {
  outline: #bf0d2e dotted 3px !important;
}
/* line 453, ../sass/components/_hei.scss */
.green-blue-hei .hei-standard-button, .green-blue-hei .hei-grants .field--name-field-url, .hei-grants .green-blue-hei .field--name-field-url, .green-blue-hei .hei-health-professionals .field--name-field-url, .hei-health-professionals .green-blue-hei .field--name-field-url {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 453, ../sass/components/_hei.scss */
  .green-blue-hei .hei-standard-button, .green-blue-hei .hei-grants .field--name-field-url, .hei-grants .green-blue-hei .field--name-field-url, .green-blue-hei .hei-health-professionals .field--name-field-url, .hei-health-professionals .green-blue-hei .field--name-field-url {
    margin-top: 0.75em;
    margin-bottom: 0.75em;
  }
}
/* line 1535, ../sass/_mixins.scss */
.green-blue-hei .hei-standard-button a, .green-blue-hei .hei-grants .field--name-field-url a, .hei-grants .green-blue-hei .field--name-field-url a, .green-blue-hei .hei-health-professionals .field--name-field-url a, .hei-health-professionals .green-blue-hei .field--name-field-url a {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #222;
  text-decoration: none;
  background-color: #93c648;
  border: 1px solid #93c648;
  padding: 0.8em 3em;
}
@media all and (min-width: 1440px) {
  /* line 1535, ../sass/_mixins.scss */
  .green-blue-hei .hei-standard-button a, .green-blue-hei .hei-grants .field--name-field-url a, .hei-grants .green-blue-hei .field--name-field-url a, .green-blue-hei .hei-health-professionals .field--name-field-url a, .hei-health-professionals .green-blue-hei .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1535, ../sass/_mixins.scss */
  .green-blue-hei .hei-standard-button a, .green-blue-hei .hei-grants .field--name-field-url a, .hei-grants .green-blue-hei .field--name-field-url a, .green-blue-hei .hei-health-professionals .field--name-field-url a, .hei-health-professionals .green-blue-hei .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .green-blue-hei .hei-standard-button a, .green-blue-hei .hei-grants .field--name-field-url a, .hei-grants .green-blue-hei .field--name-field-url a, .green-blue-hei .hei-health-professionals .field--name-field-url a, .hei-health-professionals .green-blue-hei .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1535, ../sass/_mixins.scss */
  .green-blue-hei .hei-standard-button a, .green-blue-hei .hei-grants .field--name-field-url a, .hei-grants .green-blue-hei .field--name-field-url a, .green-blue-hei .hei-health-professionals .field--name-field-url a, .hei-health-professionals .green-blue-hei .field--name-field-url a {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.green-blue-hei .hei-standard-button a :hover, .green-blue-hei .hei-grants .field--name-field-url a :hover, .hei-grants .green-blue-hei .field--name-field-url a :hover, .green-blue-hei .hei-health-professionals .field--name-field-url a :hover, .hei-health-professionals .green-blue-hei .field--name-field-url a :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 1535, ../sass/_mixins.scss */
  .green-blue-hei .hei-standard-button a, .green-blue-hei .hei-grants .field--name-field-url a, .hei-grants .green-blue-hei .field--name-field-url a, .green-blue-hei .hei-health-professionals .field--name-field-url a, .hei-health-professionals .green-blue-hei .field--name-field-url a {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1535, ../sass/_mixins.scss */
  .green-blue-hei .hei-standard-button a, .green-blue-hei .hei-grants .field--name-field-url a, .hei-grants .green-blue-hei .field--name-field-url a, .green-blue-hei .hei-health-professionals .field--name-field-url a, .hei-health-professionals .green-blue-hei .field--name-field-url a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .green-blue-hei .hei-standard-button a, .green-blue-hei .hei-grants .field--name-field-url a, .hei-grants .green-blue-hei .field--name-field-url a, .green-blue-hei .hei-health-professionals .field--name-field-url a, .hei-health-professionals .green-blue-hei .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1535, ../sass/_mixins.scss */
  .green-blue-hei .hei-standard-button a, .green-blue-hei .hei-grants .field--name-field-url a, .hei-grants .green-blue-hei .field--name-field-url a, .green-blue-hei .hei-health-professionals .field--name-field-url a, .hei-health-professionals .green-blue-hei .field--name-field-url a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .green-blue-hei .hei-standard-button a, .green-blue-hei .hei-grants .field--name-field-url a, .hei-grants .green-blue-hei .field--name-field-url a, .green-blue-hei .hei-health-professionals .field--name-field-url a, .hei-health-professionals .green-blue-hei .field--name-field-url a {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.green-blue-hei .hei-standard-button a:hover, .green-blue-hei .hei-grants .field--name-field-url a:hover, .hei-grants .green-blue-hei .field--name-field-url a:hover, .green-blue-hei .hei-health-professionals .field--name-field-url a:hover, .hei-health-professionals .green-blue-hei .field--name-field-url a:hover {
  background-color: #ecaa46;
  border-color: #ecaa46;
  color: #222;
  text-decoration: none;
}
/* line 1539, ../sass/_mixins.scss */
.green-blue-hei .hei-standard-button a:focus, .green-blue-hei .hei-grants .field--name-field-url a:focus, .hei-grants .green-blue-hei .field--name-field-url a:focus, .green-blue-hei .hei-health-professionals .field--name-field-url a:focus, .hei-health-professionals .green-blue-hei .field--name-field-url a:focus {
  outline: #bf0d2e dotted 3px !important;
}
/* line 456, ../sass/components/_hei.scss */
.green-blue-hei .hei-submit-button {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 456, ../sass/components/_hei.scss */
  .green-blue-hei .hei-submit-button {
    margin-top: 0.75em;
    margin-bottom: 0.75em;
  }
}
/* line 1535, ../sass/_mixins.scss */
.green-blue-hei .hei-submit-button a {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #222;
  text-decoration: none;
  background-color: #93c648;
  border: 1px solid #93c648;
  padding: 0.8em 3em;
}
@media all and (min-width: 1440px) {
  /* line 1535, ../sass/_mixins.scss */
  .green-blue-hei .hei-submit-button a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1535, ../sass/_mixins.scss */
  .green-blue-hei .hei-submit-button a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .green-blue-hei .hei-submit-button a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1535, ../sass/_mixins.scss */
  .green-blue-hei .hei-submit-button a {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.green-blue-hei .hei-submit-button a :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 1535, ../sass/_mixins.scss */
  .green-blue-hei .hei-submit-button a {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1535, ../sass/_mixins.scss */
  .green-blue-hei .hei-submit-button a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .green-blue-hei .hei-submit-button a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1535, ../sass/_mixins.scss */
  .green-blue-hei .hei-submit-button a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .green-blue-hei .hei-submit-button a {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.green-blue-hei .hei-submit-button a:hover {
  background-color: #f6c163;
  border-color: #f6c163;
  color: #222;
  text-decoration: none;
}
/* line 1539, ../sass/_mixins.scss */
.green-blue-hei .hei-submit-button a:focus {
  outline: #bf0d2e dotted 3px !important;
}
/* line 460, ../sass/components/_hei.scss */
.green-blue-hei .hei-partnering .field--name-field-url a {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  background-color: #1a568c;
  border: 1px solid #1a568c;
  padding: 0.8em 3em;
  display: table !important;
  background-image: none;
}
@media all and (min-width: 1440px) {
  /* line 460, ../sass/components/_hei.scss */
  .green-blue-hei .hei-partnering .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 460, ../sass/components/_hei.scss */
  .green-blue-hei .hei-partnering .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 460, ../sass/components/_hei.scss */
  .green-blue-hei .hei-partnering .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 460, ../sass/components/_hei.scss */
  .green-blue-hei .hei-partnering .field--name-field-url a {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.green-blue-hei .hei-partnering .field--name-field-url a :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 460, ../sass/components/_hei.scss */
  .green-blue-hei .hei-partnering .field--name-field-url a {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 460, ../sass/components/_hei.scss */
  .green-blue-hei .hei-partnering .field--name-field-url a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 460, ../sass/components/_hei.scss */
  .green-blue-hei .hei-partnering .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 460, ../sass/components/_hei.scss */
  .green-blue-hei .hei-partnering .field--name-field-url a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 460, ../sass/components/_hei.scss */
  .green-blue-hei .hei-partnering .field--name-field-url a {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.green-blue-hei .hei-partnering .field--name-field-url a:hover {
  background-color: #102d66;
  border-color: #102d66;
  color: #fff;
  text-decoration: none;
}
/* line 2379, ../sass/_mixins.scss */
.green-blue-hei .hei-partnering .field--name-field-url a:focus, .green-blue-hei .hei-partnering .field--name-field-url a:active {
  outline: #bf0d2e dotted 3px !important;
}
/* line 464, ../sass/components/_hei.scss */
.green-blue-hei .hei-news {
  background-color: #0c5fa7;
}
/* line 467, ../sass/components/_hei.scss */
.green-blue-hei .hei-news a.viewalllink, .green-blue-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .green-blue-hei .hei-news .field--name-field-url > a, .green-blue-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .green-blue-hei .hei-news a, .green-blue-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .green-blue-hei .hei-news a, .green-blue-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .green-blue-hei .hei-news .field--name-field-promotional-link > a, .green-blue-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .green-blue-hei .hei-news a, .green-blue-hei .hei-news .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .green-blue-hei .hei-news .field--name-field-url > a {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #1a568c;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #fff;
  padding: 0.8em 3em;
  display: table !important;
  background-image: none;
}
@media all and (min-width: 1440px) {
  /* line 467, ../sass/components/_hei.scss */
  .green-blue-hei .hei-news a.viewalllink, .green-blue-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .green-blue-hei .hei-news .field--name-field-url > a, .green-blue-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .green-blue-hei .hei-news a, .green-blue-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .green-blue-hei .hei-news a, .green-blue-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .green-blue-hei .hei-news .field--name-field-promotional-link > a, .green-blue-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .green-blue-hei .hei-news a, .green-blue-hei .hei-news .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .green-blue-hei .hei-news .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 467, ../sass/components/_hei.scss */
  .green-blue-hei .hei-news a.viewalllink, .green-blue-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .green-blue-hei .hei-news .field--name-field-url > a, .green-blue-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .green-blue-hei .hei-news a, .green-blue-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .green-blue-hei .hei-news a, .green-blue-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .green-blue-hei .hei-news .field--name-field-promotional-link > a, .green-blue-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .green-blue-hei .hei-news a, .green-blue-hei .hei-news .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .green-blue-hei .hei-news .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 467, ../sass/components/_hei.scss */
  .green-blue-hei .hei-news a.viewalllink, .green-blue-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .green-blue-hei .hei-news .field--name-field-url > a, .green-blue-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .green-blue-hei .hei-news a, .green-blue-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .green-blue-hei .hei-news a, .green-blue-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .green-blue-hei .hei-news .field--name-field-promotional-link > a, .green-blue-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .green-blue-hei .hei-news a, .green-blue-hei .hei-news .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .green-blue-hei .hei-news .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 467, ../sass/components/_hei.scss */
  .green-blue-hei .hei-news a.viewalllink, .green-blue-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .green-blue-hei .hei-news .field--name-field-url > a, .green-blue-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .green-blue-hei .hei-news a, .green-blue-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .green-blue-hei .hei-news a, .green-blue-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .green-blue-hei .hei-news .field--name-field-promotional-link > a, .green-blue-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .green-blue-hei .hei-news a, .green-blue-hei .hei-news .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .green-blue-hei .hei-news .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.green-blue-hei .hei-news a.viewalllink :hover, .green-blue-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a :hover, .promoted-content-container .flexItemText .green-blue-hei .hei-news .field--name-field-url > a :hover, .green-blue-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a :hover, .contact-nhlbi--landing .field--name-field-directions-link .green-blue-hei .hei-news a :hover, .green-blue-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a :hover, .isi-job-opportunities--landing .field--name-field-vacancies-link .green-blue-hei .hei-news a :hover, .green-blue-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a :hover, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .green-blue-hei .hei-news .field--name-field-promotional-link > a :hover, .green-blue-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a :hover, .fixedDarkBluePane .field--name-field-traveling-and-security .green-blue-hei .hei-news a :hover, .green-blue-hei .hei-news .field--name-field-community-card .field--name-field-url > a :hover, .field--name-field-community-card .green-blue-hei .hei-news .field--name-field-url > a :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 467, ../sass/components/_hei.scss */
  .green-blue-hei .hei-news a.viewalllink, .green-blue-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .green-blue-hei .hei-news .field--name-field-url > a, .green-blue-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .green-blue-hei .hei-news a, .green-blue-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .green-blue-hei .hei-news a, .green-blue-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .green-blue-hei .hei-news .field--name-field-promotional-link > a, .green-blue-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .green-blue-hei .hei-news a, .green-blue-hei .hei-news .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .green-blue-hei .hei-news .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 467, ../sass/components/_hei.scss */
  .green-blue-hei .hei-news a.viewalllink, .green-blue-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .green-blue-hei .hei-news .field--name-field-url > a, .green-blue-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .green-blue-hei .hei-news a, .green-blue-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .green-blue-hei .hei-news a, .green-blue-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .green-blue-hei .hei-news .field--name-field-promotional-link > a, .green-blue-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .green-blue-hei .hei-news a, .green-blue-hei .hei-news .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .green-blue-hei .hei-news .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 467, ../sass/components/_hei.scss */
  .green-blue-hei .hei-news a.viewalllink, .green-blue-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .green-blue-hei .hei-news .field--name-field-url > a, .green-blue-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .green-blue-hei .hei-news a, .green-blue-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .green-blue-hei .hei-news a, .green-blue-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .green-blue-hei .hei-news .field--name-field-promotional-link > a, .green-blue-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .green-blue-hei .hei-news a, .green-blue-hei .hei-news .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .green-blue-hei .hei-news .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 467, ../sass/components/_hei.scss */
  .green-blue-hei .hei-news a.viewalllink, .green-blue-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .green-blue-hei .hei-news .field--name-field-url > a, .green-blue-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .green-blue-hei .hei-news a, .green-blue-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .green-blue-hei .hei-news a, .green-blue-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .green-blue-hei .hei-news .field--name-field-promotional-link > a, .green-blue-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .green-blue-hei .hei-news a, .green-blue-hei .hei-news .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .green-blue-hei .hei-news .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 467, ../sass/components/_hei.scss */
  .green-blue-hei .hei-news a.viewalllink, .green-blue-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .green-blue-hei .hei-news .field--name-field-url > a, .green-blue-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .green-blue-hei .hei-news a, .green-blue-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .green-blue-hei .hei-news a, .green-blue-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .green-blue-hei .hei-news .field--name-field-promotional-link > a, .green-blue-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .green-blue-hei .hei-news a, .green-blue-hei .hei-news .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .green-blue-hei .hei-news .field--name-field-url > a {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.green-blue-hei .hei-news a.viewalllink:hover, .green-blue-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a:hover, .promoted-content-container .flexItemText .green-blue-hei .hei-news .field--name-field-url > a:hover, .green-blue-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a:hover, .contact-nhlbi--landing .field--name-field-directions-link .green-blue-hei .hei-news a:hover, .green-blue-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a:hover, .isi-job-opportunities--landing .field--name-field-vacancies-link .green-blue-hei .hei-news a:hover, .green-blue-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:hover, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .green-blue-hei .hei-news .field--name-field-promotional-link > a:hover, .green-blue-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a:hover, .fixedDarkBluePane .field--name-field-traveling-and-security .green-blue-hei .hei-news a:hover, .green-blue-hei .hei-news .field--name-field-community-card .field--name-field-url > a:hover, .field--name-field-community-card .green-blue-hei .hei-news .field--name-field-url > a:hover {
  background-color: #f6c163;
  border-color: #f6c163;
  color: #222;
  text-decoration: none;
}
/* line 2379, ../sass/_mixins.scss */
.green-blue-hei .hei-news a.viewalllink:focus, .green-blue-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a:focus, .promoted-content-container .flexItemText .green-blue-hei .hei-news .field--name-field-url > a:focus, .green-blue-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a:focus, .contact-nhlbi--landing .field--name-field-directions-link .green-blue-hei .hei-news a:focus, .green-blue-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a:focus, .isi-job-opportunities--landing .field--name-field-vacancies-link .green-blue-hei .hei-news a:focus, .green-blue-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:focus, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .green-blue-hei .hei-news .field--name-field-promotional-link > a:focus, .green-blue-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a:focus, .fixedDarkBluePane .field--name-field-traveling-and-security .green-blue-hei .hei-news a:focus, .green-blue-hei .hei-news .field--name-field-community-card .field--name-field-url > a:focus, .field--name-field-community-card .green-blue-hei .hei-news .field--name-field-url > a:focus, .green-blue-hei .hei-news a.viewalllink:active, .green-blue-hei .hei-news .promoted-content-container .flexItemText .field--name-field-url > a:active, .promoted-content-container .flexItemText .green-blue-hei .hei-news .field--name-field-url > a:active, .green-blue-hei .hei-news .contact-nhlbi--landing .field--name-field-directions-link a:active, .contact-nhlbi--landing .field--name-field-directions-link .green-blue-hei .hei-news a:active, .green-blue-hei .hei-news .isi-job-opportunities--landing .field--name-field-vacancies-link a:active, .isi-job-opportunities--landing .field--name-field-vacancies-link .green-blue-hei .hei-news a:active, .green-blue-hei .hei-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:active, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .green-blue-hei .hei-news .field--name-field-promotional-link > a:active, .green-blue-hei .hei-news .fixedDarkBluePane .field--name-field-traveling-and-security a:active, .fixedDarkBluePane .field--name-field-traveling-and-security .green-blue-hei .hei-news a:active, .green-blue-hei .hei-news .field--name-field-community-card .field--name-field-url > a:active, .field--name-field-community-card .green-blue-hei .hei-news .field--name-field-url > a:active {
  outline: #fff dotted 3px !important;
}
/* line 471, ../sass/components/_hei.scss */
.green-blue-hei .hei-events {
  background-color: #d7e7f4;
}
/* line 474, ../sass/components/_hei.scss */
.green-blue-hei .hei-events .hei-related-events .sfa-teaser-container {
  color: #222;
}
/* line 478, ../sass/components/_hei.scss */
.green-blue-hei .hei-events .hei-related-events .flexItemText .herobannertitle, .green-blue-hei .hei-events .hei-related-events .flexItemText .herobannertitle-grey {
  color: #222;
  background-color: transparent;
}
/* line 126, ../sass/_mixins.scss */
.green-blue-hei .hei-events .hei-related-events .flexItemText .herobannertitle a, .green-blue-hei .hei-events .hei-related-events .flexItemText .herobannertitle-grey a, .green-blue-hei .hei-events .hei-related-events .flexItemText .herobannertitle a:link, .green-blue-hei .hei-events .hei-related-events .flexItemText .herobannertitle-grey a:link {
  color: #222;
  text-decoration: underline;
}
/* line 136, ../sass/_mixins.scss */
.green-blue-hei .hei-events .hei-related-events .flexItemText .herobannertitle a:visited, .green-blue-hei .hei-events .hei-related-events .flexItemText .herobannertitle-grey a:visited {
  color: #6f57B5;
}
/* line 145, ../sass/_mixins.scss */
.green-blue-hei .hei-events .hei-related-events .flexItemText .herobannertitle a:hover, .green-blue-hei .hei-events .hei-related-events .flexItemText .herobannertitle-grey a:hover {
  font-weight: bold;
}
/* line 154, ../sass/_mixins.scss */
.green-blue-hei .hei-events .hei-related-events .flexItemText .herobannertitle h1, .green-blue-hei .hei-events .hei-related-events .flexItemText .herobannertitle-grey h1, .green-blue-hei .hei-events .hei-related-events .flexItemText .herobannertitle .photocredit, .green-blue-hei .hei-events .hei-related-events .flexItemText .herobannertitle-grey .photocredit {
  color: #222;
}
/* line 1886, ../sass/_mixins.scss */
.green-blue-hei .hei-events .hei-related-events .flexItemText .herobannertitle a, .green-blue-hei .hei-events .hei-related-events .flexItemText .herobannertitle-grey a {
  color: #222;
}
/* line 1889, ../sass/_mixins.scss */
.green-blue-hei .hei-events .hei-related-events .flexItemText .herobannertitle a:link, .green-blue-hei .hei-events .hei-related-events .flexItemText .herobannertitle-grey a:link {
  color: #222;
}
/* line 1897, ../sass/_mixins.scss */
.green-blue-hei .hei-events .hei-related-events .flexItemText .herobannertitle a:visited, .green-blue-hei .hei-events .hei-related-events .flexItemText .herobannertitle-grey a:visited {
  color: #6f57B5;
}
/* line 482, ../sass/components/_hei.scss */
.green-blue-hei .hei-events .hei-related-events .flexItemText a.viewalllink, .green-blue-hei .hei-events .hei-related-events .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .green-blue-hei .hei-events .hei-related-events .flexItemText .field--name-field-url > a, .green-blue-hei .hei-events .hei-related-events .flexItemText .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .green-blue-hei .hei-events .hei-related-events .flexItemText a, .green-blue-hei .hei-events .hei-related-events .flexItemText .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .green-blue-hei .hei-events .hei-related-events .flexItemText a, .green-blue-hei .hei-events .hei-related-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .green-blue-hei .hei-events .hei-related-events .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .green-blue-hei .hei-events .hei-related-events .flexItemText .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .green-blue-hei .hei-events .hei-related-events .flexItemText a, .green-blue-hei .hei-events .hei-related-events .flexItemText .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .green-blue-hei .hei-events .hei-related-events .flexItemText .field--name-field-url > a {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  background-color: #1a568c;
  border: 1px solid #1a568c;
  padding: 0.8em 3em;
  display: table !important;
  background-image: none;
}
@media all and (min-width: 1440px) {
  /* line 482, ../sass/components/_hei.scss */
  .green-blue-hei .hei-events .hei-related-events .flexItemText a.viewalllink, .green-blue-hei .hei-events .hei-related-events .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .green-blue-hei .hei-events .hei-related-events .flexItemText .field--name-field-url > a, .green-blue-hei .hei-events .hei-related-events .flexItemText .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .green-blue-hei .hei-events .hei-related-events .flexItemText a, .green-blue-hei .hei-events .hei-related-events .flexItemText .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .green-blue-hei .hei-events .hei-related-events .flexItemText a, .green-blue-hei .hei-events .hei-related-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .green-blue-hei .hei-events .hei-related-events .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .green-blue-hei .hei-events .hei-related-events .flexItemText .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .green-blue-hei .hei-events .hei-related-events .flexItemText a, .green-blue-hei .hei-events .hei-related-events .flexItemText .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .green-blue-hei .hei-events .hei-related-events .flexItemText .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 482, ../sass/components/_hei.scss */
  .green-blue-hei .hei-events .hei-related-events .flexItemText a.viewalllink, .green-blue-hei .hei-events .hei-related-events .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .green-blue-hei .hei-events .hei-related-events .flexItemText .field--name-field-url > a, .green-blue-hei .hei-events .hei-related-events .flexItemText .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .green-blue-hei .hei-events .hei-related-events .flexItemText a, .green-blue-hei .hei-events .hei-related-events .flexItemText .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .green-blue-hei .hei-events .hei-related-events .flexItemText a, .green-blue-hei .hei-events .hei-related-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .green-blue-hei .hei-events .hei-related-events .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .green-blue-hei .hei-events .hei-related-events .flexItemText .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .green-blue-hei .hei-events .hei-related-events .flexItemText a, .green-blue-hei .hei-events .hei-related-events .flexItemText .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .green-blue-hei .hei-events .hei-related-events .flexItemText .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 482, ../sass/components/_hei.scss */
  .green-blue-hei .hei-events .hei-related-events .flexItemText a.viewalllink, .green-blue-hei .hei-events .hei-related-events .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .green-blue-hei .hei-events .hei-related-events .flexItemText .field--name-field-url > a, .green-blue-hei .hei-events .hei-related-events .flexItemText .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .green-blue-hei .hei-events .hei-related-events .flexItemText a, .green-blue-hei .hei-events .hei-related-events .flexItemText .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .green-blue-hei .hei-events .hei-related-events .flexItemText a, .green-blue-hei .hei-events .hei-related-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .green-blue-hei .hei-events .hei-related-events .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .green-blue-hei .hei-events .hei-related-events .flexItemText .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .green-blue-hei .hei-events .hei-related-events .flexItemText a, .green-blue-hei .hei-events .hei-related-events .flexItemText .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .green-blue-hei .hei-events .hei-related-events .flexItemText .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 482, ../sass/components/_hei.scss */
  .green-blue-hei .hei-events .hei-related-events .flexItemText a.viewalllink, .green-blue-hei .hei-events .hei-related-events .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .green-blue-hei .hei-events .hei-related-events .flexItemText .field--name-field-url > a, .green-blue-hei .hei-events .hei-related-events .flexItemText .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .green-blue-hei .hei-events .hei-related-events .flexItemText a, .green-blue-hei .hei-events .hei-related-events .flexItemText .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .green-blue-hei .hei-events .hei-related-events .flexItemText a, .green-blue-hei .hei-events .hei-related-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .green-blue-hei .hei-events .hei-related-events .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .green-blue-hei .hei-events .hei-related-events .flexItemText .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .green-blue-hei .hei-events .hei-related-events .flexItemText a, .green-blue-hei .hei-events .hei-related-events .flexItemText .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .green-blue-hei .hei-events .hei-related-events .flexItemText .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.green-blue-hei .hei-events .hei-related-events .flexItemText a.viewalllink :hover, .green-blue-hei .hei-events .hei-related-events .promoted-content-container .flexItemText .field--name-field-url > a :hover, .promoted-content-container .green-blue-hei .hei-events .hei-related-events .flexItemText .field--name-field-url > a :hover, .green-blue-hei .hei-events .hei-related-events .flexItemText .contact-nhlbi--landing .field--name-field-directions-link a :hover, .contact-nhlbi--landing .field--name-field-directions-link .green-blue-hei .hei-events .hei-related-events .flexItemText a :hover, .green-blue-hei .hei-events .hei-related-events .flexItemText .isi-job-opportunities--landing .field--name-field-vacancies-link a :hover, .isi-job-opportunities--landing .field--name-field-vacancies-link .green-blue-hei .hei-events .hei-related-events .flexItemText a :hover, .green-blue-hei .hei-events .hei-related-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a :hover, .field--name-field-promotional-card > .field__item .green-blue-hei .hei-events .hei-related-events .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a :hover, .green-blue-hei .hei-events .hei-related-events .flexItemText .fixedDarkBluePane .field--name-field-traveling-and-security a :hover, .fixedDarkBluePane .field--name-field-traveling-and-security .green-blue-hei .hei-events .hei-related-events .flexItemText a :hover, .green-blue-hei .hei-events .hei-related-events .flexItemText .field--name-field-community-card .field--name-field-url > a :hover, .field--name-field-community-card .green-blue-hei .hei-events .hei-related-events .flexItemText .field--name-field-url > a :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 482, ../sass/components/_hei.scss */
  .green-blue-hei .hei-events .hei-related-events .flexItemText a.viewalllink, .green-blue-hei .hei-events .hei-related-events .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .green-blue-hei .hei-events .hei-related-events .flexItemText .field--name-field-url > a, .green-blue-hei .hei-events .hei-related-events .flexItemText .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .green-blue-hei .hei-events .hei-related-events .flexItemText a, .green-blue-hei .hei-events .hei-related-events .flexItemText .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .green-blue-hei .hei-events .hei-related-events .flexItemText a, .green-blue-hei .hei-events .hei-related-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .green-blue-hei .hei-events .hei-related-events .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .green-blue-hei .hei-events .hei-related-events .flexItemText .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .green-blue-hei .hei-events .hei-related-events .flexItemText a, .green-blue-hei .hei-events .hei-related-events .flexItemText .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .green-blue-hei .hei-events .hei-related-events .flexItemText .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 482, ../sass/components/_hei.scss */
  .green-blue-hei .hei-events .hei-related-events .flexItemText a.viewalllink, .green-blue-hei .hei-events .hei-related-events .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .green-blue-hei .hei-events .hei-related-events .flexItemText .field--name-field-url > a, .green-blue-hei .hei-events .hei-related-events .flexItemText .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .green-blue-hei .hei-events .hei-related-events .flexItemText a, .green-blue-hei .hei-events .hei-related-events .flexItemText .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .green-blue-hei .hei-events .hei-related-events .flexItemText a, .green-blue-hei .hei-events .hei-related-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .green-blue-hei .hei-events .hei-related-events .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .green-blue-hei .hei-events .hei-related-events .flexItemText .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .green-blue-hei .hei-events .hei-related-events .flexItemText a, .green-blue-hei .hei-events .hei-related-events .flexItemText .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .green-blue-hei .hei-events .hei-related-events .flexItemText .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 482, ../sass/components/_hei.scss */
  .green-blue-hei .hei-events .hei-related-events .flexItemText a.viewalllink, .green-blue-hei .hei-events .hei-related-events .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .green-blue-hei .hei-events .hei-related-events .flexItemText .field--name-field-url > a, .green-blue-hei .hei-events .hei-related-events .flexItemText .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .green-blue-hei .hei-events .hei-related-events .flexItemText a, .green-blue-hei .hei-events .hei-related-events .flexItemText .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .green-blue-hei .hei-events .hei-related-events .flexItemText a, .green-blue-hei .hei-events .hei-related-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .green-blue-hei .hei-events .hei-related-events .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .green-blue-hei .hei-events .hei-related-events .flexItemText .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .green-blue-hei .hei-events .hei-related-events .flexItemText a, .green-blue-hei .hei-events .hei-related-events .flexItemText .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .green-blue-hei .hei-events .hei-related-events .flexItemText .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 482, ../sass/components/_hei.scss */
  .green-blue-hei .hei-events .hei-related-events .flexItemText a.viewalllink, .green-blue-hei .hei-events .hei-related-events .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .green-blue-hei .hei-events .hei-related-events .flexItemText .field--name-field-url > a, .green-blue-hei .hei-events .hei-related-events .flexItemText .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .green-blue-hei .hei-events .hei-related-events .flexItemText a, .green-blue-hei .hei-events .hei-related-events .flexItemText .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .green-blue-hei .hei-events .hei-related-events .flexItemText a, .green-blue-hei .hei-events .hei-related-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .green-blue-hei .hei-events .hei-related-events .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .green-blue-hei .hei-events .hei-related-events .flexItemText .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .green-blue-hei .hei-events .hei-related-events .flexItemText a, .green-blue-hei .hei-events .hei-related-events .flexItemText .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .green-blue-hei .hei-events .hei-related-events .flexItemText .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 482, ../sass/components/_hei.scss */
  .green-blue-hei .hei-events .hei-related-events .flexItemText a.viewalllink, .green-blue-hei .hei-events .hei-related-events .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .green-blue-hei .hei-events .hei-related-events .flexItemText .field--name-field-url > a, .green-blue-hei .hei-events .hei-related-events .flexItemText .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .green-blue-hei .hei-events .hei-related-events .flexItemText a, .green-blue-hei .hei-events .hei-related-events .flexItemText .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .green-blue-hei .hei-events .hei-related-events .flexItemText a, .green-blue-hei .hei-events .hei-related-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .green-blue-hei .hei-events .hei-related-events .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .green-blue-hei .hei-events .hei-related-events .flexItemText .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .green-blue-hei .hei-events .hei-related-events .flexItemText a, .green-blue-hei .hei-events .hei-related-events .flexItemText .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .green-blue-hei .hei-events .hei-related-events .flexItemText .field--name-field-url > a {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.green-blue-hei .hei-events .hei-related-events .flexItemText a.viewalllink:hover, .green-blue-hei .hei-events .hei-related-events .promoted-content-container .flexItemText .field--name-field-url > a:hover, .promoted-content-container .green-blue-hei .hei-events .hei-related-events .flexItemText .field--name-field-url > a:hover, .green-blue-hei .hei-events .hei-related-events .flexItemText .contact-nhlbi--landing .field--name-field-directions-link a:hover, .contact-nhlbi--landing .field--name-field-directions-link .green-blue-hei .hei-events .hei-related-events .flexItemText a:hover, .green-blue-hei .hei-events .hei-related-events .flexItemText .isi-job-opportunities--landing .field--name-field-vacancies-link a:hover, .isi-job-opportunities--landing .field--name-field-vacancies-link .green-blue-hei .hei-events .hei-related-events .flexItemText a:hover, .green-blue-hei .hei-events .hei-related-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:hover, .field--name-field-promotional-card > .field__item .green-blue-hei .hei-events .hei-related-events .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:hover, .green-blue-hei .hei-events .hei-related-events .flexItemText .fixedDarkBluePane .field--name-field-traveling-and-security a:hover, .fixedDarkBluePane .field--name-field-traveling-and-security .green-blue-hei .hei-events .hei-related-events .flexItemText a:hover, .green-blue-hei .hei-events .hei-related-events .flexItemText .field--name-field-community-card .field--name-field-url > a:hover, .field--name-field-community-card .green-blue-hei .hei-events .hei-related-events .flexItemText .field--name-field-url > a:hover {
  background-color: #102d66;
  border-color: #102d66;
  color: #fff;
  text-decoration: none;
}
/* line 2379, ../sass/_mixins.scss */
.green-blue-hei .hei-events .hei-related-events .flexItemText a.viewalllink:focus, .green-blue-hei .hei-events .hei-related-events .promoted-content-container .flexItemText .field--name-field-url > a:focus, .promoted-content-container .green-blue-hei .hei-events .hei-related-events .flexItemText .field--name-field-url > a:focus, .green-blue-hei .hei-events .hei-related-events .flexItemText .contact-nhlbi--landing .field--name-field-directions-link a:focus, .contact-nhlbi--landing .field--name-field-directions-link .green-blue-hei .hei-events .hei-related-events .flexItemText a:focus, .green-blue-hei .hei-events .hei-related-events .flexItemText .isi-job-opportunities--landing .field--name-field-vacancies-link a:focus, .isi-job-opportunities--landing .field--name-field-vacancies-link .green-blue-hei .hei-events .hei-related-events .flexItemText a:focus, .green-blue-hei .hei-events .hei-related-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:focus, .field--name-field-promotional-card > .field__item .green-blue-hei .hei-events .hei-related-events .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:focus, .green-blue-hei .hei-events .hei-related-events .flexItemText .fixedDarkBluePane .field--name-field-traveling-and-security a:focus, .fixedDarkBluePane .field--name-field-traveling-and-security .green-blue-hei .hei-events .hei-related-events .flexItemText a:focus, .green-blue-hei .hei-events .hei-related-events .flexItemText .field--name-field-community-card .field--name-field-url > a:focus, .field--name-field-community-card .green-blue-hei .hei-events .hei-related-events .flexItemText .field--name-field-url > a:focus, .green-blue-hei .hei-events .hei-related-events .flexItemText a.viewalllink:active, .green-blue-hei .hei-events .hei-related-events .promoted-content-container .flexItemText .field--name-field-url > a:active, .promoted-content-container .green-blue-hei .hei-events .hei-related-events .flexItemText .field--name-field-url > a:active, .green-blue-hei .hei-events .hei-related-events .flexItemText .contact-nhlbi--landing .field--name-field-directions-link a:active, .contact-nhlbi--landing .field--name-field-directions-link .green-blue-hei .hei-events .hei-related-events .flexItemText a:active, .green-blue-hei .hei-events .hei-related-events .flexItemText .isi-job-opportunities--landing .field--name-field-vacancies-link a:active, .isi-job-opportunities--landing .field--name-field-vacancies-link .green-blue-hei .hei-events .hei-related-events .flexItemText a:active, .green-blue-hei .hei-events .hei-related-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:active, .field--name-field-promotional-card > .field__item .green-blue-hei .hei-events .hei-related-events .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:active, .green-blue-hei .hei-events .hei-related-events .flexItemText .fixedDarkBluePane .field--name-field-traveling-and-security a:active, .fixedDarkBluePane .field--name-field-traveling-and-security .green-blue-hei .hei-events .hei-related-events .flexItemText a:active, .green-blue-hei .hei-events .hei-related-events .flexItemText .field--name-field-community-card .field--name-field-url > a:active, .field--name-field-community-card .green-blue-hei .hei-events .hei-related-events .flexItemText .field--name-field-url > a:active {
  outline: #bf0d2e dotted 3px !important;
}
/* line 485, ../sass/components/_hei.scss */
.green-blue-hei .hei-events .hei-related-events .flexItemText .eventdatesLocationType {
  color: #222;
}
/* line 491, ../sass/components/_hei.scss */
.green-blue-hei .hei-events .hei-related-events .flexItemText .eventdatesLocationType .eventLocation .map-icon-top-page {
  background-position: center;
}
/* line 500, ../sass/components/_hei.scss */
.green-blue-hei #newsletter-block-alerts .subscribe {
  background-color: #93c648;
  color: #222;
}
/* line 505, ../sass/components/_hei.scss */
.green-blue-hei .hei-community a.viewalllink, .green-blue-hei .hei-community .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .green-blue-hei .hei-community .field--name-field-url > a, .green-blue-hei .hei-community .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .green-blue-hei .hei-community a, .green-blue-hei .hei-community .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .green-blue-hei .hei-community a, .green-blue-hei .hei-community .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .green-blue-hei .hei-community .field--name-field-promotional-link > a, .green-blue-hei .hei-community .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .green-blue-hei .hei-community a, .green-blue-hei .hei-community .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .green-blue-hei .hei-community .field--name-field-url > a {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #1a568c;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #fff;
  padding: 0.8em 3em;
  display: table !important;
  background-image: none;
}
@media all and (min-width: 1440px) {
  /* line 505, ../sass/components/_hei.scss */
  .green-blue-hei .hei-community a.viewalllink, .green-blue-hei .hei-community .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .green-blue-hei .hei-community .field--name-field-url > a, .green-blue-hei .hei-community .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .green-blue-hei .hei-community a, .green-blue-hei .hei-community .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .green-blue-hei .hei-community a, .green-blue-hei .hei-community .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .green-blue-hei .hei-community .field--name-field-promotional-link > a, .green-blue-hei .hei-community .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .green-blue-hei .hei-community a, .green-blue-hei .hei-community .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .green-blue-hei .hei-community .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 505, ../sass/components/_hei.scss */
  .green-blue-hei .hei-community a.viewalllink, .green-blue-hei .hei-community .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .green-blue-hei .hei-community .field--name-field-url > a, .green-blue-hei .hei-community .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .green-blue-hei .hei-community a, .green-blue-hei .hei-community .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .green-blue-hei .hei-community a, .green-blue-hei .hei-community .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .green-blue-hei .hei-community .field--name-field-promotional-link > a, .green-blue-hei .hei-community .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .green-blue-hei .hei-community a, .green-blue-hei .hei-community .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .green-blue-hei .hei-community .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 505, ../sass/components/_hei.scss */
  .green-blue-hei .hei-community a.viewalllink, .green-blue-hei .hei-community .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .green-blue-hei .hei-community .field--name-field-url > a, .green-blue-hei .hei-community .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .green-blue-hei .hei-community a, .green-blue-hei .hei-community .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .green-blue-hei .hei-community a, .green-blue-hei .hei-community .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .green-blue-hei .hei-community .field--name-field-promotional-link > a, .green-blue-hei .hei-community .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .green-blue-hei .hei-community a, .green-blue-hei .hei-community .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .green-blue-hei .hei-community .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 505, ../sass/components/_hei.scss */
  .green-blue-hei .hei-community a.viewalllink, .green-blue-hei .hei-community .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .green-blue-hei .hei-community .field--name-field-url > a, .green-blue-hei .hei-community .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .green-blue-hei .hei-community a, .green-blue-hei .hei-community .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .green-blue-hei .hei-community a, .green-blue-hei .hei-community .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .green-blue-hei .hei-community .field--name-field-promotional-link > a, .green-blue-hei .hei-community .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .green-blue-hei .hei-community a, .green-blue-hei .hei-community .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .green-blue-hei .hei-community .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.green-blue-hei .hei-community a.viewalllink :hover, .green-blue-hei .hei-community .promoted-content-container .flexItemText .field--name-field-url > a :hover, .promoted-content-container .flexItemText .green-blue-hei .hei-community .field--name-field-url > a :hover, .green-blue-hei .hei-community .contact-nhlbi--landing .field--name-field-directions-link a :hover, .contact-nhlbi--landing .field--name-field-directions-link .green-blue-hei .hei-community a :hover, .green-blue-hei .hei-community .isi-job-opportunities--landing .field--name-field-vacancies-link a :hover, .isi-job-opportunities--landing .field--name-field-vacancies-link .green-blue-hei .hei-community a :hover, .green-blue-hei .hei-community .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a :hover, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .green-blue-hei .hei-community .field--name-field-promotional-link > a :hover, .green-blue-hei .hei-community .fixedDarkBluePane .field--name-field-traveling-and-security a :hover, .fixedDarkBluePane .field--name-field-traveling-and-security .green-blue-hei .hei-community a :hover, .green-blue-hei .hei-community .field--name-field-community-card .field--name-field-url > a :hover, .field--name-field-community-card .green-blue-hei .hei-community .field--name-field-url > a :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 505, ../sass/components/_hei.scss */
  .green-blue-hei .hei-community a.viewalllink, .green-blue-hei .hei-community .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .green-blue-hei .hei-community .field--name-field-url > a, .green-blue-hei .hei-community .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .green-blue-hei .hei-community a, .green-blue-hei .hei-community .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .green-blue-hei .hei-community a, .green-blue-hei .hei-community .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .green-blue-hei .hei-community .field--name-field-promotional-link > a, .green-blue-hei .hei-community .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .green-blue-hei .hei-community a, .green-blue-hei .hei-community .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .green-blue-hei .hei-community .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 505, ../sass/components/_hei.scss */
  .green-blue-hei .hei-community a.viewalllink, .green-blue-hei .hei-community .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .green-blue-hei .hei-community .field--name-field-url > a, .green-blue-hei .hei-community .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .green-blue-hei .hei-community a, .green-blue-hei .hei-community .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .green-blue-hei .hei-community a, .green-blue-hei .hei-community .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .green-blue-hei .hei-community .field--name-field-promotional-link > a, .green-blue-hei .hei-community .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .green-blue-hei .hei-community a, .green-blue-hei .hei-community .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .green-blue-hei .hei-community .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 505, ../sass/components/_hei.scss */
  .green-blue-hei .hei-community a.viewalllink, .green-blue-hei .hei-community .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .green-blue-hei .hei-community .field--name-field-url > a, .green-blue-hei .hei-community .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .green-blue-hei .hei-community a, .green-blue-hei .hei-community .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .green-blue-hei .hei-community a, .green-blue-hei .hei-community .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .green-blue-hei .hei-community .field--name-field-promotional-link > a, .green-blue-hei .hei-community .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .green-blue-hei .hei-community a, .green-blue-hei .hei-community .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .green-blue-hei .hei-community .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 505, ../sass/components/_hei.scss */
  .green-blue-hei .hei-community a.viewalllink, .green-blue-hei .hei-community .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .green-blue-hei .hei-community .field--name-field-url > a, .green-blue-hei .hei-community .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .green-blue-hei .hei-community a, .green-blue-hei .hei-community .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .green-blue-hei .hei-community a, .green-blue-hei .hei-community .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .green-blue-hei .hei-community .field--name-field-promotional-link > a, .green-blue-hei .hei-community .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .green-blue-hei .hei-community a, .green-blue-hei .hei-community .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .green-blue-hei .hei-community .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 505, ../sass/components/_hei.scss */
  .green-blue-hei .hei-community a.viewalllink, .green-blue-hei .hei-community .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .green-blue-hei .hei-community .field--name-field-url > a, .green-blue-hei .hei-community .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .green-blue-hei .hei-community a, .green-blue-hei .hei-community .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .green-blue-hei .hei-community a, .green-blue-hei .hei-community .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .green-blue-hei .hei-community .field--name-field-promotional-link > a, .green-blue-hei .hei-community .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .green-blue-hei .hei-community a, .green-blue-hei .hei-community .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .green-blue-hei .hei-community .field--name-field-url > a {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.green-blue-hei .hei-community a.viewalllink:hover, .green-blue-hei .hei-community .promoted-content-container .flexItemText .field--name-field-url > a:hover, .promoted-content-container .flexItemText .green-blue-hei .hei-community .field--name-field-url > a:hover, .green-blue-hei .hei-community .contact-nhlbi--landing .field--name-field-directions-link a:hover, .contact-nhlbi--landing .field--name-field-directions-link .green-blue-hei .hei-community a:hover, .green-blue-hei .hei-community .isi-job-opportunities--landing .field--name-field-vacancies-link a:hover, .isi-job-opportunities--landing .field--name-field-vacancies-link .green-blue-hei .hei-community a:hover, .green-blue-hei .hei-community .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:hover, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .green-blue-hei .hei-community .field--name-field-promotional-link > a:hover, .green-blue-hei .hei-community .fixedDarkBluePane .field--name-field-traveling-and-security a:hover, .fixedDarkBluePane .field--name-field-traveling-and-security .green-blue-hei .hei-community a:hover, .green-blue-hei .hei-community .field--name-field-community-card .field--name-field-url > a:hover, .field--name-field-community-card .green-blue-hei .hei-community .field--name-field-url > a:hover {
  background-color: #f6c163;
  border-color: #f6c163;
  color: #222;
  text-decoration: none;
}
/* line 2379, ../sass/_mixins.scss */
.green-blue-hei .hei-community a.viewalllink:focus, .green-blue-hei .hei-community .promoted-content-container .flexItemText .field--name-field-url > a:focus, .promoted-content-container .flexItemText .green-blue-hei .hei-community .field--name-field-url > a:focus, .green-blue-hei .hei-community .contact-nhlbi--landing .field--name-field-directions-link a:focus, .contact-nhlbi--landing .field--name-field-directions-link .green-blue-hei .hei-community a:focus, .green-blue-hei .hei-community .isi-job-opportunities--landing .field--name-field-vacancies-link a:focus, .isi-job-opportunities--landing .field--name-field-vacancies-link .green-blue-hei .hei-community a:focus, .green-blue-hei .hei-community .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:focus, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .green-blue-hei .hei-community .field--name-field-promotional-link > a:focus, .green-blue-hei .hei-community .fixedDarkBluePane .field--name-field-traveling-and-security a:focus, .fixedDarkBluePane .field--name-field-traveling-and-security .green-blue-hei .hei-community a:focus, .green-blue-hei .hei-community .field--name-field-community-card .field--name-field-url > a:focus, .field--name-field-community-card .green-blue-hei .hei-community .field--name-field-url > a:focus, .green-blue-hei .hei-community a.viewalllink:active, .green-blue-hei .hei-community .promoted-content-container .flexItemText .field--name-field-url > a:active, .promoted-content-container .flexItemText .green-blue-hei .hei-community .field--name-field-url > a:active, .green-blue-hei .hei-community .contact-nhlbi--landing .field--name-field-directions-link a:active, .contact-nhlbi--landing .field--name-field-directions-link .green-blue-hei .hei-community a:active, .green-blue-hei .hei-community .isi-job-opportunities--landing .field--name-field-vacancies-link a:active, .isi-job-opportunities--landing .field--name-field-vacancies-link .green-blue-hei .hei-community a:active, .green-blue-hei .hei-community .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:active, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .green-blue-hei .hei-community .field--name-field-promotional-link > a:active, .green-blue-hei .hei-community .fixedDarkBluePane .field--name-field-traveling-and-security a:active, .fixedDarkBluePane .field--name-field-traveling-and-security .green-blue-hei .hei-community a:active, .green-blue-hei .hei-community .field--name-field-community-card .field--name-field-url > a:active, .field--name-field-community-card .green-blue-hei .hei-community .field--name-field-url > a:active {
  outline: #fff dotted 3px !important;
}

/* line 511, ../sass/components/_hei.scss */
.yellow-turquoise-hei .hei-partnering-background {
  background-color: #99c7da;
}
/* line 514, ../sass/components/_hei.scss */
.yellow-turquoise-hei .hei-top-button, .yellow-turquoise-hei .hei-partnering .field--name-field-url {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 514, ../sass/components/_hei.scss */
  .yellow-turquoise-hei .hei-top-button, .yellow-turquoise-hei .hei-partnering .field--name-field-url {
    margin-top: 0.75em;
    margin-bottom: 0.75em;
  }
}
/* line 1535, ../sass/_mixins.scss */
.yellow-turquoise-hei .hei-top-button a, .yellow-turquoise-hei .hei-partnering .field--name-field-url a {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #222;
  text-decoration: none;
  background-color: #f6c163;
  border: 1px solid #f6c163;
  padding: 0.8em 3em;
}
@media all and (min-width: 1440px) {
  /* line 1535, ../sass/_mixins.scss */
  .yellow-turquoise-hei .hei-top-button a, .yellow-turquoise-hei .hei-partnering .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1535, ../sass/_mixins.scss */
  .yellow-turquoise-hei .hei-top-button a, .yellow-turquoise-hei .hei-partnering .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .yellow-turquoise-hei .hei-top-button a, .yellow-turquoise-hei .hei-partnering .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1535, ../sass/_mixins.scss */
  .yellow-turquoise-hei .hei-top-button a, .yellow-turquoise-hei .hei-partnering .field--name-field-url a {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.yellow-turquoise-hei .hei-top-button a :hover, .yellow-turquoise-hei .hei-partnering .field--name-field-url a :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 1535, ../sass/_mixins.scss */
  .yellow-turquoise-hei .hei-top-button a, .yellow-turquoise-hei .hei-partnering .field--name-field-url a {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1535, ../sass/_mixins.scss */
  .yellow-turquoise-hei .hei-top-button a, .yellow-turquoise-hei .hei-partnering .field--name-field-url a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .yellow-turquoise-hei .hei-top-button a, .yellow-turquoise-hei .hei-partnering .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1535, ../sass/_mixins.scss */
  .yellow-turquoise-hei .hei-top-button a, .yellow-turquoise-hei .hei-partnering .field--name-field-url a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .yellow-turquoise-hei .hei-top-button a, .yellow-turquoise-hei .hei-partnering .field--name-field-url a {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.yellow-turquoise-hei .hei-top-button a:hover, .yellow-turquoise-hei .hei-partnering .field--name-field-url a:hover {
  background-color: #307484;
  border-color: #307484;
  color: #fff;
  text-decoration: none;
}
/* line 1539, ../sass/_mixins.scss */
.yellow-turquoise-hei .hei-top-button a:focus, .yellow-turquoise-hei .hei-partnering .field--name-field-url a:focus {
  outline: #bf0d2e dotted 3px !important;
}
/* line 517, ../sass/components/_hei.scss */
.yellow-turquoise-hei .hei-standard-button, .yellow-turquoise-hei .hei-grants .field--name-field-url, .hei-grants .yellow-turquoise-hei .field--name-field-url, .yellow-turquoise-hei .hei-health-professionals .field--name-field-url, .hei-health-professionals .yellow-turquoise-hei .field--name-field-url {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 517, ../sass/components/_hei.scss */
  .yellow-turquoise-hei .hei-standard-button, .yellow-turquoise-hei .hei-grants .field--name-field-url, .hei-grants .yellow-turquoise-hei .field--name-field-url, .yellow-turquoise-hei .hei-health-professionals .field--name-field-url, .hei-health-professionals .yellow-turquoise-hei .field--name-field-url {
    margin-top: 0.75em;
    margin-bottom: 0.75em;
  }
}
/* line 1535, ../sass/_mixins.scss */
.yellow-turquoise-hei .hei-standard-button a, .yellow-turquoise-hei .hei-grants .field--name-field-url a, .hei-grants .yellow-turquoise-hei .field--name-field-url a, .yellow-turquoise-hei .hei-health-professionals .field--name-field-url a, .hei-health-professionals .yellow-turquoise-hei .field--name-field-url a {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #222;
  text-decoration: none;
  background-color: #f6c163;
  border: 1px solid #f6c163;
  padding: 0.8em 3em;
}
@media all and (min-width: 1440px) {
  /* line 1535, ../sass/_mixins.scss */
  .yellow-turquoise-hei .hei-standard-button a, .yellow-turquoise-hei .hei-grants .field--name-field-url a, .hei-grants .yellow-turquoise-hei .field--name-field-url a, .yellow-turquoise-hei .hei-health-professionals .field--name-field-url a, .hei-health-professionals .yellow-turquoise-hei .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1535, ../sass/_mixins.scss */
  .yellow-turquoise-hei .hei-standard-button a, .yellow-turquoise-hei .hei-grants .field--name-field-url a, .hei-grants .yellow-turquoise-hei .field--name-field-url a, .yellow-turquoise-hei .hei-health-professionals .field--name-field-url a, .hei-health-professionals .yellow-turquoise-hei .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .yellow-turquoise-hei .hei-standard-button a, .yellow-turquoise-hei .hei-grants .field--name-field-url a, .hei-grants .yellow-turquoise-hei .field--name-field-url a, .yellow-turquoise-hei .hei-health-professionals .field--name-field-url a, .hei-health-professionals .yellow-turquoise-hei .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1535, ../sass/_mixins.scss */
  .yellow-turquoise-hei .hei-standard-button a, .yellow-turquoise-hei .hei-grants .field--name-field-url a, .hei-grants .yellow-turquoise-hei .field--name-field-url a, .yellow-turquoise-hei .hei-health-professionals .field--name-field-url a, .hei-health-professionals .yellow-turquoise-hei .field--name-field-url a {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.yellow-turquoise-hei .hei-standard-button a :hover, .yellow-turquoise-hei .hei-grants .field--name-field-url a :hover, .hei-grants .yellow-turquoise-hei .field--name-field-url a :hover, .yellow-turquoise-hei .hei-health-professionals .field--name-field-url a :hover, .hei-health-professionals .yellow-turquoise-hei .field--name-field-url a :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 1535, ../sass/_mixins.scss */
  .yellow-turquoise-hei .hei-standard-button a, .yellow-turquoise-hei .hei-grants .field--name-field-url a, .hei-grants .yellow-turquoise-hei .field--name-field-url a, .yellow-turquoise-hei .hei-health-professionals .field--name-field-url a, .hei-health-professionals .yellow-turquoise-hei .field--name-field-url a {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1535, ../sass/_mixins.scss */
  .yellow-turquoise-hei .hei-standard-button a, .yellow-turquoise-hei .hei-grants .field--name-field-url a, .hei-grants .yellow-turquoise-hei .field--name-field-url a, .yellow-turquoise-hei .hei-health-professionals .field--name-field-url a, .hei-health-professionals .yellow-turquoise-hei .field--name-field-url a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .yellow-turquoise-hei .hei-standard-button a, .yellow-turquoise-hei .hei-grants .field--name-field-url a, .hei-grants .yellow-turquoise-hei .field--name-field-url a, .yellow-turquoise-hei .hei-health-professionals .field--name-field-url a, .hei-health-professionals .yellow-turquoise-hei .field--name-field-url a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1535, ../sass/_mixins.scss */
  .yellow-turquoise-hei .hei-standard-button a, .yellow-turquoise-hei .hei-grants .field--name-field-url a, .hei-grants .yellow-turquoise-hei .field--name-field-url a, .yellow-turquoise-hei .hei-health-professionals .field--name-field-url a, .hei-health-professionals .yellow-turquoise-hei .field--name-field-url a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .yellow-turquoise-hei .hei-standard-button a, .yellow-turquoise-hei .hei-grants .field--name-field-url a, .hei-grants .yellow-turquoise-hei .field--name-field-url a, .yellow-turquoise-hei .hei-health-professionals .field--name-field-url a, .hei-health-professionals .yellow-turquoise-hei .field--name-field-url a {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.yellow-turquoise-hei .hei-standard-button a:hover, .yellow-turquoise-hei .hei-grants .field--name-field-url a:hover, .hei-grants .yellow-turquoise-hei .field--name-field-url a:hover, .yellow-turquoise-hei .hei-health-professionals .field--name-field-url a:hover, .hei-health-professionals .yellow-turquoise-hei .field--name-field-url a:hover {
  background-color: #307484;
  border-color: #307484;
  color: #fff;
  text-decoration: none;
}
/* line 1539, ../sass/_mixins.scss */
.yellow-turquoise-hei .hei-standard-button a:focus, .yellow-turquoise-hei .hei-grants .field--name-field-url a:focus, .hei-grants .yellow-turquoise-hei .field--name-field-url a:focus, .yellow-turquoise-hei .hei-health-professionals .field--name-field-url a:focus, .hei-health-professionals .yellow-turquoise-hei .field--name-field-url a:focus {
  outline: #bf0d2e dotted 3px !important;
}
/* line 520, ../sass/components/_hei.scss */
.yellow-turquoise-hei .hei-submit-button {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 520, ../sass/components/_hei.scss */
  .yellow-turquoise-hei .hei-submit-button {
    margin-top: 0.75em;
    margin-bottom: 0.75em;
  }
}
/* line 1535, ../sass/_mixins.scss */
.yellow-turquoise-hei .hei-submit-button a {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #222;
  text-decoration: none;
  background-color: #f6c163;
  border: 1px solid #f6c163;
  padding: 0.8em 3em;
}
@media all and (min-width: 1440px) {
  /* line 1535, ../sass/_mixins.scss */
  .yellow-turquoise-hei .hei-submit-button a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1535, ../sass/_mixins.scss */
  .yellow-turquoise-hei .hei-submit-button a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .yellow-turquoise-hei .hei-submit-button a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1535, ../sass/_mixins.scss */
  .yellow-turquoise-hei .hei-submit-button a {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.yellow-turquoise-hei .hei-submit-button a :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 1535, ../sass/_mixins.scss */
  .yellow-turquoise-hei .hei-submit-button a {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1535, ../sass/_mixins.scss */
  .yellow-turquoise-hei .hei-submit-button a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .yellow-turquoise-hei .hei-submit-button a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1535, ../sass/_mixins.scss */
  .yellow-turquoise-hei .hei-submit-button a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1535, ../sass/_mixins.scss */
  .yellow-turquoise-hei .hei-submit-button a {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.yellow-turquoise-hei .hei-submit-button a:hover {
  background-color: #307484;
  border-color: #307484;
  color: #fff;
  text-decoration: none;
}
/* line 1539, ../sass/_mixins.scss */
.yellow-turquoise-hei .hei-submit-button a:focus {
  outline: #bf0d2e dotted 3px !important;
}
/* line 528, ../sass/components/_hei.scss */
.yellow-turquoise-hei .hei-news {
  background-color: #99c7da;
}
/* line 530, ../sass/components/_hei.scss */
.yellow-turquoise-hei .hei-news .sfa-teaser-container {
  color: #222;
}
/* line 532, ../sass/components/_hei.scss */
.yellow-turquoise-hei .hei-news .sfa-teaser-container .bodytext.white-text, .yellow-turquoise-hei .hei-news .sfa-teaser-container .white-text.darkGrayBodyText, .yellow-turquoise-hei .hei-news .sfa-teaser-container .white-text.foa-expiration-date, .yellow-turquoise-hei .hei-news .sfa-teaser-container .whitedate, .yellow-turquoise-hei .hei-news .sfa-teaser-container .viewalllink, .yellow-turquoise-hei .hei-news .sfa-teaser-container .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-url > a, .yellow-turquoise-hei .hei-news .sfa-teaser-container .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .yellow-turquoise-hei .hei-news .sfa-teaser-container a, .yellow-turquoise-hei .hei-news .sfa-teaser-container .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .yellow-turquoise-hei .hei-news .sfa-teaser-container a, .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-promotional-link > a, .yellow-turquoise-hei .hei-news .sfa-teaser-container .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .yellow-turquoise-hei .hei-news .sfa-teaser-container a, .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-url > a {
  color: #222;
}
/* line 537, ../sass/components/_hei.scss */
.yellow-turquoise-hei .hei-news .sfa-teaser-container .flexItemText .herobannertitle, .yellow-turquoise-hei .hei-news .sfa-teaser-container .flexItemText .herobannertitle-grey {
  color: #222;
  background-color: transparent;
}
/* line 126, ../sass/_mixins.scss */
.yellow-turquoise-hei .hei-news .sfa-teaser-container .flexItemText .herobannertitle a, .yellow-turquoise-hei .hei-news .sfa-teaser-container .flexItemText .herobannertitle-grey a, .yellow-turquoise-hei .hei-news .sfa-teaser-container .flexItemText .herobannertitle a:link, .yellow-turquoise-hei .hei-news .sfa-teaser-container .flexItemText .herobannertitle-grey a:link {
  color: #222;
  text-decoration: underline;
}
/* line 136, ../sass/_mixins.scss */
.yellow-turquoise-hei .hei-news .sfa-teaser-container .flexItemText .herobannertitle a:visited, .yellow-turquoise-hei .hei-news .sfa-teaser-container .flexItemText .herobannertitle-grey a:visited {
  color: #6f57B5;
}
/* line 145, ../sass/_mixins.scss */
.yellow-turquoise-hei .hei-news .sfa-teaser-container .flexItemText .herobannertitle a:hover, .yellow-turquoise-hei .hei-news .sfa-teaser-container .flexItemText .herobannertitle-grey a:hover {
  font-weight: bold;
}
/* line 154, ../sass/_mixins.scss */
.yellow-turquoise-hei .hei-news .sfa-teaser-container .flexItemText .herobannertitle h1, .yellow-turquoise-hei .hei-news .sfa-teaser-container .flexItemText .herobannertitle-grey h1, .yellow-turquoise-hei .hei-news .sfa-teaser-container .flexItemText .herobannertitle .photocredit, .yellow-turquoise-hei .hei-news .sfa-teaser-container .flexItemText .herobannertitle-grey .photocredit {
  color: #222;
}
/* line 1886, ../sass/_mixins.scss */
.yellow-turquoise-hei .hei-news .sfa-teaser-container .flexItemText .herobannertitle a, .yellow-turquoise-hei .hei-news .sfa-teaser-container .flexItemText .herobannertitle-grey a {
  color: #222;
}
/* line 1889, ../sass/_mixins.scss */
.yellow-turquoise-hei .hei-news .sfa-teaser-container .flexItemText .herobannertitle a:link, .yellow-turquoise-hei .hei-news .sfa-teaser-container .flexItemText .herobannertitle-grey a:link {
  color: #222;
}
/* line 1897, ../sass/_mixins.scss */
.yellow-turquoise-hei .hei-news .sfa-teaser-container .flexItemText .herobannertitle a:visited, .yellow-turquoise-hei .hei-news .sfa-teaser-container .flexItemText .herobannertitle-grey a:visited {
  color: #6f57B5;
}
/* line 542, ../sass/components/_hei.scss */
.yellow-turquoise-hei .hei-news .sfa-teaser-container a.viewalllink, .yellow-turquoise-hei .hei-news .sfa-teaser-container .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-url > a, .yellow-turquoise-hei .hei-news .sfa-teaser-container .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .yellow-turquoise-hei .hei-news .sfa-teaser-container a, .yellow-turquoise-hei .hei-news .sfa-teaser-container .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .yellow-turquoise-hei .hei-news .sfa-teaser-container a, .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-promotional-link > a, .yellow-turquoise-hei .hei-news .sfa-teaser-container .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .yellow-turquoise-hei .hei-news .sfa-teaser-container a, .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-url > a {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #222;
  text-decoration: none;
  background-color: #f6c163;
  border: 1px solid #f6c163;
  padding: 0.8em 3em;
  display: table !important;
  background-image: none;
}
@media all and (min-width: 1440px) {
  /* line 542, ../sass/components/_hei.scss */
  .yellow-turquoise-hei .hei-news .sfa-teaser-container a.viewalllink, .yellow-turquoise-hei .hei-news .sfa-teaser-container .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-url > a, .yellow-turquoise-hei .hei-news .sfa-teaser-container .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .yellow-turquoise-hei .hei-news .sfa-teaser-container a, .yellow-turquoise-hei .hei-news .sfa-teaser-container .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .yellow-turquoise-hei .hei-news .sfa-teaser-container a, .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-promotional-link > a, .yellow-turquoise-hei .hei-news .sfa-teaser-container .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .yellow-turquoise-hei .hei-news .sfa-teaser-container a, .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 542, ../sass/components/_hei.scss */
  .yellow-turquoise-hei .hei-news .sfa-teaser-container a.viewalllink, .yellow-turquoise-hei .hei-news .sfa-teaser-container .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-url > a, .yellow-turquoise-hei .hei-news .sfa-teaser-container .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .yellow-turquoise-hei .hei-news .sfa-teaser-container a, .yellow-turquoise-hei .hei-news .sfa-teaser-container .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .yellow-turquoise-hei .hei-news .sfa-teaser-container a, .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-promotional-link > a, .yellow-turquoise-hei .hei-news .sfa-teaser-container .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .yellow-turquoise-hei .hei-news .sfa-teaser-container a, .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 542, ../sass/components/_hei.scss */
  .yellow-turquoise-hei .hei-news .sfa-teaser-container a.viewalllink, .yellow-turquoise-hei .hei-news .sfa-teaser-container .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-url > a, .yellow-turquoise-hei .hei-news .sfa-teaser-container .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .yellow-turquoise-hei .hei-news .sfa-teaser-container a, .yellow-turquoise-hei .hei-news .sfa-teaser-container .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .yellow-turquoise-hei .hei-news .sfa-teaser-container a, .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-promotional-link > a, .yellow-turquoise-hei .hei-news .sfa-teaser-container .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .yellow-turquoise-hei .hei-news .sfa-teaser-container a, .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 542, ../sass/components/_hei.scss */
  .yellow-turquoise-hei .hei-news .sfa-teaser-container a.viewalllink, .yellow-turquoise-hei .hei-news .sfa-teaser-container .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-url > a, .yellow-turquoise-hei .hei-news .sfa-teaser-container .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .yellow-turquoise-hei .hei-news .sfa-teaser-container a, .yellow-turquoise-hei .hei-news .sfa-teaser-container .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .yellow-turquoise-hei .hei-news .sfa-teaser-container a, .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-promotional-link > a, .yellow-turquoise-hei .hei-news .sfa-teaser-container .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .yellow-turquoise-hei .hei-news .sfa-teaser-container a, .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.yellow-turquoise-hei .hei-news .sfa-teaser-container a.viewalllink :hover, .yellow-turquoise-hei .hei-news .sfa-teaser-container .promoted-content-container .flexItemText .field--name-field-url > a :hover, .promoted-content-container .flexItemText .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-url > a :hover, .yellow-turquoise-hei .hei-news .sfa-teaser-container .contact-nhlbi--landing .field--name-field-directions-link a :hover, .contact-nhlbi--landing .field--name-field-directions-link .yellow-turquoise-hei .hei-news .sfa-teaser-container a :hover, .yellow-turquoise-hei .hei-news .sfa-teaser-container .isi-job-opportunities--landing .field--name-field-vacancies-link a :hover, .isi-job-opportunities--landing .field--name-field-vacancies-link .yellow-turquoise-hei .hei-news .sfa-teaser-container a :hover, .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a :hover, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-promotional-link > a :hover, .yellow-turquoise-hei .hei-news .sfa-teaser-container .fixedDarkBluePane .field--name-field-traveling-and-security a :hover, .fixedDarkBluePane .field--name-field-traveling-and-security .yellow-turquoise-hei .hei-news .sfa-teaser-container a :hover, .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-community-card .field--name-field-url > a :hover, .field--name-field-community-card .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-url > a :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 542, ../sass/components/_hei.scss */
  .yellow-turquoise-hei .hei-news .sfa-teaser-container a.viewalllink, .yellow-turquoise-hei .hei-news .sfa-teaser-container .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-url > a, .yellow-turquoise-hei .hei-news .sfa-teaser-container .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .yellow-turquoise-hei .hei-news .sfa-teaser-container a, .yellow-turquoise-hei .hei-news .sfa-teaser-container .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .yellow-turquoise-hei .hei-news .sfa-teaser-container a, .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-promotional-link > a, .yellow-turquoise-hei .hei-news .sfa-teaser-container .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .yellow-turquoise-hei .hei-news .sfa-teaser-container a, .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 542, ../sass/components/_hei.scss */
  .yellow-turquoise-hei .hei-news .sfa-teaser-container a.viewalllink, .yellow-turquoise-hei .hei-news .sfa-teaser-container .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-url > a, .yellow-turquoise-hei .hei-news .sfa-teaser-container .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .yellow-turquoise-hei .hei-news .sfa-teaser-container a, .yellow-turquoise-hei .hei-news .sfa-teaser-container .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .yellow-turquoise-hei .hei-news .sfa-teaser-container a, .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-promotional-link > a, .yellow-turquoise-hei .hei-news .sfa-teaser-container .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .yellow-turquoise-hei .hei-news .sfa-teaser-container a, .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 542, ../sass/components/_hei.scss */
  .yellow-turquoise-hei .hei-news .sfa-teaser-container a.viewalllink, .yellow-turquoise-hei .hei-news .sfa-teaser-container .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-url > a, .yellow-turquoise-hei .hei-news .sfa-teaser-container .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .yellow-turquoise-hei .hei-news .sfa-teaser-container a, .yellow-turquoise-hei .hei-news .sfa-teaser-container .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .yellow-turquoise-hei .hei-news .sfa-teaser-container a, .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-promotional-link > a, .yellow-turquoise-hei .hei-news .sfa-teaser-container .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .yellow-turquoise-hei .hei-news .sfa-teaser-container a, .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 542, ../sass/components/_hei.scss */
  .yellow-turquoise-hei .hei-news .sfa-teaser-container a.viewalllink, .yellow-turquoise-hei .hei-news .sfa-teaser-container .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-url > a, .yellow-turquoise-hei .hei-news .sfa-teaser-container .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .yellow-turquoise-hei .hei-news .sfa-teaser-container a, .yellow-turquoise-hei .hei-news .sfa-teaser-container .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .yellow-turquoise-hei .hei-news .sfa-teaser-container a, .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-promotional-link > a, .yellow-turquoise-hei .hei-news .sfa-teaser-container .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .yellow-turquoise-hei .hei-news .sfa-teaser-container a, .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 542, ../sass/components/_hei.scss */
  .yellow-turquoise-hei .hei-news .sfa-teaser-container a.viewalllink, .yellow-turquoise-hei .hei-news .sfa-teaser-container .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-url > a, .yellow-turquoise-hei .hei-news .sfa-teaser-container .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .yellow-turquoise-hei .hei-news .sfa-teaser-container a, .yellow-turquoise-hei .hei-news .sfa-teaser-container .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .yellow-turquoise-hei .hei-news .sfa-teaser-container a, .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-promotional-link > a, .yellow-turquoise-hei .hei-news .sfa-teaser-container .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .yellow-turquoise-hei .hei-news .sfa-teaser-container a, .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-url > a {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.yellow-turquoise-hei .hei-news .sfa-teaser-container a.viewalllink:hover, .yellow-turquoise-hei .hei-news .sfa-teaser-container .promoted-content-container .flexItemText .field--name-field-url > a:hover, .promoted-content-container .flexItemText .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-url > a:hover, .yellow-turquoise-hei .hei-news .sfa-teaser-container .contact-nhlbi--landing .field--name-field-directions-link a:hover, .contact-nhlbi--landing .field--name-field-directions-link .yellow-turquoise-hei .hei-news .sfa-teaser-container a:hover, .yellow-turquoise-hei .hei-news .sfa-teaser-container .isi-job-opportunities--landing .field--name-field-vacancies-link a:hover, .isi-job-opportunities--landing .field--name-field-vacancies-link .yellow-turquoise-hei .hei-news .sfa-teaser-container a:hover, .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:hover, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-promotional-link > a:hover, .yellow-turquoise-hei .hei-news .sfa-teaser-container .fixedDarkBluePane .field--name-field-traveling-and-security a:hover, .fixedDarkBluePane .field--name-field-traveling-and-security .yellow-turquoise-hei .hei-news .sfa-teaser-container a:hover, .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-community-card .field--name-field-url > a:hover, .field--name-field-community-card .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-url > a:hover {
  background-color: #307484;
  border-color: #307484;
  color: #fff;
  text-decoration: none;
}
/* line 2379, ../sass/_mixins.scss */
.yellow-turquoise-hei .hei-news .sfa-teaser-container a.viewalllink:focus, .yellow-turquoise-hei .hei-news .sfa-teaser-container .promoted-content-container .flexItemText .field--name-field-url > a:focus, .promoted-content-container .flexItemText .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-url > a:focus, .yellow-turquoise-hei .hei-news .sfa-teaser-container .contact-nhlbi--landing .field--name-field-directions-link a:focus, .contact-nhlbi--landing .field--name-field-directions-link .yellow-turquoise-hei .hei-news .sfa-teaser-container a:focus, .yellow-turquoise-hei .hei-news .sfa-teaser-container .isi-job-opportunities--landing .field--name-field-vacancies-link a:focus, .isi-job-opportunities--landing .field--name-field-vacancies-link .yellow-turquoise-hei .hei-news .sfa-teaser-container a:focus, .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:focus, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-promotional-link > a:focus, .yellow-turquoise-hei .hei-news .sfa-teaser-container .fixedDarkBluePane .field--name-field-traveling-and-security a:focus, .fixedDarkBluePane .field--name-field-traveling-and-security .yellow-turquoise-hei .hei-news .sfa-teaser-container a:focus, .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-community-card .field--name-field-url > a:focus, .field--name-field-community-card .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-url > a:focus, .yellow-turquoise-hei .hei-news .sfa-teaser-container a.viewalllink:active, .yellow-turquoise-hei .hei-news .sfa-teaser-container .promoted-content-container .flexItemText .field--name-field-url > a:active, .promoted-content-container .flexItemText .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-url > a:active, .yellow-turquoise-hei .hei-news .sfa-teaser-container .contact-nhlbi--landing .field--name-field-directions-link a:active, .contact-nhlbi--landing .field--name-field-directions-link .yellow-turquoise-hei .hei-news .sfa-teaser-container a:active, .yellow-turquoise-hei .hei-news .sfa-teaser-container .isi-job-opportunities--landing .field--name-field-vacancies-link a:active, .isi-job-opportunities--landing .field--name-field-vacancies-link .yellow-turquoise-hei .hei-news .sfa-teaser-container a:active, .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:active, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-promotional-link > a:active, .yellow-turquoise-hei .hei-news .sfa-teaser-container .fixedDarkBluePane .field--name-field-traveling-and-security a:active, .fixedDarkBluePane .field--name-field-traveling-and-security .yellow-turquoise-hei .hei-news .sfa-teaser-container a:active, .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-community-card .field--name-field-url > a:active, .field--name-field-community-card .yellow-turquoise-hei .hei-news .sfa-teaser-container .field--name-field-url > a:active {
  outline: #bf0d2e dotted 3px !important;
}
/* line 547, ../sass/components/_hei.scss */
.yellow-turquoise-hei .hei-events {
  background-color: #307484;
}
/* line 550, ../sass/components/_hei.scss */
.yellow-turquoise-hei .hei-events a.viewalllink, .yellow-turquoise-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .yellow-turquoise-hei .hei-events .field--name-field-url > a, .yellow-turquoise-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .yellow-turquoise-hei .hei-events a, .yellow-turquoise-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .yellow-turquoise-hei .hei-events a, .yellow-turquoise-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .yellow-turquoise-hei .hei-events .field--name-field-promotional-link > a, .yellow-turquoise-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .yellow-turquoise-hei .hei-events a, .yellow-turquoise-hei .hei-events .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .yellow-turquoise-hei .hei-events .field--name-field-url > a {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #1a568c;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #fff;
  padding: 0.8em 3em;
  display: table !important;
  background-image: none;
}
@media all and (min-width: 1440px) {
  /* line 550, ../sass/components/_hei.scss */
  .yellow-turquoise-hei .hei-events a.viewalllink, .yellow-turquoise-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .yellow-turquoise-hei .hei-events .field--name-field-url > a, .yellow-turquoise-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .yellow-turquoise-hei .hei-events a, .yellow-turquoise-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .yellow-turquoise-hei .hei-events a, .yellow-turquoise-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .yellow-turquoise-hei .hei-events .field--name-field-promotional-link > a, .yellow-turquoise-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .yellow-turquoise-hei .hei-events a, .yellow-turquoise-hei .hei-events .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .yellow-turquoise-hei .hei-events .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 550, ../sass/components/_hei.scss */
  .yellow-turquoise-hei .hei-events a.viewalllink, .yellow-turquoise-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .yellow-turquoise-hei .hei-events .field--name-field-url > a, .yellow-turquoise-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .yellow-turquoise-hei .hei-events a, .yellow-turquoise-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .yellow-turquoise-hei .hei-events a, .yellow-turquoise-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .yellow-turquoise-hei .hei-events .field--name-field-promotional-link > a, .yellow-turquoise-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .yellow-turquoise-hei .hei-events a, .yellow-turquoise-hei .hei-events .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .yellow-turquoise-hei .hei-events .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 550, ../sass/components/_hei.scss */
  .yellow-turquoise-hei .hei-events a.viewalllink, .yellow-turquoise-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .yellow-turquoise-hei .hei-events .field--name-field-url > a, .yellow-turquoise-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .yellow-turquoise-hei .hei-events a, .yellow-turquoise-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .yellow-turquoise-hei .hei-events a, .yellow-turquoise-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .yellow-turquoise-hei .hei-events .field--name-field-promotional-link > a, .yellow-turquoise-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .yellow-turquoise-hei .hei-events a, .yellow-turquoise-hei .hei-events .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .yellow-turquoise-hei .hei-events .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 550, ../sass/components/_hei.scss */
  .yellow-turquoise-hei .hei-events a.viewalllink, .yellow-turquoise-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .yellow-turquoise-hei .hei-events .field--name-field-url > a, .yellow-turquoise-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .yellow-turquoise-hei .hei-events a, .yellow-turquoise-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .yellow-turquoise-hei .hei-events a, .yellow-turquoise-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .yellow-turquoise-hei .hei-events .field--name-field-promotional-link > a, .yellow-turquoise-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .yellow-turquoise-hei .hei-events a, .yellow-turquoise-hei .hei-events .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .yellow-turquoise-hei .hei-events .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.yellow-turquoise-hei .hei-events a.viewalllink :hover, .yellow-turquoise-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a :hover, .promoted-content-container .flexItemText .yellow-turquoise-hei .hei-events .field--name-field-url > a :hover, .yellow-turquoise-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a :hover, .contact-nhlbi--landing .field--name-field-directions-link .yellow-turquoise-hei .hei-events a :hover, .yellow-turquoise-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a :hover, .isi-job-opportunities--landing .field--name-field-vacancies-link .yellow-turquoise-hei .hei-events a :hover, .yellow-turquoise-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a :hover, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .yellow-turquoise-hei .hei-events .field--name-field-promotional-link > a :hover, .yellow-turquoise-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a :hover, .fixedDarkBluePane .field--name-field-traveling-and-security .yellow-turquoise-hei .hei-events a :hover, .yellow-turquoise-hei .hei-events .field--name-field-community-card .field--name-field-url > a :hover, .field--name-field-community-card .yellow-turquoise-hei .hei-events .field--name-field-url > a :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 550, ../sass/components/_hei.scss */
  .yellow-turquoise-hei .hei-events a.viewalllink, .yellow-turquoise-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .yellow-turquoise-hei .hei-events .field--name-field-url > a, .yellow-turquoise-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .yellow-turquoise-hei .hei-events a, .yellow-turquoise-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .yellow-turquoise-hei .hei-events a, .yellow-turquoise-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .yellow-turquoise-hei .hei-events .field--name-field-promotional-link > a, .yellow-turquoise-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .yellow-turquoise-hei .hei-events a, .yellow-turquoise-hei .hei-events .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .yellow-turquoise-hei .hei-events .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 550, ../sass/components/_hei.scss */
  .yellow-turquoise-hei .hei-events a.viewalllink, .yellow-turquoise-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .yellow-turquoise-hei .hei-events .field--name-field-url > a, .yellow-turquoise-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .yellow-turquoise-hei .hei-events a, .yellow-turquoise-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .yellow-turquoise-hei .hei-events a, .yellow-turquoise-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .yellow-turquoise-hei .hei-events .field--name-field-promotional-link > a, .yellow-turquoise-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .yellow-turquoise-hei .hei-events a, .yellow-turquoise-hei .hei-events .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .yellow-turquoise-hei .hei-events .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 550, ../sass/components/_hei.scss */
  .yellow-turquoise-hei .hei-events a.viewalllink, .yellow-turquoise-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .yellow-turquoise-hei .hei-events .field--name-field-url > a, .yellow-turquoise-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .yellow-turquoise-hei .hei-events a, .yellow-turquoise-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .yellow-turquoise-hei .hei-events a, .yellow-turquoise-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .yellow-turquoise-hei .hei-events .field--name-field-promotional-link > a, .yellow-turquoise-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .yellow-turquoise-hei .hei-events a, .yellow-turquoise-hei .hei-events .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .yellow-turquoise-hei .hei-events .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 550, ../sass/components/_hei.scss */
  .yellow-turquoise-hei .hei-events a.viewalllink, .yellow-turquoise-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .yellow-turquoise-hei .hei-events .field--name-field-url > a, .yellow-turquoise-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .yellow-turquoise-hei .hei-events a, .yellow-turquoise-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .yellow-turquoise-hei .hei-events a, .yellow-turquoise-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .yellow-turquoise-hei .hei-events .field--name-field-promotional-link > a, .yellow-turquoise-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .yellow-turquoise-hei .hei-events a, .yellow-turquoise-hei .hei-events .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .yellow-turquoise-hei .hei-events .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 550, ../sass/components/_hei.scss */
  .yellow-turquoise-hei .hei-events a.viewalllink, .yellow-turquoise-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .yellow-turquoise-hei .hei-events .field--name-field-url > a, .yellow-turquoise-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .yellow-turquoise-hei .hei-events a, .yellow-turquoise-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .yellow-turquoise-hei .hei-events a, .yellow-turquoise-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .yellow-turquoise-hei .hei-events .field--name-field-promotional-link > a, .yellow-turquoise-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .yellow-turquoise-hei .hei-events a, .yellow-turquoise-hei .hei-events .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .yellow-turquoise-hei .hei-events .field--name-field-url > a {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.yellow-turquoise-hei .hei-events a.viewalllink:hover, .yellow-turquoise-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a:hover, .promoted-content-container .flexItemText .yellow-turquoise-hei .hei-events .field--name-field-url > a:hover, .yellow-turquoise-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a:hover, .contact-nhlbi--landing .field--name-field-directions-link .yellow-turquoise-hei .hei-events a:hover, .yellow-turquoise-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a:hover, .isi-job-opportunities--landing .field--name-field-vacancies-link .yellow-turquoise-hei .hei-events a:hover, .yellow-turquoise-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:hover, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .yellow-turquoise-hei .hei-events .field--name-field-promotional-link > a:hover, .yellow-turquoise-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a:hover, .fixedDarkBluePane .field--name-field-traveling-and-security .yellow-turquoise-hei .hei-events a:hover, .yellow-turquoise-hei .hei-events .field--name-field-community-card .field--name-field-url > a:hover, .field--name-field-community-card .yellow-turquoise-hei .hei-events .field--name-field-url > a:hover {
  background-color: #f6c163;
  border-color: #f6c163;
  color: #222;
  text-decoration: none;
}
/* line 2379, ../sass/_mixins.scss */
.yellow-turquoise-hei .hei-events a.viewalllink:focus, .yellow-turquoise-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a:focus, .promoted-content-container .flexItemText .yellow-turquoise-hei .hei-events .field--name-field-url > a:focus, .yellow-turquoise-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a:focus, .contact-nhlbi--landing .field--name-field-directions-link .yellow-turquoise-hei .hei-events a:focus, .yellow-turquoise-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a:focus, .isi-job-opportunities--landing .field--name-field-vacancies-link .yellow-turquoise-hei .hei-events a:focus, .yellow-turquoise-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:focus, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .yellow-turquoise-hei .hei-events .field--name-field-promotional-link > a:focus, .yellow-turquoise-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a:focus, .fixedDarkBluePane .field--name-field-traveling-and-security .yellow-turquoise-hei .hei-events a:focus, .yellow-turquoise-hei .hei-events .field--name-field-community-card .field--name-field-url > a:focus, .field--name-field-community-card .yellow-turquoise-hei .hei-events .field--name-field-url > a:focus, .yellow-turquoise-hei .hei-events a.viewalllink:active, .yellow-turquoise-hei .hei-events .promoted-content-container .flexItemText .field--name-field-url > a:active, .promoted-content-container .flexItemText .yellow-turquoise-hei .hei-events .field--name-field-url > a:active, .yellow-turquoise-hei .hei-events .contact-nhlbi--landing .field--name-field-directions-link a:active, .contact-nhlbi--landing .field--name-field-directions-link .yellow-turquoise-hei .hei-events a:active, .yellow-turquoise-hei .hei-events .isi-job-opportunities--landing .field--name-field-vacancies-link a:active, .isi-job-opportunities--landing .field--name-field-vacancies-link .yellow-turquoise-hei .hei-events a:active, .yellow-turquoise-hei .hei-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:active, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .yellow-turquoise-hei .hei-events .field--name-field-promotional-link > a:active, .yellow-turquoise-hei .hei-events .fixedDarkBluePane .field--name-field-traveling-and-security a:active, .fixedDarkBluePane .field--name-field-traveling-and-security .yellow-turquoise-hei .hei-events a:active, .yellow-turquoise-hei .hei-events .field--name-field-community-card .field--name-field-url > a:active, .field--name-field-community-card .yellow-turquoise-hei .hei-events .field--name-field-url > a:active {
  outline: #fff dotted 3px !important;
}
/* line 554, ../sass/components/_hei.scss */
.yellow-turquoise-hei #newsletter-block-alerts .subscribe {
  background-color: #ecaa46;
  color: #222;
}
/* line 559, ../sass/components/_hei.scss */
.yellow-turquoise-hei .hei-community a.viewalllink, .yellow-turquoise-hei .hei-community .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .yellow-turquoise-hei .hei-community .field--name-field-url > a, .yellow-turquoise-hei .hei-community .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .yellow-turquoise-hei .hei-community a, .yellow-turquoise-hei .hei-community .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .yellow-turquoise-hei .hei-community a, .yellow-turquoise-hei .hei-community .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .yellow-turquoise-hei .hei-community .field--name-field-promotional-link > a, .yellow-turquoise-hei .hei-community .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .yellow-turquoise-hei .hei-community a, .yellow-turquoise-hei .hei-community .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .yellow-turquoise-hei .hei-community .field--name-field-url > a {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1rem;
  color: #1a568c;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #fff;
  padding: 0.8em 3em;
  display: table !important;
  background-image: none;
}
@media all and (min-width: 1440px) {
  /* line 559, ../sass/components/_hei.scss */
  .yellow-turquoise-hei .hei-community a.viewalllink, .yellow-turquoise-hei .hei-community .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .yellow-turquoise-hei .hei-community .field--name-field-url > a, .yellow-turquoise-hei .hei-community .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .yellow-turquoise-hei .hei-community a, .yellow-turquoise-hei .hei-community .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .yellow-turquoise-hei .hei-community a, .yellow-turquoise-hei .hei-community .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .yellow-turquoise-hei .hei-community .field--name-field-promotional-link > a, .yellow-turquoise-hei .hei-community .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .yellow-turquoise-hei .hei-community a, .yellow-turquoise-hei .hei-community .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .yellow-turquoise-hei .hei-community .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 559, ../sass/components/_hei.scss */
  .yellow-turquoise-hei .hei-community a.viewalllink, .yellow-turquoise-hei .hei-community .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .yellow-turquoise-hei .hei-community .field--name-field-url > a, .yellow-turquoise-hei .hei-community .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .yellow-turquoise-hei .hei-community a, .yellow-turquoise-hei .hei-community .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .yellow-turquoise-hei .hei-community a, .yellow-turquoise-hei .hei-community .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .yellow-turquoise-hei .hei-community .field--name-field-promotional-link > a, .yellow-turquoise-hei .hei-community .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .yellow-turquoise-hei .hei-community a, .yellow-turquoise-hei .hei-community .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .yellow-turquoise-hei .hei-community .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 559, ../sass/components/_hei.scss */
  .yellow-turquoise-hei .hei-community a.viewalllink, .yellow-turquoise-hei .hei-community .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .yellow-turquoise-hei .hei-community .field--name-field-url > a, .yellow-turquoise-hei .hei-community .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .yellow-turquoise-hei .hei-community a, .yellow-turquoise-hei .hei-community .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .yellow-turquoise-hei .hei-community a, .yellow-turquoise-hei .hei-community .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .yellow-turquoise-hei .hei-community .field--name-field-promotional-link > a, .yellow-turquoise-hei .hei-community .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .yellow-turquoise-hei .hei-community a, .yellow-turquoise-hei .hei-community .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .yellow-turquoise-hei .hei-community .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 559, ../sass/components/_hei.scss */
  .yellow-turquoise-hei .hei-community a.viewalllink, .yellow-turquoise-hei .hei-community .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .yellow-turquoise-hei .hei-community .field--name-field-url > a, .yellow-turquoise-hei .hei-community .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .yellow-turquoise-hei .hei-community a, .yellow-turquoise-hei .hei-community .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .yellow-turquoise-hei .hei-community a, .yellow-turquoise-hei .hei-community .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .yellow-turquoise-hei .hei-community .field--name-field-promotional-link > a, .yellow-turquoise-hei .hei-community .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .yellow-turquoise-hei .hei-community a, .yellow-turquoise-hei .hei-community .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .yellow-turquoise-hei .hei-community .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
/* line 1468, ../sass/_mixins.scss */
.yellow-turquoise-hei .hei-community a.viewalllink :hover, .yellow-turquoise-hei .hei-community .promoted-content-container .flexItemText .field--name-field-url > a :hover, .promoted-content-container .flexItemText .yellow-turquoise-hei .hei-community .field--name-field-url > a :hover, .yellow-turquoise-hei .hei-community .contact-nhlbi--landing .field--name-field-directions-link a :hover, .contact-nhlbi--landing .field--name-field-directions-link .yellow-turquoise-hei .hei-community a :hover, .yellow-turquoise-hei .hei-community .isi-job-opportunities--landing .field--name-field-vacancies-link a :hover, .isi-job-opportunities--landing .field--name-field-vacancies-link .yellow-turquoise-hei .hei-community a :hover, .yellow-turquoise-hei .hei-community .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a :hover, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .yellow-turquoise-hei .hei-community .field--name-field-promotional-link > a :hover, .yellow-turquoise-hei .hei-community .fixedDarkBluePane .field--name-field-traveling-and-security a :hover, .fixedDarkBluePane .field--name-field-traveling-and-security .yellow-turquoise-hei .hei-community a :hover, .yellow-turquoise-hei .hei-community .field--name-field-community-card .field--name-field-url > a :hover, .field--name-field-community-card .yellow-turquoise-hei .hei-community .field--name-field-url > a :hover {
  color: #3885ca;
  background-color: transparent;
}
@media all and (min-width: 1440px) {
  /* line 559, ../sass/components/_hei.scss */
  .yellow-turquoise-hei .hei-community a.viewalllink, .yellow-turquoise-hei .hei-community .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .yellow-turquoise-hei .hei-community .field--name-field-url > a, .yellow-turquoise-hei .hei-community .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .yellow-turquoise-hei .hei-community a, .yellow-turquoise-hei .hei-community .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .yellow-turquoise-hei .hei-community a, .yellow-turquoise-hei .hei-community .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .yellow-turquoise-hei .hei-community .field--name-field-promotional-link > a, .yellow-turquoise-hei .hei-community .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .yellow-turquoise-hei .hei-community a, .yellow-turquoise-hei .hei-community .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .yellow-turquoise-hei .hei-community .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 559, ../sass/components/_hei.scss */
  .yellow-turquoise-hei .hei-community a.viewalllink, .yellow-turquoise-hei .hei-community .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .yellow-turquoise-hei .hei-community .field--name-field-url > a, .yellow-turquoise-hei .hei-community .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .yellow-turquoise-hei .hei-community a, .yellow-turquoise-hei .hei-community .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .yellow-turquoise-hei .hei-community a, .yellow-turquoise-hei .hei-community .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .yellow-turquoise-hei .hei-community .field--name-field-promotional-link > a, .yellow-turquoise-hei .hei-community .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .yellow-turquoise-hei .hei-community a, .yellow-turquoise-hei .hei-community .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .yellow-turquoise-hei .hei-community .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 559, ../sass/components/_hei.scss */
  .yellow-turquoise-hei .hei-community a.viewalllink, .yellow-turquoise-hei .hei-community .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .yellow-turquoise-hei .hei-community .field--name-field-url > a, .yellow-turquoise-hei .hei-community .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .yellow-turquoise-hei .hei-community a, .yellow-turquoise-hei .hei-community .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .yellow-turquoise-hei .hei-community a, .yellow-turquoise-hei .hei-community .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .yellow-turquoise-hei .hei-community .field--name-field-promotional-link > a, .yellow-turquoise-hei .hei-community .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .yellow-turquoise-hei .hei-community a, .yellow-turquoise-hei .hei-community .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .yellow-turquoise-hei .hei-community .field--name-field-url > a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 559, ../sass/components/_hei.scss */
  .yellow-turquoise-hei .hei-community a.viewalllink, .yellow-turquoise-hei .hei-community .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .yellow-turquoise-hei .hei-community .field--name-field-url > a, .yellow-turquoise-hei .hei-community .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .yellow-turquoise-hei .hei-community a, .yellow-turquoise-hei .hei-community .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .yellow-turquoise-hei .hei-community a, .yellow-turquoise-hei .hei-community .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .yellow-turquoise-hei .hei-community .field--name-field-promotional-link > a, .yellow-turquoise-hei .hei-community .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .yellow-turquoise-hei .hei-community a, .yellow-turquoise-hei .hei-community .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .yellow-turquoise-hei .hei-community .field--name-field-url > a {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 559, ../sass/components/_hei.scss */
  .yellow-turquoise-hei .hei-community a.viewalllink, .yellow-turquoise-hei .hei-community .promoted-content-container .flexItemText .field--name-field-url > a, .promoted-content-container .flexItemText .yellow-turquoise-hei .hei-community .field--name-field-url > a, .yellow-turquoise-hei .hei-community .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .yellow-turquoise-hei .hei-community a, .yellow-turquoise-hei .hei-community .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .yellow-turquoise-hei .hei-community a, .yellow-turquoise-hei .hei-community .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .yellow-turquoise-hei .hei-community .field--name-field-promotional-link > a, .yellow-turquoise-hei .hei-community .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .yellow-turquoise-hei .hei-community a, .yellow-turquoise-hei .hei-community .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .yellow-turquoise-hei .hei-community .field--name-field-url > a {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
/* line 1513, ../sass/_mixins.scss */
.yellow-turquoise-hei .hei-community a.viewalllink:hover, .yellow-turquoise-hei .hei-community .promoted-content-container .flexItemText .field--name-field-url > a:hover, .promoted-content-container .flexItemText .yellow-turquoise-hei .hei-community .field--name-field-url > a:hover, .yellow-turquoise-hei .hei-community .contact-nhlbi--landing .field--name-field-directions-link a:hover, .contact-nhlbi--landing .field--name-field-directions-link .yellow-turquoise-hei .hei-community a:hover, .yellow-turquoise-hei .hei-community .isi-job-opportunities--landing .field--name-field-vacancies-link a:hover, .isi-job-opportunities--landing .field--name-field-vacancies-link .yellow-turquoise-hei .hei-community a:hover, .yellow-turquoise-hei .hei-community .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:hover, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .yellow-turquoise-hei .hei-community .field--name-field-promotional-link > a:hover, .yellow-turquoise-hei .hei-community .fixedDarkBluePane .field--name-field-traveling-and-security a:hover, .fixedDarkBluePane .field--name-field-traveling-and-security .yellow-turquoise-hei .hei-community a:hover, .yellow-turquoise-hei .hei-community .field--name-field-community-card .field--name-field-url > a:hover, .field--name-field-community-card .yellow-turquoise-hei .hei-community .field--name-field-url > a:hover {
  background-color: #f6c163;
  border-color: #f6c163;
  color: #222;
  text-decoration: none;
}
/* line 2379, ../sass/_mixins.scss */
.yellow-turquoise-hei .hei-community a.viewalllink:focus, .yellow-turquoise-hei .hei-community .promoted-content-container .flexItemText .field--name-field-url > a:focus, .promoted-content-container .flexItemText .yellow-turquoise-hei .hei-community .field--name-field-url > a:focus, .yellow-turquoise-hei .hei-community .contact-nhlbi--landing .field--name-field-directions-link a:focus, .contact-nhlbi--landing .field--name-field-directions-link .yellow-turquoise-hei .hei-community a:focus, .yellow-turquoise-hei .hei-community .isi-job-opportunities--landing .field--name-field-vacancies-link a:focus, .isi-job-opportunities--landing .field--name-field-vacancies-link .yellow-turquoise-hei .hei-community a:focus, .yellow-turquoise-hei .hei-community .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:focus, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .yellow-turquoise-hei .hei-community .field--name-field-promotional-link > a:focus, .yellow-turquoise-hei .hei-community .fixedDarkBluePane .field--name-field-traveling-and-security a:focus, .fixedDarkBluePane .field--name-field-traveling-and-security .yellow-turquoise-hei .hei-community a:focus, .yellow-turquoise-hei .hei-community .field--name-field-community-card .field--name-field-url > a:focus, .field--name-field-community-card .yellow-turquoise-hei .hei-community .field--name-field-url > a:focus, .yellow-turquoise-hei .hei-community a.viewalllink:active, .yellow-turquoise-hei .hei-community .promoted-content-container .flexItemText .field--name-field-url > a:active, .promoted-content-container .flexItemText .yellow-turquoise-hei .hei-community .field--name-field-url > a:active, .yellow-turquoise-hei .hei-community .contact-nhlbi--landing .field--name-field-directions-link a:active, .contact-nhlbi--landing .field--name-field-directions-link .yellow-turquoise-hei .hei-community a:active, .yellow-turquoise-hei .hei-community .isi-job-opportunities--landing .field--name-field-vacancies-link a:active, .isi-job-opportunities--landing .field--name-field-vacancies-link .yellow-turquoise-hei .hei-community a:active, .yellow-turquoise-hei .hei-community .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a:active, .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .yellow-turquoise-hei .hei-community .field--name-field-promotional-link > a:active, .yellow-turquoise-hei .hei-community .fixedDarkBluePane .field--name-field-traveling-and-security a:active, .fixedDarkBluePane .field--name-field-traveling-and-security .yellow-turquoise-hei .hei-community a:active, .yellow-turquoise-hei .hei-community .field--name-field-community-card .field--name-field-url > a:active, .field--name-field-community-card .yellow-turquoise-hei .hei-community .field--name-field-url > a:active {
  outline: #fff dotted 3px !important;
}

/* line 566, ../sass/components/_hei.scss */
.hei-highlight-card-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex: 1 0 auto;
  -moz-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  -o-flex: 1 0 auto;
  flex: 1 0 auto;
  background-color: #f4f4f4;
}
/* line 570, ../sass/components/_hei.scss */
.hei-highlight-card-wrapper .flexbox-container-wrapper {
  height: auto;
}
/* line 573, ../sass/components/_hei.scss */
.hei-highlight-card-wrapper .flexbox-container-wrapper > .section-card-container, .hei-highlight-card-wrapper .flexbox-container-wrapper > .home-page-promoted-card {
  width: 100%;
}
@media all and (min-width: 768px) {
  /* line 573, ../sass/components/_hei.scss */
  .hei-highlight-card-wrapper .flexbox-container-wrapper > .section-card-container, .hei-highlight-card-wrapper .flexbox-container-wrapper > .home-page-promoted-card {
    -webkit-flex: 1 1 auto;
    -moz-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    -o-flex: 1 1 auto;
    flex: 1 1 auto;
  }
}
/* line 580, ../sass/components/_hei.scss */
.hei-highlight-card-wrapper .about-nhlbi-featured-item-card-featured-wrapper > a {
  -webkit-flex: 1 1 auto;
  -moz-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  -o-flex: 1 1 auto;
  flex: 1 1 auto;
}

/* line 584, ../sass/components/_hei.scss */
.field--name-field-highlight-card {
  width: 100%;
}

/* line 588, ../sass/components/_hei.scss */
.field--name-field-highlight-card > .field__item {
  -webkit-flex: 1 0 auto;
  -moz-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  -o-flex: 1 0 auto;
  flex: 1 0 auto;
}

/* line 591, ../sass/components/_hei.scss */
.field--name-field-highlight-card > .field__item > a {
  -webkit-flex: 0 auto;
  -moz-flex: 0 auto;
  -ms-flex: 0 auto;
  -o-flex: 0 auto;
  flex: 0 auto;
}

/* line 598, ../sass/components/_hei.scss */
.hei-tools-icon-card-wrapper {
  padding-top: 2em;
}

/* line 603, ../sass/components/_hei.scss */
.field--name-field-tool-icon-card {
  justify-content: center;
}

@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 607, ../sass/components/_hei.scss */
  .field--name-field-tool-icon-card {
    -webkit-align-items: baseline;
    -moz-align-items: baseline;
    -ms-align-items: baseline;
    -o-align-items: baseline;
    align-items: baseline;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
  }
}

/* line 615, ../sass/components/_hei.scss */
.field--name-field-tool-icon-card > .field__item {
  padding-top: 2em;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 615, ../sass/components/_hei.scss */
  .field--name-field-tool-icon-card > .field__item {
    max-width: 25%;
    min-width: 25%;
    flex-basis: 25%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 615, ../sass/components/_hei.scss */
  .field--name-field-tool-icon-card > .field__item {
    max-width: 35%;
    min-width: 35%;
    flex-basis: 35%;
    width: auto;
  }
}
/* line 628, ../sass/components/_hei.scss */
.field--name-field-tool-icon-card > .field__item .flexItemText {
  padding: 0;
}
/* line 631, ../sass/components/_hei.scss */
.field--name-field-tool-icon-card > .field__item .flexItemText a:visited > h3, .field--name-field-tool-icon-card > .field__item .flexItemText .smaller-titled-cards a:visited > .field--name-field-social-phrase-group-title, .field--name-field-tool-icon-card > .field__item .flexItemText .smaller-titled-cards a:visited > .field--name-field-image-gallery-title, .field--name-field-tool-icon-card > .field__item .flexItemText a:visited > .field--name-field-social-phrase-group-title, .field--name-field-tool-icon-card > .field__item .flexItemText a:visited > .field--name-field-image-gallery-title {
  color: #6f57B5;
}
/* line 634, ../sass/components/_hei.scss */
.field--name-field-tool-icon-card > .field__item .flexItemText a:hover h3, .field--name-field-tool-icon-card > .field__item .flexItemText a:hover .field--name-field-social-phrase-group-title, .field--name-field-tool-icon-card > .field__item .flexItemText a:hover .field--name-field-image-gallery-title {
  text-shadow: .25px .25px;
}

@media all and (min-width: 1100px) {
  /* line 639, ../sass/components/_hei.scss */
  .field--name-field-tool-icon-card > .field__item:nth-child(4n) {
    padding-right: 0;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 639, ../sass/components/_hei.scss */
  .field--name-field-tool-icon-card > .field__item:nth-child(4n) {
    padding-right: 1em;
  }
}

@media all and (min-width: 768px) {
  /* line 647, ../sass/components/_hei.scss */
  .field--name-field-tool-icon-card > .field__item:nth-child(3n) {
    padding-right: 1em;
  }
}

@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 652, ../sass/components/_hei.scss */
  .field--name-field-tool-icon-card > .field__item:nth-child(2n) {
    padding-right: 0;
  }
}

/* line 659, ../sass/components/_hei.scss */
.hei-partnering .flexItemText {
  padding: 2em 0 0 2.5em;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 659, ../sass/components/_hei.scss */
  .hei-partnering .flexItemText {
    padding: 0 0 0 1.5rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 659, ../sass/components/_hei.scss */
  .hei-partnering .flexItemText {
    padding: 2em 0 0 0rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 668, ../sass/components/_hei.scss */
  .hei-partnering .flexItemText .field--name-field-url a {
    margin-right: auto;
    margin-left: auto;
  }
}
/* line 677, ../sass/components/_hei.scss */
.hei-partnering .flexItemImage img, .hei-partnering .flexItemImageHalf img, .hei-partnering .flexItemImageTenth img, .hei-partnering .flexItemImageFourth img, .hei-partnering .flexItemImageThird img, .hei-partnering .flexItemImageThirdHalf img, .hei-partnering .hero-image img {
  width: 100%;
  box-sizing: border-box;
}

/* line 687, ../sass/components/_hei.scss */
.hei-grants .field--name-field-url a {
  clear: both;
  margin: 1em auto;
}

/* line 693, ../sass/components/_hei.scss */
.field--name-field-grants-card {
  margin: 0 3em;
  border-top: 1px solid #979797;
  border-bottom: 1px solid #979797;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 693, ../sass/components/_hei.scss */
  .field--name-field-grants-card {
    margin: 0;
  }
}

/* line 706, ../sass/components/_hei.scss */
.field--name-field-community-card h2, .field--name-field-community-card .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .field--name-field-community-card h1, .field--name-field-community-card .contact-method-label {
  color: #fff;
}
/* line 709, ../sass/components/_hei.scss */
.field--name-field-community-card .initiativebannertext, .field--name-field-community-card .initiativebannertext-white {
  color: #fff;
}
/* line 712, ../sass/components/_hei.scss */
.field--name-field-community-card .field--name-field-url {
  padding-top: 1.5em;
}

/* line 721, ../sass/components/_hei.scss */
.hei-partnering h2, .hei-partnering .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .hei-partnering h1, .hei-partnering .contact-method-label, .hei-health-professionals h2, .hei-health-professionals .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .hei-health-professionals h1, .hei-health-professionals .contact-method-label {
  margin-top: 0;
}

/* line 726, ../sass/components/_hei.scss */
.hei-health-professionals .flexItemText {
  padding: 2em 0 0 2.5em;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 726, ../sass/components/_hei.scss */
  .hei-health-professionals .flexItemText {
    padding: 0 0 0 1.5rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 726, ../sass/components/_hei.scss */
  .hei-health-professionals .flexItemText {
    padding: 2em 0 0 0rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 737, ../sass/components/_hei.scss */
  .hei-health-professionals .field--name-field-url a {
    margin-right: auto;
    margin-left: auto;
  }
}

@media all and (min-width: 768px) {
  /* line 749, ../sass/components/_hei.scss */
  .hei-related-news .flexItemImage, .hei-related-news .flexItemImageHalf, .hei-related-news .flexItemImageTenth, .hei-related-news .flexItemImageFourth, .hei-related-news .flexItemImageThird, .hei-related-news .flexItemImageThirdHalf, .hei-related-news .hero-image {
    -webkit-box-ordinal-group: 2;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
}
/* line 754, ../sass/components/_hei.scss */
.hei-related-news .flexItemText.flexItemTextHalf {
  padding: 1.5em;
}
@media all and (min-width: 768px) {
  /* line 754, ../sass/components/_hei.scss */
  .hei-related-news .flexItemText.flexItemTextHalf {
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
}
/* line 760, ../sass/components/_hei.scss */
.hei-related-news .flexItemText.flexItemTextHalf .light-blue-bottom-border {
  border-bottom-color: #fff;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 763, ../sass/components/_hei.scss */
  .hei-related-news .flexItemText.flexItemTextHalf .bodytext, .hei-related-news .flexItemText.flexItemTextHalf .darkGrayBodyText, .hei-related-news .flexItemText.flexItemTextHalf .foa-expiration-date {
    display: none;
  }
}
/* line 768, ../sass/components/_hei.scss */
.hei-related-news .flexItemText.flexItemTextHalf .viewalllink, .hei-related-news .promoted-content-container .flexItemText.flexItemTextHalf .field--name-field-url > a, .promoted-content-container .hei-related-news .flexItemText.flexItemTextHalf .field--name-field-url > a, .hei-related-news .flexItemText.flexItemTextHalf .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .hei-related-news .flexItemText.flexItemTextHalf a, .hei-related-news .flexItemText.flexItemTextHalf .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .hei-related-news .flexItemText.flexItemTextHalf a, .hei-related-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .hei-related-news .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .hei-related-news .flexItemText.flexItemTextHalf .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .hei-related-news .flexItemText.flexItemTextHalf a, .hei-related-news .flexItemText.flexItemTextHalf .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .hei-related-news .flexItemText.flexItemTextHalf .field--name-field-url > a {
  display: block;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 768, ../sass/components/_hei.scss */
  .hei-related-news .flexItemText.flexItemTextHalf .viewalllink, .hei-related-news .promoted-content-container .flexItemText.flexItemTextHalf .field--name-field-url > a, .promoted-content-container .hei-related-news .flexItemText.flexItemTextHalf .field--name-field-url > a, .hei-related-news .flexItemText.flexItemTextHalf .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .hei-related-news .flexItemText.flexItemTextHalf a, .hei-related-news .flexItemText.flexItemTextHalf .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .hei-related-news .flexItemText.flexItemTextHalf a, .hei-related-news .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .hei-related-news .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .hei-related-news .flexItemText.flexItemTextHalf .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .hei-related-news .flexItemText.flexItemTextHalf a, .hei-related-news .flexItemText.flexItemTextHalf .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .hei-related-news .flexItemText.flexItemTextHalf .field--name-field-url > a {
    display: block;
  }
}

@media all and (min-width: 768px) {
  /* line 780, ../sass/components/_hei.scss */
  .hei-related-events .flexItemImage, .hei-related-events .flexItemImageHalf, .hei-related-events .flexItemImageTenth, .hei-related-events .flexItemImageFourth, .hei-related-events .flexItemImageThird, .hei-related-events .flexItemImageThirdHalf, .hei-related-events .hero-image {
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
}
@media all and (min-width: 768px) {
  /* line 785, ../sass/components/_hei.scss */
  .hei-related-events .flexItemText.flexItemTextHalf {
    -webkit-box-ordinal-group: 2;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 785, ../sass/components/_hei.scss */
  .hei-related-events .flexItemText.flexItemTextHalf {
    padding-top: 1.5em;
  }
}
/* line 797, ../sass/components/_hei.scss */
.hei-related-events .flexItemText.flexItemTextHalf .eventdatesLocationType .eventLocation .map-icon-top-page {
  background-position: center;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 803, ../sass/components/_hei.scss */
  .hei-related-events .flexItemText.flexItemTextHalf .bodytext, .hei-related-events .flexItemText.flexItemTextHalf .darkGrayBodyText, .hei-related-events .flexItemText.flexItemTextHalf .foa-expiration-date {
    display: none;
  }
}
/* line 808, ../sass/components/_hei.scss */
.hei-related-events .flexItemText.flexItemTextHalf .viewalllink, .hei-related-events .promoted-content-container .flexItemText.flexItemTextHalf .field--name-field-url > a, .promoted-content-container .hei-related-events .flexItemText.flexItemTextHalf .field--name-field-url > a, .hei-related-events .flexItemText.flexItemTextHalf .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .hei-related-events .flexItemText.flexItemTextHalf a, .hei-related-events .flexItemText.flexItemTextHalf .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .hei-related-events .flexItemText.flexItemTextHalf a, .hei-related-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .hei-related-events .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .hei-related-events .flexItemText.flexItemTextHalf .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .hei-related-events .flexItemText.flexItemTextHalf a, .hei-related-events .flexItemText.flexItemTextHalf .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .hei-related-events .flexItemText.flexItemTextHalf .field--name-field-url > a {
  display: block;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 808, ../sass/components/_hei.scss */
  .hei-related-events .flexItemText.flexItemTextHalf .viewalllink, .hei-related-events .promoted-content-container .flexItemText.flexItemTextHalf .field--name-field-url > a, .promoted-content-container .hei-related-events .flexItemText.flexItemTextHalf .field--name-field-url > a, .hei-related-events .flexItemText.flexItemTextHalf .contact-nhlbi--landing .field--name-field-directions-link a, .contact-nhlbi--landing .field--name-field-directions-link .hei-related-events .flexItemText.flexItemTextHalf a, .hei-related-events .flexItemText.flexItemTextHalf .isi-job-opportunities--landing .field--name-field-vacancies-link a, .isi-job-opportunities--landing .field--name-field-vacancies-link .hei-related-events .flexItemText.flexItemTextHalf a, .hei-related-events .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .field--name-field-promotional-card > .field__item .hei-related-events .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a, .hei-related-events .flexItemText.flexItemTextHalf .fixedDarkBluePane .field--name-field-traveling-and-security a, .fixedDarkBluePane .field--name-field-traveling-and-security .hei-related-events .flexItemText.flexItemTextHalf a, .hei-related-events .flexItemText.flexItemTextHalf .field--name-field-community-card .field--name-field-url > a, .field--name-field-community-card .hei-related-events .flexItemText.flexItemTextHalf .field--name-field-url > a {
    display: block;
  }
}

/* line 816, ../sass/components/_hei.scss */
.hei-related-initiatives-background {
  background-color: #E8E8E8;
}

/* line 820, ../sass/components/_hei.scss */
.hei-related-initiatives .field--name-field-related-initiatives > .field__item {
  background-color: #fff;
  margin-top: 1em;
  padding: 0;
}
/* line 828, ../sass/components/_hei.scss */
.hei-related-initiatives .flexItemText {
  padding: 1.5em;
}
/* line 830, ../sass/components/_hei.scss */
.hei-related-initiatives .flexItemText h2, .hei-related-initiatives .flexItemText .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .hei-related-initiatives .flexItemText h1, .hei-related-initiatives .flexItemText .contact-method-label {
  margin-top: 0;
  color: #0051a8;
}
/* line 834, ../sass/components/_hei.scss */
.hei-related-initiatives .flexItemText .contact-method-label {
  margin-top: 0;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 828, ../sass/components/_hei.scss */
  .hei-related-initiatives .flexItemText {
    padding-top: 0;
  }
}
/* line 841, ../sass/components/_hei.scss */
.hei-related-initiatives a:visited .flexItemText h2, .hei-related-initiatives a:visited .flexItemText .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .hei-related-initiatives a:visited .flexItemText h1, .hei-related-initiatives a:visited .flexItemText .contact-method-label {
  color: #6f57B5;
}
/* line 844, ../sass/components/_hei.scss */
.hei-related-initiatives a:hover .flexItemText h2, .hei-related-initiatives a:hover .flexItemText .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .hei-related-initiatives a:hover .flexItemText h1, .hei-related-initiatives a:hover .flexItemText .contact-method-label {
  font-weight: bold;
}

/* line 850, ../sass/components/_hei.scss */
#newsletter-block-alerts {
  margin: 1em;
}
/* line 852, ../sass/components/_hei.scss */
#newsletter-block-alerts form {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
}
/* line 856, ../sass/components/_hei.scss */
#newsletter-block-alerts form .emailAddress {
  width: 30%;
  border: solid 1px #d7d7d7;
  border-right-color: #fff;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 856, ../sass/components/_hei.scss */
  #newsletter-block-alerts form .emailAddress {
    width: 40%;
  }
}

/* line 868, ../sass/components/_hei.scss */
#newsletter-block-alerts form .emailAddress {
  width: 30%;
  border: solid 1px #d7d7d7;
  border-right-color: #fff;
}

/* line 874, ../sass/components/_hei.scss */
#footer-bottom .id-footer-block-alerts .emailAddress {
  width: 100%;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  padding: 0 0 0 10px;
  border-style: none;
  color: #222;
  height: 30px;
}

/* line 884, ../sass/components/_hei.scss */
#newsletter-block-alerts form .emailAddress {
  width: 40%;
}

/* line 888, ../sass/components/_hei.scss */
#newsletter-block-alerts .emailAddress {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  padding: 0 0 0 10px;
}

/* line 894, ../sass/components/_hei.scss */
#newsletter-block-alerts .subscribe {
  border: medium none;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  outline: medium none;
  margin-left: 0;
  margin-right: 0;
  padding: 0 2em;
  color: white;
}

/* line 906, ../sass/components/_hei.scss */
#newsletter-block-alerts form > input {
  height: 30px;
  color: #222;
}
/* line 910, ../sass/components/_hei.scss */
#newsletter-block-alerts form > input:focus {
  outline: #bf0d2e 3px dotted;
}

/* line 917, ../sass/components/_hei.scss */
.blue-blood-cells {
  background-image: url("../images/blue_bloodcells.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center right;
  display: block;
  content: " ";
  width: 100%;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 917, ../sass/components/_hei.scss */
  .blue-blood-cells {
    background-image: url("../images/blue_bloodcells-mobile.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center right;
    display: block;
    content: " ";
  }
}

/* line 927, ../sass/components/_hei.scss */
.blue-blood-vessel-walls {
  background-image: url("../images/blue_bloodvesselwalls.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center right;
  display: block;
  content: " ";
  width: 100%;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 927, ../sass/components/_hei.scss */
  .blue-blood-vessel-walls {
    background-image: url("../images/blue_bloodvesselwalls-mobile.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center right;
    display: block;
    content: " ";
  }
}

/* line 937, ../sass/components/_hei.scss */
.blue-dividing-cells {
  background-image: url("../images/blue_dividingcells.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center right;
  display: block;
  content: " ";
  width: 100%;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 937, ../sass/components/_hei.scss */
  .blue-dividing-cells {
    background-image: url("../images/blue_dividingcells-mobile.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center right;
    display: block;
    content: " ";
  }
}

/* line 947, ../sass/components/_hei.scss */
.blue-lung-cancer {
  background-image: url("../images/blue_lungcancer.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center right;
  display: block;
  content: " ";
  width: 100%;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 947, ../sass/components/_hei.scss */
  .blue-lung-cancer {
    background-image: url("../images/blue_lungcancer-mobile.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center right;
    display: block;
    content: " ";
  }
}

/* line 958, ../sass/components/_hei.scss */
.dark-blue-blood-cells {
  background-image: url("../images/darkblue_bloodcells.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center right;
  display: block;
  content: " ";
  width: 100%;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 958, ../sass/components/_hei.scss */
  .dark-blue-blood-cells {
    background-image: url("../images/darkblue_bloodcells-mobile.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center right;
    display: block;
    content: " ";
  }
}

/* line 968, ../sass/components/_hei.scss */
.dark-blue-blood-vessel-walls {
  background-image: url("../images/darkblue_bloodvesselwalls.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center right;
  display: block;
  content: " ";
  width: 100%;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 968, ../sass/components/_hei.scss */
  .dark-blue-blood-vessel-walls {
    background-image: url("../images/darkblue_bloodvesselwalls-mobile.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center right;
    display: block;
    content: " ";
  }
}

/* line 978, ../sass/components/_hei.scss */
.dark-blue-dividing-cells {
  background-image: url("../images/darkblue_dividingcells.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center right;
  display: block;
  content: " ";
  width: 100%;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 978, ../sass/components/_hei.scss */
  .dark-blue-dividing-cells {
    background-image: url("../images/darkblue_dividingcells-mobile.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center right;
    display: block;
    content: " ";
  }
}

/* line 988, ../sass/components/_hei.scss */
.dark-blue-lung-cancer {
  background-image: url("../images/darkblue_lungcancer.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center right;
  display: block;
  content: " ";
  width: 100%;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 988, ../sass/components/_hei.scss */
  .dark-blue-lung-cancer {
    background-image: url("../images/darkblue_lungcancer-mobile.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center right;
    display: block;
    content: " ";
  }
}

/* line 999, ../sass/components/_hei.scss */
.red-blood-cells {
  background-image: url("../images/red_bloodcells.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center right;
  display: block;
  content: " ";
  width: 100%;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 999, ../sass/components/_hei.scss */
  .red-blood-cells {
    background-image: url("../images/red_bloodcells-mobile.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center right;
    display: block;
    content: " ";
  }
}

/* line 1009, ../sass/components/_hei.scss */
.red-blood-vessel-walls {
  background-image: url("../images/red_bloodvesselwalls.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center right;
  display: block;
  content: " ";
  width: 100%;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1009, ../sass/components/_hei.scss */
  .red-blood-vessel-walls {
    background-image: url("../images/red_bloodvesselwalls-mobile.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center right;
    display: block;
    content: " ";
  }
}

/* line 1019, ../sass/components/_hei.scss */
.red-dividing-cells {
  background-image: url("../images/red_dividingcells.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center right;
  display: block;
  content: " ";
  width: 100%;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1019, ../sass/components/_hei.scss */
  .red-dividing-cells {
    background-image: url("../images/red_dividingcells-mobile.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center right;
    display: block;
    content: " ";
  }
}

/* line 1029, ../sass/components/_hei.scss */
.red-lung-cancer {
  background-image: url("../images/red_lungcancer.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center right;
  display: block;
  content: " ";
  width: 100%;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1029, ../sass/components/_hei.scss */
  .red-lung-cancer {
    background-image: url("../images/red_lungcancer-mobile.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center right;
    display: block;
    content: " ";
  }
}

/* line 1040, ../sass/components/_hei.scss */
.gray-blue-blood-cells {
  background-image: url("../images/grayblue_bloodcells.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center right;
  display: block;
  content: " ";
  width: 100%;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1040, ../sass/components/_hei.scss */
  .gray-blue-blood-cells {
    background-image: url("../images/grayblue_bloodcells-mobile.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center right;
    display: block;
    content: " ";
  }
}

/* line 1050, ../sass/components/_hei.scss */
.gray-blue-blood-vessel-walls {
  background-image: url("../images/grayblue_bloodvesselwalls.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center right;
  display: block;
  content: " ";
  width: 100%;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1050, ../sass/components/_hei.scss */
  .gray-blue-blood-vessel-walls {
    background-image: url("../images/grayblue_bloodvesselwalls-mobile.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center right;
    display: block;
    content: " ";
  }
}

/* line 1060, ../sass/components/_hei.scss */
.gray-blue-dividing-cells {
  background-image: url("../images/grayblue_dividingcells.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center right;
  display: block;
  content: " ";
  width: 100%;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1060, ../sass/components/_hei.scss */
  .gray-blue-dividing-cells {
    background-image: url("../images/grayblue_dividingcells-mobile.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center right;
    display: block;
    content: " ";
  }
}

/* line 1070, ../sass/components/_hei.scss */
.gray-blue-lung-cancer {
  background-image: url("../images/grayblue_lungcancer.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center right;
  display: block;
  content: " ";
  width: 100%;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1070, ../sass/components/_hei.scss */
  .gray-blue-lung-cancer {
    background-image: url("../images/grayblue_lungcancer-mobile.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center right;
    display: block;
    content: " ";
  }
}

/* line 1081, ../sass/components/_hei.scss */
.turq-blood-cells {
  background-image: url("../images/turq_bloodcells.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center right;
  display: block;
  content: " ";
  width: 100%;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1081, ../sass/components/_hei.scss */
  .turq-blood-cells {
    background-image: url("../images/turq_bloodcells-mobile.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center right;
    display: block;
    content: " ";
  }
}

/* line 1091, ../sass/components/_hei.scss */
.turq-blood-vessel-walls {
  background-image: url("../images/turq_bloodvesselwalls.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center right;
  display: block;
  content: " ";
  width: 100%;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1091, ../sass/components/_hei.scss */
  .turq-blood-vessel-walls {
    background-image: url("../images/turq_bloodvesselwalls-mobile.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center right;
    display: block;
    content: " ";
  }
}

/* line 1101, ../sass/components/_hei.scss */
.turq-dividing-cells {
  background-image: url("../images/turq_dividingcells.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center right;
  display: block;
  content: " ";
  width: 100%;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1101, ../sass/components/_hei.scss */
  .turq-dividing-cells {
    background-image: url("../images/turq_dividingcells-mobile.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center right;
    display: block;
    content: " ";
  }
}

/* line 1111, ../sass/components/_hei.scss */
.turq-lung-cancer {
  background-image: url("../images/turq_lungcancer.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center right;
  display: block;
  content: " ";
  width: 100%;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1111, ../sass/components/_hei.scss */
  .turq-lung-cancer {
    background-image: url("../images/turq_lungcancer-mobile.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center right;
    display: block;
    content: " ";
  }
}

/* line 1127, ../sass/components/_hei.scss */
.tool-icon-title-link-guidelines-format, .tool-icon-title-link-guidelines, .blue-tool-icon-title-link-guidelines, .red-tool-icon-title-link-guidelines, .turquoise-tool-icon-title-link-guidelines, .blue-violet-tool-icon-title-link-guidelines, .green-blue-tool-icon-title-link-guidelines, .yellow-turquoise-tool-icon-title-link-guidelines {
  background-size: 46px 57px;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  content: " ";
  height: 57px;
  margin-left: auto;
  margin-right: auto;
}
@media all and (min-width: 1100px) {
  /* line 1127, ../sass/components/_hei.scss */
  .tool-icon-title-link-guidelines-format, .tool-icon-title-link-guidelines, .blue-tool-icon-title-link-guidelines, .red-tool-icon-title-link-guidelines, .turquoise-tool-icon-title-link-guidelines, .blue-violet-tool-icon-title-link-guidelines, .green-blue-tool-icon-title-link-guidelines, .yellow-turquoise-tool-icon-title-link-guidelines {
    width: 46px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1127, ../sass/components/_hei.scss */
  .tool-icon-title-link-guidelines-format, .tool-icon-title-link-guidelines, .blue-tool-icon-title-link-guidelines, .red-tool-icon-title-link-guidelines, .turquoise-tool-icon-title-link-guidelines, .blue-violet-tool-icon-title-link-guidelines, .green-blue-tool-icon-title-link-guidelines, .yellow-turquoise-tool-icon-title-link-guidelines {
    background-size: 32px 39px;
    height: 39px;
    width: 32px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1127, ../sass/components/_hei.scss */
  .tool-icon-title-link-guidelines-format, .tool-icon-title-link-guidelines, .blue-tool-icon-title-link-guidelines, .red-tool-icon-title-link-guidelines, .turquoise-tool-icon-title-link-guidelines, .blue-violet-tool-icon-title-link-guidelines, .green-blue-tool-icon-title-link-guidelines, .yellow-turquoise-tool-icon-title-link-guidelines {
    background-size: 32px 39px;
    height: 39px;
    width: 32px;
  }
}

/* line 1130, ../sass/components/_hei.scss */
.tool-icon-title-link-guidelines {
  background-image: url("../images/ico-guidelines.svg");
}

/* line 1134, ../sass/components/_hei.scss */
.blue-tool-icon-title-link-guidelines {
  background-image: url("../images/ico-guidelines-blue.png");
}

/* line 1138, ../sass/components/_hei.scss */
.red-tool-icon-title-link-guidelines {
  background-image: url("../images/ico-guidelines-red.png");
}

/* line 1142, ../sass/components/_hei.scss */
.turquoise-tool-icon-title-link-guidelines {
  background-image: url("../images/ico-guidelines-turquoise.png");
}

/* line 1146, ../sass/components/_hei.scss */
.blue-violet-tool-icon-title-link-guidelines {
  background-image: url("../images/ico-guidelines-blue-violet.png");
}

/* line 1150, ../sass/components/_hei.scss */
.green-blue-tool-icon-title-link-guidelines {
  background-image: url("../images/ico-guidelines-green-blue.png");
}

/* line 1154, ../sass/components/_hei.scss */
.yellow-turquoise-tool-icon-title-link-guidelines {
  background-image: url("../images/ico-guidelines-yellow-turquoise.png");
}

/* line 1160, ../sass/components/_hei.scss */
.tool-icon-title-link-media-resources-format, .tool-icon-title-link-media-resources, .blue-tool-icon-title-link-media-resources, .red-tool-icon-title-link-media-resources, .turquoise-tool-icon-title-link-media-resources, .blue-violet-tool-icon-title-link-media-resources, .green-blue-tool-icon-title-link-media-resources, .yellow-turquoise-tool-icon-title-link-media-resources {
  background-size: 48px 61px;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  content: " ";
  height: 61px;
  margin-left: auto;
  margin-right: auto;
}
@media all and (min-width: 1100px) {
  /* line 1160, ../sass/components/_hei.scss */
  .tool-icon-title-link-media-resources-format, .tool-icon-title-link-media-resources, .blue-tool-icon-title-link-media-resources, .red-tool-icon-title-link-media-resources, .turquoise-tool-icon-title-link-media-resources, .blue-violet-tool-icon-title-link-media-resources, .green-blue-tool-icon-title-link-media-resources, .yellow-turquoise-tool-icon-title-link-media-resources {
    width: 48px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1160, ../sass/components/_hei.scss */
  .tool-icon-title-link-media-resources-format, .tool-icon-title-link-media-resources, .blue-tool-icon-title-link-media-resources, .red-tool-icon-title-link-media-resources, .turquoise-tool-icon-title-link-media-resources, .blue-violet-tool-icon-title-link-media-resources, .green-blue-tool-icon-title-link-media-resources, .yellow-turquoise-tool-icon-title-link-media-resources {
    background-size: 36px 46px;
    height: 46px;
    width: 36px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1160, ../sass/components/_hei.scss */
  .tool-icon-title-link-media-resources-format, .tool-icon-title-link-media-resources, .blue-tool-icon-title-link-media-resources, .red-tool-icon-title-link-media-resources, .turquoise-tool-icon-title-link-media-resources, .blue-violet-tool-icon-title-link-media-resources, .green-blue-tool-icon-title-link-media-resources, .yellow-turquoise-tool-icon-title-link-media-resources {
    background-size: 36px 46px;
    height: 46px;
    width: 36px;
  }
}

/* line 1163, ../sass/components/_hei.scss */
.tool-icon-title-link-media-resources {
  background-image: url("../images/ico-hei-mediaresources.svg");
}

/* line 1167, ../sass/components/_hei.scss */
.blue-tool-icon-title-link-media-resources {
  background-image: url("../images/ico-hei-mediaresources-blue.png");
}

/* line 1171, ../sass/components/_hei.scss */
.red-tool-icon-title-link-media-resources {
  background-image: url("../images/ico-hei-mediaresources-red.png");
}

/* line 1175, ../sass/components/_hei.scss */
.turquoise-tool-icon-title-link-media-resources {
  background-image: url("../images/ico-hei-mediaresources-turquoise.png");
}

/* line 1179, ../sass/components/_hei.scss */
.blue-violet-tool-icon-title-link-media-resources {
  background-image: url("../images/ico-hei-mediaresources-blue-violet.png");
}

/* line 1183, ../sass/components/_hei.scss */
.green-blue-tool-icon-title-link-media-resources {
  background-image: url("../images/ico-hei-mediaresources-green-blue.png");
}

/* line 1187, ../sass/components/_hei.scss */
.yellow-turquoise-tool-icon-title-link-media-resources {
  background-image: url("../images/ico-hei-mediaresources-yellow-turquoise.png");
}

/* line 1194, ../sass/components/_hei.scss */
.tool-icon-title-link-photos-format, .tool-icon-title-link-photos, .blue-tool-icon-title-link-photos, .red-tool-icon-title-link-photos, .turquoise-tool-icon-title-link-photos, .blue-violet-tool-icon-title-link-photos, .green-blue-tool-icon-title-link-photos, .yellow-turquoise-tool-icon-title-link-photos {
  background-size: 55px 44px;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  content: " ";
  height: 44px;
  margin-left: auto;
  margin-right: auto;
}
@media all and (min-width: 1100px) {
  /* line 1194, ../sass/components/_hei.scss */
  .tool-icon-title-link-photos-format, .tool-icon-title-link-photos, .blue-tool-icon-title-link-photos, .red-tool-icon-title-link-photos, .turquoise-tool-icon-title-link-photos, .blue-violet-tool-icon-title-link-photos, .green-blue-tool-icon-title-link-photos, .yellow-turquoise-tool-icon-title-link-photos {
    width: 55px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1194, ../sass/components/_hei.scss */
  .tool-icon-title-link-photos-format, .tool-icon-title-link-photos, .blue-tool-icon-title-link-photos, .red-tool-icon-title-link-photos, .turquoise-tool-icon-title-link-photos, .blue-violet-tool-icon-title-link-photos, .green-blue-tool-icon-title-link-photos, .yellow-turquoise-tool-icon-title-link-photos {
    background-size: 44px 35px;
    height: 35px;
    width: 44px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1194, ../sass/components/_hei.scss */
  .tool-icon-title-link-photos-format, .tool-icon-title-link-photos, .blue-tool-icon-title-link-photos, .red-tool-icon-title-link-photos, .turquoise-tool-icon-title-link-photos, .blue-violet-tool-icon-title-link-photos, .green-blue-tool-icon-title-link-photos, .yellow-turquoise-tool-icon-title-link-photos {
    background-size: 44px 35px;
    height: 35px;
    width: 44px;
  }
}

/* line 1197, ../sass/components/_hei.scss */
.tool-icon-title-link-photos {
  background-image: url("../images/ico-hei-photos.svg");
}

/* line 1202, ../sass/components/_hei.scss */
.blue-tool-icon-title-link-photos {
  background-image: url("../images/ico-hei-photos-blue.png");
}

/* line 1206, ../sass/components/_hei.scss */
.red-tool-icon-title-link-photos {
  background-image: url("../images/ico-hei-photos-red.png");
}

/* line 1210, ../sass/components/_hei.scss */
.turquoise-tool-icon-title-link-photos {
  background-image: url("../images/ico-hei-photos-turquoise.png");
}

/* line 1214, ../sass/components/_hei.scss */
.blue-violet-tool-icon-title-link-photos {
  background-image: url("../images/ico-hei-photos-blue-violet.png");
}

/* line 1218, ../sass/components/_hei.scss */
.green-blue-tool-icon-title-link-photos {
  background-image: url("../images/ico-hei-photos-green-blue.png");
}

/* line 1222, ../sass/components/_hei.scss */
.yellow-turquoise-tool-icon-title-link-photos {
  background-image: url("../images/ico-hei-photos-yellow-turquoise.png");
}

/* line 1228, ../sass/components/_hei.scss */
.tool-icon-title-link-posters-format, .tool-icon-title-link-posters, .blue-tool-icon-title-link-posters, .red-tool-icon-title-link-posters, .turquoise-tool-icon-title-link-posters, .blue-violet-tool-icon-title-link-posters, .green-blue-tool-icon-title-link-posters, .yellow-turquoise-tool-icon-title-link-posters {
  background-size: 51px 72px;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  content: " ";
  height: 72px;
  margin-left: auto;
  margin-right: auto;
}
@media all and (min-width: 1100px) {
  /* line 1228, ../sass/components/_hei.scss */
  .tool-icon-title-link-posters-format, .tool-icon-title-link-posters, .blue-tool-icon-title-link-posters, .red-tool-icon-title-link-posters, .turquoise-tool-icon-title-link-posters, .blue-violet-tool-icon-title-link-posters, .green-blue-tool-icon-title-link-posters, .yellow-turquoise-tool-icon-title-link-posters {
    width: 51px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1228, ../sass/components/_hei.scss */
  .tool-icon-title-link-posters-format, .tool-icon-title-link-posters, .blue-tool-icon-title-link-posters, .red-tool-icon-title-link-posters, .turquoise-tool-icon-title-link-posters, .blue-violet-tool-icon-title-link-posters, .green-blue-tool-icon-title-link-posters, .yellow-turquoise-tool-icon-title-link-posters {
    background-size: 34px 48px;
    height: 48px;
    width: 34px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1228, ../sass/components/_hei.scss */
  .tool-icon-title-link-posters-format, .tool-icon-title-link-posters, .blue-tool-icon-title-link-posters, .red-tool-icon-title-link-posters, .turquoise-tool-icon-title-link-posters, .blue-violet-tool-icon-title-link-posters, .green-blue-tool-icon-title-link-posters, .yellow-turquoise-tool-icon-title-link-posters {
    background-size: 34px 48px;
    height: 48px;
    width: 34px;
  }
}

/* line 1231, ../sass/components/_hei.scss */
.tool-icon-title-link-posters {
  background-image: url("../images/ico-hei-posters.svg");
}

/* line 1235, ../sass/components/_hei.scss */
.blue-tool-icon-title-link-posters {
  background-image: url("../images/ico-hei-posters-blue.png");
}

/* line 1239, ../sass/components/_hei.scss */
.red-tool-icon-title-link-posters {
  background-image: url("../images/ico-hei-posters-red.png");
}

/* line 1243, ../sass/components/_hei.scss */
.turquoise-tool-icon-title-link-posters {
  background-image: url("../images/ico-hei-posters-turquoise.png");
}

/* line 1247, ../sass/components/_hei.scss */
.blue-violet-tool-icon-title-link-posters {
  background-image: url("../images/ico-hei-posters-blue-violet.png");
}

/* line 1251, ../sass/components/_hei.scss */
.green-blue-tool-icon-title-link-posters {
  background-image: url("../images/ico-hei-posters-green-blue.png");
}

/* line 1255, ../sass/components/_hei.scss */
.yellow-turquoise-tool-icon-title-link-posters {
  background-image: url("../images/ico-hei-posters-yellow-turquoise.png");
}

/* line 1261, ../sass/components/_hei.scss */
.tool-icon-title-link-publications-format, .tool-icon-title-link-publications, .blue-tool-icon-title-link-publications, .red-tool-icon-title-link-publications, .turquoise-tool-icon-title-link-publications, .blue-violet-tool-icon-title-link-publications, .green-blue-tool-icon-title-link-publications, .yellow-turquoise-tool-icon-title-link-publications {
  background-size: 45px 57px;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  content: " ";
  height: 57px;
  margin-left: auto;
  margin-right: auto;
}
@media all and (min-width: 1100px) {
  /* line 1261, ../sass/components/_hei.scss */
  .tool-icon-title-link-publications-format, .tool-icon-title-link-publications, .blue-tool-icon-title-link-publications, .red-tool-icon-title-link-publications, .turquoise-tool-icon-title-link-publications, .blue-violet-tool-icon-title-link-publications, .green-blue-tool-icon-title-link-publications, .yellow-turquoise-tool-icon-title-link-publications {
    width: 45px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1261, ../sass/components/_hei.scss */
  .tool-icon-title-link-publications-format, .tool-icon-title-link-publications, .blue-tool-icon-title-link-publications, .red-tool-icon-title-link-publications, .turquoise-tool-icon-title-link-publications, .blue-violet-tool-icon-title-link-publications, .green-blue-tool-icon-title-link-publications, .yellow-turquoise-tool-icon-title-link-publications {
    background-size: 32px 41px;
    height: 41px;
    width: 32px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1261, ../sass/components/_hei.scss */
  .tool-icon-title-link-publications-format, .tool-icon-title-link-publications, .blue-tool-icon-title-link-publications, .red-tool-icon-title-link-publications, .turquoise-tool-icon-title-link-publications, .blue-violet-tool-icon-title-link-publications, .green-blue-tool-icon-title-link-publications, .yellow-turquoise-tool-icon-title-link-publications {
    background-size: 32px 41px;
    height: 41px;
    width: 32px;
  }
}

/* line 1264, ../sass/components/_hei.scss */
.tool-icon-title-link-publications {
  background-image: url("../images/ico-hei-publications.svg");
}

/* line 1268, ../sass/components/_hei.scss */
.blue-tool-icon-title-link-publications {
  background-image: url("../images/ico-hei-publications-blue.png");
}

/* line 1272, ../sass/components/_hei.scss */
.red-tool-icon-title-link-publications {
  background-image: url("../images/ico-hei-publications-red.png");
}

/* line 1276, ../sass/components/_hei.scss */
.turquoise-tool-icon-title-link-publications {
  background-image: url("../images/ico-hei-publications-turquoise.png");
}

/* line 1280, ../sass/components/_hei.scss */
.blue-violet-tool-icon-title-link-publications {
  background-image: url("../images/ico-hei-publications-blue-violet.png");
}

/* line 1284, ../sass/components/_hei.scss */
.green-blue-tool-icon-title-link-publications {
  background-image: url("../images/ico-hei-publications-green-blue.png");
}

/* line 1288, ../sass/components/_hei.scss */
.yellow-turquoise-tool-icon-title-link-publications {
  background-image: url("../images/ico-hei-publications-yellow-turquoise.png");
}

/* line 1293, ../sass/components/_hei.scss */
.tool-icon-title-link-social-media-format, .tool-icon-title-link-social-media, .blue-tool-icon-title-link-social-media, .red-tool-icon-title-link-social-media, .turquoise-tool-icon-title-link-social-media, .blue-violet-tool-icon-title-link-social-media, .green-blue-tool-icon-title-link-social-media, .yellow-turquoise-tool-icon-title-link-social-media {
  background-size: 69px 58px;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  content: " ";
  height: 58px;
  margin-left: auto;
  margin-right: auto;
}
@media all and (min-width: 1100px) {
  /* line 1293, ../sass/components/_hei.scss */
  .tool-icon-title-link-social-media-format, .tool-icon-title-link-social-media, .blue-tool-icon-title-link-social-media, .red-tool-icon-title-link-social-media, .turquoise-tool-icon-title-link-social-media, .blue-violet-tool-icon-title-link-social-media, .green-blue-tool-icon-title-link-social-media, .yellow-turquoise-tool-icon-title-link-social-media {
    width: 69px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1293, ../sass/components/_hei.scss */
  .tool-icon-title-link-social-media-format, .tool-icon-title-link-social-media, .blue-tool-icon-title-link-social-media, .red-tool-icon-title-link-social-media, .turquoise-tool-icon-title-link-social-media, .blue-violet-tool-icon-title-link-social-media, .green-blue-tool-icon-title-link-social-media, .yellow-turquoise-tool-icon-title-link-social-media {
    background-size: 45px 38px;
    height: 38px;
    width: 45px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1293, ../sass/components/_hei.scss */
  .tool-icon-title-link-social-media-format, .tool-icon-title-link-social-media, .blue-tool-icon-title-link-social-media, .red-tool-icon-title-link-social-media, .turquoise-tool-icon-title-link-social-media, .blue-violet-tool-icon-title-link-social-media, .green-blue-tool-icon-title-link-social-media, .yellow-turquoise-tool-icon-title-link-social-media {
    background-size: 45px 38px;
    height: 38px;
    width: 45px;
  }
}

/* line 1296, ../sass/components/_hei.scss */
.tool-icon-title-link-social-media {
  background-image: url("../images/ico-hei-socialmedia.svg");
}

/* line 1300, ../sass/components/_hei.scss */
.blue-tool-icon-title-link-social-media {
  background-image: url("../images/ico-hei-socialmedia-blue.png");
}

/* line 1304, ../sass/components/_hei.scss */
.red-tool-icon-title-link-social-media {
  background-image: url("../images/ico-hei-socialmedia-red.png");
}

/* line 1308, ../sass/components/_hei.scss */
.turquoise-tool-icon-title-link-social-media {
  background-image: url("../images/ico-hei-socialmedia-turquoise.png");
}

/* line 1312, ../sass/components/_hei.scss */
.blue-violet-tool-icon-title-link-social-media {
  background-image: url("../images/ico-hei-socialmedia-blue-violet.png");
}

/* line 1316, ../sass/components/_hei.scss */
.green-blue-tool-icon-title-link-social-media {
  background-image: url("../images/ico-hei-socialmedia-green-blue.png");
}

/* line 1320, ../sass/components/_hei.scss */
.yellow-turquoise-tool-icon-title-link-social-media {
  background-image: url("../images/ico-hei-socialmedia-yellow-turquoise.png");
}

/* line 1325, ../sass/components/_hei.scss */
.tool-icon-title-link-toolkits-format, .tool-icon-title-link-toolkits, .blue-tool-icon-title-link-toolkits, .red-tool-icon-title-link-toolkits, .turquoise-tool-icon-title-link-toolkits, .blue-violet-tool-icon-title-link-toolkits, .green-blue-tool-icon-title-link-toolkits, .yellow-turquoise-tool-icon-title-link-toolkits {
  background-size: 56px 53px;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  content: " ";
  height: 53px;
  margin-left: auto;
  margin-right: auto;
}
@media all and (min-width: 1100px) {
  /* line 1325, ../sass/components/_hei.scss */
  .tool-icon-title-link-toolkits-format, .tool-icon-title-link-toolkits, .blue-tool-icon-title-link-toolkits, .red-tool-icon-title-link-toolkits, .turquoise-tool-icon-title-link-toolkits, .blue-violet-tool-icon-title-link-toolkits, .green-blue-tool-icon-title-link-toolkits, .yellow-turquoise-tool-icon-title-link-toolkits {
    width: 56px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1325, ../sass/components/_hei.scss */
  .tool-icon-title-link-toolkits-format, .tool-icon-title-link-toolkits, .blue-tool-icon-title-link-toolkits, .red-tool-icon-title-link-toolkits, .turquoise-tool-icon-title-link-toolkits, .blue-violet-tool-icon-title-link-toolkits, .green-blue-tool-icon-title-link-toolkits, .yellow-turquoise-tool-icon-title-link-toolkits {
    background-size: 45px 42px;
    height: 42px;
    width: 45px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1325, ../sass/components/_hei.scss */
  .tool-icon-title-link-toolkits-format, .tool-icon-title-link-toolkits, .blue-tool-icon-title-link-toolkits, .red-tool-icon-title-link-toolkits, .turquoise-tool-icon-title-link-toolkits, .blue-violet-tool-icon-title-link-toolkits, .green-blue-tool-icon-title-link-toolkits, .yellow-turquoise-tool-icon-title-link-toolkits {
    background-size: 45px 42px;
    height: 42px;
    width: 45px;
  }
}

/* line 1328, ../sass/components/_hei.scss */
.tool-icon-title-link-toolkits {
  background-image: url("../images/ico-toolkits.svg");
}

/* line 1332, ../sass/components/_hei.scss */
.blue-tool-icon-title-link-toolkits {
  background-image: url("../images/ico-toolkits-blue.png");
}

/* line 1336, ../sass/components/_hei.scss */
.red-tool-icon-title-link-toolkits {
  background-image: url("../images/ico-toolkits-red.png");
}

/* line 1340, ../sass/components/_hei.scss */
.turquoise-tool-icon-title-link-toolkits {
  background-image: url("../images/ico-toolkits-turquoise.png");
}

/* line 1344, ../sass/components/_hei.scss */
.blue-violet-tool-icon-title-link-toolkits {
  background-image: url("../images/ico-toolkits-blue-violet.png");
}

/* line 1348, ../sass/components/_hei.scss */
.green-blue-tool-icon-title-link-toolkits {
  background-image: url("../images/ico-toolkits-green-blue.png");
}

/* line 1352, ../sass/components/_hei.scss */
.yellow-turquoise-tool-icon-title-link-toolkits {
  background-image: url("../images/ico-toolkits-yellow-turquoise.png");
}

/* line 1357, ../sass/components/_hei.scss */
.tool-icon-title-link-videos-format, .tool-icon-title-link-videos, .blue-tool-icon-title-link-videos, .red-tool-icon-title-link-videos, .turquoise-tool-icon-title-link-videos, .blue-violet-tool-icon-title-link-videos, .green-blue-tool-icon-title-link-videos, .yellow-turquoise-tool-icon-title-link-videos {
  background-size: 56px 45px;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  content: " ";
  height: 45px;
  margin-left: auto;
  margin-right: auto;
}
@media all and (min-width: 1100px) {
  /* line 1357, ../sass/components/_hei.scss */
  .tool-icon-title-link-videos-format, .tool-icon-title-link-videos, .blue-tool-icon-title-link-videos, .red-tool-icon-title-link-videos, .turquoise-tool-icon-title-link-videos, .blue-violet-tool-icon-title-link-videos, .green-blue-tool-icon-title-link-videos, .yellow-turquoise-tool-icon-title-link-videos {
    width: 56px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1357, ../sass/components/_hei.scss */
  .tool-icon-title-link-videos-format, .tool-icon-title-link-videos, .blue-tool-icon-title-link-videos, .red-tool-icon-title-link-videos, .turquoise-tool-icon-title-link-videos, .blue-violet-tool-icon-title-link-videos, .green-blue-tool-icon-title-link-videos, .yellow-turquoise-tool-icon-title-link-videos {
    background-size: 48px 38px;
    height: 38px;
    width: 48px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1357, ../sass/components/_hei.scss */
  .tool-icon-title-link-videos-format, .tool-icon-title-link-videos, .blue-tool-icon-title-link-videos, .red-tool-icon-title-link-videos, .turquoise-tool-icon-title-link-videos, .blue-violet-tool-icon-title-link-videos, .green-blue-tool-icon-title-link-videos, .yellow-turquoise-tool-icon-title-link-videos {
    background-size: 48px 38px;
    height: 38px;
    width: 48px;
  }
}

/* line 1360, ../sass/components/_hei.scss */
.tool-icon-title-link-videos {
  background-image: url("../images/ico-hei-videos.svg");
}

/* line 1364, ../sass/components/_hei.scss */
.blue-tool-icon-title-link-videos {
  background-image: url("../images/ico-hei-videos-blue.png");
}

/* line 1368, ../sass/components/_hei.scss */
.red-tool-icon-title-link-videos {
  background-image: url("../images/ico-hei-videos-red.png");
}

/* line 1372, ../sass/components/_hei.scss */
.turquoise-tool-icon-title-link-videos {
  background-image: url("../images/ico-hei-videos-turquoise.png");
}

/* line 1376, ../sass/components/_hei.scss */
.blue-violet-tool-icon-title-link-videos {
  background-image: url("../images/ico-hei-videos-blue-violet.png");
}

/* line 1380, ../sass/components/_hei.scss */
.green-blue-tool-icon-title-link-videos {
  background-image: url("../images/ico-hei-videos-green-blue.png");
}

/* line 1384, ../sass/components/_hei.scss */
.yellow-turquoise-tool-icon-title-link-videos {
  background-image: url("../images/ico-hei-videos-yellow-turquoise.png");
}

/* line 1390, ../sass/components/_hei.scss */
.field--name-field-partnering-card .flexcontainer, .field--name-field-partnering-card .related-ht-ser-container, .field--name-field-partnering-card .field--name-field-sfa-card, .field--name-field-partnering-card .field--name-field-speaker,
.field--name-field-partnering-card .field--name-field-executives, .field--name-field-partnering-card .standard-card-field, .field--name-field-partnering-card .field--name-field-advisory-committees, .field--name-field-partnering-card .contact-nhlbi-titleblock, .field--name-field-partnering-card .field--name-field-contact-cards, .field--name-field-partnering-card .field--name-field-employment-opportunity-car, .field--name-field-partnering-card .all-grants-foa-container,
.field--name-field-partnering-card .field--name-field-program-officers,
.field--name-field-partnering-card .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content,
.field--name-field-partnering-card .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content, .field--name-field-partnering-card .node--type-individual-contact .field--name-field-contact-methods, .node--type-individual-contact .field--name-field-partnering-card .field--name-field-contact-methods,
.field--name-field-partnering-card .node--type-division.node--view-mode-full .field--name-field-contact-methods,
.node--type-division.node--view-mode-full .field--name-field-partnering-card .field--name-field-contact-methods,
.field--name-field-partnering-card .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods,
.node--type-division.node--view-mode-subscribe .field--name-field-partnering-card .field--name-field-contact-methods,
.field--name-field-partnering-card .node--type-branch.node--view-mode-full .field--name-field-contact-methods,
.node--type-branch.node--view-mode-full .field--name-field-partnering-card .field--name-field-contact-methods,
.field--name-field-partnering-card .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods,
.node--type-branch.node--view-mode-subscribe .field--name-field-partnering-card .field--name-field-contact-methods,
.field--name-field-partnering-card .node--type-general.node--view-mode-full .field--name-field-contact-methods,
.node--type-general.node--view-mode-full .field--name-field-partnering-card .field--name-field-contact-methods,
.field--name-field-partnering-card .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods,
.node--type-general.node--view-mode-subscribe .field--name-field-partnering-card .field--name-field-contact-methods,
.field--name-field-partnering-card .node--type-health-education-initiative.node--view-mode-full .field--name-field-contact-methods,
.node--type-health-education-initiative.node--view-mode-full .field--name-field-partnering-card .field--name-field-contact-methods,
.field--name-field-partnering-card .node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-contact-methods,
.node--type-health-education-initiative.node--view-mode-subscribe .field--name-field-partnering-card .field--name-field-contact-methods, .field--name-field-partnering-card .node--type-committee .field--name-field-card-text, .node--type-committee .field--name-field-partnering-card .field--name-field-card-text, .field--name-field-partnering-card .news-and-events--landing .landing-social, .news-and-events--landing .field--name-field-partnering-card .landing-social, .field--name-field-partnering-card .field--name-field-sfa-cards, .field--name-field-partnering-card .locationMap.contact-location-map-container, .field--name-field-partnering-card .locationMap, .field--name-field-partnering-card .grants-and-training-card-wrapper, .field--name-field-partnering-card .about-nhlbi-division-card-wrapper, .field--name-field-partnering-card .hei-tools-icon-card-wrapper, .field--name-field-partnering-card .field--name-field-grants-and-training-card, .field--name-field-partnering-card .field--name-field-division-card, .field--name-field-partnering-card .field--name-field-tool-icon-card, .field--name-field-partnering-card .field--name-field-promotional-card, .field--name-field-partnering-card .field--name-field-sv-promotional-cards, .field--name-field-partnering-card .field--name-field-about-nhlbi-promotional-ca, .field--name-field-partnering-card .strategic-vision-titleblock, .field--name-field-partnering-card .ppg-titleblock-wrapper, .field--name-field-partnering-card .ppg-guidelines-card-wrapper, .field--name-field-partnering-card .field--name-field-human-subject-cards, .field--name-field-partnering-card .field--name-field-section-card, .field--name-field-partnering-card .field--name-field-highlight-card, .field--name-field-partnering-card .health-topic-teaser-container, .field--name-field-partnering-card .about-nhlbi-our-mission-wrapper, .field--name-field-partnering-card .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard, .about-nhlbi-our-mission-wrapper .field--name-field-partnering-card .field--name-field-leadership > .director-bioCard, .field--name-field-partnering-card .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ, .nhlbi-publications-and-resources--landing .field--name-field-partnering-card .field--name-field-health-consumer-nhlbi-publ,
.field--name-field-partnering-card .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi,
.nhlbi-publications-and-resources--landing .field--name-field-partnering-card .field--name-field-health-professionals-nhlbi, .field--name-field-partnering-card .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .standard-teaser, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .field--name-field-partnering-card .standard-teaser,
.field--name-field-partnering-card .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .standard-teaser,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .field--name-field-partnering-card .standard-teaser, .field--name-field-partnering-card .publicationsBlock.view-nhlbi-publications > .view-content,
.field--name-field-partnering-card .field--name-field-related-publications, .field--name-field-partnering-card .healthEducationBlock .standard-teaser, .healthEducationBlock .field--name-field-partnering-card .standard-teaser, .field--name-field-partnering-card .systematicEvidenceReviewsBlock .view-content, .systematicEvidenceReviewsBlock .field--name-field-partnering-card .view-content,
.field--name-field-partnering-card .clinicalPracticeGuidelinesBlock .view-content,
.clinicalPracticeGuidelinesBlock .field--name-field-partnering-card .view-content,
.field--name-field-partnering-card .publicationsAndFactSheetsBlock .view-content,
.publicationsAndFactSheetsBlock .field--name-field-partnering-card .view-content, .field--name-field-partnering-card .rtFlexContainer, .field--name-field-partnering-card .node--type-research-topic .field--name-field-science-supplemental-page, .node--type-research-topic .field--name-field-partnering-card .field--name-field-science-supplemental-page, .field--name-field-partnering-card .node--type-research-topic .researchTopicPublications, .node--type-research-topic .field--name-field-partnering-card .researchTopicPublications, .field--name-field-partnering-card .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard, .node--type-research-topic .field--name-field-content > .field__item .field--name-field-partnering-card article.listTeaserCard, .field--name-field-partnering-card .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser, .node--type-research-topic .field--name-field-content > .field__item .field--name-field-partnering-card article.standard-teaser,
.field--name-field-partnering-card .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard,
.node--type-research-topic .field--name-field-content > .field__item .field--name-field-partnering-card article.newsEventsCard, .field--name-field-partnering-card .esi-feature-card, .field--name-field-partnering-card .featured-science-instance-teaser-container, .field--name-field-partnering-card .sfa-teaser-container, .field--name-field-partnering-card .training-opportunity-card .field--name-field-associated-people, .training-opportunity-card .field--name-field-partnering-card .field--name-field-associated-people, .field--name-field-partnering-card .field--name-field-featured-training-opportun, .field--name-field-partnering-card .field--name-field-career-stages, .field--name-field-partnering-card .field--name-field-workforce-development-card, .field--name-field-partnering-card .node--type-update.node--view-mode-executive-teaser, .field--name-field-partnering-card .news-and-events-titleblock, .field--name-field-partnering-card .contact-box > .field--name-field-contact-methods, .field--name-field-partnering-card .leadership-container, .field--name-field-partnering-card .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership, .leadership-container .leadership-deputy-director-container .field--name-field-partnering-card .field--name-field-additional-leadership, .field--name-field-partnering-card .branch-leadership-container, .field--name-field-partnering-card .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership, .branch-leadership-container .leadership-deputy-director-container .field--name-field-partnering-card .field--name-field-additional-leadership, .field--name-field-partnering-card .node--type-general .field--name-field-related-publications, .node--type-general .field--name-field-partnering-card .field--name-field-related-publications, .field--name-field-partnering-card .node--type-general .field--name-field-general-publications-rlt, .node--type-general .field--name-field-partnering-card .field--name-field-general-publications-rlt, .field--name-field-partnering-card .node--type-general .field--name-field-general-publications-rlt > .field__item .standard-teaser, .node--type-general .field--name-field-general-publications-rlt > .field__item .field--name-field-partnering-card .standard-teaser, .field--name-field-partnering-card .node--type-general .field--name-field-related-publications > .field__item .standard-teaser, .node--type-general .field--name-field-related-publications > .field__item .field--name-field-partnering-card .standard-teaser, .field--name-field-partnering-card .objective-text-container, .field--name-field-partnering-card .objective-list-container, .field--name-field-partnering-card .field--name-field-goal-card, .field--name-field-partnering-card .strategic-vision-landing-goals-wrapper, .field--name-field-partnering-card .node--type-principal-investigator .striped-container-wrapper, .node--type-principal-investigator .field--name-field-partnering-card .striped-container-wrapper, .field--name-field-partnering-card .node--type-principal-investigator .striped-container, .node--type-principal-investigator .field--name-field-partnering-card .striped-container, .field--name-field-partnering-card .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .field--name-field-partnering-card article,
.field--name-field-partnering-card .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .field--name-field-partnering-card article, .field--name-field-partnering-card .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .field--name-field-partnering-card .standard-teaser.node--view-mode-short-teaser, .field--name-field-partnering-card .field--name-field-awards, .field--name-field-partnering-card .registerSocialContainer, .field--name-field-partnering-card .eventdatesLocationType, .field--name-field-partnering-card .news-article-container, .field--name-field-partnering-card .node--type-feature-article.node--view-mode-press-release-teaser,
.field--name-field-partnering-card .node--type-press-release.node--view-mode-press-release-teaser,
.field--name-field-partnering-card .node--type-events.node--view-mode-press-release-teaser,
.field--name-field-partnering-card .node--type-feature-article.node--view-mode-hp-press-release-teaser,
.field--name-field-partnering-card .node--type-press-release.node--view-mode-hp-press-release-teaser,
.field--name-field-partnering-card .node--type-events.node--view-mode-hp-press-release-teaser,
.field--name-field-partnering-card .node--type-news-mention.node--view-mode-hp-press-release-teaser, .field--name-field-partnering-card .news-header-container, .field--name-field-partnering-card .contacts-container .field--name-field-contacts, .contacts-container .field--name-field-partnering-card .field--name-field-contacts, .field--name-field-partnering-card .publicationsBox .field--name-field-related-publications, .publicationsBox .field--name-field-partnering-card .field--name-field-related-publications, .field--name-field-partnering-card .field--name-field-primary-featured-item, .field--name-field-partnering-card .field--name-field-additional-featured-items, .field--name-field-partnering-card .homepage-health-topics-container, .field--name-field-partnering-card .homepage-mission-areas-container, .field--name-field-partnering-card .homepage-location-container, .field--name-field-partnering-card .field--name-field-alumni, .field--name-field-partnering-card .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-partnering-card .nhlbi-publication-details-container,
.field--name-field-partnering-card .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-partnering-card .nhlbi-publication-details-container, .field--name-field-partnering-card .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-partnering-card .field--name-field-related-nhlbi-publications,
.field--name-field-partnering-card .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-partnering-card .field--name-field-related-nhlbi-publications, .field--name-field-partnering-card .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .standard-teaser, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .field--name-field-partnering-card .standard-teaser,
.field--name-field-partnering-card .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .standard-teaser,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .field--name-field-partnering-card .standard-teaser {
  overflow: visible;
}

/* line 1397, ../sass/components/_hei.scss */
.sfa-teaser-container .herobannertitle a, .sfa-teaser-container .herobannertitle-grey a {
  display: block;
}

/* line 1403, ../sass/components/_hei.scss */
.hei-related-initiatives .field--name-field-card-title {
  color: #222;
}

/* line 1407, ../sass/components/_hei.scss */
.hei-related-initiatives a.no-hover-color h2, .hei-related-initiatives a.no-hover-color .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .hei-related-initiatives a.no-hover-color h1, .hei-related-initiatives a.no-hover-color .contact-method-label {
  text-decoration-color: #222;
}

/* line 3, ../sass/components/_filters.scss */
.nhlbi-searchbar-container {
  text-align: center;
}
/* line 8, ../sass/components/_filters.scss */
.nhlbi-searchbar-container .nhlbi-searchbar {
  display: inline-block;
  background-color: #f4f4f4;
  margin: 20px auto 10px;
  padding: 10px;
  border: 10px solid white;
}
/* line 16, ../sass/components/_filters.scss */
.nhlbi-searchbar-container .nhlbi-searchbar .form-type-textfield {
  display: inline;
  color: #222;
}
/* line 21, ../sass/components/_filters.scss */
.nhlbi-searchbar-container .nhlbi-searchbar input {
  height: 35px;
}
/* line 24, ../sass/components/_filters.scss */
.nhlbi-searchbar-container .nhlbi-searchbar input:focus {
  outline: #bf0d2e dotted 3px;
}
/* line 29, ../sass/components/_filters.scss */
.nhlbi-searchbar-container .nhlbi-searchbar select {
  color: #222;
}
/* line 31, ../sass/components/_filters.scss */
.nhlbi-searchbar-container .nhlbi-searchbar select:focus {
  outline: #bf0d2e dotted 3px;
}
/* line 37, ../sass/components/_filters.scss */
.nhlbi-searchbar-container .nhlbi-searchbar .searchbar-text-button {
  display: flex;
}
/* line 39, ../sass/components/_filters.scss */
.nhlbi-searchbar-container .nhlbi-searchbar .searchbar-text-button .form-type-textfield {
  margin-top: 0px;
  flex-grow: 1;
  margin-bottom: 5px;
}
/* line 44, ../sass/components/_filters.scss */
.nhlbi-searchbar-container .nhlbi-searchbar .searchbar-text-button #edit-name, .nhlbi-searchbar-container .nhlbi-searchbar .searchbar-text-button .form-text {
  width: 100%;
  padding-left: 10px;
}
/* line 53, ../sass/components/_filters.scss */
.nhlbi-searchbar-container .nhlbi-searchbar #text-input-cross {
  background-image: url("../images/ico-cross.png");
  background-size: 15px 15px;
  background-repeat: no-repeat;
  background-position: initial;
  display: inline-block;
  content: " ";
  height: 15px;
  display: none;
  background-color: white;
  background-position: left center;
  width: 20px;
  height: 35px;
  cursor: pointer;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 53, ../sass/components/_filters.scss */
  .nhlbi-searchbar-container .nhlbi-searchbar #text-input-cross {
    background-size: 15px 15px;
    height: 15px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 53, ../sass/components/_filters.scss */
  .nhlbi-searchbar-container .nhlbi-searchbar #text-input-cross {
    background-size: 15px 15px;
    height: 15px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 53, ../sass/components/_filters.scss */
  .nhlbi-searchbar-container .nhlbi-searchbar #text-input-cross {
    background-position: left center;
    height: 35px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 53, ../sass/components/_filters.scss */
  .nhlbi-searchbar-container .nhlbi-searchbar #text-input-cross {
    background-position: left center;
    height: 35px;
  }
}
/* line 77, ../sass/components/_filters.scss */
.nhlbi-searchbar-container .nhlbi-searchbar .form-autocomplete, .nhlbi-searchbar-container .nhlbi-searchbar #edit-name {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  border: transparent;
}
/* line 83, ../sass/components/_filters.scss */
.nhlbi-searchbar-container .nhlbi-searchbar .form-autocomplete#edit-name {
  padding: 0 0 0 35px;
}
/* line 87, ../sass/components/_filters.scss */
.nhlbi-searchbar-container .nhlbi-searchbar .form-submit, .nhlbi-searchbar-container .nhlbi-searchbar #edit-add-other-filters {
  background-color: #1a568c;
  border: medium none;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  outline: medium none;
  margin-left: 0;
  margin-right: 0;
  padding: 0 15px;
  color: white;
}
/* line 100, ../sass/components/_filters.scss */
.nhlbi-searchbar-container .nhlbi-searchbar .form-submit:focus, .nhlbi-searchbar-container .nhlbi-searchbar #edit-add-other-filters:focus {
  outline: #bf0d2e dotted 3px;
}
/* line 104, ../sass/components/_filters.scss */
.nhlbi-searchbar-container .nhlbi-searchbar #edit-add-other-filters {
  float: right;
  cursor: pointer;
  margin: 0;
  height: 35px;
}
/* line 108, ../sass/components/_filters.scss */
.nhlbi-searchbar-container .nhlbi-searchbar #edit-add-other-filters p {
  display: table-cell;
  height: 35px;
  margin: 0;
  text-align: left;
  vertical-align: middle;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 108, ../sass/components/_filters.scss */
  .nhlbi-searchbar-container .nhlbi-searchbar #edit-add-other-filters p {
    display: none;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 104, ../sass/components/_filters.scss */
  .nhlbi-searchbar-container .nhlbi-searchbar #edit-add-other-filters {
    background-image: url("../images/ico-filter.png");
    background-size: 20px 20px;
    background-repeat: no-repeat;
    background-position: initial;
    display: inline-block;
    content: " ";
    height: 35px;
    background-position: center;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 104, ../sass/components/_filters.scss */
  .nhlbi-searchbar-container .nhlbi-searchbar #edit-add-other-filters {
    height: 35px;
  }
}
/* line 128, ../sass/components/_filters.scss */
.nhlbi-searchbar-container .nhlbi-searchbar #edit-selected-terms {
  margin: 0;
}
/* line 133, ../sass/components/_filters.scss */
.nhlbi-searchbar-container .nhlbi-searchbar .search-icon {
  background-image: url("../images/ico-graysearch.png");
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: initial;
  display: inline-block;
  content: " ";
  height: 20px;
  display: block;
  left: 5px;
  position: relative;
  top: 10px;
  width: 20px;
  float: left;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 133, ../sass/components/_filters.scss */
  .nhlbi-searchbar-container .nhlbi-searchbar .search-icon {
    background-size: 20px 20px;
    height: 20px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 133, ../sass/components/_filters.scss */
  .nhlbi-searchbar-container .nhlbi-searchbar .search-icon {
    background-size: 20px 20px;
    height: 20px;
  }
}
/* line 143, ../sass/components/_filters.scss */
.nhlbi-searchbar-container .nhlbi-searchbar input.form-autocomplete {
  background-image: none;
  padding-left: 30px;
  height: 35px;
}
/* line 146, ../sass/components/_filters.scss */
.nhlbi-searchbar-container .nhlbi-searchbar input.form-autocomplete .input-container {
  margin-left: -20px;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 143, ../sass/components/_filters.scss */
  .nhlbi-searchbar-container .nhlbi-searchbar input.form-autocomplete {
    width: 250px;
    height: 35px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 143, ../sass/components/_filters.scss */
  .nhlbi-searchbar-container .nhlbi-searchbar input.form-autocomplete {
    height: 35px;
  }
}
/* line 159, ../sass/components/_filters.scss */
.nhlbi-searchbar-container .nhlbi-searchbar input.form-autocomplete.ui-autocomplete-loading {
  background-image: url("../images/ico-throbber.gif");
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: initial;
  display: inline-block;
  content: " ";
  height: 20px;
  background-position: right center;
  height: 35px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 159, ../sass/components/_filters.scss */
  .nhlbi-searchbar-container .nhlbi-searchbar input.form-autocomplete.ui-autocomplete-loading {
    background-size: 20px 20px;
    height: 20px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 159, ../sass/components/_filters.scss */
  .nhlbi-searchbar-container .nhlbi-searchbar input.form-autocomplete.ui-autocomplete-loading {
    background-size: 20px 20px;
    height: 20px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 159, ../sass/components/_filters.scss */
  .nhlbi-searchbar-container .nhlbi-searchbar input.form-autocomplete.ui-autocomplete-loading {
    height: 35px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 159, ../sass/components/_filters.scss */
  .nhlbi-searchbar-container .nhlbi-searchbar input.form-autocomplete.ui-autocomplete-loading {
    height: 35px;
  }
}
/* line 171, ../sass/components/_filters.scss */
.nhlbi-searchbar-container .nhlbi-searchbar .searchbar-text-button #edit-name {
  background-image: url("../images/ico-graysearch.png");
  background-size: 25px 25px;
  background-repeat: no-repeat;
  background-position: initial;
  display: inline-block;
  content: " ";
  height: 25px;
  background-position: 5px center;
  padding-left: 40px;
  height: 35px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 171, ../sass/components/_filters.scss */
  .nhlbi-searchbar-container .nhlbi-searchbar .searchbar-text-button #edit-name {
    background-size: 25px 25px;
    height: 25px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 171, ../sass/components/_filters.scss */
  .nhlbi-searchbar-container .nhlbi-searchbar .searchbar-text-button #edit-name {
    background-size: 25px 25px;
    height: 25px;
  }
}
/* line 175, ../sass/components/_filters.scss */
.nhlbi-searchbar-container .nhlbi-searchbar .searchbar-text-button #edit-name .input-container {
  margin-left: -20px;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 171, ../sass/components/_filters.scss */
  .nhlbi-searchbar-container .nhlbi-searchbar .searchbar-text-button #edit-name {
    height: 35px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 171, ../sass/components/_filters.scss */
  .nhlbi-searchbar-container .nhlbi-searchbar .searchbar-text-button #edit-name {
    height: 35px;
  }
}
/* line 188, ../sass/components/_filters.scss */
.nhlbi-searchbar-container .nhlbi-searchbar .searchbar-text-button input.form-text {
  background-image: url("../images/ico-graysearch.png");
  background-size: 25px 25px;
  background-repeat: no-repeat;
  background-position: initial;
  display: inline-block;
  content: " ";
  height: 25px;
  background-position: left 5px center;
  height: 35px;
  padding-left: 40px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 188, ../sass/components/_filters.scss */
  .nhlbi-searchbar-container .nhlbi-searchbar .searchbar-text-button input.form-text {
    background-size: 25px 25px;
    height: 25px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 188, ../sass/components/_filters.scss */
  .nhlbi-searchbar-container .nhlbi-searchbar .searchbar-text-button input.form-text {
    background-size: 25px 25px;
    height: 25px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 188, ../sass/components/_filters.scss */
  .nhlbi-searchbar-container .nhlbi-searchbar .searchbar-text-button input.form-text {
    height: 35px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 188, ../sass/components/_filters.scss */
  .nhlbi-searchbar-container .nhlbi-searchbar .searchbar-text-button input.form-text {
    height: 35px;
  }
}
/* line 201, ../sass/components/_filters.scss */
.nhlbi-searchbar-container .nhlbi-searchbar .edit-selected-terms {
  margin: 0;
}
/* line 207, ../sass/components/_filters.scss */
.nhlbi-searchbar-container .nhlbi-searchbar #division-selected-filters:not(:first-child) .selected-filter-options {
  margin-left: 10px;
}
/* line 211, ../sass/components/_filters.scss */
.nhlbi-searchbar-container .nhlbi-searchbar #sfa-selected-filters:not(:first-child) .selected-filter-options {
  margin-left: 10px;
}
/* line 216, ../sass/components/_filters.scss */
.nhlbi-searchbar-container .nhlbi-searchbar .selected-filter-options {
  cursor: pointer;
  display: inline-block;
  float: left;
  border-radius: 6px;
  background-color: #d7d7d7;
  margin-top: 10px;
  padding: 10px;
  white-space: nowrap;
}
/* line 227, ../sass/components/_filters.scss */
.nhlbi-searchbar-container .nhlbi-searchbar #award-type-filters .selected-filter-options {
  white-space: normal;
  margin-right: 10px;
}
@media all and (max-width: 479px) {
  /* line 227, ../sass/components/_filters.scss */
  .nhlbi-searchbar-container .nhlbi-searchbar #award-type-filters .selected-filter-options {
    display: inline-flex;
    text-align: left;
  }
}
@media all and (min-width: 0em) and (max-width: 360px) {
  /* line 236, ../sass/components/_filters.scss */
  .nhlbi-searchbar-container .nhlbi-searchbar #release-date-filters .selected-filter-options {
    display: inline-flex;
    white-space: normal;
    text-align: left;
  }
}
/* line 244, ../sass/components/_filters.scss */
.nhlbi-searchbar-container .nhlbi-searchbar .delete-sfa-filter {
  background-image: url("../images/ico-deletecross.png");
  background-size: 15px 15px;
  background-repeat: no-repeat;
  background-position: initial;
  display: inline-block;
  content: " ";
  height: 15px;
  display: inline;
  padding: 15px;
  background-position: right;
  width: 15px;
  cursor: pointer;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 244, ../sass/components/_filters.scss */
  .nhlbi-searchbar-container .nhlbi-searchbar .delete-sfa-filter {
    background-size: 15px 15px;
    height: 15px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 244, ../sass/components/_filters.scss */
  .nhlbi-searchbar-container .nhlbi-searchbar .delete-sfa-filter {
    background-size: 15px 15px;
    height: 15px;
  }
}
/* line 253, ../sass/components/_filters.scss */
.nhlbi-searchbar-container .nhlbi-searchbar .delete-division-filter {
  background-image: url("../images/ico-deletecross.png");
  background-size: 15px 15px;
  background-repeat: no-repeat;
  background-position: initial;
  display: inline-block;
  content: " ";
  height: 15px;
  display: inline;
  padding: 15px;
  background-position: right;
  width: 15px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 253, ../sass/components/_filters.scss */
  .nhlbi-searchbar-container .nhlbi-searchbar .delete-division-filter {
    background-size: 15px 15px;
    height: 15px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 253, ../sass/components/_filters.scss */
  .nhlbi-searchbar-container .nhlbi-searchbar .delete-division-filter {
    background-size: 15px 15px;
    height: 15px;
  }
}
/* line 261, ../sass/components/_filters.scss */
.nhlbi-searchbar-container .nhlbi-searchbar .sfa-selected-filters {
  float: left;
}
/* line 264, ../sass/components/_filters.scss */
.nhlbi-searchbar-container .nhlbi-searchbar .division-selected-filters {
  float: left;
}
/* line 268, ../sass/components/_filters.scss */
.nhlbi-searchbar-container .nhlbi-searchbar .selected-filters {
  float: left;
  padding-right: 10px;
}
/* line 274, ../sass/components/_filters.scss */
.nhlbi-searchbar-container .nhlbi-searchbar .selected-filters-cross {
  background-image: url("../images/ico-deletecross.png");
  background-size: 15px 15px;
  background-repeat: no-repeat;
  background-position: initial;
  display: inline-block;
  content: " ";
  height: 15px;
  display: inline;
  padding: 15px;
  background-position: right;
  width: 15px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 274, ../sass/components/_filters.scss */
  .nhlbi-searchbar-container .nhlbi-searchbar .selected-filters-cross {
    background-size: 15px 15px;
    height: 15px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 274, ../sass/components/_filters.scss */
  .nhlbi-searchbar-container .nhlbi-searchbar .selected-filters-cross {
    background-size: 15px 15px;
    height: 15px;
  }
}
@media all and (max-width: 479px) {
  /* line 282, ../sass/components/_filters.scss */
  .nhlbi-searchbar-container .nhlbi-searchbar #award-type-filters .selected-filters-cross, .nhlbi-searchbar-container .nhlbi-searchbar #release-date-filters .selected-filters-cross {
    height: 0px;
  }
}
/* line 291, ../sass/components/_filters.scss */
.nhlbi-searchbar-container .formlabeltext, .nhlbi-searchbar-container .node--type-webform label span, .node--type-webform label .nhlbi-searchbar-container span, .nhlbi-searchbar-container .webform-submission-form label span, .webform-submission-form label .nhlbi-searchbar-container span {
  text-align: left;
  padding: 5px 0;
}

/* line 301, ../sass/components/_filters.scss */
.scope-search .nhlbi-searchbar-container .nhlbi-searchbar #edit-name.form-autocomplete {
  padding-left: 45px;
}

/* line 308, ../sass/components/_filters.scss */
.scope-search-grants {
  padding-bottom: 20px;
}

/* line 314, ../sass/components/_filters.scss */
.scope-search .nhlbi-searchbar {
  margin: 0 auto;
  border-radius: 16px;
  padding: 0.75em;
  width: 80%;
  max-width: 740px;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 314, ../sass/components/_filters.scss */
  .scope-search .nhlbi-searchbar {
    width: 100%;
    box-sizing: border-box;
    border: none;
    border-radius: 8px;
  }
}
/* line 326, ../sass/components/_filters.scss */
.scope-search .nhlbi-searchbar .form-type-textfield {
  margin: 0;
}
/* line 329, ../sass/components/_filters.scss */
.scope-search .nhlbi-searchbar .nhlbi-search-autocomplete {
  display: flex;
}
/* line 332, ../sass/components/_filters.scss */
.scope-search .nhlbi-searchbar #edit-name {
  background-image: url("../images/ico-graysearch.png");
  background-size: 30px 30px;
  background-repeat: no-repeat;
  background-position: 5px center;
  display: inherit;
  content: " ";
  height: 40px;
  width: 100%;
  height: 40px;
}
/* line 338, ../sass/components/_filters.scss */
.scope-search .nhlbi-searchbar .input-container {
  background-color: white;
  display: block;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  border: transparent;
  display: flex;
}
/* line 348, ../sass/components/_filters.scss */
.scope-search .nhlbi-searchbar .scope-search-icon1 {
  background-image: url("../images/ico-graysearch.png");
  background-size: 30px 30px;
  background-repeat: no-repeat;
  background-position: 5px center;
  display: inline-block;
  content: " ";
  height: 40px;
  display: inline-block;
  width: 40px;
}
/* line 355, ../sass/components/_filters.scss */
.scope-search .nhlbi-searchbar .form-type-textfield {
  width: 100%;
}
/* line 360, ../sass/components/_filters.scss */
.scope-search .nhlbi-searchbar #edit-submit {
  height: 40px;
}
/* line 363, ../sass/components/_filters.scss */
.scope-search .nhlbi-searchbar .input-container {
  width: 100%;
}

/* line 371, ../sass/components/_filters.scss */
.filters-lightbox-buttons-wrapper, .filters-wrapper-lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 150%;
  text-align: center;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
}

/* line 386, ../sass/components/_filters.scss */
.filters-lightbox-buttons, .filters-wrapper {
  display: block;
  position: relative;
  top: 50px;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 386, ../sass/components/_filters.scss */
  .filters-lightbox-buttons, .filters-wrapper {
    top: 50px;
  }
}
/* line 393, ../sass/components/_filters.scss */
.filters-lightbox-buttons .center-align, .filters-wrapper .center-align {
  text-align: center;
  background-color: white;
  display: inline-block;
  width: 465px;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 393, ../sass/components/_filters.scss */
  .filters-lightbox-buttons .center-align, .filters-wrapper .center-align {
    width: 300px;
  }
}
/* line 403, ../sass/components/_filters.scss */
.filters-lightbox-buttons .button-dialog-list-wrapper, .filters-wrapper .button-dialog-list-wrapper {
  height: 300px;
  overflow-y: scroll;
}
/* line 408, ../sass/components/_filters.scss */
.filters-lightbox-buttons .filtertitle, .filters-wrapper .filtertitle {
  padding: 10px 20px;
  margin: 0;
  text-align: left;
  background-color: #1a568c;
}
/* line 412, ../sass/components/_filters.scss */
.filters-lightbox-buttons .filtertitle .close-button, .filters-wrapper .filtertitle .close-button {
  cursor: pointer;
  background-image: url("../images/ico-cross-white.png");
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: initial;
  display: inline-block;
  content: " ";
  height: 20px;
  display: inline-block;
  width: 20px;
  height: 20px;
  background-position: center center;
  padding-top: 5px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 412, ../sass/components/_filters.scss */
  .filters-lightbox-buttons .filtertitle .close-button, .filters-wrapper .filtertitle .close-button {
    background-size: 20px 20px;
    height: 20px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 412, ../sass/components/_filters.scss */
  .filters-lightbox-buttons .filtertitle .close-button, .filters-wrapper .filtertitle .close-button {
    background-size: 20px 20px;
    height: 20px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 412, ../sass/components/_filters.scss */
  .filters-lightbox-buttons .filtertitle .close-button, .filters-wrapper .filtertitle .close-button {
    padding-right: 10px;
  }
}
/* line 427, ../sass/components/_filters.scss */
.filters-lightbox-buttons .filtertitle span, .filters-wrapper .filtertitle span {
  float: right;
}
/* line 432, ../sass/components/_filters.scss */
.filters-lightbox-buttons .filter-type-button, .filters-wrapper .filter-type-button {
  background-color: #d7e7f4;
  margin: 10px 20px;
  padding: 15px;
  text-align: left;
  border-radius: 6px;
  cursor: pointer;
  color: #222;
}
/* line 443, ../sass/components/_filters.scss */
.filters-lightbox-buttons #disease_filter, .filters-lightbox-buttons #research_filter, .filters-lightbox-buttons #prevention_filter, .filters-lightbox-buttons #health_filter, .filters-lightbox-buttons #audience_filter, .filters-lightbox-buttons #population_filter, .filters-lightbox-buttons #language_filter, .filters-lightbox-buttons #materials_filter,
.filters-lightbox-buttons #sfa_filter, .filters-lightbox-buttons #division_filter, .filters-lightbox-buttons #doc_type_filter, .filters-lightbox-buttons #release_date_filter, .filters-lightbox-buttons #expiration_date_filter,
.filters-lightbox-buttons #cc_cq_filter, .filters-lightbox-buttons #objective_filter, .filters-lightbox-buttons #start_date_filter, .filters-lightbox-buttons .options-button-wrapper, .filters-wrapper #disease_filter, .filters-wrapper #research_filter, .filters-wrapper #prevention_filter, .filters-wrapper #health_filter, .filters-wrapper #audience_filter, .filters-wrapper #population_filter, .filters-wrapper #language_filter, .filters-wrapper #materials_filter,
.filters-wrapper #sfa_filter, .filters-wrapper #division_filter, .filters-wrapper #doc_type_filter, .filters-wrapper #release_date_filter, .filters-wrapper #expiration_date_filter,
.filters-wrapper #cc_cq_filter, .filters-wrapper #objective_filter, .filters-wrapper #start_date_filter, .filters-wrapper .options-button-wrapper {
  padding: 15px;
}
/* line 452, ../sass/components/_filters.scss */
.filters-lightbox-buttons #disease_filter .options-box .form-checkboxes, .filters-lightbox-buttons #research_filter .options-box .form-checkboxes, .filters-lightbox-buttons #prevention_filter .options-box .form-checkboxes, .filters-lightbox-buttons #health_filter .options-box .form-checkboxes, .filters-lightbox-buttons #audience_filter .options-box .form-checkboxes, .filters-lightbox-buttons #population_filter .options-box .form-checkboxes, .filters-lightbox-buttons #language_filter .options-box .form-checkboxes, .filters-lightbox-buttons #materials_filter .options-box .form-checkboxes,
.filters-lightbox-buttons #sfa_filter .options-box .form-checkboxes, .filters-lightbox-buttons #division_filter .options-box .form-checkboxes, .filters-lightbox-buttons #doc_type_filter .options-box .form-checkboxes, .filters-lightbox-buttons #release_date_filter .options-box .form-checkboxes, .filters-lightbox-buttons #expiration_date_filter .options-box .form-checkboxes,
.filters-lightbox-buttons #cc_cq_filter .options-box .form-checkboxes, .filters-lightbox-buttons #objective_filter .options-box .form-checkboxes, .filters-lightbox-buttons #start_date_filter .options-box .form-checkboxes, .filters-lightbox-buttons .options-button-wrapper .options-box .form-checkboxes, .filters-wrapper #disease_filter .options-box .form-checkboxes, .filters-wrapper #research_filter .options-box .form-checkboxes, .filters-wrapper #prevention_filter .options-box .form-checkboxes, .filters-wrapper #health_filter .options-box .form-checkboxes, .filters-wrapper #audience_filter .options-box .form-checkboxes, .filters-wrapper #population_filter .options-box .form-checkboxes, .filters-wrapper #language_filter .options-box .form-checkboxes, .filters-wrapper #materials_filter .options-box .form-checkboxes,
.filters-wrapper #sfa_filter .options-box .form-checkboxes, .filters-wrapper #division_filter .options-box .form-checkboxes, .filters-wrapper #doc_type_filter .options-box .form-checkboxes, .filters-wrapper #release_date_filter .options-box .form-checkboxes, .filters-wrapper #expiration_date_filter .options-box .form-checkboxes,
.filters-wrapper #cc_cq_filter .options-box .form-checkboxes, .filters-wrapper #objective_filter .options-box .form-checkboxes, .filters-wrapper #start_date_filter .options-box .form-checkboxes, .filters-wrapper .options-button-wrapper .options-box .form-checkboxes {
  max-height: 300px;
  overflow: auto;
}
/* line 458, ../sass/components/_filters.scss */
.filters-lightbox-buttons #disease_filter .js-form-type-checkbox, .filters-lightbox-buttons #research_filter .js-form-type-checkbox, .filters-lightbox-buttons #prevention_filter .js-form-type-checkbox, .filters-lightbox-buttons #health_filter .js-form-type-checkbox, .filters-lightbox-buttons #audience_filter .js-form-type-checkbox, .filters-lightbox-buttons #population_filter .js-form-type-checkbox, .filters-lightbox-buttons #language_filter .js-form-type-checkbox, .filters-lightbox-buttons #materials_filter .js-form-type-checkbox,
.filters-lightbox-buttons #sfa_filter .js-form-type-checkbox, .filters-lightbox-buttons #division_filter .js-form-type-checkbox, .filters-lightbox-buttons #doc_type_filter .js-form-type-checkbox, .filters-lightbox-buttons #release_date_filter .js-form-type-checkbox, .filters-lightbox-buttons #expiration_date_filter .js-form-type-checkbox,
.filters-lightbox-buttons #cc_cq_filter .js-form-type-checkbox, .filters-lightbox-buttons #objective_filter .js-form-type-checkbox, .filters-lightbox-buttons #start_date_filter .js-form-type-checkbox, .filters-lightbox-buttons .options-button-wrapper .js-form-type-checkbox, .filters-wrapper #disease_filter .js-form-type-checkbox, .filters-wrapper #research_filter .js-form-type-checkbox, .filters-wrapper #prevention_filter .js-form-type-checkbox, .filters-wrapper #health_filter .js-form-type-checkbox, .filters-wrapper #audience_filter .js-form-type-checkbox, .filters-wrapper #population_filter .js-form-type-checkbox, .filters-wrapper #language_filter .js-form-type-checkbox, .filters-wrapper #materials_filter .js-form-type-checkbox,
.filters-wrapper #sfa_filter .js-form-type-checkbox, .filters-wrapper #division_filter .js-form-type-checkbox, .filters-wrapper #doc_type_filter .js-form-type-checkbox, .filters-wrapper #release_date_filter .js-form-type-checkbox, .filters-wrapper #expiration_date_filter .js-form-type-checkbox,
.filters-wrapper #cc_cq_filter .js-form-type-checkbox, .filters-wrapper #objective_filter .js-form-type-checkbox, .filters-wrapper #start_date_filter .js-form-type-checkbox, .filters-wrapper .options-button-wrapper .js-form-type-checkbox {
  margin: 0;
  border-bottom: 1px solid #e4e3e3;
}
/* line 462, ../sass/components/_filters.scss */
.filters-lightbox-buttons #disease_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-lightbox-buttons #research_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-lightbox-buttons #prevention_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-lightbox-buttons #health_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-lightbox-buttons #audience_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-lightbox-buttons #population_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-lightbox-buttons #language_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-lightbox-buttons #materials_filter .js-form-type-checkbox input[type=checkbox]:checked + label,
.filters-lightbox-buttons #sfa_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-lightbox-buttons #division_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-lightbox-buttons #doc_type_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-lightbox-buttons #release_date_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-lightbox-buttons #expiration_date_filter .js-form-type-checkbox input[type=checkbox]:checked + label,
.filters-lightbox-buttons #cc_cq_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-lightbox-buttons #objective_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-lightbox-buttons #start_date_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-lightbox-buttons .options-button-wrapper .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-wrapper #disease_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-wrapper #research_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-wrapper #prevention_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-wrapper #health_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-wrapper #audience_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-wrapper #population_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-wrapper #language_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-wrapper #materials_filter .js-form-type-checkbox input[type=checkbox]:checked + label,
.filters-wrapper #sfa_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-wrapper #division_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-wrapper #doc_type_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-wrapper #release_date_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-wrapper #expiration_date_filter .js-form-type-checkbox input[type=checkbox]:checked + label,
.filters-wrapper #cc_cq_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-wrapper #objective_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-wrapper #start_date_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-wrapper .options-button-wrapper .js-form-type-checkbox input[type=checkbox]:checked + label {
  background-image: url("../images/ico-checkbox-tick.png");
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: initial;
  display: inline-block;
  content: " ";
  height: 20px;
  background-position: right 30px center;
  background-color: #f4f4f4;
  height: auto;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 462, ../sass/components/_filters.scss */
  .filters-lightbox-buttons #disease_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-lightbox-buttons #research_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-lightbox-buttons #prevention_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-lightbox-buttons #health_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-lightbox-buttons #audience_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-lightbox-buttons #population_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-lightbox-buttons #language_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-lightbox-buttons #materials_filter .js-form-type-checkbox input[type=checkbox]:checked + label,
  .filters-lightbox-buttons #sfa_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-lightbox-buttons #division_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-lightbox-buttons #doc_type_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-lightbox-buttons #release_date_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-lightbox-buttons #expiration_date_filter .js-form-type-checkbox input[type=checkbox]:checked + label,
  .filters-lightbox-buttons #cc_cq_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-lightbox-buttons #objective_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-lightbox-buttons #start_date_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-lightbox-buttons .options-button-wrapper .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-wrapper #disease_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-wrapper #research_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-wrapper #prevention_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-wrapper #health_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-wrapper #audience_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-wrapper #population_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-wrapper #language_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-wrapper #materials_filter .js-form-type-checkbox input[type=checkbox]:checked + label,
  .filters-wrapper #sfa_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-wrapper #division_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-wrapper #doc_type_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-wrapper #release_date_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-wrapper #expiration_date_filter .js-form-type-checkbox input[type=checkbox]:checked + label,
  .filters-wrapper #cc_cq_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-wrapper #objective_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-wrapper #start_date_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-wrapper .options-button-wrapper .js-form-type-checkbox input[type=checkbox]:checked + label {
    background-size: 20px 20px;
    height: 20px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 462, ../sass/components/_filters.scss */
  .filters-lightbox-buttons #disease_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-lightbox-buttons #research_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-lightbox-buttons #prevention_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-lightbox-buttons #health_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-lightbox-buttons #audience_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-lightbox-buttons #population_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-lightbox-buttons #language_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-lightbox-buttons #materials_filter .js-form-type-checkbox input[type=checkbox]:checked + label,
  .filters-lightbox-buttons #sfa_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-lightbox-buttons #division_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-lightbox-buttons #doc_type_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-lightbox-buttons #release_date_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-lightbox-buttons #expiration_date_filter .js-form-type-checkbox input[type=checkbox]:checked + label,
  .filters-lightbox-buttons #cc_cq_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-lightbox-buttons #objective_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-lightbox-buttons #start_date_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-lightbox-buttons .options-button-wrapper .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-wrapper #disease_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-wrapper #research_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-wrapper #prevention_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-wrapper #health_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-wrapper #audience_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-wrapper #population_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-wrapper #language_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-wrapper #materials_filter .js-form-type-checkbox input[type=checkbox]:checked + label,
  .filters-wrapper #sfa_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-wrapper #division_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-wrapper #doc_type_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-wrapper #release_date_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-wrapper #expiration_date_filter .js-form-type-checkbox input[type=checkbox]:checked + label,
  .filters-wrapper #cc_cq_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-wrapper #objective_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-wrapper #start_date_filter .js-form-type-checkbox input[type=checkbox]:checked + label, .filters-wrapper .options-button-wrapper .js-form-type-checkbox input[type=checkbox]:checked + label {
    background-size: 20px 20px;
    height: 20px;
  }
}
/* line 468, ../sass/components/_filters.scss */
.filters-lightbox-buttons #disease_filter .js-form-type-checkbox input[type=checkbox], .filters-lightbox-buttons #research_filter .js-form-type-checkbox input[type=checkbox], .filters-lightbox-buttons #prevention_filter .js-form-type-checkbox input[type=checkbox], .filters-lightbox-buttons #health_filter .js-form-type-checkbox input[type=checkbox], .filters-lightbox-buttons #audience_filter .js-form-type-checkbox input[type=checkbox], .filters-lightbox-buttons #population_filter .js-form-type-checkbox input[type=checkbox], .filters-lightbox-buttons #language_filter .js-form-type-checkbox input[type=checkbox], .filters-lightbox-buttons #materials_filter .js-form-type-checkbox input[type=checkbox],
.filters-lightbox-buttons #sfa_filter .js-form-type-checkbox input[type=checkbox], .filters-lightbox-buttons #division_filter .js-form-type-checkbox input[type=checkbox], .filters-lightbox-buttons #doc_type_filter .js-form-type-checkbox input[type=checkbox], .filters-lightbox-buttons #release_date_filter .js-form-type-checkbox input[type=checkbox], .filters-lightbox-buttons #expiration_date_filter .js-form-type-checkbox input[type=checkbox],
.filters-lightbox-buttons #cc_cq_filter .js-form-type-checkbox input[type=checkbox], .filters-lightbox-buttons #objective_filter .js-form-type-checkbox input[type=checkbox], .filters-lightbox-buttons #start_date_filter .js-form-type-checkbox input[type=checkbox], .filters-lightbox-buttons .options-button-wrapper .js-form-type-checkbox input[type=checkbox], .filters-wrapper #disease_filter .js-form-type-checkbox input[type=checkbox], .filters-wrapper #research_filter .js-form-type-checkbox input[type=checkbox], .filters-wrapper #prevention_filter .js-form-type-checkbox input[type=checkbox], .filters-wrapper #health_filter .js-form-type-checkbox input[type=checkbox], .filters-wrapper #audience_filter .js-form-type-checkbox input[type=checkbox], .filters-wrapper #population_filter .js-form-type-checkbox input[type=checkbox], .filters-wrapper #language_filter .js-form-type-checkbox input[type=checkbox], .filters-wrapper #materials_filter .js-form-type-checkbox input[type=checkbox],
.filters-wrapper #sfa_filter .js-form-type-checkbox input[type=checkbox], .filters-wrapper #division_filter .js-form-type-checkbox input[type=checkbox], .filters-wrapper #doc_type_filter .js-form-type-checkbox input[type=checkbox], .filters-wrapper #release_date_filter .js-form-type-checkbox input[type=checkbox], .filters-wrapper #expiration_date_filter .js-form-type-checkbox input[type=checkbox],
.filters-wrapper #cc_cq_filter .js-form-type-checkbox input[type=checkbox], .filters-wrapper #objective_filter .js-form-type-checkbox input[type=checkbox], .filters-wrapper #start_date_filter .js-form-type-checkbox input[type=checkbox], .filters-wrapper .options-button-wrapper .js-form-type-checkbox input[type=checkbox] {
  display: none;
}
/* line 472, ../sass/components/_filters.scss */
.filters-lightbox-buttons #disease_filter .js-form-type-checkbox label, .filters-lightbox-buttons #research_filter .js-form-type-checkbox label, .filters-lightbox-buttons #prevention_filter .js-form-type-checkbox label, .filters-lightbox-buttons #health_filter .js-form-type-checkbox label, .filters-lightbox-buttons #audience_filter .js-form-type-checkbox label, .filters-lightbox-buttons #population_filter .js-form-type-checkbox label, .filters-lightbox-buttons #language_filter .js-form-type-checkbox label, .filters-lightbox-buttons #materials_filter .js-form-type-checkbox label,
.filters-lightbox-buttons #sfa_filter .js-form-type-checkbox label, .filters-lightbox-buttons #division_filter .js-form-type-checkbox label, .filters-lightbox-buttons #doc_type_filter .js-form-type-checkbox label, .filters-lightbox-buttons #release_date_filter .js-form-type-checkbox label, .filters-lightbox-buttons #expiration_date_filter .js-form-type-checkbox label,
.filters-lightbox-buttons #cc_cq_filter .js-form-type-checkbox label, .filters-lightbox-buttons #objective_filter .js-form-type-checkbox label, .filters-lightbox-buttons #start_date_filter .js-form-type-checkbox label, .filters-lightbox-buttons .options-button-wrapper .js-form-type-checkbox label, .filters-wrapper #disease_filter .js-form-type-checkbox label, .filters-wrapper #research_filter .js-form-type-checkbox label, .filters-wrapper #prevention_filter .js-form-type-checkbox label, .filters-wrapper #health_filter .js-form-type-checkbox label, .filters-wrapper #audience_filter .js-form-type-checkbox label, .filters-wrapper #population_filter .js-form-type-checkbox label, .filters-wrapper #language_filter .js-form-type-checkbox label, .filters-wrapper #materials_filter .js-form-type-checkbox label,
.filters-wrapper #sfa_filter .js-form-type-checkbox label, .filters-wrapper #division_filter .js-form-type-checkbox label, .filters-wrapper #doc_type_filter .js-form-type-checkbox label, .filters-wrapper #release_date_filter .js-form-type-checkbox label, .filters-wrapper #expiration_date_filter .js-form-type-checkbox label,
.filters-wrapper #cc_cq_filter .js-form-type-checkbox label, .filters-wrapper #objective_filter .js-form-type-checkbox label, .filters-wrapper #start_date_filter .js-form-type-checkbox label, .filters-wrapper .options-button-wrapper .js-form-type-checkbox label {
  display: inline-block;
  width: 100%;
  padding: 10px 0;
  text-align: left;
  color: #222;
}
/* line 477, ../sass/components/_filters.scss */
.filters-lightbox-buttons #disease_filter .js-form-type-checkbox label span, .filters-lightbox-buttons #research_filter .js-form-type-checkbox label span, .filters-lightbox-buttons #prevention_filter .js-form-type-checkbox label span, .filters-lightbox-buttons #health_filter .js-form-type-checkbox label span, .filters-lightbox-buttons #audience_filter .js-form-type-checkbox label span, .filters-lightbox-buttons #population_filter .js-form-type-checkbox label span, .filters-lightbox-buttons #language_filter .js-form-type-checkbox label span, .filters-lightbox-buttons #materials_filter .js-form-type-checkbox label span,
.filters-lightbox-buttons #sfa_filter .js-form-type-checkbox label span, .filters-lightbox-buttons #division_filter .js-form-type-checkbox label span, .filters-lightbox-buttons #doc_type_filter .js-form-type-checkbox label span, .filters-lightbox-buttons #release_date_filter .js-form-type-checkbox label span, .filters-lightbox-buttons #expiration_date_filter .js-form-type-checkbox label span,
.filters-lightbox-buttons #cc_cq_filter .js-form-type-checkbox label span, .filters-lightbox-buttons #objective_filter .js-form-type-checkbox label span, .filters-lightbox-buttons #start_date_filter .js-form-type-checkbox label span, .filters-lightbox-buttons .options-button-wrapper .js-form-type-checkbox label span, .filters-wrapper #disease_filter .js-form-type-checkbox label span, .filters-wrapper #research_filter .js-form-type-checkbox label span, .filters-wrapper #prevention_filter .js-form-type-checkbox label span, .filters-wrapper #health_filter .js-form-type-checkbox label span, .filters-wrapper #audience_filter .js-form-type-checkbox label span, .filters-wrapper #population_filter .js-form-type-checkbox label span, .filters-wrapper #language_filter .js-form-type-checkbox label span, .filters-wrapper #materials_filter .js-form-type-checkbox label span,
.filters-wrapper #sfa_filter .js-form-type-checkbox label span, .filters-wrapper #division_filter .js-form-type-checkbox label span, .filters-wrapper #doc_type_filter .js-form-type-checkbox label span, .filters-wrapper #release_date_filter .js-form-type-checkbox label span, .filters-wrapper #expiration_date_filter .js-form-type-checkbox label span,
.filters-wrapper #cc_cq_filter .js-form-type-checkbox label span, .filters-wrapper #objective_filter .js-form-type-checkbox label span, .filters-wrapper #start_date_filter .js-form-type-checkbox label span, .filters-wrapper .options-button-wrapper .js-form-type-checkbox label span {
  padding-left: 20px;
  padding-right: 40px;
  display: inline-block;
}
/* line 485, ../sass/components/_filters.scss */
.filters-lightbox-buttons #disease_filter .js-form-type-checkbox .options-box, .filters-lightbox-buttons #research_filter .js-form-type-checkbox .options-box, .filters-lightbox-buttons #prevention_filter .js-form-type-checkbox .options-box, .filters-lightbox-buttons #health_filter .js-form-type-checkbox .options-box, .filters-lightbox-buttons #audience_filter .js-form-type-checkbox .options-box, .filters-lightbox-buttons #population_filter .js-form-type-checkbox .options-box, .filters-lightbox-buttons #language_filter .js-form-type-checkbox .options-box, .filters-lightbox-buttons #materials_filter .js-form-type-checkbox .options-box,
.filters-lightbox-buttons #sfa_filter .js-form-type-checkbox .options-box, .filters-lightbox-buttons #division_filter .js-form-type-checkbox .options-box, .filters-lightbox-buttons #doc_type_filter .js-form-type-checkbox .options-box, .filters-lightbox-buttons #release_date_filter .js-form-type-checkbox .options-box, .filters-lightbox-buttons #expiration_date_filter .js-form-type-checkbox .options-box,
.filters-lightbox-buttons #cc_cq_filter .js-form-type-checkbox .options-box, .filters-lightbox-buttons #objective_filter .js-form-type-checkbox .options-box, .filters-lightbox-buttons #start_date_filter .js-form-type-checkbox .options-box, .filters-lightbox-buttons .options-button-wrapper .js-form-type-checkbox .options-box, .filters-wrapper #disease_filter .js-form-type-checkbox .options-box, .filters-wrapper #research_filter .js-form-type-checkbox .options-box, .filters-wrapper #prevention_filter .js-form-type-checkbox .options-box, .filters-wrapper #health_filter .js-form-type-checkbox .options-box, .filters-wrapper #audience_filter .js-form-type-checkbox .options-box, .filters-wrapper #population_filter .js-form-type-checkbox .options-box, .filters-wrapper #language_filter .js-form-type-checkbox .options-box, .filters-wrapper #materials_filter .js-form-type-checkbox .options-box,
.filters-wrapper #sfa_filter .js-form-type-checkbox .options-box, .filters-wrapper #division_filter .js-form-type-checkbox .options-box, .filters-wrapper #doc_type_filter .js-form-type-checkbox .options-box, .filters-wrapper #release_date_filter .js-form-type-checkbox .options-box, .filters-wrapper #expiration_date_filter .js-form-type-checkbox .options-box,
.filters-wrapper #cc_cq_filter .js-form-type-checkbox .options-box, .filters-wrapper #objective_filter .js-form-type-checkbox .options-box, .filters-wrapper #start_date_filter .js-form-type-checkbox .options-box, .filters-wrapper .options-button-wrapper .js-form-type-checkbox .options-box {
  background-color: white;
}
/* line 488, ../sass/components/_filters.scss */
.filters-lightbox-buttons #disease_filter .js-form-type-checkbox h3.filtertitle, .filters-lightbox-buttons #disease_filter .js-form-type-checkbox .filtertitle.field--name-field-social-phrase-group-title, .filters-lightbox-buttons #disease_filter .js-form-type-checkbox .filtertitle.field--name-field-image-gallery-title, .filters-lightbox-buttons #research_filter .js-form-type-checkbox h3.filtertitle, .filters-lightbox-buttons #research_filter .js-form-type-checkbox .filtertitle.field--name-field-social-phrase-group-title, .filters-lightbox-buttons #research_filter .js-form-type-checkbox .filtertitle.field--name-field-image-gallery-title, .filters-lightbox-buttons #prevention_filter .js-form-type-checkbox h3.filtertitle, .filters-lightbox-buttons #prevention_filter .js-form-type-checkbox .filtertitle.field--name-field-social-phrase-group-title, .filters-lightbox-buttons #prevention_filter .js-form-type-checkbox .filtertitle.field--name-field-image-gallery-title, .filters-lightbox-buttons #health_filter .js-form-type-checkbox h3.filtertitle, .filters-lightbox-buttons #health_filter .js-form-type-checkbox .filtertitle.field--name-field-social-phrase-group-title, .filters-lightbox-buttons #health_filter .js-form-type-checkbox .filtertitle.field--name-field-image-gallery-title, .filters-lightbox-buttons #audience_filter .js-form-type-checkbox h3.filtertitle, .filters-lightbox-buttons #audience_filter .js-form-type-checkbox .filtertitle.field--name-field-social-phrase-group-title, .filters-lightbox-buttons #audience_filter .js-form-type-checkbox .filtertitle.field--name-field-image-gallery-title, .filters-lightbox-buttons #population_filter .js-form-type-checkbox h3.filtertitle, .filters-lightbox-buttons #population_filter .js-form-type-checkbox .filtertitle.field--name-field-social-phrase-group-title, .filters-lightbox-buttons #population_filter .js-form-type-checkbox .filtertitle.field--name-field-image-gallery-title, .filters-lightbox-buttons #language_filter .js-form-type-checkbox h3.filtertitle, .filters-lightbox-buttons #language_filter .js-form-type-checkbox .filtertitle.field--name-field-social-phrase-group-title, .filters-lightbox-buttons #language_filter .js-form-type-checkbox .filtertitle.field--name-field-image-gallery-title, .filters-lightbox-buttons #materials_filter .js-form-type-checkbox h3.filtertitle, .filters-lightbox-buttons #materials_filter .js-form-type-checkbox .filtertitle.field--name-field-social-phrase-group-title, .filters-lightbox-buttons #materials_filter .js-form-type-checkbox .filtertitle.field--name-field-image-gallery-title,
.filters-lightbox-buttons #sfa_filter .js-form-type-checkbox h3.filtertitle,
.filters-lightbox-buttons #sfa_filter .js-form-type-checkbox .filtertitle.field--name-field-social-phrase-group-title,
.filters-lightbox-buttons #sfa_filter .js-form-type-checkbox .filtertitle.field--name-field-image-gallery-title, .filters-lightbox-buttons #division_filter .js-form-type-checkbox h3.filtertitle, .filters-lightbox-buttons #division_filter .js-form-type-checkbox .filtertitle.field--name-field-social-phrase-group-title, .filters-lightbox-buttons #division_filter .js-form-type-checkbox .filtertitle.field--name-field-image-gallery-title, .filters-lightbox-buttons #doc_type_filter .js-form-type-checkbox h3.filtertitle, .filters-lightbox-buttons #doc_type_filter .js-form-type-checkbox .filtertitle.field--name-field-social-phrase-group-title, .filters-lightbox-buttons #doc_type_filter .js-form-type-checkbox .filtertitle.field--name-field-image-gallery-title, .filters-lightbox-buttons #release_date_filter .js-form-type-checkbox h3.filtertitle, .filters-lightbox-buttons #release_date_filter .js-form-type-checkbox .filtertitle.field--name-field-social-phrase-group-title, .filters-lightbox-buttons #release_date_filter .js-form-type-checkbox .filtertitle.field--name-field-image-gallery-title, .filters-lightbox-buttons #expiration_date_filter .js-form-type-checkbox h3.filtertitle, .filters-lightbox-buttons #expiration_date_filter .js-form-type-checkbox .filtertitle.field--name-field-social-phrase-group-title, .filters-lightbox-buttons #expiration_date_filter .js-form-type-checkbox .filtertitle.field--name-field-image-gallery-title,
.filters-lightbox-buttons #cc_cq_filter .js-form-type-checkbox h3.filtertitle,
.filters-lightbox-buttons #cc_cq_filter .js-form-type-checkbox .filtertitle.field--name-field-social-phrase-group-title,
.filters-lightbox-buttons #cc_cq_filter .js-form-type-checkbox .filtertitle.field--name-field-image-gallery-title, .filters-lightbox-buttons #objective_filter .js-form-type-checkbox h3.filtertitle, .filters-lightbox-buttons #objective_filter .js-form-type-checkbox .filtertitle.field--name-field-social-phrase-group-title, .filters-lightbox-buttons #objective_filter .js-form-type-checkbox .filtertitle.field--name-field-image-gallery-title, .filters-lightbox-buttons #start_date_filter .js-form-type-checkbox h3.filtertitle, .filters-lightbox-buttons #start_date_filter .js-form-type-checkbox .filtertitle.field--name-field-social-phrase-group-title, .filters-lightbox-buttons #start_date_filter .js-form-type-checkbox .filtertitle.field--name-field-image-gallery-title, .filters-lightbox-buttons .options-button-wrapper .js-form-type-checkbox h3.filtertitle, .filters-lightbox-buttons .options-button-wrapper .js-form-type-checkbox .filtertitle.field--name-field-social-phrase-group-title, .filters-lightbox-buttons .options-button-wrapper .js-form-type-checkbox .filtertitle.field--name-field-image-gallery-title, .filters-wrapper #disease_filter .js-form-type-checkbox h3.filtertitle, .filters-wrapper #disease_filter .js-form-type-checkbox .filtertitle.field--name-field-social-phrase-group-title, .filters-wrapper #disease_filter .js-form-type-checkbox .filtertitle.field--name-field-image-gallery-title, .filters-wrapper #research_filter .js-form-type-checkbox h3.filtertitle, .filters-wrapper #research_filter .js-form-type-checkbox .filtertitle.field--name-field-social-phrase-group-title, .filters-wrapper #research_filter .js-form-type-checkbox .filtertitle.field--name-field-image-gallery-title, .filters-wrapper #prevention_filter .js-form-type-checkbox h3.filtertitle, .filters-wrapper #prevention_filter .js-form-type-checkbox .filtertitle.field--name-field-social-phrase-group-title, .filters-wrapper #prevention_filter .js-form-type-checkbox .filtertitle.field--name-field-image-gallery-title, .filters-wrapper #health_filter .js-form-type-checkbox h3.filtertitle, .filters-wrapper #health_filter .js-form-type-checkbox .filtertitle.field--name-field-social-phrase-group-title, .filters-wrapper #health_filter .js-form-type-checkbox .filtertitle.field--name-field-image-gallery-title, .filters-wrapper #audience_filter .js-form-type-checkbox h3.filtertitle, .filters-wrapper #audience_filter .js-form-type-checkbox .filtertitle.field--name-field-social-phrase-group-title, .filters-wrapper #audience_filter .js-form-type-checkbox .filtertitle.field--name-field-image-gallery-title, .filters-wrapper #population_filter .js-form-type-checkbox h3.filtertitle, .filters-wrapper #population_filter .js-form-type-checkbox .filtertitle.field--name-field-social-phrase-group-title, .filters-wrapper #population_filter .js-form-type-checkbox .filtertitle.field--name-field-image-gallery-title, .filters-wrapper #language_filter .js-form-type-checkbox h3.filtertitle, .filters-wrapper #language_filter .js-form-type-checkbox .filtertitle.field--name-field-social-phrase-group-title, .filters-wrapper #language_filter .js-form-type-checkbox .filtertitle.field--name-field-image-gallery-title, .filters-wrapper #materials_filter .js-form-type-checkbox h3.filtertitle, .filters-wrapper #materials_filter .js-form-type-checkbox .filtertitle.field--name-field-social-phrase-group-title, .filters-wrapper #materials_filter .js-form-type-checkbox .filtertitle.field--name-field-image-gallery-title,
.filters-wrapper #sfa_filter .js-form-type-checkbox h3.filtertitle,
.filters-wrapper #sfa_filter .js-form-type-checkbox .filtertitle.field--name-field-social-phrase-group-title,
.filters-wrapper #sfa_filter .js-form-type-checkbox .filtertitle.field--name-field-image-gallery-title, .filters-wrapper #division_filter .js-form-type-checkbox h3.filtertitle, .filters-wrapper #division_filter .js-form-type-checkbox .filtertitle.field--name-field-social-phrase-group-title, .filters-wrapper #division_filter .js-form-type-checkbox .filtertitle.field--name-field-image-gallery-title, .filters-wrapper #doc_type_filter .js-form-type-checkbox h3.filtertitle, .filters-wrapper #doc_type_filter .js-form-type-checkbox .filtertitle.field--name-field-social-phrase-group-title, .filters-wrapper #doc_type_filter .js-form-type-checkbox .filtertitle.field--name-field-image-gallery-title, .filters-wrapper #release_date_filter .js-form-type-checkbox h3.filtertitle, .filters-wrapper #release_date_filter .js-form-type-checkbox .filtertitle.field--name-field-social-phrase-group-title, .filters-wrapper #release_date_filter .js-form-type-checkbox .filtertitle.field--name-field-image-gallery-title, .filters-wrapper #expiration_date_filter .js-form-type-checkbox h3.filtertitle, .filters-wrapper #expiration_date_filter .js-form-type-checkbox .filtertitle.field--name-field-social-phrase-group-title, .filters-wrapper #expiration_date_filter .js-form-type-checkbox .filtertitle.field--name-field-image-gallery-title,
.filters-wrapper #cc_cq_filter .js-form-type-checkbox h3.filtertitle,
.filters-wrapper #cc_cq_filter .js-form-type-checkbox .filtertitle.field--name-field-social-phrase-group-title,
.filters-wrapper #cc_cq_filter .js-form-type-checkbox .filtertitle.field--name-field-image-gallery-title, .filters-wrapper #objective_filter .js-form-type-checkbox h3.filtertitle, .filters-wrapper #objective_filter .js-form-type-checkbox .filtertitle.field--name-field-social-phrase-group-title, .filters-wrapper #objective_filter .js-form-type-checkbox .filtertitle.field--name-field-image-gallery-title, .filters-wrapper #start_date_filter .js-form-type-checkbox h3.filtertitle, .filters-wrapper #start_date_filter .js-form-type-checkbox .filtertitle.field--name-field-social-phrase-group-title, .filters-wrapper #start_date_filter .js-form-type-checkbox .filtertitle.field--name-field-image-gallery-title, .filters-wrapper .options-button-wrapper .js-form-type-checkbox h3.filtertitle, .filters-wrapper .options-button-wrapper .js-form-type-checkbox .filtertitle.field--name-field-social-phrase-group-title, .filters-wrapper .options-button-wrapper .js-form-type-checkbox .filtertitle.field--name-field-image-gallery-title {
  margin: 0;
}
/* line 494, ../sass/components/_filters.scss */
.filters-lightbox-buttons #disease_filter #edit-sfa-options, .filters-lightbox-buttons #disease_filter #edit-division-options, .filters-lightbox-buttons #research_filter #edit-sfa-options, .filters-lightbox-buttons #research_filter #edit-division-options, .filters-lightbox-buttons #prevention_filter #edit-sfa-options, .filters-lightbox-buttons #prevention_filter #edit-division-options, .filters-lightbox-buttons #health_filter #edit-sfa-options, .filters-lightbox-buttons #health_filter #edit-division-options, .filters-lightbox-buttons #audience_filter #edit-sfa-options, .filters-lightbox-buttons #audience_filter #edit-division-options, .filters-lightbox-buttons #population_filter #edit-sfa-options, .filters-lightbox-buttons #population_filter #edit-division-options, .filters-lightbox-buttons #language_filter #edit-sfa-options, .filters-lightbox-buttons #language_filter #edit-division-options, .filters-lightbox-buttons #materials_filter #edit-sfa-options, .filters-lightbox-buttons #materials_filter #edit-division-options,
.filters-lightbox-buttons #sfa_filter #edit-sfa-options,
.filters-lightbox-buttons #sfa_filter #edit-division-options, .filters-lightbox-buttons #division_filter #edit-sfa-options, .filters-lightbox-buttons #division_filter #edit-division-options, .filters-lightbox-buttons #doc_type_filter #edit-sfa-options, .filters-lightbox-buttons #doc_type_filter #edit-division-options, .filters-lightbox-buttons #release_date_filter #edit-sfa-options, .filters-lightbox-buttons #release_date_filter #edit-division-options, .filters-lightbox-buttons #expiration_date_filter #edit-sfa-options, .filters-lightbox-buttons #expiration_date_filter #edit-division-options,
.filters-lightbox-buttons #cc_cq_filter #edit-sfa-options,
.filters-lightbox-buttons #cc_cq_filter #edit-division-options, .filters-lightbox-buttons #objective_filter #edit-sfa-options, .filters-lightbox-buttons #objective_filter #edit-division-options, .filters-lightbox-buttons #start_date_filter #edit-sfa-options, .filters-lightbox-buttons #start_date_filter #edit-division-options, .filters-lightbox-buttons .options-button-wrapper #edit-sfa-options, .filters-lightbox-buttons .options-button-wrapper #edit-division-options, .filters-wrapper #disease_filter #edit-sfa-options, .filters-wrapper #disease_filter #edit-division-options, .filters-wrapper #research_filter #edit-sfa-options, .filters-wrapper #research_filter #edit-division-options, .filters-wrapper #prevention_filter #edit-sfa-options, .filters-wrapper #prevention_filter #edit-division-options, .filters-wrapper #health_filter #edit-sfa-options, .filters-wrapper #health_filter #edit-division-options, .filters-wrapper #audience_filter #edit-sfa-options, .filters-wrapper #audience_filter #edit-division-options, .filters-wrapper #population_filter #edit-sfa-options, .filters-wrapper #population_filter #edit-division-options, .filters-wrapper #language_filter #edit-sfa-options, .filters-wrapper #language_filter #edit-division-options, .filters-wrapper #materials_filter #edit-sfa-options, .filters-wrapper #materials_filter #edit-division-options,
.filters-wrapper #sfa_filter #edit-sfa-options,
.filters-wrapper #sfa_filter #edit-division-options, .filters-wrapper #division_filter #edit-sfa-options, .filters-wrapper #division_filter #edit-division-options, .filters-wrapper #doc_type_filter #edit-sfa-options, .filters-wrapper #doc_type_filter #edit-division-options, .filters-wrapper #release_date_filter #edit-sfa-options, .filters-wrapper #release_date_filter #edit-division-options, .filters-wrapper #expiration_date_filter #edit-sfa-options, .filters-wrapper #expiration_date_filter #edit-division-options,
.filters-wrapper #cc_cq_filter #edit-sfa-options,
.filters-wrapper #cc_cq_filter #edit-division-options, .filters-wrapper #objective_filter #edit-sfa-options, .filters-wrapper #objective_filter #edit-division-options, .filters-wrapper #start_date_filter #edit-sfa-options, .filters-wrapper #start_date_filter #edit-division-options, .filters-wrapper .options-button-wrapper #edit-sfa-options, .filters-wrapper .options-button-wrapper #edit-division-options {
  margin: 0;
  padding: 0;
  border: 0 none;
  height: 270px;
  overflow: scroll;
}
/* line 501, ../sass/components/_filters.scss */
.filters-lightbox-buttons #disease_filter #edit-done-button, .filters-lightbox-buttons #disease_filter #edit-done-button-division, .filters-lightbox-buttons #disease_filter .options-box .filter-submit, .filters-lightbox-buttons #research_filter #edit-done-button, .filters-lightbox-buttons #research_filter #edit-done-button-division, .filters-lightbox-buttons #research_filter .options-box .filter-submit, .filters-lightbox-buttons #prevention_filter #edit-done-button, .filters-lightbox-buttons #prevention_filter #edit-done-button-division, .filters-lightbox-buttons #prevention_filter .options-box .filter-submit, .filters-lightbox-buttons #health_filter #edit-done-button, .filters-lightbox-buttons #health_filter #edit-done-button-division, .filters-lightbox-buttons #health_filter .options-box .filter-submit, .filters-lightbox-buttons #audience_filter #edit-done-button, .filters-lightbox-buttons #audience_filter #edit-done-button-division, .filters-lightbox-buttons #audience_filter .options-box .filter-submit, .filters-lightbox-buttons #population_filter #edit-done-button, .filters-lightbox-buttons #population_filter #edit-done-button-division, .filters-lightbox-buttons #population_filter .options-box .filter-submit, .filters-lightbox-buttons #language_filter #edit-done-button, .filters-lightbox-buttons #language_filter #edit-done-button-division, .filters-lightbox-buttons #language_filter .options-box .filter-submit, .filters-lightbox-buttons #materials_filter #edit-done-button, .filters-lightbox-buttons #materials_filter #edit-done-button-division, .filters-lightbox-buttons #materials_filter .options-box .filter-submit,
.filters-lightbox-buttons #sfa_filter #edit-done-button,
.filters-lightbox-buttons #sfa_filter #edit-done-button-division,
.filters-lightbox-buttons #sfa_filter .options-box .filter-submit, .filters-lightbox-buttons #division_filter #edit-done-button, .filters-lightbox-buttons #division_filter #edit-done-button-division, .filters-lightbox-buttons #division_filter .options-box .filter-submit, .filters-lightbox-buttons #doc_type_filter #edit-done-button, .filters-lightbox-buttons #doc_type_filter #edit-done-button-division, .filters-lightbox-buttons #doc_type_filter .options-box .filter-submit, .filters-lightbox-buttons #release_date_filter #edit-done-button, .filters-lightbox-buttons #release_date_filter #edit-done-button-division, .filters-lightbox-buttons #release_date_filter .options-box .filter-submit, .filters-lightbox-buttons #expiration_date_filter #edit-done-button, .filters-lightbox-buttons #expiration_date_filter #edit-done-button-division, .filters-lightbox-buttons #expiration_date_filter .options-box .filter-submit,
.filters-lightbox-buttons #cc_cq_filter #edit-done-button,
.filters-lightbox-buttons #cc_cq_filter #edit-done-button-division,
.filters-lightbox-buttons #cc_cq_filter .options-box .filter-submit, .filters-lightbox-buttons #objective_filter #edit-done-button, .filters-lightbox-buttons #objective_filter #edit-done-button-division, .filters-lightbox-buttons #objective_filter .options-box .filter-submit, .filters-lightbox-buttons #start_date_filter #edit-done-button, .filters-lightbox-buttons #start_date_filter #edit-done-button-division, .filters-lightbox-buttons #start_date_filter .options-box .filter-submit, .filters-lightbox-buttons .options-button-wrapper #edit-done-button, .filters-lightbox-buttons .options-button-wrapper #edit-done-button-division, .filters-lightbox-buttons .options-button-wrapper .options-box .filter-submit, .filters-wrapper #disease_filter #edit-done-button, .filters-wrapper #disease_filter #edit-done-button-division, .filters-wrapper #disease_filter .options-box .filter-submit, .filters-wrapper #research_filter #edit-done-button, .filters-wrapper #research_filter #edit-done-button-division, .filters-wrapper #research_filter .options-box .filter-submit, .filters-wrapper #prevention_filter #edit-done-button, .filters-wrapper #prevention_filter #edit-done-button-division, .filters-wrapper #prevention_filter .options-box .filter-submit, .filters-wrapper #health_filter #edit-done-button, .filters-wrapper #health_filter #edit-done-button-division, .filters-wrapper #health_filter .options-box .filter-submit, .filters-wrapper #audience_filter #edit-done-button, .filters-wrapper #audience_filter #edit-done-button-division, .filters-wrapper #audience_filter .options-box .filter-submit, .filters-wrapper #population_filter #edit-done-button, .filters-wrapper #population_filter #edit-done-button-division, .filters-wrapper #population_filter .options-box .filter-submit, .filters-wrapper #language_filter #edit-done-button, .filters-wrapper #language_filter #edit-done-button-division, .filters-wrapper #language_filter .options-box .filter-submit, .filters-wrapper #materials_filter #edit-done-button, .filters-wrapper #materials_filter #edit-done-button-division, .filters-wrapper #materials_filter .options-box .filter-submit,
.filters-wrapper #sfa_filter #edit-done-button,
.filters-wrapper #sfa_filter #edit-done-button-division,
.filters-wrapper #sfa_filter .options-box .filter-submit, .filters-wrapper #division_filter #edit-done-button, .filters-wrapper #division_filter #edit-done-button-division, .filters-wrapper #division_filter .options-box .filter-submit, .filters-wrapper #doc_type_filter #edit-done-button, .filters-wrapper #doc_type_filter #edit-done-button-division, .filters-wrapper #doc_type_filter .options-box .filter-submit, .filters-wrapper #release_date_filter #edit-done-button, .filters-wrapper #release_date_filter #edit-done-button-division, .filters-wrapper #release_date_filter .options-box .filter-submit, .filters-wrapper #expiration_date_filter #edit-done-button, .filters-wrapper #expiration_date_filter #edit-done-button-division, .filters-wrapper #expiration_date_filter .options-box .filter-submit,
.filters-wrapper #cc_cq_filter #edit-done-button,
.filters-wrapper #cc_cq_filter #edit-done-button-division,
.filters-wrapper #cc_cq_filter .options-box .filter-submit, .filters-wrapper #objective_filter #edit-done-button, .filters-wrapper #objective_filter #edit-done-button-division, .filters-wrapper #objective_filter .options-box .filter-submit, .filters-wrapper #start_date_filter #edit-done-button, .filters-wrapper #start_date_filter #edit-done-button-division, .filters-wrapper #start_date_filter .options-box .filter-submit, .filters-wrapper .options-button-wrapper #edit-done-button, .filters-wrapper .options-button-wrapper #edit-done-button-division, .filters-wrapper .options-button-wrapper .options-box .filter-submit {
  background-color: #1a568c;
  border-radius: 20px;
  height: 40px;
  margin: 20px;
  width: 200px;
  margin: 10px auto;
  text-align: center;
}
/* line 511, ../sass/components/_filters.scss */
.filters-lightbox-buttons #disease_filter .options-box, .filters-lightbox-buttons #research_filter .options-box, .filters-lightbox-buttons #prevention_filter .options-box, .filters-lightbox-buttons #health_filter .options-box, .filters-lightbox-buttons #audience_filter .options-box, .filters-lightbox-buttons #population_filter .options-box, .filters-lightbox-buttons #language_filter .options-box, .filters-lightbox-buttons #materials_filter .options-box,
.filters-lightbox-buttons #sfa_filter .options-box, .filters-lightbox-buttons #division_filter .options-box, .filters-lightbox-buttons #doc_type_filter .options-box, .filters-lightbox-buttons #release_date_filter .options-box, .filters-lightbox-buttons #expiration_date_filter .options-box,
.filters-lightbox-buttons #cc_cq_filter .options-box, .filters-lightbox-buttons #objective_filter .options-box, .filters-lightbox-buttons #start_date_filter .options-box, .filters-lightbox-buttons .options-button-wrapper .options-box, .filters-wrapper #disease_filter .options-box, .filters-wrapper #research_filter .options-box, .filters-wrapper #prevention_filter .options-box, .filters-wrapper #health_filter .options-box, .filters-wrapper #audience_filter .options-box, .filters-wrapper #population_filter .options-box, .filters-wrapper #language_filter .options-box, .filters-wrapper #materials_filter .options-box,
.filters-wrapper #sfa_filter .options-box, .filters-wrapper #division_filter .options-box, .filters-wrapper #doc_type_filter .options-box, .filters-wrapper #release_date_filter .options-box, .filters-wrapper #expiration_date_filter .options-box,
.filters-wrapper #cc_cq_filter .options-box, .filters-wrapper #objective_filter .options-box, .filters-wrapper #start_date_filter .options-box, .filters-wrapper .options-button-wrapper .options-box {
  text-align: left;
}
/* line 513, ../sass/components/_filters.scss */
.filters-lightbox-buttons #disease_filter .options-box .filter-submit, .filters-lightbox-buttons #research_filter .options-box .filter-submit, .filters-lightbox-buttons #prevention_filter .options-box .filter-submit, .filters-lightbox-buttons #health_filter .options-box .filter-submit, .filters-lightbox-buttons #audience_filter .options-box .filter-submit, .filters-lightbox-buttons #population_filter .options-box .filter-submit, .filters-lightbox-buttons #language_filter .options-box .filter-submit, .filters-lightbox-buttons #materials_filter .options-box .filter-submit,
.filters-lightbox-buttons #sfa_filter .options-box .filter-submit, .filters-lightbox-buttons #division_filter .options-box .filter-submit, .filters-lightbox-buttons #doc_type_filter .options-box .filter-submit, .filters-lightbox-buttons #release_date_filter .options-box .filter-submit, .filters-lightbox-buttons #expiration_date_filter .options-box .filter-submit,
.filters-lightbox-buttons #cc_cq_filter .options-box .filter-submit, .filters-lightbox-buttons #objective_filter .options-box .filter-submit, .filters-lightbox-buttons #start_date_filter .options-box .filter-submit, .filters-lightbox-buttons .options-button-wrapper .options-box .filter-submit, .filters-wrapper #disease_filter .options-box .filter-submit, .filters-wrapper #research_filter .options-box .filter-submit, .filters-wrapper #prevention_filter .options-box .filter-submit, .filters-wrapper #health_filter .options-box .filter-submit, .filters-wrapper #audience_filter .options-box .filter-submit, .filters-wrapper #population_filter .options-box .filter-submit, .filters-wrapper #language_filter .options-box .filter-submit, .filters-wrapper #materials_filter .options-box .filter-submit,
.filters-wrapper #sfa_filter .options-box .filter-submit, .filters-wrapper #division_filter .options-box .filter-submit, .filters-wrapper #doc_type_filter .options-box .filter-submit, .filters-wrapper #release_date_filter .options-box .filter-submit, .filters-wrapper #expiration_date_filter .options-box .filter-submit,
.filters-wrapper #cc_cq_filter .options-box .filter-submit, .filters-wrapper #objective_filter .options-box .filter-submit, .filters-wrapper #start_date_filter .options-box .filter-submit, .filters-wrapper .options-button-wrapper .options-box .filter-submit {
  cursor: pointer;
}
/* line 515, ../sass/components/_filters.scss */
.filters-lightbox-buttons #disease_filter .options-box .filter-submit span, .filters-lightbox-buttons #research_filter .options-box .filter-submit span, .filters-lightbox-buttons #prevention_filter .options-box .filter-submit span, .filters-lightbox-buttons #health_filter .options-box .filter-submit span, .filters-lightbox-buttons #audience_filter .options-box .filter-submit span, .filters-lightbox-buttons #population_filter .options-box .filter-submit span, .filters-lightbox-buttons #language_filter .options-box .filter-submit span, .filters-lightbox-buttons #materials_filter .options-box .filter-submit span,
.filters-lightbox-buttons #sfa_filter .options-box .filter-submit span, .filters-lightbox-buttons #division_filter .options-box .filter-submit span, .filters-lightbox-buttons #doc_type_filter .options-box .filter-submit span, .filters-lightbox-buttons #release_date_filter .options-box .filter-submit span, .filters-lightbox-buttons #expiration_date_filter .options-box .filter-submit span,
.filters-lightbox-buttons #cc_cq_filter .options-box .filter-submit span, .filters-lightbox-buttons #objective_filter .options-box .filter-submit span, .filters-lightbox-buttons #start_date_filter .options-box .filter-submit span, .filters-lightbox-buttons .options-button-wrapper .options-box .filter-submit span, .filters-wrapper #disease_filter .options-box .filter-submit span, .filters-wrapper #research_filter .options-box .filter-submit span, .filters-wrapper #prevention_filter .options-box .filter-submit span, .filters-wrapper #health_filter .options-box .filter-submit span, .filters-wrapper #audience_filter .options-box .filter-submit span, .filters-wrapper #population_filter .options-box .filter-submit span, .filters-wrapper #language_filter .options-box .filter-submit span, .filters-wrapper #materials_filter .options-box .filter-submit span,
.filters-wrapper #sfa_filter .options-box .filter-submit span, .filters-wrapper #division_filter .options-box .filter-submit span, .filters-wrapper #doc_type_filter .options-box .filter-submit span, .filters-wrapper #release_date_filter .options-box .filter-submit span, .filters-wrapper #expiration_date_filter .options-box .filter-submit span,
.filters-wrapper #cc_cq_filter .options-box .filter-submit span, .filters-wrapper #objective_filter .options-box .filter-submit span, .filters-wrapper #start_date_filter .options-box .filter-submit span, .filters-wrapper .options-button-wrapper .options-box .filter-submit span {
  display: block;
  padding-top: 10px;
}
/* line 520, ../sass/components/_filters.scss */
.filters-lightbox-buttons #disease_filter .options-box select, .filters-lightbox-buttons #research_filter .options-box select, .filters-lightbox-buttons #prevention_filter .options-box select, .filters-lightbox-buttons #health_filter .options-box select, .filters-lightbox-buttons #audience_filter .options-box select, .filters-lightbox-buttons #population_filter .options-box select, .filters-lightbox-buttons #language_filter .options-box select, .filters-lightbox-buttons #materials_filter .options-box select,
.filters-lightbox-buttons #sfa_filter .options-box select, .filters-lightbox-buttons #division_filter .options-box select, .filters-lightbox-buttons #doc_type_filter .options-box select, .filters-lightbox-buttons #release_date_filter .options-box select, .filters-lightbox-buttons #expiration_date_filter .options-box select,
.filters-lightbox-buttons #cc_cq_filter .options-box select, .filters-lightbox-buttons #objective_filter .options-box select, .filters-lightbox-buttons #start_date_filter .options-box select, .filters-lightbox-buttons .options-button-wrapper .options-box select, .filters-wrapper #disease_filter .options-box select, .filters-wrapper #research_filter .options-box select, .filters-wrapper #prevention_filter .options-box select, .filters-wrapper #health_filter .options-box select, .filters-wrapper #audience_filter .options-box select, .filters-wrapper #population_filter .options-box select, .filters-wrapper #language_filter .options-box select, .filters-wrapper #materials_filter .options-box select,
.filters-wrapper #sfa_filter .options-box select, .filters-wrapper #division_filter .options-box select, .filters-wrapper #doc_type_filter .options-box select, .filters-wrapper #release_date_filter .options-box select, .filters-wrapper #expiration_date_filter .options-box select,
.filters-wrapper #cc_cq_filter .options-box select, .filters-wrapper #objective_filter .options-box select, .filters-wrapper #start_date_filter .options-box select, .filters-wrapper .options-button-wrapper .options-box select {
  width: 150px;
}
/* line 523, ../sass/components/_filters.scss */
.filters-lightbox-buttons #disease_filter .options-box .form-type-select, .filters-lightbox-buttons #research_filter .options-box .form-type-select, .filters-lightbox-buttons #prevention_filter .options-box .form-type-select, .filters-lightbox-buttons #health_filter .options-box .form-type-select, .filters-lightbox-buttons #audience_filter .options-box .form-type-select, .filters-lightbox-buttons #population_filter .options-box .form-type-select, .filters-lightbox-buttons #language_filter .options-box .form-type-select, .filters-lightbox-buttons #materials_filter .options-box .form-type-select,
.filters-lightbox-buttons #sfa_filter .options-box .form-type-select, .filters-lightbox-buttons #division_filter .options-box .form-type-select, .filters-lightbox-buttons #doc_type_filter .options-box .form-type-select, .filters-lightbox-buttons #release_date_filter .options-box .form-type-select, .filters-lightbox-buttons #expiration_date_filter .options-box .form-type-select,
.filters-lightbox-buttons #cc_cq_filter .options-box .form-type-select, .filters-lightbox-buttons #objective_filter .options-box .form-type-select, .filters-lightbox-buttons #start_date_filter .options-box .form-type-select, .filters-lightbox-buttons .options-button-wrapper .options-box .form-type-select, .filters-wrapper #disease_filter .options-box .form-type-select, .filters-wrapper #research_filter .options-box .form-type-select, .filters-wrapper #prevention_filter .options-box .form-type-select, .filters-wrapper #health_filter .options-box .form-type-select, .filters-wrapper #audience_filter .options-box .form-type-select, .filters-wrapper #population_filter .options-box .form-type-select, .filters-wrapper #language_filter .options-box .form-type-select, .filters-wrapper #materials_filter .options-box .form-type-select,
.filters-wrapper #sfa_filter .options-box .form-type-select, .filters-wrapper #division_filter .options-box .form-type-select, .filters-wrapper #doc_type_filter .options-box .form-type-select, .filters-wrapper #release_date_filter .options-box .form-type-select, .filters-wrapper #expiration_date_filter .options-box .form-type-select,
.filters-wrapper #cc_cq_filter .options-box .form-type-select, .filters-wrapper #objective_filter .options-box .form-type-select, .filters-wrapper #start_date_filter .options-box .form-type-select, .filters-wrapper .options-button-wrapper .options-box .form-type-select {
  padding-left: 20px;
}
/* line 529, ../sass/components/_filters.scss */
.filters-lightbox-buttons .form-item-field-release-date-value-max label, .filters-wrapper .form-item-field-release-date-value-max label {
  padding-bottom: 10px;
}
/* line 532, ../sass/components/_filters.scss */
.filters-lightbox-buttons .form-type-checkbox label, .filters-wrapper .form-type-checkbox label {
  cursor: pointer;
}

/* line 538, ../sass/components/_filters.scss */
#edit-add-other-filters-buttons {
  margin: 0;
}

/* line 543, ../sass/components/_filters.scss */
#edit-filter-ajax-submit {
  display: none;
}

/* line 547, ../sass/components/_filters.scss */
#clear-all {
  float: right;
}

/* line 551, ../sass/components/_filters.scss */
.primaryBlueBackgroundGradient {
  background: transparent linear-gradient(180deg, #1a568c 75px, #ffffff 75px) repeat scroll 0 0;
}
/* line 553, ../sass/components/_filters.scss */
.primaryBlueBackgroundGradient .content-container {
  margin-top: 0px;
}

/* line 558, ../sass/components/_filters.scss */
.tertiaryBlueBackgroundGradient {
  background: transparent linear-gradient(180deg, #102d66 75px, #ffffff 75px) repeat scroll 0 0;
}
/* line 560, ../sass/components/_filters.scss */
.tertiaryBlueBackgroundGradient .content-container {
  margin-top: 0px;
}

/* line 565, ../sass/components/_filters.scss */
.lightBlueBackgroundGradient {
  background: transparent linear-gradient(180deg, #ffffff 75px, #d7e7f4 75px) repeat scroll 0 0;
}
/* line 567, ../sass/components/_filters.scss */
.lightBlueBackgroundGradient .content-container {
  margin-top: 0px;
}

/* line 572, ../sass/components/_filters.scss */
.darkRedBackgroundGradient {
  background: transparent linear-gradient(180deg, #ffffff 75px, #850920 75px) repeat scroll 0 0;
}
/* line 574, ../sass/components/_filters.scss */
.darkRedBackgroundGradient .content-container {
  margin-top: 0px;
}

/* line 580, ../sass/components/_filters.scss */
.lightBlueBackgroundGradientReverse {
  background: transparent linear-gradient(180deg, #d7e7f4 75px, #ffffff 75px) repeat scroll 0 0;
}
/* line 582, ../sass/components/_filters.scss */
.lightBlueBackgroundGradientReverse .content-container {
  margin-top: 0px;
}

/* line 587, ../sass/components/_filters.scss */
.pubsRedBackgroundGradientReverse {
  background: transparent linear-gradient(180deg, #bf0d2e 75px, #ffffff 75px) repeat scroll 0 0;
}
/* line 589, ../sass/components/_filters.scss */
.pubsRedBackgroundGradientReverse .content-container {
  margin-top: 0px;
}

/* line 596, ../sass/components/_filters.scss */
#filter_results_wrapper ul {
  list-style: outside none none;
}
/* line 598, ../sass/components/_filters.scss */
#filter_results_wrapper ul li {
  border-bottom: 1px solid #bcbcbc;
  margin-bottom: 1em;
  padding: 0 0 10px 10px;
}
/* line 603, ../sass/components/_filters.scss */
#filter_results_wrapper ul li:last-child {
  border-bottom: none;
}

/* line 613, ../sass/components/_filters.scss */
.view-filters .nhlbi-searchbar {
  width: 100%;
  box-sizing: border-box;
}

/* line 618, ../sass/components/_filters.scss */
.filter-no-matches {
  background-image: url("../images/ico-info.png");
  background-size: 30px 30px;
  background-repeat: no-repeat;
  background-position: initial;
  display: inline-block;
  content: " ";
  height: 30px;
  background-position: left center;
  padding-left: 40px;
  margin-bottom: 400px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 618, ../sass/components/_filters.scss */
  .filter-no-matches {
    background-size: 20px 20px;
    height: 20px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 618, ../sass/components/_filters.scss */
  .filter-no-matches {
    background-size: 20px 20px;
    height: 20px;
  }
}

/* line 625, ../sass/components/_filters.scss */
.filter-no-matches.calloutdescription, .filter-no-matches.calloutdescriptionwhite, .filter-no-matches.calloutflattextwhite, .filter-no-matches.calloutflattext, .node--type-webform .filter-no-matches.field--name-field-status-message, .webform-submission-form .filter-no-matches.field--name-field-status-message, .node--type-research-topic .rtDescription .readMoreContainer > .filter-no-matches.field--name-field-standard-description,
.node--type-research-topic .rtDescription .field--name-field-additional-text p.filter-no-matches {
  color: #222;
}

/* line 630, ../sass/components/_filters.scss */
#filter_results_wrapper .center-align {
  text-align: center;
  background-color: white;
  display: table;
  margin-right: auto;
  margin-left: auto;
}

/* line 641, ../sass/components/_filters.scss */
#nhlbi-science-filter .ajax-progress {
  display: table;
  margin: auto;
}
/* line 646, ../sass/components/_filters.scss */
#nhlbi-science-filter .ajax-progress-throbber .throbber {
  display: table;
  margin-right: auto;
  margin-left: auto;
  background-image: url("../images/ico-throbber.gif");
  background-size: 55px 55px;
  background-repeat: no-repeat;
  background-position: initial;
  display: inline-block;
  content: " ";
  height: 55px;
  width: 55px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 646, ../sass/components/_filters.scss */
  #nhlbi-science-filter .ajax-progress-throbber .throbber {
    background-size: 55px 55px;
    height: 55px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 646, ../sass/components/_filters.scss */
  #nhlbi-science-filter .ajax-progress-throbber .throbber {
    background-size: 55px 55px;
    height: 55px;
  }
}
/* line 654, ../sass/components/_filters.scss */
#nhlbi-science-filter .ajax-progress-throbber .message {
  display: none;
}

/* line 664, ../sass/components/_filters.scss */
.selected-filter-options .selected-filters-cross {
  background-color: transparent;
}

/* line 669, ../sass/components/_filters.scss */
.ui-autocomplete.ui-menu li.ui-state-focus {
  border: none;
  background: none;
}
/* line 673, ../sass/components/_filters.scss */
.ui-autocomplete.ui-menu li.ui-state-focus a {
  background-color: white;
  cursor: pointer;
  color: #3885CA;
}
/* line 677, ../sass/components/_filters.scss */
.ui-autocomplete.ui-menu li.ui-state-focus a span {
  background-color: #f1f7fb;
  border-bottom: 1px solid #3885CA;
}
/* line 687, ../sass/components/_filters.scss */
.ui-autocomplete.ui-menu li.ui-menu-item {
  margin: 10px;
  padding: 0;
}
/* line 692, ../sass/components/_filters.scss */
.ui-autocomplete.ui-menu a {
  color: #3885CA;
}
/* line 694, ../sass/components/_filters.scss */
.ui-autocomplete.ui-menu a span {
  padding: 5px;
}

/* line 700, ../sass/components/_filters.scss */
.ui-autocomplete.ui-widget-content {
  border: 1px solid #D7D7D7;
  max-width: 60% !important;
}

/* line 706, ../sass/components/_filters.scss */
.ui-autocomplete-loading1 {
  background-image: url("../images/ico-throbber.gif");
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: initial;
  display: inline-block;
  content: " ";
  height: 20px;
  background-postion: right center;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 706, ../sass/components/_filters.scss */
  .ui-autocomplete-loading1 {
    background-size: 20px 20px;
    height: 20px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 706, ../sass/components/_filters.scss */
  .ui-autocomplete-loading1 {
    background-size: 20px 20px;
    height: 20px;
  }
}

/* line 713, ../sass/components/_filters.scss */
input[type=text]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

/* line 714, ../sass/components/_filters.scss */
input[type=text]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

/* line 718, ../sass/components/_filters.scss */
#views-exposed-form-nhlbi-publications-and-resources-block-1 .form-actions, #views-exposed-form-nhlbi-cc-cq-block-2 .form-actions, #views-exposed-form-nhlbi-all-events-block-9 .form-actions, #views-exposed-form-nhlbi-all-news-block-1 .form-actions {
  display: none;
}
/* line 721, ../sass/components/_filters.scss */
#views-exposed-form-nhlbi-publications-and-resources-block-1 .form-text, #views-exposed-form-nhlbi-cc-cq-block-2 .form-text, #views-exposed-form-nhlbi-all-events-block-9 .form-text, #views-exposed-form-nhlbi-all-news-block-1 .form-text {
  border: medium none;
}

/* line 728, ../sass/components/_filters.scss */
#views-exposed-form-nhlbi-grants-foa-block-1 #filters-wrapper-lightbox-document-type, #views-exposed-form-nhlbi-grants-foa-block-1 .filters-wrapper-lightbox-release-date, #views-exposed-form-nhlbi-grants-foa-block-1 .filters-wrapper-lightbox-expiration-date, #views-exposed-form-nhlbi-grants-foa-block-1 .form-actions {
  display: none;
}
/* line 733, ../sass/components/_filters.scss */
#views-exposed-form-nhlbi-grants-foa-block-1 .form-text {
  border: medium none;
}

/* line 738, ../sass/components/_filters.scss */
.all-grants-foa-container .views-element-container {
  width: 100%;
}
/* line 740, ../sass/components/_filters.scss */
.all-grants-foa-container .views-element-container .filter-no-matches {
  margin: auto;
}
/* line 743, ../sass/components/_filters.scss */
.all-grants-foa-container .views-element-container #filter_results_wrapper {
  background-color: white;
}

/* line 749, ../sass/components/_filters.scss */
.primaryBlueBackgroundGradient {
  background: transparent linear-gradient(180deg, #1a568c 75px, #ffffff 76px) repeat scroll 0 0;
}
/* line 751, ../sass/components/_filters.scss */
.primaryBlueBackgroundGradient .content-container {
  margin-top: 0px;
}

/* line 760, ../sass/components/_filters.scss */
#landing-page-onboarding-text {
  display: none;
  float: right;
  width: 500px;
  position: absolute;
  right: 11%;
  text-align: left;
  padding: 5px;
  z-index: 1000;
  border-radius: .4em;
}
/* line 772, ../sass/components/_filters.scss */
#landing-page-onboarding-text .arrow_box {
  position: relative;
  background: #ddd;
  border: 4px solid #ddd;
  padding: 20px;
  border-radius: 10px;
}
/* line 779, ../sass/components/_filters.scss */
#landing-page-onboarding-text .arrow_box:after, #landing-page-onboarding-text .arrow_box:before {
  bottom: 100%;
  left: 80%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
/* line 790, ../sass/components/_filters.scss */
#landing-page-onboarding-text .arrow_box:after {
  border-color: rgba(136, 183, 213, 0);
  border-bottom-color: #ddd;
  border-width: 20px;
  margin-left: -20px;
}
/* line 796, ../sass/components/_filters.scss */
#landing-page-onboarding-text .arrow_box:before {
  border-color: rgba(194, 225, 245, 0);
  border-bottom-color: #ddd;
  border-width: 20px;
  margin-left: -20px;
}
/* line 804, ../sass/components/_filters.scss */
#landing-page-onboarding-text .dismiss-button {
  color: #fff;
  margin-bottom: 15px;
}
/* line 807, ../sass/components/_filters.scss */
#landing-page-onboarding-text .dismiss-button a {
  cursor: pointer;
  float: right;
  background-color: #102d66;
  text-align: center;
  width: 100px;
  position: relative;
  border-radius: 5px;
  padding: 5px;
  font-size: 0.75rem;
  font-size: 12px;
  text-decoration: none;
}
/* line 820, ../sass/components/_filters.scss */
#landing-page-onboarding-text .dismiss-button a:hover {
  font-weight: normal;
}

/* line 827, ../sass/components/_filters.scss */
.js-form-type-checkbox input[type=checkbox] {
  display: inline-block;
  width: 0;
  height: 0;
}
/* line 832, ../sass/components/_filters.scss */
.js-form-type-checkbox input[type=checkbox]:focus {
  outline: none;
}
/* line 837, ../sass/components/_filters.scss */
.js-form-type-checkbox label {
  margin-left: -14px;
}
/* line 840, ../sass/components/_filters.scss */
.js-form-type-checkbox input[type=checkbox]:focus + label {
  outline: #bf0d2e dotted 3px;
  outline-offset: 2px;
}

/* line 847, ../sass/components/_filters.scss */
.layout-builder-configure-block .js-form-type-checkbox input[type=checkbox] {
  height: auto;
  width: auto;
}

/* line 852, ../sass/components/_filters.scss */
[data-drupal-selector="edit-settings-signup-form-text-format"] {
  display: none;
}

/* line 3, ../sass/components/_alerts.scss */
.node--type-alert.node--view-mode-teaser .alert-list {
  margin: 0 2rem;
}
/* line 7, ../sass/components/_alerts.scss */
.node--type-alert.node--view-mode-teaser .toggle-button {
  -ms-flex-item-align: flex-start;
  align-self: flex-start;
}
/* line 13, ../sass/components/_alerts.scss */
.node--type-alert.node--view-mode-teaser a.ext:after, .node--type-alert.node--view-mode-teaser a:link.ext:after {
  font-family: "Font Awesome 5 Free";
  content: "\f35d";
  margin-left: 5px;
}
/* line 20, ../sass/components/_alerts.scss */
.node--type-alert.node--view-mode-teaser .ext-icon {
  display: none;
}

/* line 27, ../sass/components/_alerts.scss */
.alert-type-warning .alert-header {
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  background-color: #bf0d2e;
  font-size: 1.25rem;
  line-height: 1.25;
  font-weight: bold;
  padding: 1rem;
}
@media all and (min-width: 1100px) {
  /* line 27, ../sass/components/_alerts.scss */
  .alert-type-warning .alert-header {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
}
/* line 40, ../sass/components/_alerts.scss */
.alert-type-warning h2, .alert-type-warning .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .alert-type-warning h1, .alert-type-warning .contact-method-label {
  color: #fff;
  font-size: 1.125rem;
  line-height: 1.25;
  font-weight: bold;
  margin: 0;
  margin-bottom: 1rem;
  display: block;
  padding: 0;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
}
/* line 51, ../sass/components/_alerts.scss */
.alert-type-warning h2 .toggle-button, .alert-type-warning .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1 .toggle-button, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .alert-type-warning h1 .toggle-button, .alert-type-warning .contact-method-label .toggle-button {
  margin-left: 50px;
}
@media all and (min-width: 1100px) {
  /* line 40, ../sass/components/_alerts.scss */
  .alert-type-warning h2, .alert-type-warning .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .alert-type-warning h1, .alert-type-warning .contact-method-label {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin: 0;
    display: inline-block;
    font-size: 1.25rem;
  }
  /* line 59, ../sass/components/_alerts.scss */
  .alert-type-warning h2 .toggle-button, .alert-type-warning .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1 .toggle-button, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .alert-type-warning h1 .toggle-button, .alert-type-warning .contact-method-label .toggle-button {
    margin-left: 0;
  }
}
/* line 64, ../sass/components/_alerts.scss */
.alert-type-warning h2 span, .alert-type-warning .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1 span, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .alert-type-warning h1 span, .alert-type-warning .contact-method-label span {
  display: inline-block;
}
/* line 66, ../sass/components/_alerts.scss */
.alert-type-warning h2 span:before, .alert-type-warning .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1 span:before, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .alert-type-warning h1 span:before, .alert-type-warning .contact-method-label span:before {
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  content: "\f071";
  margin-right: 20px;
}
/* line 74, ../sass/components/_alerts.scss */
.alert-type-warning .node__content {
  padding: 1rem;
  background-color: #fff4f3;
  color: #222;
}
/* line 80, ../sass/components/_alerts.scss */
.alert-type-warning .alert-list-wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 50% 50%;
  grid-template-columns: 50% 50%;
  grid-column-gap: 2rem;
}
/* line 87, ../sass/components/_alerts.scss */
.alert-type-warning .alert-list-wrapper .field--name-field-alert-list-column-1 {
  -ms-grid-column: 1;
  grid-column: 1;
}
/* line 91, ../sass/components/_alerts.scss */
.alert-type-warning .alert-list-wrapper .field--name-field-alert-list-column-2 {
  -ms-grid-column: 2;
  grid-column: 2;
}
/* line 96, ../sass/components/_alerts.scss */
.alert-type-warning .alert-list-wrapper li {
  padding: 0.5em 0;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 80, ../sass/components/_alerts.scss */
  .alert-type-warning .alert-list-wrapper {
    display: block;
  }
}
/* line 105, ../sass/components/_alerts.scss */
.alert-type-warning a, .alert-type-warning a:link, .alert-type-warning a:visited {
  color: #850920;
  font-weight: 600;
}
/* line 109, ../sass/components/_alerts.scss */
.alert-type-warning a.toggle-button, .alert-type-warning a:link.toggle-button, .alert-type-warning a:visited.toggle-button {
  font-weight: bold;
}
/* line 114, ../sass/components/_alerts.scss */
.alert-type-warning a:hover, .alert-type-warning a:focus, .alert-type-warning a:active {
  font-weight: bold;
}

/* line 120, ../sass/components/_alerts.scss */
.alert-type-information {
  background-color: #F6C163;
  color: #222;
  padding: 1em 1.5em;
  position: fixed;
  z-index: 3;
  bottom: 0;
  width: 100%;
  box-shadow: 2px 4px 10px rgba(34, 34, 34, 0.05);
}
/* line 130, ../sass/components/_alerts.scss */
.alert-type-information a, .alert-type-information a:link, .alert-type-information a:visited {
  color: #222;
}
/* line 134, ../sass/components/_alerts.scss */
.alert-type-information p {
  font-size: 1rem;
  font-weight: 600;
}
/* line 139, ../sass/components/_alerts.scss */
.alert-type-information i.fas {
  font-weight: bold;
  -webkit-box-flex: 0 0 40px;
  -moz-box-flex: 0 0 40px;
  -webkit-flex: 0 0 40px;
  -ms-flex: 0 0 40px;
  flex: 0 0 40px;
  -ms-flex-item-align: start;
  align-self: flex-start;
  font-size: 24px;
}
@media all and (min-width: 1100px) {
  /* line 139, ../sass/components/_alerts.scss */
  .alert-type-information i.fas {
    -ms-flex-item-align: center;
    align-self: center;
  }
}
/* line 151, ../sass/components/_alerts.scss */
.alert-type-information p:last-of-type {
  margin-bottom: 0;
}
/* line 155, ../sass/components/_alerts.scss */
.alert-type-information .node__content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
/* line 159, ../sass/components/_alerts.scss */
.alert-type-information .alert-text-wrapper {
  -webkit-box-flex: 1 1 auto;
  -moz-box-flex: 1 1 auto;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  -ms-flex-item-align: center;
  align-self: center;
  font-size: 1rem;
}
/* line 165, ../sass/components/_alerts.scss */
.alert-type-information .field--name-body {
  display: inline-block;
}
/* line 169, ../sass/components/_alerts.scss */
.alert-type-information .field--name-field-alert-more-link {
  display: inline-block;
}
/* line 172, ../sass/components/_alerts.scss */
.alert-type-information .field--name-field-alert-more-link a:not(.ext-icon), .alert-type-information .field--name-field-alert-more-link a:link:not(.ext-icon), .alert-type-information .field--name-field-alert-more-link a:visited:not(.ext-icon) {
  font-weight: 600;
  color: #222;
  text-decoration: underline;
}
/* line 177, ../sass/components/_alerts.scss */
.alert-type-information .field--name-field-alert-more-link a:not(.ext-icon):after, .alert-type-information .field--name-field-alert-more-link a:link:not(.ext-icon):after, .alert-type-information .field--name-field-alert-more-link a:visited:not(.ext-icon):after {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: "\f138";
  margin-left: 0.875em;
  text-decoration: none;
  display: inline-block;
}
/* line 186, ../sass/components/_alerts.scss */
.alert-type-information .field--name-field-alert-more-link a:not(.ext-icon):hover, .alert-type-information .field--name-field-alert-more-link a:link:not(.ext-icon):hover, .alert-type-information .field--name-field-alert-more-link a:visited:not(.ext-icon):hover {
  font-weight: 700;
}
/* line 192, ../sass/components/_alerts.scss */
.alert-type-information .field--name-field-alert-more-link a.ext:after, .alert-type-information .field--name-field-alert-more-link a:link.ext:after {
  font-family: "Font Awesome 5 Free";
  content: "\f35d";
  margin-left: 5px;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 169, ../sass/components/_alerts.scss */
  .alert-type-information .field--name-field-alert-more-link {
    width: 100%;
    margin-top: 1em;
  }
  /* line 203, ../sass/components/_alerts.scss */
  .alert-type-information .field--name-field-alert-more-link .toggle-button {
    -ms-flex-item-align: flex-start;
    align-self: flex-start;
  }
}
/* line 210, ../sass/components/_alerts.scss */
.alert-type-information .toggle-button {
  font-size: 0.875rem;
  margin-right: 2rem;
  font-weight: bold;
  -webkit-box-flex: 0 0 70px;
  -moz-box-flex: 0 0 70px;
  -webkit-flex: 0 0 70px;
  -ms-flex: 0 0 70px;
  flex: 0 0 70px;
}

/* line 219, ../sass/components/_alerts.scss */
.urgent-alert-collapsed .node__content {
  height: 0;
  padding: 0;
  visibility: hidden;
}

/**
 * @file
 * abridged_science_instance is intended to be used as set of styles for Abridged Science Instance.
 *
 */
/**
  * node--type-abridged-science-instance
  * Set of style for Abridged Science Instance content type.
  */
/* line 14, ../sass/components/_abridged_science_instance.scss */
.node--type-abridged-science-instance .field--name-field-website a:focus {
  line-height: 2;
}

/* line 2, ../sass/components/_roster.scss */
.view-id-roster h1 {
  font-size: 1.5rem;
}
/* line 5, ../sass/components/_roster.scss */
.view-id-roster h2, .view-id-roster .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .view-id-roster h1, .view-id-roster .contact-method-label {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}
/* line 9, ../sass/components/_roster.scss */
.view-id-roster h3, .view-id-roster .field--name-field-social-phrase-group-title, .view-id-roster .field--name-field-image-gallery-title {
  margin-top: 0;
}
/* line 13, ../sass/components/_roster.scss */
.view-id-roster .roster-header {
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
}
/* line 20, ../sass/components/_roster.scss */
.view-id-roster .node--type-nhlbi-person {
  margin-bottom: 1rem;
}
/* line 24, ../sass/components/_roster.scss */
.view-id-roster .field--name-roster-name {
  font-size: 1.25rem;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  margin-top: 0;
  line-height: 1.25;
}
@media all and (min-width: 1440px) {
  /* line 24, ../sass/components/_roster.scss */
  .view-id-roster .field--name-roster-name {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 24, ../sass/components/_roster.scss */
  .view-id-roster .field--name-roster-name {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 24, ../sass/components/_roster.scss */
  .view-id-roster .field--name-roster-name {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 24, ../sass/components/_roster.scss */
  .view-id-roster .field--name-roster-name {
    font-size: 1.125rem;
  }
}
/* line 31, ../sass/components/_roster.scss */
.view-id-roster .view-content {
  background-color: #f4f4f4;
  padding-bottom: 2rem;
}
/* line 35, ../sass/components/_roster.scss */
.view-id-roster .view-content > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
/* line 39, ../sass/components/_roster.scss */
.view-id-roster .view-content > div h2, .view-id-roster .view-content > div .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .view-id-roster .view-content > div h1, .view-id-roster .view-content > div .contact-method-label {
  width: 100%;
}
/* line 42, ../sass/components/_roster.scss */
.view-id-roster .view-content > div .views-row {
  background-color: white;
  padding: 1.5em;
  border: 1px solid #E8E8E8;
  border-radius: 8px;
  box-sizing: border-box;
  width: calc((100% - 2rem)/3);
  margin-bottom: 1.5rem;
  box-shadow: 2px 4px 10px rgba(153, 153, 153, 0.05);
  text-transform: uppercase;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 42, ../sass/components/_roster.scss */
  .view-id-roster .view-content > div .views-row {
    width: calc((100% - 3rem)/2);
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 42, ../sass/components/_roster.scss */
  .view-id-roster .view-content > div .views-row {
    width: 100%;
  }
}
@supports (display: grid) {
  /* line 65, ../sass/components/_roster.scss */
  .view-id-roster .view-content > div {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 1.5em;
    grid-row-gap: 1.5em;
    grid-auto-rows: max-content;
  }
  /* line 66, ../sass/components/_roster.scss */
  .view-id-roster .view-content > div h2, .view-id-roster .view-content > div .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box .view-id-roster .view-content > div h1, .view-id-roster .view-content > div .contact-method-label {
    grid-column: 1 / -1;
  }
  /* line 75, ../sass/components/_roster.scss */
  .view-id-roster .view-content > div .views-row {
    width: auto;
    margin-bottom: 0;
  }
  @media all and (min-width: 768px) and (max-width: 1099px) {
    /* line 65, ../sass/components/_roster.scss */
    .view-id-roster .view-content > div {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media all and (min-width: 0em) and (max-width: 767px) {
    /* line 65, ../sass/components/_roster.scss */
    .view-id-roster .view-content > div {
      grid-template-columns: 1fr;
    }
  }
}

/* line 93, ../sass/components/_roster.scss */
.node--type-nhlbi-person.node--view-mode-roster-entry {
  color: #222;
}
/* line 96, ../sass/components/_roster.scss */
.node--type-nhlbi-person.node--view-mode-roster-entry .field--name-roster-name {
  color: black;
  font-weight: bold;
}

/* line 3, ../sass/_subscribe.scss */
.node--view-mode-subscribe .ui-widget-content a.readMoreLink,
.node--view-mode-subscribe a.readMoreLink,
.node--view-mode-subscribe .ui-widget-content a.readLessLink,
.node--view-mode-subscribe a.readLessLink,
.node--view-mode-subscribe .readMoreButton,
.node--view-mode-subscribe .readLessButton {
  display: none;
}

/**
 * @file
 * Print styling
 *
 * We provide some sane print styling for Drupal using Zen's layout method.
 */
/**
 * By importing this CSS file as media "all", we allow this print file to be
 * aggregated with other stylesheets, for improved front-end performance.
 */
@media print {
  /* Underline all links. */
  /* line 15, ../sass/_print.scss */
  a:link,
  a:visited {
    /* Don't underline header. */
  }

  /* line 25, ../sass/_print.scss */
  a img {
    border: 0;
  }

  /* line 28, ../sass/_print.scss */
  a, img {
    max-width: 100% !important;
    page-break-inside: avoid;
    break-inside: avoid;
  }

  /* line 35, ../sass/_print.scss */
  .caption {
    page-break-inside: avoid;
    break-inside: avoid;
  }

  /* line 40, ../sass/_print.scss */
  .caption > * {
    page-break-inside: avoid;
    break-inside: avoid;
    display: block;
  }

  /* line 46, ../sass/_print.scss */
  h2, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1, .contact-method-label, h3, .smaller-titled-cards .field--name-field-social-phrase-group-title, .smaller-titled-cards .field--name-field-image-gallery-title, .field--name-field-social-phrase-group-title, .field--name-field-image-gallery-title {
    page-break-after: avoid;
  }

  /* line 50, ../sass/_print.scss */
  #content {
    /* Add visible URL after links. */
    /* Only display useful links. */
    /* Add visible title after abbreviations. */
  }
  /* line 59, ../sass/_print.scss */
  #content a[href^="javascript:"]:after,
  #content a[href^="#"]:after {
    content: "";
  }
  /* line 65, ../sass/_print.scss */
  #content abbr[title]:after {
    content: " (" attr(title) ")";
  }

  /* Un-float the content. */
  /* line 71, ../sass/_print.scss */
  #content {
    width: 100% !important;
  }

  /* Turn off any background colors or images. */
  /* line 79, ../sass/_print.scss */
  body,
  #page,
  #main,
  #content {
    color: #000;
  }

  /* Move breadcrumb to bottom of page */
  /* Hide sidebars and nav elements. */
  /* line 101, ../sass/_print.scss */
  #skip-link,
  #skip-nav,
  #toolbar,
  #banner,
  #main-menu,
  #navigation,
  #header,
  .pane-nhlbi-menus-nhlbi-menus-main-menu,
  .pane-nhlbi-health-topic-nhlbi-ht-clinical-trials,
  .pane-item-list-health-topic-news-sidebar-panel-pane-1,
  .pane-item-list-nhlbi-director-messages,
  .emailSignup,
  .pane-left-top,
  .pane-right-top,
  .breadcrumb,
  .region-sidebar-first,
  .region-sidebar-second,
  .sidebar-second,
  .sidebar,
  .tabs,
  .action-links,
  .links,
  .book-navigation,
  .forum-topic-navigation,
  .pager,
  .standard-more-link,
  .news-and-events--landing .more-link,
  .view-more-link,
  .feed-icons,
  #footer-bottom,
  #nhlbi-submenu-block,
  #submenu-block,
  #block-nhlbi-gsa-nhlbi-gsa-search-box,
  #block-workbench-block,
  .messages--status,
  #sharepanel,
  #rateThisContainer,
  .videoGalleryOnly,
  .galleryformatter,
  .field-name-field-short-title,
  .field-name-field-show-child-clinical,
  .field-name-field-topic-area,
  .field-collection-container,
  .field-name-field-topic-or-test-procedure,
  .field-name-field-clinical-trials-topic,
  .field-name-field-sme-science-writer,
  .field-name-field-display-title,
  .field-name-field-last-updated,
  .field-name-field-last-reviewed {
    visibility: hidden;
    display: none;
  }

  /* line 152, ../sass/_print.scss */
  .ui-accordion-content, .ui-accordion-header {
    display: block !important;
  }

  /* line 157, ../sass/_print.scss */
  .readMoreButton {
    visibility: hidden;
    display: none;
  }

  /* line 163, ../sass/_print.scss */
  .hidden.readMore {
    display: block !important;
    visibility: visible !important;
    margin-top: 0;
  }
  /* line 169, ../sass/_print.scss */
  .hidden.readMore .readLessButton {
    visibility: hidden;
    display: none;
  }
}
/* line 1, ../sass/components/_our_hearts.scss */
.ourHearts-title {
  color: #4D2D66;
  font-weight: bold;
  margin-top: 0.67em;
}

/* line 7, ../sass/components/_our_hearts.scss */
.ourHearts-subtitle {
  color: #222;
}

/* line 11, ../sass/components/_our_hearts.scss */
.ourHearts-description {
  color: #222;
  margin-top: 1.67em;
}

/* line 16, ../sass/components/_our_hearts.scss */
h2.ourHearts-legend, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.ourHearts-legend, .ourHearts-legend.contact-method-label {
  margin-top: 0;
  margin-bottom: 1em;
  font-family: "Merriweather", serif;
  font-size: 1.5em;
  font-weight: bold;
  color: #222;
  font-style: normal;
  font-size: 1.25rem;
}
@media all and (min-width: 1440px) {
  /* line 16, ../sass/components/_our_hearts.scss */
  h2.ourHearts-legend, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.ourHearts-legend, .ourHearts-legend.contact-method-label {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 16, ../sass/components/_our_hearts.scss */
  h2.ourHearts-legend, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.ourHearts-legend, .ourHearts-legend.contact-method-label {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 16, ../sass/components/_our_hearts.scss */
  h2.ourHearts-legend, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.ourHearts-legend, .ourHearts-legend.contact-method-label {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 16, ../sass/components/_our_hearts.scss */
  h2.ourHearts-legend, .health-topics-education-and-awareness-heart-truth-our-hearts-view-all-social-media-posts .view-all-posts-page .header-box h1.ourHearts-legend, .ourHearts-legend.contact-method-label {
    font-size: 1rem;
  }
}

/* line 27, ../sass/components/_our_hearts.scss */
.ourHearts-disclaimer {
  color: #222;
  margin-bottom: 1.67em;
}

/* line 32, ../sass/components/_our_hearts.scss */
.ourHearts-submitted {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}

/* line 38, ../sass/components/_our_hearts.scss */
.our-hearts-event-form input {
  width: 100%;
}

/* line 42, ../sass/components/_our_hearts.scss */
.our-hearts-event-form .form-date {
  width: 140px;
}

/* line 46, ../sass/components/_our_hearts.scss */
.our-hearts-event-form .form-time {
  width: 140px;
}

/* line 50, ../sass/components/_our_hearts.scss */
#edit-event-title, #edit-personal-info-title {
  font-size: 1.25rem;
  font-weight: normal;
  color: #222;
}

/* line 56, ../sass/components/_our_hearts.scss */
.ourHearts-container {
  background-color: #EFEFEF;
  padding: 15px 50px 25px;
  margin-bottom: 40px;
}

/* line 62, ../sass/components/_our_hearts.scss */
.our-hearts-event-form .form-type-textfield label,
.our-hearts-event-form .form-type-select label,
.our-hearts-event-form .form-type-date label,
.our-hearts-event-form .form-type-email label,
.our-hearts-event-form .form-required {
  font-size: 1.125rem;
  color: #222;
  text-transform: capitalize;
}
@media all and (min-width: 1440px) {
  /* line 62, ../sass/components/_our_hearts.scss */
  .our-hearts-event-form .form-type-textfield label,
  .our-hearts-event-form .form-type-select label,
  .our-hearts-event-form .form-type-date label,
  .our-hearts-event-form .form-type-email label,
  .our-hearts-event-form .form-required {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 62, ../sass/components/_our_hearts.scss */
  .our-hearts-event-form .form-type-textfield label,
  .our-hearts-event-form .form-type-select label,
  .our-hearts-event-form .form-type-date label,
  .our-hearts-event-form .form-type-email label,
  .our-hearts-event-form .form-required {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 62, ../sass/components/_our_hearts.scss */
  .our-hearts-event-form .form-type-textfield label,
  .our-hearts-event-form .form-type-select label,
  .our-hearts-event-form .form-type-date label,
  .our-hearts-event-form .form-type-email label,
  .our-hearts-event-form .form-required {
    font-size: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 62, ../sass/components/_our_hearts.scss */
  .our-hearts-event-form .form-type-textfield label,
  .our-hearts-event-form .form-type-select label,
  .our-hearts-event-form .form-type-date label,
  .our-hearts-event-form .form-type-email label,
  .our-hearts-event-form .form-required {
    font-size: 1rem;
  }
}

/* line 72, ../sass/components/_our_hearts.scss */
.our-hearts-event-form .button {
  width: 150px;
  background-color: #4D2D66;
  border: 0px;
  margin-top: 10px;
  color: #fff;
  padding: .5em 2em;
  border-radius: 50px;
  display: inline-block;
  margin-right: 2em;
  font-size: 1.2em;
  margin-bottom: 3em;
  height: auto;
}
/* line 86, ../sass/components/_our_hearts.scss */
.our-hearts-event-form .button:hover, .our-hearts-event-form .button:focus {
  background: #007A89;
  border: 0;
  transition: background 0.5s;
}

/* line 93, ../sass/components/_our_hearts.scss */
.ourHearts-contact-info .field--name-field-contact-methods {
  margin-top: 1em;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -o-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  -o-align-items: stretch;
  align-items: stretch;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  overflow: hidden;
}

/* line 125, ../sass/components/_our_hearts.scss */
.ourHearts-contact-info .field--name-field-contact-methods > .field__item {
  background-color: white;
}

@media all and (min-width: 1100px) {
  /* line 130, ../sass/components/_our_hearts.scss */
  .ourHearts-contact-info .field--name-field-contact-methods > .field__item {
    width: 25%;
    padding: 1em 2em 1.5em 2em;
    margin-bottom: 1em;
    margin-right: 1em;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 139, ../sass/components/_our_hearts.scss */
  .ourHearts-contact-info .field--name-field-contact-methods > .field__item {
    width: -webkit-fill-available;
    width: -moz-fill-available;
    width: -ms-fill-available;
    width: -o-fill-available;
    width: fill-available;
    width: -moz-available;
    width: available;
    padding: 1em 2em 1.5em 2em;
    margin-right: 0;
  }
}
/* line 2, ../sass/components/_glossary.scss */
#glossary-container a.modal-close, #glossary-container a.modal-close:link, #glossary-container a.modal-close:active, #glossary-container a.modal-close:visited, #searchBoxForm a.modal-close, #searchBoxForm a.modal-close:link, #searchBoxForm a.modal-close:active, #searchBoxForm a.modal-close:visited, #print-container a.modal-close, #print-container a.modal-close:link, #print-container a.modal-close:active, #print-container a.modal-close:visited {
  width: auto;
  position: absolute;
  right: 1rem;
  top: 0.5rem;
  color: #307484;
  padding: 0.25rem 0.5rem 0.25rem 0.5rem;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.5rem;
}
/* line 15, ../sass/components/_glossary.scss */
#glossary-container a.modal-close:hover, #glossary-container a.modal-close:link:hover, #glossary-container a.modal-close:active:hover, #glossary-container a.modal-close:visited:hover, #searchBoxForm a.modal-close:hover, #searchBoxForm a.modal-close:link:hover, #searchBoxForm a.modal-close:active:hover, #searchBoxForm a.modal-close:visited:hover, #print-container a.modal-close:hover, #print-container a.modal-close:link:hover, #print-container a.modal-close:active:hover, #print-container a.modal-close:visited:hover {
  color: #307484;
}
/* line 19, ../sass/components/_glossary.scss */
#glossary-container a.modal-close:active, #glossary-container a.modal-close:focus, #glossary-container a.modal-close:link:active, #glossary-container a.modal-close:link:focus, #glossary-container a.modal-close:active:active, #glossary-container a.modal-close:active:focus, #glossary-container a.modal-close:visited:active, #glossary-container a.modal-close:visited:focus, #searchBoxForm a.modal-close:active, #searchBoxForm a.modal-close:focus, #searchBoxForm a.modal-close:link:active, #searchBoxForm a.modal-close:link:focus, #searchBoxForm a.modal-close:active:active, #searchBoxForm a.modal-close:active:focus, #searchBoxForm a.modal-close:visited:active, #searchBoxForm a.modal-close:visited:focus, #print-container a.modal-close:active, #print-container a.modal-close:focus, #print-container a.modal-close:link:active, #print-container a.modal-close:link:focus, #print-container a.modal-close:active:active, #print-container a.modal-close:active:focus, #print-container a.modal-close:visited:active, #print-container a.modal-close:visited:focus {
  outline: #bf0d2e dotted 3px;
}
/* line 23, ../sass/components/_glossary.scss */
#glossary-container .modalLeft, #searchBoxForm .modalLeft, #print-container .modalLeft {
  float: left;
}
/* line 26, ../sass/components/_glossary.scss */
#glossary-container .modalRight, #searchBoxForm .modalRight, #print-container .modalRight {
  float: right;
}

/* line 31, ../sass/components/_glossary.scss */
.glossaryheader {
  color: #307484;
  width: 100%;
  padding: 1rem;
  width: 100%;
  border-radius: 8px 8px 0 0;
  background-color: white;
}

/* line 40, ../sass/components/_glossary.scss */
.glossarytext {
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 0.875rem;
  color: black;
  box-sizing: border-box;
}
/* line 47, ../sass/components/_glossary.scss */
.glossarytext div {
  box-sizing: border-box;
}

/* line 51, ../sass/components/_glossary.scss */
.glossarybody {
  background-color: white;
  padding: 1rem;
  width: 100%;
  border-radius: 0 0 8px 8px;
  font-size: 1.14rem;
  letter-spacing: 0em;
}

/* line 59, ../sass/components/_glossary.scss */
.glossaryterm {
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 1.5rem;
  color: #307484;
  margin: 0;
  font-weight: 700;
  letter-spacing: 0em;
  line-height: 1.25;
}

/* line 69, ../sass/components/_glossary.scss */
.glossarydefinition {
  font-size: 1rem;
}

/* line 73, ../sass/components/_glossary.scss */
.glossarypro {
  font-weight: 700;
  letter-spacing: 0em;
  line-height: 1.5;
  font-size: 0.875rem;
}

/* line 79, ../sass/components/_glossary.scss */
.node-glossary-term {
  display: inline-block;
}

/* line 82, ../sass/components/_glossary.scss */
a.glossary-term, a.glossary-term:visited, a.glossary-term:active {
  padding-right: 14px;
  background-image: url("../images/info_icon_small.png");
  background-repeat: no-repeat;
  background-size: 12px 12px;
  background-position: right top;
}

/* line 91, ../sass/components/_glossary.scss */
article.node--view-mode-subscribe a.glossary-term, article.node--view-mode-subscribe a.glossary-term:visited, article.node--view-mode-subscribe a.glossary-term:active {
  background: none;
  padding-right: 0;
  color: #222;
}

/* line 1, ../sass/components/_uswds_banner.scss */
#block-uswdsbanner {
  margin-bottom: 0.5rem !important;
  margin-top: 0.2rem !important;
}

/* line 6, ../sass/components/_uswds_banner.scss */
.usa-banner__inner {
  max-width: none !important;
}

/* line 9, ../sass/components/_uswds_banner.scss */
.usa-banner__content {
  max-width: none !important;
}

/* line 13, ../sass/components/_uswds_banner.scss */
.usa-media-block__body .icon-lock:before {
  content: "" !important;
}
